mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
Add support for a driver which sets up DRAM and can return information about the amount of RAM available. This is a first step towards moving RAM init to driver model. Signed-off-by: Simon Glass <sjg@chromium.org>
28 lines
608 B
Makefile
28 lines
608 B
Makefile
obj-$(CONFIG_DM) += core/
|
|
obj-$(CONFIG_DM_DEMO) += demo/
|
|
obj-$(CONFIG_BIOSEMU) += bios_emulator/
|
|
obj-y += block/
|
|
obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
|
|
obj-$(CONFIG_CPU) += cpu/
|
|
obj-y += crypto/
|
|
obj-$(CONFIG_FPGA) += fpga/
|
|
obj-y += hwmon/
|
|
obj-$(CONFIG_LED) += led/
|
|
obj-y += misc/
|
|
obj-y += pcmcia/
|
|
obj-y += dfu/
|
|
obj-$(CONFIG_RAM) += ram/
|
|
obj-y += rtc/
|
|
obj-y += sound/
|
|
obj-y += tpm/
|
|
obj-y += twserial/
|
|
obj-y += video/
|
|
obj-y += watchdog/
|
|
obj-$(CONFIG_QE) += qe/
|
|
obj-$(CONFIG_U_QE) += qe/
|
|
obj-y += memory/
|
|
obj-y += pwm/
|
|
obj-y += input/
|
|
# SOC specific infrastructure drivers.
|
|
obj-y += soc/
|
|
obj-y += thermal/
|