Lines Matching full:pll_clk
106 struct clk *pll_clk; member
342 struct clk *clk, *pll_clk = NULL; in bcm63xx_hsspi_probe() local
376 pll_clk = devm_clk_get(dev, "pll"); in bcm63xx_hsspi_probe()
378 if (IS_ERR(pll_clk)) { in bcm63xx_hsspi_probe()
379 ret = PTR_ERR(pll_clk); in bcm63xx_hsspi_probe()
383 ret = clk_prepare_enable(pll_clk); in bcm63xx_hsspi_probe()
387 rate = clk_get_rate(pll_clk); in bcm63xx_hsspi_probe()
403 bs->pll_clk = pll_clk; in bcm63xx_hsspi_probe()
463 clk_disable_unprepare(pll_clk); in bcm63xx_hsspi_probe()
477 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_remove()
490 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_suspend()
506 if (bs->pll_clk) { in bcm63xx_hsspi_resume()
507 ret = clk_prepare_enable(bs->pll_clk); in bcm63xx_hsspi_resume()