Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. if ARCH_TEGRA
  2. comment "NVIDIA Tegra options"
  3. config ARCH_TEGRA_2x_SOC
  4. bool "Enable support for Tegra20 family"
  5. select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
  6. select ARCH_REQUIRE_GPIOLIB
  7. select ARM_ERRATA_720789
  8. select ARM_ERRATA_742230 if SMP
  9. select ARM_ERRATA_751472
  10. select ARM_ERRATA_754327 if SMP
  11. select ARM_ERRATA_764369 if SMP
  12. select ARM_GIC
  13. select CPU_FREQ_TABLE if CPU_FREQ
  14. select CPU_V7
  15. select PINCTRL
  16. select PINCTRL_TEGRA20
  17. select PL310_ERRATA_727915 if CACHE_L2X0
  18. select PL310_ERRATA_769419 if CACHE_L2X0
  19. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  20. select USB_ULPI if USB
  21. select USB_ULPI_VIEWPORT if USB_SUPPORT
  22. help
  23. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  24. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  25. config ARCH_TEGRA_3x_SOC
  26. bool "Enable support for Tegra30 family"
  27. select ARCH_REQUIRE_GPIOLIB
  28. select ARM_ERRATA_743622
  29. select ARM_ERRATA_751472
  30. select ARM_ERRATA_754322
  31. select ARM_ERRATA_764369 if SMP
  32. select ARM_GIC
  33. select CPU_FREQ_TABLE if CPU_FREQ
  34. select CPU_V7
  35. select PINCTRL
  36. select PINCTRL_TEGRA30
  37. select PL310_ERRATA_769419 if CACHE_L2X0
  38. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  39. select USB_ULPI if USB
  40. select USB_ULPI_VIEWPORT if USB_SUPPORT
  41. help
  42. Support for NVIDIA Tegra T30 processor family, based on the
  43. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  44. config ARCH_TEGRA_114_SOC
  45. bool "Enable support for Tegra114 family"
  46. select ARM_GIC
  47. select CPU_V7
  48. select ARM_L1_CACHE_SHIFT_6
  49. select ARM_ARCH_TIMER
  50. select PINCTRL
  51. select PINCTRL_TEGRA114
  52. help
  53. Support for NVIDIA Tegra T114 processor family, based on the
  54. ARM CortexA15MP CPU
  55. config TEGRA_PCI
  56. bool "PCI Express support"
  57. depends on ARCH_TEGRA_2x_SOC
  58. select PCI
  59. config TEGRA_AHB
  60. bool "Enable AHB driver for NVIDIA Tegra SoCs"
  61. default y
  62. help
  63. Adds AHB configuration functionality for NVIDIA Tegra SoCs,
  64. which controls AHB bus master arbitration and some
  65. performance parameters(priority, prefech size).
  66. config TEGRA_EMC_SCALING_ENABLE
  67. bool "Enable scaling the memory frequency"
  68. endif