Lines Matching full:extclk
40 struct clk *extclk; member
102 if (priv->extclk) in pxa_ssp_startup()
103 clk_prepare_enable(priv->extclk); in pxa_ssp_startup()
127 if (priv->extclk) in pxa_ssp_shutdown()
128 clk_disable_unprepare(priv->extclk); in pxa_ssp_shutdown()
211 if (priv->extclk) { in pxa_ssp_set_dai_sysclk()
215 * For DT based boards, if an extclk is given, use it in pxa_ssp_set_dai_sysclk()
219 ret = clk_set_rate(priv->extclk, freq); in pxa_ssp_set_dai_sysclk()
796 priv->extclk = devm_clk_get(dev, "extclk"); in pxa_ssp_probe()
797 if (IS_ERR(priv->extclk)) { in pxa_ssp_probe()
798 ret = PTR_ERR(priv->extclk); in pxa_ssp_probe()
802 priv->extclk = NULL; in pxa_ssp_probe()