Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Memory devices
  3. #
  4. menuconfig MEMORY
  5. bool "Memory Controller drivers"
  6. if MEMORY
  7. config TI_EMIF
  8. tristate "Texas Instruments EMIF driver"
  9. depends on ARCH_OMAP2PLUS
  10. select DDR
  11. help
  12. This driver is for the EMIF module available in Texas Instruments
  13. SoCs. EMIF is an SDRAM controller that, based on its revision,
  14. supports one or more of DDR2, DDR3, and LPDDR2 SDRAM protocols.
  15. This driver takes care of only LPDDR2 memories presently. The
  16. functions of the driver includes re-configuring AC timing
  17. parameters and other settings during frequency, voltage and
  18. temperature changes
  19. config TEGRA20_MC
  20. bool "Tegra20 Memory Controller(MC) driver"
  21. default y
  22. depends on ARCH_TEGRA_2x_SOC
  23. help
  24. This driver is for the Memory Controller(MC) module available
  25. in Tegra20 SoCs, mainly for a address translation fault
  26. analysis, especially for IOMMU/GART(Graphics Address
  27. Relocation Table) module.
  28. config TEGRA30_MC
  29. bool "Tegra30 Memory Controller(MC) driver"
  30. default y
  31. depends on ARCH_TEGRA_3x_SOC
  32. help
  33. This driver is for the Memory Controller(MC) module available
  34. in Tegra30 SoCs, mainly for a address translation fault
  35. analysis, especially for IOMMU/SMMU(System Memory Management
  36. Unit) module.
  37. endif