Lines Matching refs:pll_clk
104 struct clk *pll_clk; member
335 struct clk *clk, *pll_clk = NULL; in bcm63xx_hsspi_probe() local
358 pll_clk = devm_clk_get(dev, "pll"); in bcm63xx_hsspi_probe()
360 if (IS_ERR(pll_clk)) { in bcm63xx_hsspi_probe()
361 ret = PTR_ERR(pll_clk); in bcm63xx_hsspi_probe()
365 ret = clk_prepare_enable(pll_clk); in bcm63xx_hsspi_probe()
369 rate = clk_get_rate(pll_clk); in bcm63xx_hsspi_probe()
370 clk_disable_unprepare(pll_clk); in bcm63xx_hsspi_probe()
386 bs->pll_clk = pll_clk; in bcm63xx_hsspi_probe()
442 clk_disable_unprepare(pll_clk); in bcm63xx_hsspi_probe()
456 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_remove()
469 clk_disable_unprepare(bs->pll_clk); in bcm63xx_hsspi_suspend()
485 if (bs->pll_clk) { in bcm63xx_hsspi_resume()
486 ret = clk_prepare_enable(bs->pll_clk); in bcm63xx_hsspi_resume()