2010-06-08 13:07:46 -07: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+
|
2010-06-08 13:07:46 -07:00
|
|
|
#
|
|
|
|
|
2013-10-17 17:34:48 +09:00
|
|
|
obj-y := reset.o
|
|
|
|
obj-y += timer.o
|
|
|
|
obj-y += utils.o
|
2010-06-08 13:07:46 -07:00
|
|
|
|
2011-11-15 09:49:58 -05:00
|
|
|
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
2013-10-17 17:34:48 +09: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 16:56:39 +02:00
|
|
|
ifneq ($(CONFIG_OMAP54XX),)
|
2013-12-10 14:31:56 +01:00
|
|
|
obj-y += pipe3-phy.o
|
2013-11-11 16:56:41 +02:00
|
|
|
obj-$(CONFIG_SCSI_AHCI_PLAT) += sata.o
|
2013-11-11 16:56:39 +02:00
|
|
|
endif
|
|
|
|
|
2014-06-02 22:04:48 -06:00
|
|
|
ifeq ($(CONFIG_SYS_DCACHE_OFF),)
|
|
|
|
obj-y += omap-cache.o
|
|
|
|
endif
|
|
|
|
|
2013-07-30 11:36:30 +05:30
|
|
|
ifeq ($(CONFIG_OMAP34XX),)
|
2013-10-17 17:34:48 +09:00
|
|
|
obj-y += boot-common.o
|
|
|
|
obj-y += lowlevel_init.o
|
2011-11-15 09:49:50 -05:00
|
|
|
endif
|
|
|
|
|
2013-10-17 17:34:48 +09:00
|
|
|
obj-y += mem-common.o
|