Kconfig 1.8 KB

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