1 # SPDX-License-Identifier: GPL-2.0+ 2 # 3 # (C) Copyright 2000-2003 4 # Wolfgang Denk, DENX Software Engineering, wd (at] denx.de. 5 6 extra-y := start.o 7 8 obj-y += cache_v7.o cache_v7_asm.o 9 10 obj-y += cpu.o cp15.o 11 obj-y += syslib.o 12 13 obj-$(CONFIG_SYS_ARM_MPU) += mpu_v7r.o 14 15 ifneq ($(CONFIG_SPL_BUILD),y) 16 obj-$(CONFIG_EFI_LOADER) += sctlr.o 17 endif 18 19 ifneq ($(CONFIG_SKIP_LOWLEVEL_INIT),y) 20 obj-y += lowlevel_init.o 21 endif 22 23 obj-$(CONFIG_ARM_SMCCC) += smccc-call.o 24 obj-$(CONFIG_ARMV7_NONSEC) += nonsec_virt.o virt-v7.o virt-dt.o 25 obj-$(CONFIG_ARMV7_PSCI) += psci.o psci-common.o 26 27 obj-$(CONFIG_IPROC) += iproc-common/ 28 obj-$(CONFIG_KONA) += kona-common/ 29 obj-$(CONFIG_SYS_ARCH_TIMER) += arch_timer.o 30 31 ifneq (,$(filter s5pc1xx exynos,$(SOC))) 32 obj-y += s5p-common/ 33 endif 34 35 obj-$(if $(filter bcm235xx,$(SOC)),y) += bcm235xx/ 36 obj-$(if $(filter bcm281xx,$(SOC)),y) += bcm281xx/ 37 obj-$(if $(filter bcmcygnus,$(SOC)),y) += bcmcygnus/ 38 obj-$(if $(filter bcmnsp,$(SOC)),y) += bcmnsp/ 39 obj-$(if $(filter ls102xa,$(SOC)),y) += ls102xa/ 40 obj-$(CONFIG_RMOBILE) += rmobile/ 41 obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/ 42 obj-$(CONFIG_ARCH_SUNXI) += sunxi/ 43 obj-$(CONFIG_VF610) += vf610/ 44