2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2013-05-12 22:40:54 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2008
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# (C) Copyright 2013
|
|
|
|
# Bo Shen <voice.shen@atmel.com>
|
|
|
|
|
2020-11-11 11:15:08 +00:00
|
|
|
obj-$(CONFIG_SAMA5D2) += sama5d2_devices.o clock.o
|
|
|
|
obj-$(CONFIG_SAMA5D3) += sama5d3_devices.o clock.o
|
|
|
|
obj-$(CONFIG_SAMA5D4) += sama5d4_devices.o clock.o
|
2020-08-27 08:51:52 +00:00
|
|
|
obj-$(CONFIG_SAMA7G5) += sama7g5_devices.o
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += cpu.o
|
|
|
|
obj-y += reset.o
|
2020-11-11 16:46:03 +00:00
|
|
|
ifneq ($(CONFIG_ATMEL_PIT_TIMER),y)
|
|
|
|
ifneq ($(CONFIG_MCHP_PIT64B_TIMER),y)
|
|
|
|
# old non-DM timer driver
|
2013-10-17 08:34:48 +00:00
|
|
|
obj-y += timer.o
|
2017-08-15 09:40:26 +00:00
|
|
|
endif
|
2020-11-11 16:46:03 +00:00
|
|
|
endif
|