mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
b7e0750d88
Move arm twd timer driver from zynq to generic location. DM timer drivers are designed differently to original driver. Timer is counting up and not down. Information about clock rates are find out in timer_pre_probe() that's why there is no need to get any additional information from DT in the driver itself (only register offset). Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20220805061629.1207-1-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
15 lines
380 B
Makefile
15 lines
380 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2008
|
|
# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
|
|
|
|
obj-y += cpu.o
|
|
obj-y += ddrc.o
|
|
obj-y += slcr.o
|
|
obj-y += clk.o
|
|
obj-y += lowlevel_init.o
|
|
AFLAGS_lowlevel_init.o := -mfpu=neon
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o ps7_spl_init.o
|