Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. config RAM
  2. bool "Enable RAM drivers using Driver Model"
  3. depends on DM
  4. help
  5. This allows drivers to be provided for SDRAM and other RAM
  6. controllers and their type to be specified in the board's device
  7. tree. Generally some parameters are required to set up the RAM and
  8. the RAM size can either be statically defined or dynamically
  9. detected.
  10. config SPL_RAM
  11. bool "Enable RAM support in SPL"
  12. depends on RAM && SPL_DM
  13. help
  14. The RAM subsystem adds a small amount of overhead to the image.
  15. If this is acceptable and you have a need to use RAM drivers in
  16. SPL, enable this option. It might provide a cleaner interface to
  17. setting up RAM (e.g. SDRAM / DDR) within SPL.
  18. config TPL_RAM
  19. bool "Enable RAM support in TPL"
  20. depends on RAM && TPL_DM
  21. help
  22. The RAM subsystem adds a small amount of overhead to the image.
  23. If this is acceptable and you have a need to use RAM drivers in
  24. TPL, enable this option. It might provide a cleaner interface to
  25. setting up RAM (e.g. SDRAM / DDR) within TPL.
  26. config STM32_SDRAM
  27. bool "Enable STM32 SDRAM support"
  28. depends on RAM
  29. help
  30. STM32F7 family devices support flexible memory controller(FMC) to
  31. support external memories like sdram, psram & nand.
  32. This driver is for the sdram memory interface with the FMC.
  33. source "drivers/ram/stm32mp1/Kconfig"