Lines Matching full:wkupclk
170 struct clk *wkupclk; member
619 phy->wkupclk = devm_clk_get(dev, "wkupclk"); in ti_pipe3_get_clk()
620 if (IS_ERR(phy->wkupclk)) { in ti_pipe3_get_clk()
621 dev_err(dev, "unable to get wkupclk\n"); in ti_pipe3_get_clk()
622 return PTR_ERR(phy->wkupclk); in ti_pipe3_get_clk()
625 phy->wkupclk = ERR_PTR(-ENODEV); in ti_pipe3_get_clk()
861 if (!IS_ERR(phy->wkupclk)) { in ti_pipe3_enable_clocks()
862 ret = clk_prepare_enable(phy->wkupclk); in ti_pipe3_enable_clocks()
864 dev_err(phy->dev, "Failed to enable wkupclk %d\n", ret); in ti_pipe3_enable_clocks()
880 if (!IS_ERR(phy->wkupclk)) in ti_pipe3_enable_clocks()
881 clk_disable_unprepare(phy->wkupclk); in ti_pipe3_enable_clocks()
892 if (!IS_ERR(phy->wkupclk)) in ti_pipe3_disable_clocks()
893 clk_disable_unprepare(phy->wkupclk); in ti_pipe3_disable_clocks()