mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
clk: bcm2835: add locking to pll*_on/off methods
commitec36a5c668upstream. Add missing locking to: * bcm2835_pll_divider_on * bcm2835_pll_divider_off to protect the read modify write cycle for the register access protecting both cm_reg and a2w_reg registers. Fixes:41691b8862("clk: bcm2835: Add support for programming the audio domain clocks") Signed-off-by: Martin Sperl <kernel@martin.sperl.org> Signed-off-by: Eric Anholt <eric@anholt.net> Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
035688290a
commit
86dbfda832
|
|
@ -1068,10 +1068,12 @@ static void bcm2835_pll_divider_off(struct clk_hw *hw)
|
|||
struct bcm2835_cprman *cprman = divider->cprman;
|
||||
const struct bcm2835_pll_divider_data *data = divider->data;
|
||||
|
||||
spin_lock(&cprman->regs_lock);
|
||||
cprman_write(cprman, data->cm_reg,
|
||||
(cprman_read(cprman, data->cm_reg) &
|
||||
~data->load_mask) | data->hold_mask);
|
||||
cprman_write(cprman, data->a2w_reg, A2W_PLL_CHANNEL_DISABLE);
|
||||
spin_unlock(&cprman->regs_lock);
|
||||
}
|
||||
|
||||
static int bcm2835_pll_divider_on(struct clk_hw *hw)
|
||||
|
|
@ -1080,12 +1082,14 @@ static int bcm2835_pll_divider_on(struct clk_hw *hw)
|
|||
struct bcm2835_cprman *cprman = divider->cprman;
|
||||
const struct bcm2835_pll_divider_data *data = divider->data;
|
||||
|
||||
spin_lock(&cprman->regs_lock);
|
||||
cprman_write(cprman, data->a2w_reg,
|
||||
cprman_read(cprman, data->a2w_reg) &
|
||||
~A2W_PLL_CHANNEL_DISABLE);
|
||||
|
||||
cprman_write(cprman, data->cm_reg,
|
||||
cprman_read(cprman, data->cm_reg) & ~data->hold_mask);
|
||||
spin_unlock(&cprman->regs_lock);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user