Lines Matching refs:clock_event_device

25 extern void tick_setup_periodic(struct clock_event_device *dev, int broadcast);
26 extern void tick_handle_periodic(struct clock_event_device *dev);
27 extern void tick_check_new_device(struct clock_event_device *dev);
31 extern bool tick_check_replacement(struct clock_event_device *curdev,
32 struct clock_event_device *newdev);
33 extern void tick_install_replacement(struct clock_event_device *dev);
37 extern int clockevents_tick_resume(struct clock_event_device *dev);
39 static inline int tick_device_is_functional(struct clock_event_device *dev) in tick_device_is_functional()
44 static inline enum clock_event_state clockevent_get_state(struct clock_event_device *dev) in clockevent_get_state()
49 static inline void clockevent_set_state(struct clock_event_device *dev, in clockevent_set_state()
55 extern void clockevents_shutdown(struct clock_event_device *dev);
56 extern void clockevents_exchange_device(struct clock_event_device *old,
57 struct clock_event_device *new);
58 extern void clockevents_switch_state(struct clock_event_device *dev,
60 extern int clockevents_program_event(struct clock_event_device *dev,
62 extern void clockevents_handle_noop(struct clock_event_device *dev);
63 extern int __clockevents_update_freq(struct clock_event_device *dev, u32 freq);
67 extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu);
68 extern void tick_install_broadcast_device(struct clock_event_device *dev, int cpu);
69 extern int tick_is_broadcast_device(struct clock_event_device *dev);
74 extern void tick_set_periodic_handler(struct clock_event_device *dev, int broadcast);
75 extern int tick_broadcast_update_freq(struct clock_event_device *dev, u32 freq);
78 extern const struct clock_event_device *tick_get_wakeup_device(int cpu);
80 static inline void tick_install_broadcast_device(struct clock_event_device *dev, int cpu) { } in tick_install_broadcast_device()
81 static inline int tick_is_broadcast_device(struct clock_event_device *dev) { return 0; } in tick_is_broadcast_device()
82 static inline int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu) { return 0; } in tick_device_uses_broadcast()
83 static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { } in tick_do_periodic_broadcast()
88 static inline int tick_broadcast_update_freq(struct clock_event_device *dev, u32 freq) { return -EN… in tick_broadcast_update_freq()
91 static inline void tick_set_periodic_handler(struct clock_event_device *dev, int broadcast) in tick_set_periodic_handler()
104 extern void tick_setup_oneshot(struct clock_event_device *newdev,
105 void (*handler)(struct clock_event_device *),
109 extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
118 void tick_setup_oneshot(struct clock_event_device *newdev, in tick_setup_oneshot()
119 void (*handler)(struct clock_event_device *), in tick_setup_oneshot() argument