1 # SPDX-License-Identifier: GPL-2.0+ 2 # 3 # Copyright (C) 2018, STMicroelectronics - All Rights Reserved 4 # 5 6 obj-y += cpu.o 7 obj-y += dram_init.o 8 obj-y += syscon.o 9 10 ifdef CONFIG_SPL_BUILD 11 obj-y += spl.o 12 else 13 obj-y += bsec.o 14 endif 15 obj-$(CONFIG_ARMV7_PSCI) += psci.o 16 obj-$(CONFIG_$(SPL_)DM_REGULATOR) += pwr_regulator.o 17