Lines Matching refs:clk
23 struct clk { struct
27 struct clk *parent; argument
29 struct clk *secondary; argument
43 void (*recalc) (struct clk *); argument
49 int (*set_rate) (struct clk *, unsigned long); argument
54 unsigned long (*round_rate) (struct clk *, unsigned long); argument
59 int (*enable) (struct clk *); argument
64 void (*disable) (struct clk *); argument
66 int (*set_parent) (struct clk *, struct clk *); argument
245 void clk_enable(struct clk *clk);
246 void clk_disable(struct clk *clk);
247 u32 clk_get_rate(struct clk *clk);
248 int clk_set_rate(struct clk *clk, unsigned long rate);
249 long clk_round_rate(struct clk *clk, unsigned long rate);
250 int clk_set_parent(struct clk *clk, struct clk *parent);
251 int clk_get_usecount(struct clk *clk);
252 struct clk *clk_get_parent(struct clk *clk);