Lines Matching refs:clk32k
24 struct clk *clk32k; member
51 clk_disable_unprepare(tc6387xb->clk32k); in tc6387xb_suspend()
61 clk_prepare_enable(tc6387xb->clk32k); in tc6387xb_resume()
96 clk_prepare_enable(tc6387xb->clk32k); in tc6387xb_mmc_enable()
108 clk_disable_unprepare(tc6387xb->clk32k); in tc6387xb_mmc_disable()
137 struct clk *clk32k; in tc6387xb_probe() local
155 clk32k = clk_get(&dev->dev, "CLK_CK32K"); in tc6387xb_probe()
156 if (IS_ERR(clk32k)) { in tc6387xb_probe()
157 ret = PTR_ERR(clk32k); in tc6387xb_probe()
177 tc6387xb->clk32k = clk32k; in tc6387xb_probe()
195 clk_put(clk32k); in tc6387xb_probe()
209 clk_disable_unprepare(tc6387xb->clk32k); in tc6387xb_remove()
210 clk_put(tc6387xb->clk32k); in tc6387xb_remove()