Message ID | fc9519de1d278c3f0f0ba8a9640b0499ae2bedca.camel@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | spi: spi-rockchip: Fix of chip select lines handling | expand |
On Fri, 2024-01-26 at 20:47 +0100, Luis de Arquer wrote: > This change allows the DT to use native c1 for a device while leaving > native cs0 reserved for allowing gpio cs operation > Actually, I think this comment is the other way around -reserve cs1 and use cs0 for device. Before, it was using cs0 for gpio operation always. > > - ROCKCHIP_SPI_SET_BITS(rs->regs + ROCKCHIP_SPI_SER, 1); > + ROCKCHIP_SPI_SET_BITS(rs->regs + ROCKCHIP_SPI_SER, ctlr->unused_native_cs); s/ctlr->unused_native_cs/BIT(ctlr->unused_native_cs)/ I mixed up cs numbers and bitmask, sorry. I'll fix for v2 Luis
diff --git a/drivers/spi/spi-rockchip.c b/drivers/spi/spi-rockchip.c index e1ecd96c7858..e1ae62e8765c 100644 --- a/drivers/spi/spi-rockchip.c +++ b/drivers/spi/spi-rockchip.c @@ -247,13 +247,13 @@ static void rockchip_spi_set_cs(struct spi_device *spi, bool enable) pm_runtime_get_sync(rs->dev); if (spi_get_csgpiod(spi, 0)) - ROCKCHIP_SPI_SET_BITS(rs->regs + ROCKCHIP_SPI_SER, 1); + ROCKCHIP_SPI_SET_BITS(rs->regs + ROCKCHIP_SPI_SER, ctlr->unused_native_cs); else ROCKCHIP_SPI_SET_BITS(rs->regs + ROCKCHIP_SPI_SER, BIT(spi_get_chipselect(spi, 0))); } else { if (spi_get_csgpiod(spi, 0)) - ROCKCHIP_SPI_CLR_BITS(rs->regs + ROCKCHIP_SPI_SER, 1); + ROCKCHIP_SPI_CLR_BITS(rs->regs + ROCKCHIP_SPI_SER, ctlr->unused_native_cs); else ROCKCHIP_SPI_CLR_BITS(rs->regs + ROCKCHIP_SPI_SER, BIT(spi_get_chipselect(spi, 0)));