Lines Matching defs:xvclk
499 struct clk *xvclk;
982 /* 512 xvclk cycles after the last SCCB transation or MIPI frame end */
989 clk_disable_unprepare(ov5675->xvclk);
1003 ret = clk_prepare_enable(ov5675->xvclk);
1005 dev_err(dev, "failed to enable xvclk: %d\n", ret);
1013 clk_disable_unprepare(ov5675->xvclk);
1024 /* 8192 xvclk cycles prior to the first SCCB transation */
1232 ov5675->xvclk = devm_clk_get_optional(dev, NULL);
1233 if (IS_ERR(ov5675->xvclk))
1234 return dev_err_probe(dev, PTR_ERR(ov5675->xvclk),
1235 "failed to get xvclk: %ld\n",
1236 PTR_ERR(ov5675->xvclk));
1238 if (ov5675->xvclk) {
1239 xvclk_rate = clk_get_rate(ov5675->xvclk);