2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2010-06-08 20:07:46 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
2016-11-08 02:34:54 +00:00
|
|
|
obj-$(if $(filter am33xx,$(SOC)),y) += am33xx/
|
|
|
|
obj-$(CONFIG_OMAP34XX) += omap3/
|
|
|
|
obj-$(CONFIG_OMAP44XX) += omap4/
|
|
|
|
obj-$(CONFIG_OMAP54XX) += omap5/
|
|
|
|
|
|
|
|
obj-y += reset.o
|
2015-12-24 10:38:04 +00:00
|
|
|
ifeq ($(CONFIG_TIMER),)
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += timer.o
|
2015-12-24 10:38:04 +00:00
|
|
|
else
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
obj-y += timer.o
|
|
|
|
endif
|
|
|
|
endif
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += utils.o
|
2010-06-08 20:07:46 +00:00
|
|
|
|
2017-06-02 15:00:00 +00:00
|
|
|
obj-y += sysinfo-common.o
|
2011-11-15 14:49:58 +00:00
|
|
|
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += hwinit-common.o
|
|
|
|
obj-y += clocks-common.o
|
|
|
|
obj-y += emif-common.o
|
|
|
|
obj-y += vc.o
|
|
|
|
obj-y += abb.o
|
2012-01-09 20:38:59 +00:00
|
|
|
endif
|
|
|
|
|
2013-11-11 14:56:39 +00:00
|
|
|
ifneq ($(CONFIG_OMAP54XX),)
|
2017-04-07 11:42:01 +00:00
|
|
|
ifeq ($(CONFIG_DM_SCSI),)
|
2013-12-10 13:31:56 +00:00
|
|
|
obj-y += pipe3-phy.o
|
2013-11-11 14:56:41 +00:00
|
|
|
obj-$(CONFIG_SCSI_AHCI_PLAT) += sata.o
|
2013-11-11 14:56:39 +00:00
|
|
|
endif
|
2017-04-07 11:42:01 +00:00
|
|
|
endif
|
2013-11-11 14:56:39 +00:00
|
|
|
|
2019-05-03 13:41:00 +00:00
|
|
|
ifeq ($(CONFIG_$(SPL_TPL_)SYS_DCACHE_OFF),)
|
2014-06-03 04:04:48 +00:00
|
|
|
obj-y += omap-cache.o
|
|
|
|
endif
|
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += boot-common.o
|
2015-03-09 22:12:05 +00:00
|
|
|
obj-y += lowlevel_init.o
|
2011-11-15 14:49:50 +00:00
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += mem-common.o
|
2016-06-27 14:19:18 +00:00
|
|
|
|
2017-07-10 19:45:50 +00:00
|
|
|
obj-y += fdt-common.o
|
|
|
|
|
2016-06-27 14:19:18 +00:00
|
|
|
obj-$(CONFIG_TI_SECURE_DEVICE) += sec-common.o
|