aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses
diff options
context:
space:
mode:
authorSteven A. Falco <sfalco@harris.com>2013-04-22 09:34:39 +0000
committerBen Hutchings <ben@decadent.org.uk>2013-05-13 15:02:24 +0100
commit577e0ee41563bcdc776da7d84a65e1bac3c6a3eb (patch)
treeb7b264187a30cb4ec6e74303aef3e1bdacc19e4e /drivers/i2c/busses
parent5b5bbdf617dcfd3cf070c7a6e0d0162a48a8cc97 (diff)
downloadkernel_samsung_smdk4412-577e0ee41563bcdc776da7d84a65e1bac3c6a3eb.zip
kernel_samsung_smdk4412-577e0ee41563bcdc776da7d84a65e1bac3c6a3eb.tar.gz
kernel_samsung_smdk4412-577e0ee41563bcdc776da7d84a65e1bac3c6a3eb.tar.bz2
i2c: xiic: must always write 16-bit words to TX_FIFO
commit c39e8e4354ce4daf23336de5daa28a3b01f00aa6 upstream. The TX_FIFO register is 10 bits wide. The lower 8 bits are the data to be written, while the upper two bits are flags to indicate stop/start. The driver apparently attempted to optimize write access, by only writing a byte in those cases where the stop/start bits are zero. However, we have seen cases where the lower byte is duplicated onto the upper byte by the hardware, which causes inadvertent stop/starts. This patch changes the write access to the transmit FIFO to always be 16 bits wide. Signed off by: Steven A. Falco <sfalco@harris.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r--drivers/i2c/busses/i2c-xiic.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
index 4bb68f3..64e7065 100644
--- a/drivers/i2c/busses/i2c-xiic.c
+++ b/drivers/i2c/busses/i2c-xiic.c
@@ -311,10 +311,8 @@ static void xiic_fill_tx_fifo(struct xiic_i2c *i2c)
/* last message in transfer -> STOP */
data |= XIIC_TX_DYN_STOP_MASK;
dev_dbg(i2c->adap.dev.parent, "%s TX STOP\n", __func__);
-
- xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET, data);
- } else
- xiic_setreg8(i2c, XIIC_DTR_REG_OFFSET, data);
+ }
+ xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET, data);
}
}