Home
last modified time | relevance | path

Searched refs:load_val (Results 1 – 3 of 3) sorted by relevance

/arch/microblaze/kernel/
Dtimer.c67 static inline void microblaze_timer0_start_periodic(unsigned long load_val) in microblaze_timer0_start_periodic() argument
69 if (!load_val) in microblaze_timer0_start_periodic()
70 load_val = 1; in microblaze_timer0_start_periodic()
71 out_be32(TIMER_BASE + TLR0, load_val); /* loading value to timer reg */ in microblaze_timer0_start_periodic()
93 static inline void microblaze_timer0_start_oneshot(unsigned long load_val) in microblaze_timer0_start_oneshot() argument
95 if (!load_val) in microblaze_timer0_start_oneshot()
96 load_val = 1; in microblaze_timer0_start_oneshot()
97 out_be32(TIMER_BASE + TLR0, load_val); /* loading value to timer reg */ in microblaze_timer0_start_oneshot()
/arch/arm/mach-omap1/
Dtimer32k.c99 static inline void omap_32k_timer_start(unsigned long load_val) in omap_32k_timer_start() argument
101 if (!load_val) in omap_32k_timer_start()
102 load_val = 1; in omap_32k_timer_start()
103 omap_32k_timer_write(load_val, OMAP1_32K_TIMER_TVR); in omap_32k_timer_start()
Dtime.c93 static inline void omap_mpu_timer_start(int nr, unsigned long load_val, in omap_mpu_timer_start() argument
104 writel(load_val, &timer->load_tim); in omap_mpu_timer_start()