Skip to content

Commit d98f6fc

Browse files
juhosgAndi Shyti
authored andcommitted
i2c: pxa: handle 'Early Bus Busy' condition on Armada 3700
Under some circumstances I2C recovery fails on Armada 3700. At least on the Methode uDPU board, removing and replugging an SFP module fails often, like this: [ 36.953127] sfp sfp-eth1: module removed [ 38.468549] i2c i2c-1: i2c_pxa: timeout waiting for bus free [ 38.486960] sfp sfp-eth1: module MENTECHOPTO POS22-LDCC-KR rev 1.0 sn MNC208U90009 dc 200828 [ 38.496867] mvneta d0040000.ethernet eth1: unsupported SFP module: no common interface modes [ 38.521448] hwmon hwmon2: temp1_input not attached to any thermal zone [ 39.249196] sfp sfp-eth1: module removed ... [ 292.568799] sfp sfp-eth1: please wait, module slow to respond ... [ 625.208814] sfp sfp-eth1: failed to read EEPROM: -EREMOTEIO Note that the 'unsupported SFP module' messages are not relevant. The module is used only for testing the I2C recovery funcionality, because the error can be triggered easily with this specific one. Enabling debug in the i2c-pxa driver reveals the following: [ 82.034678] sfp sfp-eth1: module removed [ 90.008654] i2c i2c-1: slave_0x50 error: timeout with active message [ 90.015112] i2c i2c-1: msg_num: 2 msg_idx: 0 msg_ptr: 0 [ 90.020464] i2c i2c-1: IBMR: 00000003 IDBR: 000000a0 ICR: 000007e0 ISR: 00000802 [ 90.027906] i2c i2c-1: log: [ 90.030787] This continues until the retries are exhausted ... [ 110.192489] i2c i2c-1: slave_0x50 error: exhausted retries [ 110.198012] i2c i2c-1: msg_num: 2 msg_idx: 0 msg_ptr: 0 [ 110.203323] i2c i2c-1: IBMR: 00000003 IDBR: 000000a0 ICR: 000007e0 ISR: 00000802 [ 110.210810] i2c i2c-1: log: [ 110.213633] ... then the whole sequence starts again ... [ 115.368641] i2c i2c-1: slave_0x50 error: timeout with active message ... while finally the SFP core gives up: [ 671.975258] sfp sfp-eth1: failed to read EEPROM: -EREMOTEIO When we analyze the log, it can be seen that bit 1 and 11 is set in the ISR (Interface Status Register). Bit 1 indicates the ACK/NACK status, but the purpose of bit 11 is not documented in the driver code unfortunately. The 'Functional Specification' document of the Armada 3700 SoCs family however says that this bit indicates an 'Early Bus Busy' condition. The document also notes that whenever this bit is set, it is not possible to initiate a transaction on the I2C bus. The observed behaviour corresponds to this statement. Unfortunately, I2C recovery does not help as it never runs in this special case. Although the driver checks the busyness of the bus at several places, but since it does not consider the A3700 specific bit in these checks it can't determine the actual status of the bus correctly which results in the errors above. In order to fix the problem, add a new member to struct 'i2c_pxa' to store a controller specific bitmask containing the bits indicating the busy status, and use that in the code while checking the actual status of the bus. This ensures that the correct status can be determined on the Armada 3700 based devices without causing functional changes on devices based on other SoCs. With the change applied, the driver detects the busy condition, and runs the recovery process: [ 742.617312] i2c i2c-1: state:i2c_pxa_wait_bus_not_busy:449: ISR=00000802, ICR=000007e0, IBMR=03 [ 742.626099] i2c i2c-1: i2c_pxa: timeout waiting for bus free [ 742.631933] i2c i2c-1: recovery: resetting controller, ISR=0x00000802 [ 742.638421] i2c i2c-1: recovery: IBMR 0x00000003 ISR 0x00000000 This clears the EBB bit in the ISR register, so it makes it possible to initiate transactions on the I2C bus again. After this patch, the SFP module used for testing can be removed and replugged numerous times without causing the error described at the beginning. Previously, the error happened after a few such attempts. The patch has been tested also with the following kernel versions: 5.10.251, 5.15.201, 6.1.164, 6.6.127, 6.12.74, 6.14.11, 6.15.10, 6.16.1, 6.18.13, 6.19.3 It improves recovery on all of them. Signed-off-by: Gabor Juhos <j4g8y7@gmail.com> Reviewed-by: Imre Kaloz <kaloz@openwrt.org> Tested-by: Robert Marko <robert.marko@sartura.hr> Reviewed-by: Linus Walleij <linusw@kernel.org> Signed-off-by: Andi Shyti <andi.shyti@kernel.org> Link: https://lore.kernel.org/r/20260226-i2c-pxa-fix-i2c-communication-v4-2-797a091dae87@gmail.com
1 parent 028ef9c commit d98f6fc

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

