Lines Matching refs:clk
1 /* $NetBSD: clk.h,v 1.3 2018/04/01 21:11:01 bouyer Exp $ */
33 struct clk;
35 struct clk * clk_get(struct clk_domain *, const char *);
36 void clk_put(struct clk *);
37 u_int clk_get_rate(struct clk *);
38 int clk_set_rate(struct clk *, u_int);
39 u_int clk_round_rate(struct clk *, u_int);
40 int clk_enable(struct clk *);
41 int clk_disable(struct clk *);
42 int clk_set_parent(struct clk *, struct clk *);
43 struct clk * clk_get_parent(struct clk *);