Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. if ARCH_TEGRA
  2. comment "NVIDIA Tegra options"
  3. choice
  4. prompt "Select Tegra processor family for target system"
  5. config ARCH_TEGRA_2x_SOC
  6. bool "Tegra 2 family"
  7. select CPU_V7
  8. select ARM_GIC
  9. select ARCH_REQUIRE_GPIOLIB
  10. help
  11. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  12. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  13. endchoice
  14. config TEGRA_PCI
  15. bool "PCI Express support"
  16. select PCI
  17. comment "Tegra board type"
  18. config MACH_HARMONY
  19. bool "Harmony board"
  20. help
  21. Support for nVidia Harmony development platform
  22. choice
  23. prompt "Low-level debug console UART"
  24. default TEGRA_DEBUG_UART_NONE
  25. config TEGRA_DEBUG_UART_NONE
  26. bool "None"
  27. config TEGRA_DEBUG_UARTA
  28. bool "UART-A"
  29. config TEGRA_DEBUG_UARTB
  30. bool "UART-B"
  31. config TEGRA_DEBUG_UARTC
  32. bool "UART-C"
  33. config TEGRA_DEBUG_UARTD
  34. bool "UART-D"
  35. config TEGRA_DEBUG_UARTE
  36. bool "UART-E"
  37. endchoice
  38. config TEGRA_SYSTEM_DMA
  39. bool "Enable system DMA driver for NVIDIA Tegra SoCs"
  40. default y
  41. help
  42. Adds system DMA functionality for NVIDIA Tegra SoCs, used by
  43. several Tegra device drivers
  44. endif