xref: /OK3568_Linux_fs/u-boot/drivers/ram/Makefile (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# Copyright (c) 2015 Google, Inc
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# SPDX-License-Identifier:      GPL-2.0+
6#
7obj-$(CONFIG_$(SPL_TPL_)DM) += ram-uclass.o
8obj-$(CONFIG_SANDBOX) += sandbox_ram.o
9obj-$(CONFIG_STM32_SDRAM) += stm32_sdram.o
10obj-$(CONFIG_ARCH_BMIPS) += bmips_ram.o
11
12obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
13
14ifndef CONFIG_SPL_BUILD
15obj-$(CONFIG_DM_DMC) += dmc-uclass.o
16obj-$(CONFIG_DM_RAMDISK) += ramdisk-uclass.o
17obj-$(CONFIG_RAMDISK_RO) += ramdisk_ro.o
18endif
19