summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2022-04-11 17:10:09 -0500
committerPaul Fagerburg <pfagerburg@chromium.org>2022-05-31 13:43:09 +0000
commit57097130d5e4880e39ce8f63eba6f11d7c51e94c (patch)
treed5c7f83ce9df41579c2adbe2dcaa0175342f4ed4 /src/drivers
parent1017a8fc5f60e6d819d9f3a165c1d4aef766cda0 (diff)
downloadcoreboot-57097130d5e4880e39ce8f63eba6f11d7c51e94c.tar.gz
drivers/i2c/dw_i2c: Adjust to handle 0-byte transfers
0-byte writes can be used as a way to probe/check presence of an i2c device, so adjust _dw_i2c_transfer() to immediately set the STOP bit and raise logger level for TX abort messages when the segment length is zero. Adjust dw_i2c_transfer() to allow zero-segment-length messages to be passed thru to _dw_i2c_transfer(). Tested as part of entire i2c-detect patch train. Change-Id: I518e849f4c476c264a1464886b1853af66c0b29d Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/63561 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@tutanota.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/i2c/designware/dw_i2c.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/drivers/i2c/designware/dw_i2c.c b/src/drivers/i2c/designware/dw_i2c.c
index 761fa914b4..fdedf63b56 100644
--- a/src/drivers/i2c/designware/dw_i2c.c
+++ b/src/drivers/i2c/designware/dw_i2c.c
@@ -358,6 +358,7 @@ static enum cb_err _dw_i2c_transfer(unsigned int bus, const struct i2c_msg *segm
struct dw_i2c_regs *regs;
size_t byte;
enum cb_err ret = CB_ERR;
+ bool seg_zero_len = segments->len == 0;
regs = (struct dw_i2c_regs *)dw_i2c_base_address(bus);
if (!regs) {
@@ -374,6 +375,10 @@ static enum cb_err _dw_i2c_transfer(unsigned int bus, const struct i2c_msg *segm
dw_i2c_enable(regs);
+ if (seg_zero_len)
+ /* stop immediately */
+ write32(&regs->cmd_data, CMD_DATA_STOP);
+
/* Process each segment */
while (count--) {
if (CONFIG(DRIVERS_I2C_DESIGNWARE_DEBUG)) {
@@ -424,8 +429,8 @@ static enum cb_err _dw_i2c_transfer(unsigned int bus, const struct i2c_msg *segm
/* Check TX abort */
if (read32(&regs->raw_intr_stat) & INTR_STAT_TX_ABORT) {
- printk(BIOS_ERR, "I2C TX abort detected (%08x)\n",
- read32(&regs->tx_abort_source));
+ printk(seg_zero_len ? BIOS_SPEW : BIOS_ERR, "I2C TX abort detected (%08x)\n",
+ read32(&regs->tx_abort_source));
/* clear INTR_STAT_TX_ABORT */
read32(&regs->clear_tx_abrt_intr);
goto out;
@@ -462,7 +467,7 @@ static enum cb_err dw_i2c_transfer(unsigned int bus, const struct i2c_msg *msg,
size_t start;
uint16_t addr;
- if (count == 0 || !msg)
+ if (!msg)
return -1;
/* Break up the transfers at the differing slave address boundary. */