2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2008-12-14 08:47:13 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
extra-y := start.o
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2016-04-09 11:53:48 +00:00
|
|
|
obj-y += cache_v7.o cache_v7_asm.o
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2015-03-09 22:11:59 +00:00
|
|
|
obj-y += cpu.o cp15.o
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += syslib.o
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2018-04-26 12:51:30 +00:00
|
|
|
obj-$(CONFIG_SYS_ARM_MPU) += mpu_v7r.o
|
|
|
|
|
2018-04-03 19:59:33 +00:00
|
|
|
ifneq ($(CONFIG_SPL_BUILD),y)
|
|
|
|
obj-$(CONFIG_EFI_LOADER) += sctlr.o
|
2019-01-08 17:13:06 +00:00
|
|
|
obj-$(CONFIG_ARMV7_NONSEC) += exception_level.o
|
2018-04-03 19:59:33 +00:00
|
|
|
endif
|
|
|
|
|
2013-10-17 11:38:55 +00:00
|
|
|
ifneq ($(CONFIG_SKIP_LOWLEVEL_INIT),y)
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += lowlevel_init.o
|
2012-08-09 00:03:10 +00:00
|
|
|
endif
|
|
|
|
|
2017-04-14 02:10:23 +00:00
|
|
|
obj-$(CONFIG_ARM_SMCCC) += smccc-call.o
|
2016-06-21 12:30:09 +00:00
|
|
|
obj-$(CONFIG_ARMV7_NONSEC) += nonsec_virt.o virt-v7.o virt-dt.o
|
2016-07-05 13:45:07 +00:00
|
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci.o psci-common.o
|
2014-07-12 13:24:04 +00:00
|
|
|
|
2014-08-11 20:58:22 +00:00
|
|
|
obj-$(CONFIG_IPROC) += iproc-common/
|
2014-02-11 19:06:33 +00:00
|
|
|
obj-$(CONFIG_KONA) += kona-common/
|
2014-04-04 17:16:49 +00:00
|
|
|
obj-$(CONFIG_SYS_ARCH_TIMER) += arch_timer.o
|
2013-10-17 11:38:56 +00:00
|
|
|
|
|
|
|
ifneq (,$(filter s5pc1xx exynos,$(SOC)))
|
|
|
|
obj-y += s5p-common/
|
|
|
|
endif
|
2014-11-13 03:28:40 +00:00
|
|
|
|
2016-06-02 22:10:56 +00:00
|
|
|
obj-$(if $(filter bcm235xx,$(SOC)),y) += bcm235xx/
|
2014-11-13 03:28:42 +00:00
|
|
|
obj-$(if $(filter bcm281xx,$(SOC)),y) += bcm281xx/
|
|
|
|
obj-$(if $(filter bcmcygnus,$(SOC)),y) += bcmcygnus/
|
|
|
|
obj-$(if $(filter bcmnsp,$(SOC)),y) += bcmnsp/
|
|
|
|
obj-$(if $(filter ls102xa,$(SOC)),y) += ls102xa/
|
|
|
|
obj-$(CONFIG_RMOBILE) += rmobile/
|
2014-11-18 18:42:22 +00:00
|
|
|
obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/
|
2014-11-13 03:28:42 +00:00
|
|
|
obj-$(CONFIG_ARCH_SUNXI) += sunxi/
|
|
|
|
obj-$(CONFIG_VF610) += vf610/
|