Kconfig 2.0 KB

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