Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 193175
b: refs/heads/master
c: 2dd151a
h: refs/heads/master
i:
  193173: aca0e70
  193171: 0c2d91f
  193167: 0c727a1
v: v3
  • Loading branch information
Alexander Shishkin authored and Ben Dooks committed May 19, 2010
1 parent ffb75fc commit 8200631
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 20c9d2c4ab8243a1c311248232954b2c1da3ba75
refs/heads/master: 2dd151ab2792cd27a2268a6e4f3248193beed504
43 changes: 24 additions & 19 deletions trunk/drivers/i2c/busses/i2c-omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,27 @@ omap_i2c_rev1_isr(int this_irq, void *dev_id)
#define omap_i2c_rev1_isr NULL
#endif

/*
* OMAP3430 Errata 1.153: When an XRDY/XDR is hit, wait for XUDF before writing
* data to DATA_REG. Otherwise some data bytes can be lost while transferring
* them from the memory to the I2C interface.
*/
static int errata_omap3_1p153(struct omap_i2c_dev *dev, u16 *stat, int *err)
{
while (!(*stat & OMAP_I2C_STAT_XUDF)) {
if (*stat & (OMAP_I2C_STAT_NACK | OMAP_I2C_STAT_AL)) {
omap_i2c_ack_stat(dev, *stat & (OMAP_I2C_STAT_XRDY |
OMAP_I2C_STAT_XDR));
*err |= OMAP_I2C_STAT_XUDF;
return -ETIMEDOUT;
}
cpu_relax();
*stat = omap_i2c_read_reg(dev, OMAP_I2C_STAT_REG);
}

return 0;
}

static irqreturn_t
omap_i2c_isr(int this_irq, void *dev_id)
{
Expand Down Expand Up @@ -885,25 +906,9 @@ omap_i2c_isr(int this_irq, void *dev_id)
break;
}

/*
* OMAP3430 Errata 1.153: When an XRDY/XDR
* is hit, wait for XUDF before writing data
* to DATA_REG. Otherwise some data bytes can
* be lost while transferring them from the
* memory to the I2C interface.
*/

if (dev->rev <= OMAP_I2C_REV_ON_3430) {
while (!(stat & OMAP_I2C_STAT_XUDF)) {
if (stat & (OMAP_I2C_STAT_NACK | OMAP_I2C_STAT_AL)) {
omap_i2c_ack_stat(dev, stat & (OMAP_I2C_STAT_XRDY | OMAP_I2C_STAT_XDR));
err |= OMAP_I2C_STAT_XUDF;
goto complete;
}
cpu_relax();
stat = omap_i2c_read_reg(dev, OMAP_I2C_STAT_REG);
}
}
if ((dev->rev <= OMAP_I2C_REV_ON_3430) &&
errata_omap3_1p153(dev, &stat, &err))
goto complete;

omap_i2c_write_reg(dev, OMAP_I2C_DATA_REG, w);
}
Expand Down

0 comments on commit 8200631

Please sign in to comment.