Lines Matching refs:clock_event_device

20 extern void tick_setup_periodic(struct clock_event_device *dev, int broadcast);
21 extern void tick_handle_periodic(struct clock_event_device *dev);
22 extern void tick_check_new_device(struct clock_event_device *dev);
26 extern bool tick_check_replacement(struct clock_event_device *curdev,
27 struct clock_event_device *newdev);
28 extern void tick_install_replacement(struct clock_event_device *dev);
32 extern int clockevents_tick_resume(struct clock_event_device *dev);
34 static inline int tick_device_is_functional(struct clock_event_device *dev) in tick_device_is_functional()
39 static inline enum clock_event_state clockevent_get_state(struct clock_event_device *dev) in clockevent_get_state()
44 static inline void clockevent_set_state(struct clock_event_device *dev, in clockevent_set_state()
50 extern void clockevents_shutdown(struct clock_event_device *dev);
51 extern void clockevents_exchange_device(struct clock_event_device *old,
52 struct clock_event_device *new);
53 extern void clockevents_switch_state(struct clock_event_device *dev,
55 extern int clockevents_program_event(struct clock_event_device *dev,
57 extern void clockevents_handle_noop(struct clock_event_device *dev);
58 extern int __clockevents_update_freq(struct clock_event_device *dev, u32 freq);
63 extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu);
64 extern void tick_install_broadcast_device(struct clock_event_device *dev, int cpu);
65 extern int tick_is_broadcast_device(struct clock_event_device *dev);
70 extern void tick_set_periodic_handler(struct clock_event_device *dev, int broadcast);
71 extern int tick_broadcast_update_freq(struct clock_event_device *dev, u32 freq);
74 extern const struct clock_event_device *tick_get_wakeup_device(int cpu);
76 static inline void tick_install_broadcast_device(struct clock_event_device *dev, int cpu) { } in tick_install_broadcast_device()
77 static inline int tick_is_broadcast_device(struct clock_event_device *dev) { return 0; } in tick_is_broadcast_device()
78 static inline int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu) { return 0; } in tick_device_uses_broadcast()
79 static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { } in tick_do_periodic_broadcast()
84 static inline int tick_broadcast_update_freq(struct clock_event_device *dev, u32 freq) { return -EN… in tick_broadcast_update_freq()
87 static inline void tick_set_periodic_handler(struct clock_event_device *dev, int broadcast) in tick_set_periodic_handler()
100 extern void tick_setup_oneshot(struct clock_event_device *newdev,
101 void (*handler)(struct clock_event_device *),
105 extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
114 void tick_setup_oneshot(struct clock_event_device *newdev, in tick_setup_oneshot()
115 void (*handler)(struct clock_event_device *), in tick_setup_oneshot() argument