2010-06-08 20:07:46 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2010-06-08 20:07:46 +00:00
|
|
|
#
|
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
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
|
|
|
|
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),)
|
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
|
|
|
|
|
2014-06-03 04:04:48 +00:00
|
|
|
ifeq ($(CONFIG_SYS_DCACHE_OFF),)
|
|
|
|
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
|
|
|
|
|
|
|
obj-$(CONFIG_TI_SECURE_DEVICE) += sec-common.o
|