diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-20 09:24:31 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-03 11:52:16 -0600 |
commit | 752fb69af6749b8f7162cd475216511dd31352bb (patch) | |
tree | e31bded5a5754e8c3686a76aa3a448237f456f88 | |
parent | cb75110137e3959cec0aa775520e442277d0e806 (diff) |
ram: Support driver model in VPL
Some boards want to use RAM in VPL so add an option for that.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/ram/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/ram/Kconfig b/drivers/ram/Kconfig index a64d2dff68d..f7e357f24da 100644 --- a/drivers/ram/Kconfig +++ b/drivers/ram/Kconfig @@ -26,6 +26,15 @@ config TPL_RAM TPL, enable this option. It might provide a cleaner interface to setting up RAM (e.g. SDRAM / DDR) within TPL. +config VPL_RAM + bool "Enable RAM support in VPL" + depends on RAM && VPL + help + The RAM subsystem adds a small amount of overhead to the image. + If this is acceptable and you have a need to use RAM drivers in + VPL, enable this option. It might provide a cleaner interface to + setting up RAM (e.g. SDRAM / DDR) within VPL. + config STM32_SDRAM bool "Enable STM32 SDRAM support" depends on RAM |