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
|
|
|
|
obj-y += timer.o
|
|
|
|
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),)
|
|
|
|
COBJS += 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
|
|
|
|
|
2013-07-30 06:06:30 +00:00
|
|
|
ifeq ($(CONFIG_OMAP34XX),)
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += boot-common.o
|
|
|
|
obj-y += lowlevel_init.o
|
2011-11-15 14:49:50 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
2011-11-15 14:49:58 +00:00
|
|
|
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += mem-common.o
|
2011-11-15 14:49:50 +00:00
|
|
|
endif
|
|
|
|
endif
|