Kconfig 910 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. comment "Tegra board type"
  15. config MACH_HARMONY
  16. bool "Harmony board"
  17. help
  18. Support for nVidia Harmony development platform
  19. choice
  20. prompt "Low-level debug console UART"
  21. default TEGRA_DEBUG_UART_NONE
  22. config TEGRA_DEBUG_UART_NONE
  23. bool "None"
  24. config TEGRA_DEBUG_UARTA
  25. bool "UART-A"
  26. config TEGRA_DEBUG_UARTB
  27. bool "UART-B"
  28. config TEGRA_DEBUG_UARTC
  29. bool "UART-C"
  30. config TEGRA_DEBUG_UARTD
  31. bool "UART-D"
  32. config TEGRA_DEBUG_UARTE
  33. bool "UART-E"
  34. endchoice
  35. endif