1# 2# Copyright (C) 2014-2015 Stefan Roese <sr@denx.de> 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7ifdef CONFIG_KIRKWOOD 8 9obj-y = dram.o 10obj-y += gpio.o 11obj-y += timer.o 12 13else 14 15obj-y = cpu.o 16obj-y += dram.o 17ifndef CONFIG_SPL_BUILD 18obj-$(CONFIG_SYS_MVEBU_DDR_A38X) += ../../../drivers/ddr/marvell/a38x/xor.o 19obj-$(CONFIG_SYS_MVEBU_DDR_AXP) += ../../../drivers/ddr/marvell/axp/xor.o 20endif 21obj-y += gpio.o 22obj-y += mbus.o 23obj-y += timer.o 24obj-$(CONFIG_SPL_BUILD) += spl.o 25obj-$(CONFIG_SPL_BUILD) += lowlevel_spl.o 26 27obj-$(CONFIG_SYS_MVEBU_DDR_A38X) += serdes/a38x/ 28obj-$(CONFIG_SYS_MVEBU_DDR_AXP) += serdes/axp/ 29 30endif 31