Kconfig 609 B

1234567891011121314151617181920212223
  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. endif