Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_TRIMSLICE
  23. bool "TrimSlice board"
  24. select TEGRA_PCI
  25. help
  26. Support for CompuLab TrimSlice platform
  27. choice
  28. prompt "Low-level debug console UART"
  29. default TEGRA_DEBUG_UART_NONE
  30. config TEGRA_DEBUG_UART_NONE
  31. bool "None"
  32. config TEGRA_DEBUG_UARTA
  33. bool "UART-A"
  34. config TEGRA_DEBUG_UARTB
  35. bool "UART-B"
  36. config TEGRA_DEBUG_UARTC
  37. bool "UART-C"
  38. config TEGRA_DEBUG_UARTD
  39. bool "UART-D"
  40. config TEGRA_DEBUG_UARTE
  41. bool "UART-E"
  42. endchoice
  43. config TEGRA_SYSTEM_DMA
  44. bool "Enable system DMA driver for NVIDIA Tegra SoCs"
  45. default y
  46. help
  47. Adds system DMA functionality for NVIDIA Tegra SoCs, used by
  48. several Tegra device drivers
  49. endif
  50. config TEGRA_EMC_SCALING_ENABLE
  51. bool "Enable scaling the memory frequency"