mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
a36d86720f
Move axi timer driver from Microblaze to generic location. Origin implementation was irq based with counting down timer. CONFIG_TIMER drivers are designed differently that timer is free running up timer with automatic reload without any interrupt. 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: Michal Simek <michal.simek@amd.com> Tested-by: Ovidiu Panait <ovidiu.panait@windriver.com> Link: https://lore.kernel.org/r/6c12fc86bbc1f17d05c25018862e7b7b03346b36.1654684731.git.michal.simek@amd.com
11 lines
324 B
Makefile
11 lines
324 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
extra-y = start.o
|
|
obj-y = irq.o
|
|
obj-y += interrupts.o cache.o exception.o cpuinfo.o
|
|
obj-$(CONFIG_STATIC_RELA) += relocate.o
|
|
obj-$(CONFIG_XILINX_MICROBLAZE0_PVR) += pvr.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|