mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Half of this driver is a DM-based timer driver, and half is RISC-V-specific IPI code. Move the timer portions in with the other timer drivers. The KConfig is not moved, since it also enables IPIs. It could also be split into two configs, but no boards use the timer but not the IPI atm, so I haven't split it. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Rick Chen <rick@andestech.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
#
 | 
						|
# Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
 | 
						|
 | 
						|
obj-y += timer-uclass.o
 | 
						|
obj-$(CONFIG_AG101P_TIMER) += ag101p_timer.o
 | 
						|
obj-$(CONFIG_ALTERA_TIMER)	+= altera_timer.o
 | 
						|
obj-$(CONFIG_ANDES_PLMT_TIMER) += andes_plmt_timer.o
 | 
						|
obj-$(CONFIG_ARC_TIMER)	+= arc_timer.o
 | 
						|
obj-$(CONFIG_AST_TIMER)	+= ast_timer.o
 | 
						|
obj-$(CONFIG_ATCPIT100_TIMER) += atcpit100_timer.o
 | 
						|
obj-$(CONFIG_ATMEL_PIT_TIMER) += atmel_pit_timer.o
 | 
						|
obj-$(CONFIG_CADENCE_TTC_TIMER)	+= cadence-ttc.o
 | 
						|
obj-$(CONFIG_DESIGNWARE_APB_TIMER)	+= dw-apb-timer.o
 | 
						|
obj-$(CONFIG_MPC83XX_TIMER) += mpc83xx_timer.o
 | 
						|
obj-$(CONFIG_NOMADIK_MTU_TIMER)	+= nomadik-mtu-timer.o
 | 
						|
obj-$(CONFIG_OMAP_TIMER)	+= omap-timer.o
 | 
						|
obj-$(CONFIG_RENESAS_OSTM_TIMER) += ostm_timer.o
 | 
						|
obj-$(CONFIG_RISCV_TIMER) += riscv_timer.o
 | 
						|
obj-$(CONFIG_ROCKCHIP_TIMER) += rockchip_timer.o
 | 
						|
obj-$(CONFIG_SANDBOX_TIMER)	+= sandbox_timer.o
 | 
						|
obj-$(CONFIG_SIFIVE_CLINT) += sifive_clint_timer.o
 | 
						|
obj-$(CONFIG_STI_TIMER)		+= sti-timer.o
 | 
						|
obj-$(CONFIG_STM32_TIMER)	+= stm32_timer.o
 | 
						|
obj-$(CONFIG_X86_TSC_TIMER)	+= tsc_timer.o
 | 
						|
obj-$(CONFIG_MTK_TIMER)		+= mtk_timer.o
 | 
						|
obj-$(CONFIG_MCHP_PIT64B_TIMER)	+= mchp-pit64b-timer.o
 |