Lines Matching refs:tcon
22 struct sun4i_tcon *tcon; member
78 struct sun4i_tcon *tcon = dclk->tcon; in sun4i_dclk_round_rate() local
83 for (i = tcon->dclk_min_div; i <= tcon->dclk_max_div; i++) { in sun4i_dclk_round_rate()
169 int sun4i_dclk_create(struct device *dev, struct sun4i_tcon *tcon) in sun4i_dclk_create() argument
176 parent_name = __clk_get_name(tcon->sclk0); in sun4i_dclk_create()
186 dclk->tcon = tcon; in sun4i_dclk_create()
194 dclk->regmap = tcon->regs; in sun4i_dclk_create()
197 tcon->dclk = clk_register(dev, &dclk->hw); in sun4i_dclk_create()
198 if (IS_ERR(tcon->dclk)) in sun4i_dclk_create()
199 return PTR_ERR(tcon->dclk); in sun4i_dclk_create()
205 int sun4i_dclk_free(struct sun4i_tcon *tcon) in sun4i_dclk_free() argument
207 clk_unregister(tcon->dclk); in sun4i_dclk_free()