Kconfig 1.7 KB

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