i2c: xiic: Add wait for FIFO empty in send_tx
authorRaviteja Narayanam <raviteja.narayanam@xilinx.com>
Thu, 2 Feb 2023 09:41:33 +0000 (15:11 +0530)
committerWolfram Sang <wsa@kernel.org>
Fri, 3 Feb 2023 16:34:08 +0000 (17:34 +0100)
If the tx_half_empty interrupt comes first instead of tx_empty,
STOP bit is generated even before all the bytes are transmitted
out on the bus.
STOP bit should be sent only after all the bytes in the FIFO are
transmitted out of the FIFO. So wait until FIFO is empty before sending
the STOP bit.

Signed-off-by: Raviteja Narayanam <raviteja.narayanam@xilinx.com>
Signed-off-by: Manikanta Guntupalli <manikanta.guntupalli@amd.com>
Acked-by: Michal Simek <michal.simek@amd.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/busses/i2c-xiic.c

index edc64b79e29319f55be4a8051ffe3ebf0747919e..57084696429c299723057c0731c81f19469f7466 100644 (file)
@@ -436,6 +436,13 @@ static void xiic_fill_tx_fifo(struct xiic_i2c *i2c)
                                data |= XIIC_TX_DYN_STOP_MASK;
                        } else {
                                u8 cr;
+                               int status;
+
+                               /* Wait till FIFO is empty so STOP is sent last */
+                               status = xiic_wait_tx_empty(i2c);
+                               if (status)
+                                       return;
+
                                /* Write to CR to stop */
                                cr = xiic_getreg8(i2c, XIIC_CR_REG_OFFSET);
                                xiic_setreg8(i2c, XIIC_CR_REG_OFFSET, cr &