mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
spi: bcm-qspi: check for valid cs before applying chip select
commit2cbd27267fupstream. Apply only valid chip select value. This change fixes case where chip select is set to initial value of '-1' during probe and PM supend and subsequent resume can try to use the value with undefined behaviour. Also in case where gpio based chip select, the check in bcm_qspi_chip_select() shall prevent undefined behaviour on resume. Fixes:fa236a7ef2("spi: bcm-qspi: Add Broadcom MSPI driver") Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Link: https://lore.kernel.org/r/20220127185359.27322-1-kdasu.kdev@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6d226e8afe
commit
30e05c98b9
@@ -551,7 +551,7 @@ static void bcm_qspi_chip_select(struct bcm_qspi *qspi, int cs)
|
|||||||
u32 rd = 0;
|
u32 rd = 0;
|
||||||
u32 wr = 0;
|
u32 wr = 0;
|
||||||
|
|
||||||
if (qspi->base[CHIP_SELECT]) {
|
if (cs >= 0 && qspi->base[CHIP_SELECT]) {
|
||||||
rd = bcm_qspi_read(qspi, CHIP_SELECT, 0);
|
rd = bcm_qspi_read(qspi, CHIP_SELECT, 0);
|
||||||
wr = (rd & ~0xff) | (1 << cs);
|
wr = (rd & ~0xff) | (1 << cs);
|
||||||
if (rd == wr)
|
if (rd == wr)
|
||||||
|
|||||||
Reference in New Issue
Block a user