Lines Matching full:pll_clk
105 struct clk *pll_clk; member
335 struct clk *clk, *pll_clk = NULL; in bcm63xx_hsspi_probe() local
369 pll_clk = devm_clk_get(dev, "pll"); in bcm63xx_hsspi_probe()
371 if (IS_ERR(pll_clk)) { in bcm63xx_hsspi_probe()
372 ret = PTR_ERR(pll_clk); in bcm63xx_hsspi_probe()
376 ret = clk_prepare_enable(pll_clk); in bcm63xx_hsspi_probe()
380 rate = clk_get_rate(pll_clk); in bcm63xx_hsspi_probe()
396 bs->pll_clk = pll_clk; in bcm63xx_hsspi_probe()
452 clk_disable_unprepare(pll_clk); in bcm63xx_hsspi_probe()
466 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_remove()
479 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_suspend()
495 if (bs->pll_clk) { in bcm63xx_hsspi_resume()
496 ret = clk_prepare_enable(bs->pll_clk); in bcm63xx_hsspi_resume()