Lines Matching refs:clk32k
28 struct clk *clk32k; member
55 clk_disable(tc6387xb->clk32k); in tc6387xb_suspend()
65 clk_enable(tc6387xb->clk32k); in tc6387xb_resume()
103 clk_enable(tc6387xb->clk32k); in tc6387xb_mmc_enable()
116 clk_disable(tc6387xb->clk32k); in tc6387xb_mmc_disable()
145 struct clk *clk32k; in tc6387xb_probe() local
163 clk32k = clk_get(&dev->dev, "CLK_CK32K"); in tc6387xb_probe()
164 if (IS_ERR(clk32k)) { in tc6387xb_probe()
165 ret = PTR_ERR(clk32k); in tc6387xb_probe()
185 tc6387xb->clk32k = clk32k; in tc6387xb_probe()
203 clk_put(clk32k); in tc6387xb_probe()
217 clk_disable(tc6387xb->clk32k); in tc6387xb_remove()
218 clk_put(tc6387xb->clk32k); in tc6387xb_remove()