Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. if ARCH_TEGRA
  2. comment "NVIDIA Tegra options"
  3. config ARCH_TEGRA_2x_SOC
  4. bool "Enable support for Tegra20 family"
  5. select CPU_V7
  6. select ARM_GIC
  7. select ARCH_REQUIRE_GPIOLIB
  8. select PINCTRL
  9. select PINCTRL_TEGRA20
  10. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  11. select USB_ULPI if USB
  12. select USB_ULPI_VIEWPORT if USB_SUPPORT
  13. select ARM_ERRATA_720789
  14. select ARM_ERRATA_742230
  15. select ARM_ERRATA_751472
  16. select ARM_ERRATA_754327
  17. select ARM_ERRATA_764369
  18. select PL310_ERRATA_727915 if CACHE_L2X0
  19. select PL310_ERRATA_769419 if CACHE_L2X0
  20. select CPU_FREQ_TABLE if CPU_FREQ
  21. select MEMORY
  22. select TEGRA20_MC
  23. help
  24. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  25. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  26. config ARCH_TEGRA_3x_SOC
  27. bool "Enable support for Tegra30 family"
  28. select CPU_V7
  29. select ARM_GIC
  30. select ARCH_REQUIRE_GPIOLIB
  31. select PINCTRL
  32. select PINCTRL_TEGRA30
  33. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  34. select USB_ULPI if USB
  35. select USB_ULPI_VIEWPORT if USB_SUPPORT
  36. select USE_OF
  37. select ARM_ERRATA_743622
  38. select ARM_ERRATA_751472
  39. select ARM_ERRATA_754322
  40. select ARM_ERRATA_764369
  41. select PL310_ERRATA_769419 if CACHE_L2X0
  42. select CPU_FREQ_TABLE if CPU_FREQ
  43. help
  44. Support for NVIDIA Tegra T30 processor family, based on the
  45. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  46. config TEGRA_PCI
  47. bool "PCI Express support"
  48. depends on ARCH_TEGRA_2x_SOC
  49. select PCI
  50. comment "Tegra board type"
  51. config MACH_HARMONY
  52. bool "Harmony board"
  53. depends on ARCH_TEGRA_2x_SOC
  54. select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
  55. help
  56. Support for nVidia Harmony development platform
  57. config MACH_KAEN
  58. bool "Kaen board"
  59. depends on ARCH_TEGRA_2x_SOC
  60. select MACH_SEABOARD
  61. select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
  62. help
  63. Support for the Kaen version of Seaboard
  64. config MACH_PAZ00
  65. bool "Paz00 board"
  66. depends on ARCH_TEGRA_2x_SOC
  67. help
  68. Support for the Toshiba AC100/Dynabook AZ netbook
  69. config MACH_SEABOARD
  70. bool "Seaboard board"
  71. depends on ARCH_TEGRA_2x_SOC
  72. select MACH_HAS_SND_SOC_TEGRA_WM8903 if SND_SOC
  73. help
  74. Support for nVidia Seaboard development platform. It will
  75. also be included for some of the derivative boards that
  76. have large similarities with the seaboard design.
  77. config MACH_TEGRA_DT
  78. bool "Generic Tegra20 board (FDT support)"
  79. depends on ARCH_TEGRA_2x_SOC
  80. select USE_OF
  81. help
  82. Support for generic NVIDIA Tegra20 boards using Flattened Device Tree
  83. config MACH_TRIMSLICE
  84. bool "TrimSlice board"
  85. depends on ARCH_TEGRA_2x_SOC
  86. select TEGRA_PCI
  87. help
  88. Support for CompuLab TrimSlice platform
  89. config MACH_WARIO
  90. bool "Wario board"
  91. depends on ARCH_TEGRA_2x_SOC
  92. select MACH_SEABOARD
  93. help
  94. Support for the Wario version of Seaboard
  95. config MACH_VENTANA
  96. bool "Ventana board"
  97. depends on ARCH_TEGRA_2x_SOC
  98. select MACH_TEGRA_DT
  99. help
  100. Support for the nVidia Ventana development platform
  101. choice
  102. prompt "Low-level debug console UART"
  103. default TEGRA_DEBUG_UART_NONE
  104. config TEGRA_DEBUG_UART_NONE
  105. bool "None"
  106. config TEGRA_DEBUG_UARTA
  107. bool "UART-A"
  108. config TEGRA_DEBUG_UARTB
  109. bool "UART-B"
  110. config TEGRA_DEBUG_UARTC
  111. bool "UART-C"
  112. config TEGRA_DEBUG_UARTD
  113. bool "UART-D"
  114. config TEGRA_DEBUG_UARTE
  115. bool "UART-E"
  116. endchoice
  117. config TEGRA_SYSTEM_DMA
  118. bool "Enable system DMA driver for NVIDIA Tegra SoCs"
  119. default y
  120. help
  121. Adds system DMA functionality for NVIDIA Tegra SoCs, used by
  122. several Tegra device drivers
  123. config TEGRA_EMC_SCALING_ENABLE
  124. bool "Enable scaling the memory frequency"
  125. endif