Home
last modified time | relevance | path

Searched refs:clk_axi (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/gpu/ipu-v3/
Dipu-pre.c102 struct clk *clk_axi; member
282 pre->clk_axi = devm_clk_get(dev, "axi"); in ipu_pre_probe()
283 if (IS_ERR(pre->clk_axi)) in ipu_pre_probe()
284 return PTR_ERR(pre->clk_axi); in ipu_pre_probe()
301 clk_prepare_enable(pre->clk_axi); in ipu_pre_probe()
322 clk_disable_unprepare(pre->clk_axi); in ipu_pre_remove()
Dipu-prg.c82 struct clk *clk_ipg, *clk_axi; member
372 prg->clk_axi = devm_clk_get(dev, "axi"); in ipu_prg_probe()
373 if (IS_ERR(prg->clk_axi)) in ipu_prg_probe()
374 return PTR_ERR(prg->clk_axi); in ipu_prg_probe()
391 ret = clk_prepare_enable(prg->clk_axi); in ipu_prg_probe()
433 clk_disable_unprepare(prg->clk_axi); in prg_suspend()
448 ret = clk_prepare_enable(prg->clk_axi); in prg_resume()
/Linux-v4.19/drivers/gpu/drm/mxsfb/
Dmxsfb_drv.c85 if (mxsfb->clk_axi) in mxsfb_enable_axi_clk()
86 clk_prepare_enable(mxsfb->clk_axi); in mxsfb_enable_axi_clk()
91 if (mxsfb->clk_axi) in mxsfb_disable_axi_clk()
92 clk_disable_unprepare(mxsfb->clk_axi); in mxsfb_disable_axi_clk()
185 mxsfb->clk_axi = devm_clk_get(drm->dev, "axi"); in mxsfb_load()
186 if (IS_ERR(mxsfb->clk_axi)) in mxsfb_load()
187 mxsfb->clk_axi = NULL; in mxsfb_load()
Dmxsfb_drv.h34 struct clk *clk_axi; member
/Linux-v4.19/drivers/video/fbdev/
Dmxsfb.c174 struct clk *clk_axi; member
318 if (host->clk_axi) in mxsfb_enable_axi_clk()
319 clk_prepare_enable(host->clk_axi); in mxsfb_enable_axi_clk()
324 if (host->clk_axi) in mxsfb_disable_axi_clk()
325 clk_disable_unprepare(host->clk_axi); in mxsfb_disable_axi_clk()
922 host->clk_axi = devm_clk_get(&host->pdev->dev, "axi"); in mxsfb_probe()
923 if (IS_ERR(host->clk_axi)) in mxsfb_probe()
924 host->clk_axi = NULL; in mxsfb_probe()