Kconfig 881 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. help
  10. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  11. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  12. endchoice
  13. comment "Tegra board type"
  14. config MACH_HARMONY
  15. bool "Harmony board"
  16. help
  17. Support for nVidia Harmony development platform
  18. choice
  19. prompt "Low-level debug console UART"
  20. default TEGRA_DEBUG_UART_NONE
  21. config TEGRA_DEBUG_UART_NONE
  22. bool "None"
  23. config TEGRA_DEBUG_UARTA
  24. bool "UART-A"
  25. config TEGRA_DEBUG_UARTB
  26. bool "UART-B"
  27. config TEGRA_DEBUG_UARTC
  28. bool "UART-C"
  29. config TEGRA_DEBUG_UARTD
  30. bool "UART-D"
  31. config TEGRA_DEBUG_UARTE
  32. bool "UART-E"
  33. endchoice
  34. endif