2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2008-01-30 21:15:54 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2008
|
2008-05-08 20:52:09 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
2008-01-30 21:15:54 +00:00
|
|
|
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-$(CONFIG_AT91SAM9260) += at91sam9260_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9G20) += at91sam9260_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9XE) += at91sam9260_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9261) += at91sam9261_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9G10) += at91sam9261_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9263) += at91sam9263_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9RL) += at91sam9rl_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9M10G45) += at91sam9m10g45_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9G45) += at91sam9m10g45_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9N12) += at91sam9n12_devices.o
|
|
|
|
obj-$(CONFIG_AT91SAM9X5) += at91sam9x5_devices.o
|
2019-09-27 13:08:40 +00:00
|
|
|
obj-$(CONFIG_SAM9X60) += sam9x60_devices.o
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-$(CONFIG_AT91_EFLASH) += eflash.o
|
|
|
|
obj-$(CONFIG_AT91_LED) += led.o
|
|
|
|
obj-y += clock.o
|
|
|
|
obj-y += cpu.o
|
|
|
|
obj-y += reset.o
|
2017-08-15 09:40:26 +00:00
|
|
|
ifeq ($(CONFIG_ATMEL_PIT_TIMER),)
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-y += timer.o
|
2017-08-15 09:40:26 +00:00
|
|
|
endif
|
2008-01-30 21:15:54 +00:00
|
|
|
|
2009-06-13 10:50:04 +00:00
|
|
|
ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
2019-04-02 08:57:15 +00:00
|
|
|
ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-y += lowlevel_init.o
|
2009-06-13 10:50:04 +00:00
|
|
|
endif
|
2019-04-02 08:57:15 +00:00
|
|
|
endif
|
2017-03-18 13:01:44 +00:00
|
|
|
|
|
|
|
ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
|
|
|
|
ifndef CONFIG_HAS_THUMB2
|
|
|
|
|
|
|
|
CFLAGS_cache.o := -marm
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|