Kconfig 2.1 KB

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