2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2008-12-14 08:47:13 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
2017-03-06 01:16:52 +00:00
|
|
|
# If clock.c is compiled for Thumb2, then it fails on OMAP3530
|
|
|
|
CFLAGS_clock.o += -marm
|
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y := lowlevel_init.o
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += board.o
|
2015-07-15 14:02:24 +00:00
|
|
|
obj-y += boot.o
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += clock.o
|
|
|
|
obj-y += sys_info.o
|
2017-06-02 15:00:00 +00:00
|
|
|
obj-y += prcm-regs.o
|
|
|
|
obj-y += hw_data.o
|
2011-11-18 12:48:07 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-$(CONFIG_SPL_OMAP3_ID_NAND) += spl_id_nand.o
|
2011-11-18 12:48:07 +00:00
|
|
|
endif
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-$(CONFIG_DRIVER_TI_EMAC) += emac.o
|
|
|
|
obj-$(CONFIG_EMIF4) += emif4.o
|
|
|
|
obj-$(CONFIG_SDRC) += sdrc.o
|
|
|
|
obj-$(CONFIG_USB_MUSB_AM35X) += am35x_musb.o
|