blob: f306b172f09ee0463509a703558a27ab8b9bea4e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Stelian Popd1aea1c2008-01-30 21:15:54 +00002#
3# (C) Copyright 2000-2008
Stelian Pop50497522008-05-08 22:52:09 +02004# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Stelian Popd1aea1c2008-01-30 21:15:54 +00005
Masahiro Yamada65aac042013-10-17 17:34:49 +09006obj-$(CONFIG_AT91SAM9260) += at91sam9260_devices.o
7obj-$(CONFIG_AT91SAM9G20) += at91sam9260_devices.o
8obj-$(CONFIG_AT91SAM9XE) += at91sam9260_devices.o
9obj-$(CONFIG_AT91SAM9261) += at91sam9261_devices.o
10obj-$(CONFIG_AT91SAM9G10) += at91sam9261_devices.o
11obj-$(CONFIG_AT91SAM9263) += at91sam9263_devices.o
12obj-$(CONFIG_AT91SAM9RL) += at91sam9rl_devices.o
13obj-$(CONFIG_AT91SAM9M10G45) += at91sam9m10g45_devices.o
14obj-$(CONFIG_AT91SAM9G45) += at91sam9m10g45_devices.o
15obj-$(CONFIG_AT91SAM9N12) += at91sam9n12_devices.o
16obj-$(CONFIG_AT91SAM9X5) += at91sam9x5_devices.o
Sandeep Sheriker Mallikarjun32f4d7c2019-09-27 13:08:40 +000017obj-$(CONFIG_SAM9X60) += sam9x60_devices.o
Masahiro Yamada65aac042013-10-17 17:34:49 +090018obj-$(CONFIG_AT91_EFLASH) += eflash.o
Masahiro Yamada65aac042013-10-17 17:34:49 +090019obj-y += clock.o
20obj-y += cpu.o
21obj-y += reset.o
Hari Prasatha2651712021-12-13 10:30:03 +053022ifneq ($(CONFIG_ATMEL_PIT_TIMER),y)
23ifneq ($(CONFIG_MCHP_PIT64B_TIMER),y)
24# old non-DM timer driver
25obj-y += timer.o
26endif
Wenyou.Yang@microchip.comce8a36f2017-08-15 17:40:26 +080027endif
Stelian Popd1aea1c2008-01-30 21:15:54 +000028
Jean-Christophe PLAGNIOL-VILLARDe32eb4c2009-06-13 12:50:04 +020029ifndef CONFIG_SKIP_LOWLEVEL_INIT
Stefan Roese05dede52019-04-02 10:57:15 +020030ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Masahiro Yamada65aac042013-10-17 17:34:49 +090031obj-y += lowlevel_init.o
Jean-Christophe PLAGNIOL-VILLARDe32eb4c2009-06-13 12:50:04 +020032endif
Stefan Roese05dede52019-04-02 10:57:15 +020033endif
Tom Rini1c640a62017-03-18 09:01:44 -040034
35ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
36ifndef CONFIG_HAS_THUMB2
37
38CFLAGS_cache.o := -marm
39
40endif
41endif