Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  11. select USB_ULPI if USB_SUPPORT
  12. select USB_ULPI_VIEWPORT if USB_SUPPORT
  13. help
  14. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  15. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  16. endchoice
  17. config TEGRA_PCI
  18. bool "PCI Express support"
  19. select PCI
  20. comment "Tegra board type"
  21. config MACH_HARMONY
  22. bool "Harmony board"
  23. help
  24. Support for nVidia Harmony development platform
  25. choice
  26. prompt "Low-level debug console UART"
  27. default TEGRA_DEBUG_UART_NONE
  28. config TEGRA_DEBUG_UART_NONE
  29. bool "None"
  30. config TEGRA_DEBUG_UARTA
  31. bool "UART-A"
  32. config TEGRA_DEBUG_UARTB
  33. bool "UART-B"
  34. config TEGRA_DEBUG_UARTC
  35. bool "UART-C"
  36. config TEGRA_DEBUG_UARTD
  37. bool "UART-D"
  38. config TEGRA_DEBUG_UARTE
  39. bool "UART-E"
  40. endchoice
  41. config TEGRA_SYSTEM_DMA
  42. bool "Enable system DMA driver for NVIDIA Tegra SoCs"
  43. default y
  44. help
  45. Adds system DMA functionality for NVIDIA Tegra SoCs, used by
  46. several Tegra device drivers
  47. endif