Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 MVEBU_DEVBUS
  20. bool "Marvell EBU Device Bus Controller"
  21. default y
  22. depends on PLAT_ORION && OF
  23. help
  24. This driver is for the Device Bus controller available in some
  25. Marvell EBU SoCs such as Discovery (mv78xx0), Orion (88f5xxx) and
  26. Armada 370 and Armada XP. This controller allows to handle flash
  27. devices such as NOR, NAND, SRAM, and FPGA.
  28. config TEGRA20_MC
  29. bool "Tegra20 Memory Controller(MC) driver"
  30. default y
  31. depends on ARCH_TEGRA_2x_SOC
  32. help
  33. This driver is for the Memory Controller(MC) module available
  34. in Tegra20 SoCs, mainly for a address translation fault
  35. analysis, especially for IOMMU/GART(Graphics Address
  36. Relocation Table) module.
  37. config TEGRA30_MC
  38. bool "Tegra30 Memory Controller(MC) driver"
  39. default y
  40. depends on ARCH_TEGRA_3x_SOC
  41. help
  42. This driver is for the Memory Controller(MC) module available
  43. in Tegra30 SoCs, mainly for a address translation fault
  44. analysis, especially for IOMMU/SMMU(System Memory Management
  45. Unit) module.
  46. endif