blob: f5b26659578dd2e857c6915225fea43220b4bae5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bo Shen3225f342013-05-12 22:40:54 +00002#
3# (C) Copyright 2000-2008
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5#
6# (C) Copyright 2013
7# Bo Shen <voice.shen@atmel.com>
Bo Shen3225f342013-05-12 22:40:54 +00008
Nicolas Ferre62495e22020-11-11 13:15:08 +02009obj-$(CONFIG_SAMA5D2) += sama5d2_devices.o clock.o
10obj-$(CONFIG_SAMA5D3) += sama5d3_devices.o clock.o
11obj-$(CONFIG_SAMA5D4) += sama5d4_devices.o clock.o
Eugen Hristev558378a2020-08-27 11:51:52 +030012obj-$(CONFIG_SAMA7G5) += sama7g5_devices.o
Masahiro Yamada4e1aa842013-10-17 17:34:48 +090013obj-y += cpu.o
14obj-y += reset.o
Eugen Hristev6c5f79d2020-11-11 18:46:03 +020015ifneq ($(CONFIG_ATMEL_PIT_TIMER),y)
16ifneq ($(CONFIG_MCHP_PIT64B_TIMER),y)
17# old non-DM timer driver
Masahiro Yamada4e1aa842013-10-17 17:34:48 +090018obj-y += timer.o
Wenyou.Yang@microchip.com47edaea2017-08-15 17:40:26 +080019endif
Eugen Hristev6c5f79d2020-11-11 18:46:03 +020020endif