Lines Matching defs:omap_dm_timer_ops
12 struct omap_dm_timer_ops { struct
13 struct omap_dm_timer *(*request_by_node)(struct device_node *np);
14 struct omap_dm_timer *(*request_specific)(int timer_id);
15 struct omap_dm_timer *(*request)(void);
17 int (*free)(struct omap_dm_timer *timer);
19 void (*enable)(struct omap_dm_timer *timer);
20 void (*disable)(struct omap_dm_timer *timer);
22 int (*get_irq)(struct omap_dm_timer *timer);
23 int (*set_int_enable)(struct omap_dm_timer *timer,
25 int (*set_int_disable)(struct omap_dm_timer *timer, u32 mask);
27 struct clk *(*get_fclk)(struct omap_dm_timer *timer);
29 int (*start)(struct omap_dm_timer *timer);
30 int (*stop)(struct omap_dm_timer *timer);
31 int (*set_source)(struct omap_dm_timer *timer, int source);
55 const struct omap_dm_timer_ops *timer_ops; argument