Paolo Bonzini | 49ab747 | 2013-03-01 13:59:19 +0100 | [diff] [blame] | 1 | common-obj-$(CONFIG_ARM_TIMER) += arm_timer.o |
Andreas Färber | de6db41 | 2013-06-16 17:10:28 +0200 | [diff] [blame] | 2 | common-obj-$(CONFIG_ARM_MPTIMER) += arm_mptimer.o |
Peter Maydell | ff68dac | 2017-02-20 15:36:03 +0000 | [diff] [blame] | 3 | common-obj-$(CONFIG_ARM_V7M) += armv7m_systick.o |
Peter Crosthwaite | c21c3b5 | 2013-12-10 13:24:51 +0000 | [diff] [blame] | 4 | common-obj-$(CONFIG_A9_GTIMER) += a9gtimer.o |
Paolo Bonzini | 49ab747 | 2013-03-01 13:59:19 +0100 | [diff] [blame] | 5 | common-obj-$(CONFIG_CADENCE) += cadence_ttc.o |
| 6 | common-obj-$(CONFIG_DS1338) += ds1338.o |
| 7 | common-obj-$(CONFIG_HPET) += hpet.o |
| 8 | common-obj-$(CONFIG_I8254) += i8254_common.o i8254.o |
BALATON Zoltan | c6f2594 | 2018-06-29 00:38:33 +0200 | [diff] [blame] | 9 | common-obj-$(CONFIG_M41T80) += m41t80.o |
Paolo Bonzini | 49ab747 | 2013-03-01 13:59:19 +0100 | [diff] [blame] | 10 | common-obj-$(CONFIG_M48T59) += m48t59.o |
David Gibson | c124c4d | 2016-11-08 17:00:35 +1100 | [diff] [blame] | 11 | ifeq ($(CONFIG_ISA_BUS),y) |
| 12 | common-obj-$(CONFIG_M48T59) += m48t59-isa.o |
| 13 | endif |
Paolo Bonzini | 49ab747 | 2013-03-01 13:59:19 +0100 | [diff] [blame] | 14 | common-obj-$(CONFIG_PL031) += pl031.o |
| 15 | common-obj-$(CONFIG_PUV3) += puv3_ost.o |
| 16 | common-obj-$(CONFIG_TWL92230) += twl92230.o |
| 17 | common-obj-$(CONFIG_XILINX) += xilinx_timer.o |
Paolo Bonzini | 3bd8845 | 2013-02-05 14:38:25 +0100 | [diff] [blame] | 18 | common-obj-$(CONFIG_SLAVIO) += slavio_timer.o |
| 19 | common-obj-$(CONFIG_ETRAXFS) += etraxfs_timer.o |
| 20 | common-obj-$(CONFIG_GRLIB) += grlib_gptimer.o |
Jean-Christophe DUBOIS | a50c0d6 | 2013-06-03 17:17:45 +0100 | [diff] [blame] | 21 | common-obj-$(CONFIG_IMX) += imx_epit.o |
| 22 | common-obj-$(CONFIG_IMX) += imx_gpt.o |
Paolo Bonzini | 3bd8845 | 2013-02-05 14:38:25 +0100 | [diff] [blame] | 23 | common-obj-$(CONFIG_LM32) += lm32_timer.o |
| 24 | common-obj-$(CONFIG_MILKYMIST) += milkymist-sysctl.o |
Alistair Francis | 07664ca | 2018-03-02 10:45:34 +0000 | [diff] [blame] | 25 | common-obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-zynqmp-rtc.o |
Paolo Bonzini | 0ddfaf7 | 2013-02-05 12:30:44 +0100 | [diff] [blame] | 26 | |
Chris Wulff | a32a225 | 2017-01-18 23:01:44 +0100 | [diff] [blame] | 27 | obj-$(CONFIG_ALTERA_TIMER) += altera_timer.o |
Paolo Bonzini | 3bd8845 | 2013-02-05 14:38:25 +0100 | [diff] [blame] | 28 | obj-$(CONFIG_EXYNOS4) += exynos4210_mct.o |
| 29 | obj-$(CONFIG_EXYNOS4) += exynos4210_pwm.o |
| 30 | obj-$(CONFIG_EXYNOS4) += exynos4210_rtc.o |
| 31 | obj-$(CONFIG_OMAP) += omap_gptimer.o |
| 32 | obj-$(CONFIG_OMAP) += omap_synctimer.o |
| 33 | obj-$(CONFIG_PXA2XX) += pxa2xx_timer.o |
| 34 | obj-$(CONFIG_SH4) += sh_timer.o |
Antony Pavlov | 576e99c | 2013-12-17 19:42:36 +0000 | [diff] [blame] | 35 | obj-$(CONFIG_DIGIC) += digic-timer.o |
Yongbok Kim | 4051405 | 2016-03-28 19:35:50 -0700 | [diff] [blame] | 36 | obj-$(CONFIG_MIPS_CPS) += mips_gictimer.o |
Paolo Bonzini | 3bd8845 | 2013-02-05 14:38:25 +0100 | [diff] [blame] | 37 | |
Paolo Bonzini | 0ddfaf7 | 2013-02-05 12:30:44 +0100 | [diff] [blame] | 38 | obj-$(CONFIG_MC146818RTC) += mc146818rtc.o |
liguang | 3589de8 | 2013-12-17 19:42:37 +0000 | [diff] [blame] | 39 | |
| 40 | obj-$(CONFIG_ALLWINNER_A10_PIT) += allwinner-a10-pit.o |
Alistair Francis | be28470 | 2015-03-11 13:21:05 +0000 | [diff] [blame] | 41 | |
| 42 | common-obj-$(CONFIG_STM32F2XX_TIMER) += stm32f2xx_timer.o |
Andrew Jeffery | c04bd47 | 2016-03-16 17:06:00 +0000 | [diff] [blame] | 43 | common-obj-$(CONFIG_ASPEED_SOC) += aspeed_timer.o |
Artyom Tarasenko | a0e8930 | 2016-03-02 15:26:08 +0100 | [diff] [blame] | 44 | |
| 45 | common-obj-$(CONFIG_SUN4V_RTC) += sun4v-rtc.o |
Peter Maydell | 5dd85b4 | 2017-07-17 13:36:08 +0100 | [diff] [blame] | 46 | common-obj-$(CONFIG_CMSDK_APB_TIMER) += cmsdk-apb-timer.o |
Peter Maydell | 4f4c620 | 2018-08-24 13:17:41 +0100 | [diff] [blame] | 47 | common-obj-$(CONFIG_CMSDK_APB_DUALTIMER) += cmsdk-apb-dualtimer.o |
Subbaraya Sundeep | 96401ba | 2017-09-20 17:17:33 -0300 | [diff] [blame] | 48 | common-obj-$(CONFIG_MSF2) += mss-timer.o |