i2c: omap: ensure writes to dev->buf_len are ordered
authorFelipe Balbi <balbi@ti.com>
Wed, 14 Nov 2012 14:22:45 +0000 (16:22 +0200)
committerWolfram Sang <w.sang@pengutronix.de>
Wed, 14 Nov 2012 16:44:37 +0000 (17:44 +0100)
commitd60ece5f010043422c5fbc3609714c4420c7c9bf
tree442098ec524242561a86a8525aaa7a83cffa4911
parent49839dc93970789cea46f5171cd7f6ec11af64c7
i2c: omap: ensure writes to dev->buf_len are ordered

if we allow compiler reorder our writes, we could
fall into a situation where dev->buf_len is reset
for no apparent reason.

This bug was found with a simple script which would
transfer data to an i2c client from 1 to 1024 bytes
(a simple for loop), when we got to transfer sizes
bigger than the fifo size, dev->buf_len was reset
to zero before we had an oportunity to handle XDR
Interrupt. Because dev->buf_len was zero, we entered
omap_i2c_transmit_data() to transfer zero bytes,
which would mean we would just silently exit
omap_i2c_transmit_data() without actually writing
anything to DATA register. That would cause XDR
IRQ to trigger forever and we would never transfer
the remaining bytes.

After adding the memory barrier, we also drop resetting
dev->buf_len to zero in omap_i2c_xfer_msg() because
both omap_i2c_transmit_data() and omap_i2c_receive_data()
will act until dev->buf_len reaches zero, rendering the
other write in omap_i2c_xfer_msg() redundant.

This patch has been tested with pandaboard for a few
iterations of the script mentioned above.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
drivers/i2c/busses/i2c-omap.c
This page took 0.040509 seconds and 5 git commands to generate.