[rtems commit] Xilinx AXI I2C driver IP race condition causes clock glitch.
Chris Johns
chrisj at rtems.org
Thu Feb 1 04:00:11 UTC 2018
Module: rtems
Branch: master
Commit: 05015dc1886d08e9f9f3ed453688c52cebd4cc3f
Changeset: http://git.rtems.org/rtems/commit/?id=05015dc1886d08e9f9f3ed453688c52cebd4cc3f
Author: Chris Johns <chrisj at rtems.org>
Date: Tue Jan 23 13:23:55 2018 +1100
Xilinx AXI I2C driver IP race condition causes clock glitch.
Setting the PIRQ to 0 before reading the data produces a short clock pulse.
Moving the write to after reading the data fixes the issue.
Close #3173
---
cpukit/dev/i2c/xilinx-axi-i2c.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/cpukit/dev/i2c/xilinx-axi-i2c.c b/cpukit/dev/i2c/xilinx-axi-i2c.c
index 45a1c90..11b0658 100644
--- a/cpukit/dev/i2c/xilinx-axi-i2c.c
+++ b/cpukit/dev/i2c/xilinx-axi-i2c.c
@@ -512,8 +512,12 @@ xilinx_axi_i2c_read_rx_fifo(xilinx_axi_i2c_bus* bus)
*/
xilinx_axi_i2c_disable_clear_irq(bus, INT_TX_ERROR);
xilinx_axi_i2c_set_cr(bus, CR_TXAK);
- xilinx_axi_i2c_write_rx_pirq(bus, 0);
xilinx_axi_i2c_read_rx_bytes(bus, level);
+ /*
+ * Set the RX PIRQ to 0 after the RX data has been read. There is an
+ * observed timing issue and glitch if written before.
+ */
+ xilinx_axi_i2c_write_rx_pirq(bus, 0);
break;
case 0:
More information about the vc
mailing list