drivers/i2c/busses/i2c-pxa.c

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
#define ISR_GCAD (1 << 8) /* general call address detected */
7272
#define ISR_SAD (1 << 9) /* slave address detected */
7373
#define ISR_BED (1 << 10) /* bus error no ACK/NAK */
74+
#define ISR_A3700_EBB (1 << 11) /* early bus busy for armada 3700 */
7475

7576
#define ILCR_SLV_SHIFT 0
7677
#define ILCR_SLV_MASK (0x1FF << ILCR_SLV_SHIFT)
@@ -263,6 +264,7 @@ struct pxa_i2c {
263264
bool highmode_enter;
264265
u32 fm_mask;
265266
u32 hs_mask;
267+
u32 busy_mask;
266268

267269
struct i2c_bus_recovery_info recovery;
268270
struct pinctrl *pinctrl;
@@ -430,7 +432,7 @@ static int i2c_pxa_wait_bus_not_busy(struct pxa_i2c *i2c)
430432

431433
while (1) {
432434
isr = readl(_ISR(i2c));
433-
if (!(isr & (ISR_IBB | ISR_UB)))
435+
if (!(isr & i2c->busy_mask))
434436
return 0;
435437

436438
if (isr & ISR_SAD)
@@ -467,7 +469,7 @@ static int i2c_pxa_wait_master(struct pxa_i2c *i2c)
467469
* quick check of the i2c lines themselves to ensure they've
468470
* gone high...
469471
*/
470-
if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) == 0 &&
472+
if ((readl(_ISR(i2c)) & i2c->busy_mask) == 0 &&
471473
readl(_IBMR(i2c)) == (IBMR_SCLS | IBMR_SDAS)) {
472474
if (i2c_debug > 0)
473475
dev_dbg(&i2c->adap.dev, "%s: done\n", __func__);
@@ -488,7 +490,7 @@ static int i2c_pxa_set_master(struct pxa_i2c *i2c)
488490
if (i2c_debug)
489491
dev_dbg(&i2c->adap.dev, "setting to bus master\n");
490492

491-
if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) != 0) {
493+
if ((readl(_ISR(i2c)) & i2c->busy_mask) != 0) {
492494
dev_dbg(&i2c->adap.dev, "%s: unit is busy\n", __func__);
493495
if (!i2c_pxa_wait_master(i2c)) {
494496
dev_dbg(&i2c->adap.dev, "%s: error: unit busy\n", __func__);
@@ -514,7 +516,7 @@ static int i2c_pxa_wait_slave(struct pxa_i2c *i2c)
514516
dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n",
515517
__func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
516518

517-
if ((readl(_ISR(i2c)) & (ISR_UB|ISR_IBB)) == 0 ||
519+
if ((readl(_ISR(i2c)) & i2c->busy_mask) == 0 ||
518520
(readl(_ISR(i2c)) & ISR_SAD) != 0 ||
519521
(readl(_ICR(i2c)) & ICR_SCLE) == 0) {
520522
if (i2c_debug > 1)
@@ -1177,7 +1179,7 @@ static int i2c_pxa_pio_set_master(struct pxa_i2c *i2c)
11771179
/*
11781180
* Wait for the bus to become free.
11791181
*/
1180-
while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB))
1182+
while (timeout-- && readl(_ISR(i2c)) & i2c->busy_mask)
11811183
udelay(1000);
11821184

11831185
if (timeout < 0) {
@@ -1322,7 +1324,7 @@ static void i2c_pxa_unprepare_recovery(struct i2c_adapter *adap)
13221324
* handing control of the bus back to avoid the bus changing state.
13231325
*/
13241326
isr = readl(_ISR(i2c));
1325-
if (isr & (ISR_UB | ISR_IBB)) {
1327+
if (isr & i2c->busy_mask) {
13261328
dev_dbg(&i2c->adap.dev,
13271329
"recovery: resetting controller, ISR=0x%08x\n", isr);
13281330
i2c_pxa_do_reset(i2c);
@@ -1479,6 +1481,10 @@ static int i2c_pxa_probe(struct platform_device *dev)
14791481
i2c->fm_mask = pxa_reg_layout[i2c_type].fm;
14801482
i2c->hs_mask = pxa_reg_layout[i2c_type].hs;
14811483

1484+
i2c->busy_mask = ISR_UB | ISR_IBB;
1485+
if (i2c_type == REGS_A3700)
1486+
i2c->busy_mask |= ISR_A3700_EBB;
1487+
14821488
if (i2c_type != REGS_CE4100)
14831489
i2c->reg_isar = i2c->reg_base + pxa_reg_layout[i2c_type].isar;
14841490

0 commit comments

Comments
 (0)