Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_REQUIRE_GPIOLIB
  6. select ARM_ERRATA_720789
  7. select ARM_ERRATA_742230
  8. select ARM_ERRATA_751472
  9. select ARM_ERRATA_754327
  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 ARCH_REQUIRE_GPIOLIB
  27. select ARM_ERRATA_743622
  28. select ARM_ERRATA_751472
  29. select ARM_ERRATA_754322
  30. select ARM_ERRATA_764369 if SMP
  31. select ARM_GIC
  32. select CPU_FREQ_TABLE if CPU_FREQ
  33. select CPU_V7
  34. select PINCTRL
  35. select PINCTRL_TEGRA30
  36. select PL310_ERRATA_769419 if CACHE_L2X0
  37. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  38. select USB_ULPI if USB
  39. select USB_ULPI_VIEWPORT if USB_SUPPORT
  40. help
  41. Support for NVIDIA Tegra T30 processor family, based on the
  42. ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
  43. config TEGRA_PCI
  44. bool "PCI Express support"
  45. depends on ARCH_TEGRA_2x_SOC
  46. select PCI
  47. config TEGRA_AHB
  48. bool "Enable AHB driver for NVIDIA Tegra SoCs"
  49. default y
  50. help
  51. Adds AHB configuration functionality for NVIDIA Tegra SoCs,
  52. which controls AHB bus master arbitration and some
  53. performance parameters(priority, prefech size).
  54. config TEGRA_EMC_SCALING_ENABLE
  55. bool "Enable scaling the memory frequency"
  56. endif