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