Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. menuconfig ARCH_TEGRA
  2. bool "NVIDIA Tegra" if ARCH_MULTI_V7
  3. select ARCH_REQUIRE_GPIOLIB
  4. select ARCH_SUPPORTS_TRUSTED_FOUNDATIONS
  5. select ARM_GIC
  6. select CLKSRC_MMIO
  7. select HAVE_ARM_SCU if SMP
  8. select HAVE_ARM_TWD if SMP
  9. select PINCTRL
  10. select ARCH_HAS_RESET_CONTROLLER
  11. select RESET_CONTROLLER
  12. select SOC_BUS
  13. select USB_ULPI if USB_PHY
  14. select USB_ULPI_VIEWPORT if USB_PHY
  15. help
  16. This enables support for NVIDIA Tegra based systems.
  17. if ARCH_TEGRA
  18. config ARCH_TEGRA_2x_SOC
  19. bool "Enable support for Tegra20 family"
  20. select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
  21. select ARM_ERRATA_720789
  22. select ARM_ERRATA_754327 if SMP
  23. select ARM_ERRATA_764369 if SMP
  24. select PINCTRL_TEGRA20
  25. select PL310_ERRATA_727915 if CACHE_L2X0
  26. select PL310_ERRATA_769419 if CACHE_L2X0
  27. help
  28. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  29. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  30. config ARCH_TEGRA_3x_SOC
  31. bool "Enable support for Tegra30 family"
  32. select ARM_ERRATA_754322
  33. select ARM_ERRATA_764369 if SMP
  34. select PINCTRL_TEGRA30
  35. select PL310_ERRATA_769419 if CACHE_L2X0
  36. help
  37. Support for NVIDIA Tegra T30 processor family, based on the
  38. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  39. config ARCH_TEGRA_114_SOC
  40. bool "Enable support for Tegra114 family"
  41. select ARM_ERRATA_798181 if SMP
  42. select ARM_L1_CACHE_SHIFT_6
  43. select HAVE_ARM_ARCH_TIMER
  44. select PINCTRL_TEGRA114
  45. help
  46. Support for NVIDIA Tegra T114 processor family, based on the
  47. ARM CortexA15MP CPU
  48. config ARCH_TEGRA_124_SOC
  49. bool "Enable support for Tegra124 family"
  50. select ARM_L1_CACHE_SHIFT_6
  51. select HAVE_ARM_ARCH_TIMER
  52. select PINCTRL_TEGRA124
  53. help
  54. Support for NVIDIA Tegra T124 processor family, based on the
  55. ARM CortexA15MP CPU
  56. config TEGRA_AHB
  57. bool "Enable AHB driver for NVIDIA Tegra SoCs"
  58. default y
  59. help
  60. Adds AHB configuration functionality for NVIDIA Tegra SoCs,
  61. which controls AHB bus master arbitration and some
  62. performance parameters(priority, prefech size).
  63. endif