Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. config MACH_KAEN
  26. bool "Kaen board"
  27. select MACH_SEABOARD
  28. help
  29. Support for the Kaen version of Seaboard
  30. config MACH_SEABOARD
  31. bool "Seaboard board"
  32. help
  33. Support for nVidia Seaboard development platform. It will
  34. also be included for some of the derivative boards that
  35. have large similarities with the seaboard design.
  36. config MACH_TRIMSLICE
  37. bool "TrimSlice board"
  38. select TEGRA_PCI
  39. help
  40. Support for CompuLab TrimSlice platform
  41. config MACH_WARIO
  42. bool "Wario board"
  43. select MACH_SEABOARD
  44. help
  45. Support for the Wario version of Seaboard
  46. choice
  47. prompt "Low-level debug console UART"
  48. default TEGRA_DEBUG_UART_NONE
  49. config TEGRA_DEBUG_UART_NONE
  50. bool "None"
  51. config TEGRA_DEBUG_UARTA
  52. bool "UART-A"
  53. config TEGRA_DEBUG_UARTB
  54. bool "UART-B"
  55. config TEGRA_DEBUG_UARTC
  56. bool "UART-C"
  57. config TEGRA_DEBUG_UARTD
  58. bool "UART-D"
  59. config TEGRA_DEBUG_UARTE
  60. bool "UART-E"
  61. endchoice
  62. config TEGRA_SYSTEM_DMA
  63. bool "Enable system DMA driver for NVIDIA Tegra SoCs"
  64. default y
  65. help
  66. Adds system DMA functionality for NVIDIA Tegra SoCs, used by
  67. several Tegra device drivers
  68. config TEGRA_EMC_SCALING_ENABLE
  69. bool "Enable scaling the memory frequency"
  70. endif