Lines Matching full:wkupclk
169 struct clk *wkupclk; member
618 phy->wkupclk = devm_clk_get(dev, "wkupclk"); in ti_pipe3_get_clk()
619 if (IS_ERR(phy->wkupclk)) { in ti_pipe3_get_clk()
620 dev_err(dev, "unable to get wkupclk\n"); in ti_pipe3_get_clk()
621 return PTR_ERR(phy->wkupclk); in ti_pipe3_get_clk()
624 phy->wkupclk = ERR_PTR(-ENODEV); in ti_pipe3_get_clk()
875 if (!IS_ERR(phy->wkupclk)) { in ti_pipe3_enable_clocks()
876 ret = clk_prepare_enable(phy->wkupclk); in ti_pipe3_enable_clocks()
878 dev_err(phy->dev, "Failed to enable wkupclk %d\n", ret); in ti_pipe3_enable_clocks()
894 if (!IS_ERR(phy->wkupclk)) in ti_pipe3_enable_clocks()
895 clk_disable_unprepare(phy->wkupclk); in ti_pipe3_enable_clocks()
906 if (!IS_ERR(phy->wkupclk)) in ti_pipe3_disable_clocks()
907 clk_disable_unprepare(phy->wkupclk); in ti_pipe3_disable_clocks()