]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
spi: s3c64xx: define a magic value
authorTudor Ambarus <tudor.ambarus@linaro.org>
Fri, 16 Feb 2024 07:05:45 +0000 (07:05 +0000)
committerMark Brown <broonie@kernel.org>
Tue, 5 Mar 2024 20:42:50 +0000 (20:42 +0000)
Define a magic value, it will be used in the next patch as well.

Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
Link: https://msgid.link/r/20240216070555.2483977-3-tudor.ambarus@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-s3c64xx.c

index 6f29dca68491169d155db2b04f00613ad27c4ba8..6ff3b25b6febf9206814af5abe3da1497fc8c22b 100644 (file)
@@ -78,6 +78,7 @@
 #define S3C64XX_SPI_INT_RX_FIFORDY_EN          (1<<1)
 #define S3C64XX_SPI_INT_TX_FIFORDY_EN          (1<<0)
 
+#define S3C64XX_SPI_ST_TX_FIFO_LVL_SHIFT       6
 #define S3C64XX_SPI_ST_RX_OVERRUN_ERR          (1<<5)
 #define S3C64XX_SPI_ST_RX_UNDERRUN_ERR         (1<<4)
 #define S3C64XX_SPI_ST_TX_OVERRUN_ERR          (1<<3)
 #define FIFO_LVL_MASK(i) ((i)->port_conf->fifo_lvl_mask[i->port_id])
 #define S3C64XX_SPI_ST_TX_DONE(v, i) (((v) & \
                                (1 << (i)->port_conf->tx_st_done)) ? 1 : 0)
-#define TX_FIFO_LVL(v, i) (((v) >> 6) & FIFO_LVL_MASK(i))
+#define TX_FIFO_LVL(v, i) (((v) >> S3C64XX_SPI_ST_TX_FIFO_LVL_SHIFT) & \
+                          FIFO_LVL_MASK(i))
 #define RX_FIFO_LVL(v, i) (((v) >> (i)->port_conf->rx_lvl_offset) & \
                                        FIFO_LVL_MASK(i))
 #define FIFO_DEPTH(i) ((FIFO_LVL_MASK(i) >> 1) + 1)