Lines Matching defs:refclk
1903 struct clk *refclk;
1907 refclk = devm_clk_get(dev, "refclk");
1908 if (IS_ERR(refclk)) {
1909 if (PTR_ERR(refclk) != -EPROBE_DEFER)
1910 dev_err(dev, "failed to get refclk: %ld\n",
1911 PTR_ERR(refclk));
1912 return PTR_ERR(refclk);
1943 ret = clk_prepare_enable(refclk);
1949 state->pdata.refclk_hz = clk_get_rate(refclk);
1955 * The PLL input clock is obtained by dividing refclk by pll_prd.
1965 dev_err(dev, "unsupported refclk rate: %u Hz\n",
1981 /* The CSI speed per lane is refclk / pll_prd * pll_fbd */
2019 clk_disable_unprepare(refclk);