Home
last modified time | relevance | path

Searched refs:ced (Results 1 – 13 of 13) sorted by relevance

/linux/drivers/clocksource/
H A Djcore-pit.c33 struct clock_event_device ced; member
76 static int jcore_pit_set_state_shutdown(struct clock_event_device *ced) in jcore_pit_set_state_shutdown() argument
78 struct jcore_pit *pit = container_of(ced, struct jcore_pit, ced); in jcore_pit_set_state_shutdown()
83 static int jcore_pit_set_state_oneshot(struct clock_event_device *ced) in jcore_pit_set_state_oneshot() argument
85 struct jcore_pit *pit = container_of(ced, struct jcore_pit, ced); in jcore_pit_set_state_oneshot()
90 static int jcore_pit_set_state_periodic(struct clock_event_device *ced) in jcore_pit_set_state_periodic() argument
92 struct jcore_pit *pit = container_of(ced, struct jcore_pit, ced); in jcore_pit_set_state_periodic()
98 struct clock_event_device *ced) in jcore_pit_set_next_event() argument
100 struct jcore_pit *pit = container_of(ced, struct jcore_pit, ced); in jcore_pit_set_next_event()
116 clockevents_config_and_register(&pit->ced, freq, 1, ULONG_MAX); in jcore_pit_local_init()
[all …]
H A Drenesas-ostm.c86 struct clock_event_device *ced) in ostm_clock_event_next() argument
88 struct timer_of *to = to_timer_of(ced); in ostm_clock_event_next()
99 static int ostm_shutdown(struct clock_event_device *ced) in ostm_shutdown() argument
101 struct timer_of *to = to_timer_of(ced); in ostm_shutdown()
107 static int ostm_set_periodic(struct clock_event_device *ced) in ostm_set_periodic() argument
109 struct timer_of *to = to_timer_of(ced); in ostm_set_periodic()
111 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced)) in ostm_set_periodic()
121 static int ostm_set_oneshot(struct clock_event_device *ced) in ostm_set_oneshot() argument
123 struct timer_of *to = to_timer_of(ced); in ostm_set_oneshot()
132 struct clock_event_device *ced = dev_id; in ostm_timer_interrupt() local
[all …]
H A Dtimer-imx-gpt.c74 struct clock_event_device ced; member
86 struct clock_event_device *ced);
89 static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced) in to_imx_timer() argument
91 return container_of(ced, struct imx_timer, ced); in to_imx_timer()
173 struct clock_event_device *ced) in mx1_2_set_next_event() argument
175 struct imx_timer *imxtm = to_imx_timer(ced); in mx1_2_set_next_event()
187 struct clock_event_device *ced) in v2_set_next_event() argument
189 struct imx_timer *imxtm = to_imx_timer(ced); in v2_set_next_event()
201 static int mxc_shutdown(struct clock_event_device *ced) in mxc_shutdown() argument
203 struct imx_timer *imxtm = to_imx_timer(ced); in mxc_shutdown()
[all …]
H A Dsh_tmu.c46 struct clock_event_device ced; member
238 if (clockevent_state_oneshot(&ch->ced)) in sh_tmu_interrupt()
244 ch->ced.event_handler(&ch->ced); in sh_tmu_interrupt()
334 static struct sh_tmu_channel *ced_to_sh_tmu(struct clock_event_device *ced) in ced_to_sh_tmu() argument
336 return container_of(ced, struct sh_tmu_channel, ced); in ced_to_sh_tmu()
349 static int sh_tmu_clock_event_shutdown(struct clock_event_device *ced) in sh_tmu_clock_event_shutdown() argument
351 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced); in sh_tmu_clock_event_shutdown()
353 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced)) in sh_tmu_clock_event_shutdown()
358 static int sh_tmu_clock_event_set_state(struct clock_event_device *ced, in sh_tmu_clock_event_set_state() argument
361 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced); in sh_tmu_clock_event_set_state()
[all …]
H A Dsh_mtu2.c38 struct clock_event_device ced; member
266 ch->ced.event_handler(&ch->ced); in sh_mtu2_interrupt()
270 static struct sh_mtu2_channel *ced_to_sh_mtu2(struct clock_event_device *ced) in ced_to_sh_mtu2() argument
272 return container_of(ced, struct sh_mtu2_channel, ced); in ced_to_sh_mtu2()
275 static int sh_mtu2_clock_event_shutdown(struct clock_event_device *ced) in sh_mtu2_clock_event_shutdown() argument
277 struct sh_mtu2_channel *ch = ced_to_sh_mtu2(ced); in sh_mtu2_clock_event_shutdown()
279 if (clockevent_state_periodic(ced)) in sh_mtu2_clock_event_shutdown()
285 static int sh_mtu2_clock_event_set_periodic(struct clock_event_device *ced) in sh_mtu2_clock_event_set_periodic() argument
287 struct sh_mtu2_channel *ch = ced_to_sh_mtu2(ced); in sh_mtu2_clock_event_set_periodic()
289 if (clockevent_state_periodic(ced)) in sh_mtu2_clock_event_set_periodic()
[all …]
H A Dem_sti.c32 struct clock_event_device ced; member
144 p->ced.event_handler(&p->ced); in em_sti_interrupt()
228 static struct em_sti_priv *ced_to_em_sti(struct clock_event_device *ced) in ced_to_em_sti() argument
230 return container_of(ced, struct em_sti_priv, ced); in ced_to_em_sti()
233 static int em_sti_clock_event_shutdown(struct clock_event_device *ced) in em_sti_clock_event_shutdown() argument
235 struct em_sti_priv *p = ced_to_em_sti(ced); in em_sti_clock_event_shutdown()
240 static int em_sti_clock_event_set_oneshot(struct clock_event_device *ced) in em_sti_clock_event_set_oneshot() argument
242 struct em_sti_priv *p = ced_to_em_sti(ced); in em_sti_clock_event_set_oneshot()
250 struct clock_event_device *ced) in em_sti_clock_event_next() argument
252 struct em_sti_priv *p = ced_to_em_sti(ced); in em_sti_clock_event_next()
[all …]
H A Dnumachip.c30 static int numachip2_set_next_event(unsigned long delta, struct clock_event_device *ced) in numachip2_set_next_event() argument
52 struct clock_event_device *ced = this_cpu_ptr(&numachip2_ced); in numachip_timer_interrupt() local
54 ced->event_handler(ced); in numachip_timer_interrupt()
60 struct clock_event_device *ced = this_cpu_ptr(&numachip2_ced); in numachip_timer_each() local
67 *ced = numachip2_clockevent; in numachip_timer_each()
68 ced->cpumask = cpumask_of(smp_processor_id()); in numachip_timer_each()
69 clockevents_register_device(ced); in numachip_timer_each()
H A Dtimer-goldfish.c14 struct clock_event_device ced; member
19 static struct goldfish_timer *ced_to_gf(struct clock_event_device *ced) in ced_to_gf() argument
21 return container_of(ced, struct goldfish_timer, ced); in ced_to_gf()
90 struct clock_event_device *evt = &timerdrv->ced; in goldfish_timer_irq()
111 timerdrv->ced = (struct clock_event_device){ in goldfish_timer_init()
149 clockevents_config_and_register(&timerdrv->ced, NSEC_PER_SEC, in goldfish_timer_init()
H A Ddw_apb_timer_of.c88 struct dw_apb_clock_event_device *ced; in add_clockevent() local
100 ced = dw_apb_clockevent_init(-1, event_timer->name, 300, iobase, irq, in add_clockevent()
102 if (!ced) in add_clockevent()
105 dw_apb_clockevent_register(ced); in add_clockevent()
/linux/arch/x86/platform/uv/
H A Duv_time.c292 struct clock_event_device *ced) in uv_rtc_next_event() argument
294 int ced_cpu = cpumask_first(ced->cpumask); in uv_rtc_next_event()
313 struct clock_event_device *ced = &per_cpu(cpu_ced, cpu); in uv_rtc_interrupt() local
315 if (!ced || !ced->event_handler) in uv_rtc_interrupt()
321 ced->event_handler(ced); in uv_rtc_interrupt()
334 struct clock_event_device *ced = this_cpu_ptr(&cpu_ced); in uv_rtc_register_clockevents() local
336 *ced = clock_event_device_uv; in uv_rtc_register_clockevents()
337 ced->cpumask = cpumask_of(smp_processor_id()); in uv_rtc_register_clockevents()
338 clockevents_register_device(ced); in uv_rtc_register_clockevents()
/linux/arch/nios2/kernel/
H A Dtime.c43 struct clock_event_device ced; member
54 return container_of(evt, struct nios2_clockevent_dev, ced); in to_nios2_clkevent()
230 .ced = {
262 nios2_ce.ced.cpumask = cpumask_of(0); in nios2_clockevent_init()
263 nios2_ce.ced.irq = irq; in nios2_clockevent_init()
270 &nios2_ce.ced); in nios2_clockevent_init()
276 clockevents_config_and_register(&nios2_ce.ced, freq, 1, ULONG_MAX); in nios2_clockevent_init()
/linux/kernel/time/
H A Dclockevents.c366 static int clockevents_replace(struct clock_event_device *ced) in clockevents_replace() argument
371 if (dev == ced || !clockevent_state_detached(dev)) in clockevents_replace()
386 list_del_init(&ced->list); in clockevents_replace()
394 static int __clockevents_try_unbind(struct clock_event_device *ced, int cpu) in __clockevents_try_unbind() argument
397 if (clockevent_state_detached(ced)) { in __clockevents_try_unbind()
398 list_del_init(&ced->list); in __clockevents_try_unbind()
402 return ced == per_cpu(tick_cpu_device, cpu).evtdev ? -EAGAIN : -EBUSY; in __clockevents_try_unbind()
425 static int clockevents_unbind(struct clock_event_device *ced, int cpu) in clockevents_unbind() argument
427 struct ce_unbind cu = { .ce = ced, .res = -ENODEV }; in clockevents_unbind()
436 int clockevents_unbind_device(struct clock_event_device *ced, int cpu) in clockevents_unbind_device() argument
[all …]
/linux/include/linux/
H A Dclockchips.h184 extern int clockevents_unbind_device(struct clock_event_device *ced, int cpu);