Home
last modified time | relevance | path

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

/drivers/gpu/drm/sti/
Dsti_dvo.c89 struct clk *clk_pix; member
227 clk_disable_unprepare(dvo->clk_pix); in sti_dvo_disable()
259 if (clk_prepare_enable(dvo->clk_pix)) in sti_dvo_pre_enable()
300 clk_set_parent(dvo->clk_pix, clkp); in sti_dvo_set_mode()
305 ret = clk_set_rate(dvo->clk_pix, rate); in sti_dvo_set_mode()
359 result = clk_round_rate(dvo->clk_pix, target); in sti_dvo_connector_mode_valid()
541 dvo->clk_pix = devm_clk_get(dev, "dvo_pix"); in sti_dvo_probe()
542 if (IS_ERR(dvo->clk_pix)) { in sti_dvo_probe()
544 return PTR_ERR(dvo->clk_pix); in sti_dvo_probe()
Dsti_hda.c249 struct clk *clk_pix; member
420 clk_disable_unprepare(hda->clk_pix); in sti_hda_disable()
439 if (clk_prepare_enable(hda->clk_pix)) in sti_hda_pre_enable()
553 ret = clk_set_rate(hda->clk_pix, mode->clock * 1000); in sti_hda_set_mode()
618 result = clk_round_rate(hda->clk_pix, target); in sti_hda_connector_mode_valid()
779 hda->clk_pix = devm_clk_get(dev, "pix"); in sti_hda_probe()
780 if (IS_ERR(hda->clk_pix)) { in sti_hda_probe()
782 return PTR_ERR(hda->clk_pix); in sti_hda_probe()
Dsti_gdp.c124 struct clk *clk_pix; member
468 if (gdp->clk_pix) in sti_gdp_disable()
469 clk_disable_unprepare(gdp->clk_pix); in sti_gdp_disable()
577 gdp->clk_pix = devm_clk_get(gdp->dev, clk_name); in sti_gdp_init()
578 if (IS_ERR(gdp->clk_pix)) in sti_gdp_init()
660 if (mode->clock && gdp->clk_pix) { in sti_gdp_atomic_check()
675 clk_set_parent(gdp->clk_pix, clkp); in sti_gdp_atomic_check()
677 res = clk_set_rate(gdp->clk_pix, rate); in sti_gdp_atomic_check()
742 clk_prepare_enable(gdp->clk_pix); in sti_gdp_atomic_update()
Dsti_hdmi.c774 clk_disable_unprepare(hdmi->clk_pix); in sti_hdmi_disable()
883 if (clk_prepare_enable(hdmi->clk_pix)) in sti_hdmi_pre_enable()
939 ret = clk_set_rate(hdmi->clk_pix, mode->clock * 1000); in sti_hdmi_set_mode()
1011 result = clk_round_rate(hdmi->clk_pix, target); in sti_hdmi_connector_mode_valid()
1393 hdmi->clk_pix = devm_clk_get(dev, "pix"); in sti_hdmi_probe()
1394 if (IS_ERR(hdmi->clk_pix)) { in sti_hdmi_probe()
1396 ret = PTR_ERR(hdmi->clk_pix); in sti_hdmi_probe()
Dsti_hdmi.h78 struct clk *clk_pix; member