aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-04-13 16:05:03 -0400
committerStephen Boyd <sboyd@codeaurora.org>2016-04-19 21:56:17 -0400
commite708b383f4b94feca2e0d5d06e1cfc13cdfea100 (patch)
tree294c874f6a385d535f9d42a234ba3b7dcab21f20
parent286259ef4b30bff092b223c530c7fa4dc5fd792d (diff)
clk: bcm2835: Fix PLL poweron
In poweroff, we set the reset bit and the power down bit, but only managed to unset the reset bit for poweron. This meant that if HDMI did -EPROBE_DEFER after it had grabbed its clocks, we'd power down the PLLH (that had been on at boot time) and never recover. Signed-off-by: Eric Anholt <eric@anholt.net> Fixes: 41691b8862e2 ("clk: bcm2835: Add support for programming the audio domain clocks") Cc: stable@vger.kernel.org Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r--drivers/clk/bcm/clk-bcm2835.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/clk/bcm/clk-bcm2835.c b/drivers/clk/bcm/clk-bcm2835.c
index 87616ded5bbe..7a7970865c2d 100644
--- a/drivers/clk/bcm/clk-bcm2835.c
+++ b/drivers/clk/bcm/clk-bcm2835.c
@@ -554,6 +554,10 @@ static int bcm2835_pll_on(struct clk_hw *hw)
554 const struct bcm2835_pll_data *data = pll->data; 554 const struct bcm2835_pll_data *data = pll->data;
555 ktime_t timeout; 555 ktime_t timeout;
556 556
557 cprman_write(cprman, data->a2w_ctrl_reg,
558 cprman_read(cprman, data->a2w_ctrl_reg) &
559 ~A2W_PLL_CTRL_PWRDN);
560
557 /* Take the PLL out of reset. */ 561 /* Take the PLL out of reset. */
558 cprman_write(cprman, data->cm_ctrl_reg, 562 cprman_write(cprman, data->cm_ctrl_reg,
559 cprman_read(cprman, data->cm_ctrl_reg) & ~CM_PLL_ANARST); 563 cprman_read(cprman, data->cm_ctrl_reg) & ~CM_PLL_ANARST);