mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
clk-bcm2835: Don't wait for pllh lock
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
This commit is contained in:
@@ -652,15 +652,17 @@ static int bcm2835_pll_on(struct clk_hw *hw)
|
||||
spin_unlock(&cprman->regs_lock);
|
||||
|
||||
/* Wait for the PLL to lock. */
|
||||
timeout = ktime_add_ns(ktime_get(), LOCK_TIMEOUT_NS);
|
||||
while (!(cprman_read(cprman, CM_LOCK) & data->lock_mask)) {
|
||||
if (ktime_after(ktime_get(), timeout)) {
|
||||
dev_err(cprman->dev, "%s: couldn't lock PLL\n",
|
||||
clk_hw_get_name(hw));
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
if (strcmp(data->name, "pllh")) {
|
||||
timeout = ktime_add_ns(ktime_get(), LOCK_TIMEOUT_NS);
|
||||
while (!(cprman_read(cprman, CM_LOCK) & data->lock_mask)) {
|
||||
if (ktime_after(ktime_get(), timeout)) {
|
||||
dev_err(cprman->dev, "%s: couldn't lock PLL\n",
|
||||
clk_hw_get_name(hw));
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
cpu_relax();
|
||||
cpu_relax();
|
||||
}
|
||||
}
|
||||
|
||||
cprman_write(cprman, data->a2w_ctrl_reg,
|
||||
|
||||
Reference in New Issue
Block a user