spi: atmel: Fix CS and initialization bug
[ Upstream commit 69e1818ad27bae167eeaaf6829d4a08900ef5153 ] Commit 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer method") switched to using transfer_one and set_cs. The core doesn't call set_cs when the chip select lines are gpios. Add the SPI_MASTER_GPIO_SS flag to the driver to ensure the calls to set_cs happen since the driver programs configuration registers there. Fixes: 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer method") Signed-off-by: Dan Sneddon <dan.sneddon@microchip.com> Link: https://lore.kernel.org/r/20210629192218.32125-1-dan.sneddon@microchip.com Signed-off-by: Mark Brown <broonie@kernel.org> Stable-dep-of: fc70d643a2f6 ("spi: atmel: Fix clock issue when using devices with different polarities") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
23d9267c54
commit
929f475eba
@@ -352,8 +352,6 @@ static void cs_activate(struct atmel_spi *as, struct spi_device *spi)
|
|||||||
}
|
}
|
||||||
|
|
||||||
mr = spi_readl(as, MR);
|
mr = spi_readl(as, MR);
|
||||||
if (spi->cs_gpiod)
|
|
||||||
gpiod_set_value(spi->cs_gpiod, 1);
|
|
||||||
} else {
|
} else {
|
||||||
u32 cpol = (spi->mode & SPI_CPOL) ? SPI_BIT(CPOL) : 0;
|
u32 cpol = (spi->mode & SPI_CPOL) ? SPI_BIT(CPOL) : 0;
|
||||||
int i;
|
int i;
|
||||||
@@ -369,8 +367,6 @@ static void cs_activate(struct atmel_spi *as, struct spi_device *spi)
|
|||||||
|
|
||||||
mr = spi_readl(as, MR);
|
mr = spi_readl(as, MR);
|
||||||
mr = SPI_BFINS(PCS, ~(1 << chip_select), mr);
|
mr = SPI_BFINS(PCS, ~(1 << chip_select), mr);
|
||||||
if (spi->cs_gpiod)
|
|
||||||
gpiod_set_value(spi->cs_gpiod, 1);
|
|
||||||
spi_writel(as, MR, mr);
|
spi_writel(as, MR, mr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -400,8 +396,6 @@ static void cs_deactivate(struct atmel_spi *as, struct spi_device *spi)
|
|||||||
|
|
||||||
if (!spi->cs_gpiod)
|
if (!spi->cs_gpiod)
|
||||||
spi_writel(as, CR, SPI_BIT(LASTXFER));
|
spi_writel(as, CR, SPI_BIT(LASTXFER));
|
||||||
else
|
|
||||||
gpiod_set_value(spi->cs_gpiod, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void atmel_spi_lock(struct atmel_spi *as) __acquires(&as->lock)
|
static void atmel_spi_lock(struct atmel_spi *as) __acquires(&as->lock)
|
||||||
@@ -1498,7 +1492,8 @@ static int atmel_spi_probe(struct platform_device *pdev)
|
|||||||
master->bus_num = pdev->id;
|
master->bus_num = pdev->id;
|
||||||
master->num_chipselect = 4;
|
master->num_chipselect = 4;
|
||||||
master->setup = atmel_spi_setup;
|
master->setup = atmel_spi_setup;
|
||||||
master->flags = (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX);
|
master->flags = (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX |
|
||||||
|
SPI_MASTER_GPIO_SS);
|
||||||
master->transfer_one = atmel_spi_one_transfer;
|
master->transfer_one = atmel_spi_one_transfer;
|
||||||
master->set_cs = atmel_spi_set_cs;
|
master->set_cs = atmel_spi_set_cs;
|
||||||
master->cleanup = atmel_spi_cleanup;
|
master->cleanup = atmel_spi_cleanup;
|
||||||
|
Reference in New Issue
Block a user