Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_V7
  48. select PINCTRL
  49. select PINCTRL_TEGRA114
  50. help
  51. Support for NVIDIA Tegra T114 processor family, based on the
  52. ARM CortexA15MP CPU
  53. config TEGRA_PCI
  54. bool "PCI Express support"
  55. depends on ARCH_TEGRA_2x_SOC
  56. select PCI
  57. config TEGRA_AHB
  58. bool "Enable AHB driver for NVIDIA Tegra SoCs"
  59. default y
  60. help
  61. Adds AHB configuration functionality for NVIDIA Tegra SoCs,
  62. which controls AHB bus master arbitration and some
  63. performance parameters(priority, prefech size).
  64. config TEGRA_EMC_SCALING_ENABLE
  65. bool "Enable scaling the memory frequency"
  66. endif