Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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_AMBA
  6. select ARM_GIC
  7. select CLKSRC_MMIO
  8. select HAVE_ARM_SCU if SMP
  9. select HAVE_ARM_TWD if SMP
  10. select PINCTRL
  11. select PM_OPP
  12. select ARCH_HAS_RESET_CONTROLLER
  13. select RESET_CONTROLLER
  14. select SOC_BUS
  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. select TEGRA_TIMER
  28. help
  29. Support for NVIDIA Tegra AP20 and T20 processors, based on the
  30. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  31. config ARCH_TEGRA_3x_SOC
  32. bool "Enable support for Tegra30 family"
  33. select ARM_ERRATA_754322
  34. select ARM_ERRATA_764369 if SMP
  35. select PINCTRL_TEGRA30
  36. select PL310_ERRATA_769419 if CACHE_L2X0
  37. select TEGRA_TIMER
  38. help
  39. Support for NVIDIA Tegra T30 processor family, based on the
  40. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  41. config ARCH_TEGRA_114_SOC
  42. bool "Enable support for Tegra114 family"
  43. select ARM_ERRATA_798181 if SMP
  44. select ARM_L1_CACHE_SHIFT_6
  45. select HAVE_ARM_ARCH_TIMER
  46. select PINCTRL_TEGRA114
  47. select TEGRA_TIMER
  48. help
  49. Support for NVIDIA Tegra T114 processor family, based on the
  50. ARM CortexA15MP CPU
  51. config ARCH_TEGRA_124_SOC
  52. bool "Enable support for Tegra124 family"
  53. select ARM_L1_CACHE_SHIFT_6
  54. select HAVE_ARM_ARCH_TIMER
  55. select PINCTRL_TEGRA124
  56. select TEGRA_TIMER
  57. help
  58. Support for NVIDIA Tegra T124 processor family, based on the
  59. ARM CortexA15MP CPU
  60. endif