Lines Matching full:pll_clk
106 struct clk *pll_clk; member
336 struct clk *clk, *pll_clk = NULL; in bcm63xx_hsspi_probe() local
370 pll_clk = devm_clk_get(dev, "pll"); in bcm63xx_hsspi_probe()
372 if (IS_ERR(pll_clk)) { in bcm63xx_hsspi_probe()
373 ret = PTR_ERR(pll_clk); in bcm63xx_hsspi_probe()
377 ret = clk_prepare_enable(pll_clk); in bcm63xx_hsspi_probe()
381 rate = clk_get_rate(pll_clk); in bcm63xx_hsspi_probe()
397 bs->pll_clk = pll_clk; in bcm63xx_hsspi_probe()
457 clk_disable_unprepare(pll_clk); in bcm63xx_hsspi_probe()
471 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_remove()
484 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_suspend()
500 if (bs->pll_clk) { in bcm63xx_hsspi_resume()
501 ret = clk_prepare_enable(bs->pll_clk); in bcm63xx_hsspi_resume()