]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/ram/Kconfig
Merge git://git.denx.de/u-boot-marvell
[people/ms/u-boot.git] / drivers / ram / Kconfig
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
11 config SPL_RAM_SUPPORT
12 bool "Enable RAM support in SPL"
13 depends on RAM
14 help
15 The RAM subsystem adds a small amount of overhead to the image.
16 If this is acceptable and you have a need to use RAM drivers in
17 SPL, enable this option. It might provide a cleaner interface to
18 setting up RAM (e.g. SDRAM / DDR) within SPL.