Message ID | 20250220040029.27596-2-kfting@nuvoton.com |
---|---|
State | New |
Headers | show |
Series | i2c: npcm: Bug fixes remaining interrupts | expand |
Hi Tyrone, On Thu, Feb 20, 2025 at 12:00:29PM +0800, Tyrone Ting wrote: > The customer reports that there is a soft lockup issue related to > the i2c driver. After checking, the i2c module was doing a tx transfer > and the bmc machine reboots in the middle of the i2c transaction, the i2c > module keeps the status without being reset. ... > Signed-off-by: Tyrone Ting <kfting@nuvoton.com> I guess we also need: Fixes: 56a1485b102e ("i2c: npcm7xx: Add Nuvoton NPCM I2C controller driver") Cc: <stable@vger.kernel.org> # v5.8+ I'm now applying the patch to the i2c/i2c-host-fixes with these tags Please, let me know if you think that's not the case. Thanks, Andi
Hi Andi: Thank you for your comments. Andi Shyti <andi.shyti@kernel.org> 於 2025年2月27日 週四 上午6:18寫道: > > Hi Tyrone, > > On Thu, Feb 20, 2025 at 12:00:29PM +0800, Tyrone Ting wrote: > > The customer reports that there is a soft lockup issue related to > > the i2c driver. After checking, the i2c module was doing a tx transfer > > and the bmc machine reboots in the middle of the i2c transaction, the i2c > > module keeps the status without being reset. > > ... > > > Signed-off-by: Tyrone Ting <kfting@nuvoton.com> > > I guess we also need: > > Fixes: 56a1485b102e ("i2c: npcm7xx: Add Nuvoton NPCM I2C controller driver") > Cc: <stable@vger.kernel.org> # v5.8+ > > I'm now applying the patch to the i2c/i2c-host-fixes with these > tags > > Please, let me know if you think that's not the case. > Thank you for your help on including these tags into the patch. > Thanks, > Andi Regards, Tyrone
diff --git a/drivers/i2c/busses/i2c-npcm7xx.c b/drivers/i2c/busses/i2c-npcm7xx.c index 3ca08b8ef8af..de713b5747fe 100644 --- a/drivers/i2c/busses/i2c-npcm7xx.c +++ b/drivers/i2c/busses/i2c-npcm7xx.c @@ -2554,6 +2554,13 @@ static int npcm_i2c_probe_bus(struct platform_device *pdev) if (irq < 0) return irq; + /* + * Disable the interrupt to avoid the interrupt handler being triggered + * incorrectly by the asynchronous interrupt status since the machine + * might do a warm reset during the last smbus/i2c transfer session. + */ + npcm_i2c_int_enable(bus, false); + ret = devm_request_irq(bus->dev, irq, npcm_i2c_bus_irq, 0, dev_name(bus->dev), bus); if (ret)