[GIT PULL] i2c fixes for v7.2-rc6
Andi Shyti <[email protected]> Sat, 1 Aug 2026 10:45:52 +0200
| Newsgroups | org.kernel.vger.linux-i2c,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Hi Linus,
given the holiday period, I squeezed two fixes cycles in this
request for -rc6.
It contains a set of fixes across several host controller
drivers. The largest part addresses three issues in the i.MX
driver, while the remaining changes fix probe ordering, power
management, timeout recovery and error handling.
Thanks,
Andi
The following changes since commit f5098b6bae761e346ebcd9da7f95622c04733cff:
Linux 7.2-rc5 (2026-07-26 14:45:48 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux.git tags/i2c-fixes-7.2-rc6
for you to fetch changes up to b08c9857aa1f5f3a81d375d6d4bb1d8b92f22ebc:
i2c: qcom-cci: drop custom suspend/resume and rely on runtime PM helpers (2026-07-28 23:34:16 +0200)
----------------------------------------------------------------
i2c-fixes for v7.2-rc6
- amd-mp2: unregister callback if adapter registration fails
- designware: defer probe until child GPIO controllers are bound
- imx:
- mark adapter suspended while hardware is powered down
- fix stale slave pointer and shared IRQ registration race
- stop slave timer before clearing slave pointer
- iproc: reset controller if START_BUSY remains set after timeout
- jz4780: cache clock rate to avoid clk_get_rate() deadlock
- qcom-cci: rely on runtime PM helpers for system sleep
- spacemit: request interrupt after clock initialization
----------------------------------------------------------------
Carlos Song (1):
i2c: imx: mark I2C adapter when hardware is powered down
H. Nikolaus Schaller (1):
i2c: jz4780: Cache host clock rate at probe to prevent CCF prepare_lock deadlock
Hardik Prakash (1):
i2c: designware: defer probe if child GpioInt controllers are not bound
Jonas Gorski (1):
i2c: iproc: reset bus after timeout if START_BUSY is stuck
Liem (2):
i2c: imx: Fix slave registration race and error handling
i2c: imx: Cancel hrtimer before clearing slave pointer
Linmao Li (1):
i2c: spacemit: request IRQ after controller initialization
Myeonghun Pak (1):
i2c: amd-mp2: Unregister callback on adapter add failure
Wenmeng Liu (1):
i2c: qcom-cci: drop custom suspend/resume and rely on runtime PM helpers
drivers/i2c/busses/i2c-amd-mp2-plat.c | 4 +++-
drivers/i2c/busses/i2c-bcm-iproc.c | 11 +++++++++++
drivers/i2c/busses/i2c-designware-platdrv.c | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/i2c/busses/i2c-imx.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++++-----
drivers/i2c/busses/i2c-jz4780.c | 5 ++++-
drivers/i2c/busses/i2c-k1.c | 10 +++++-----
drivers/i2c/busses/i2c-qcom-cci.c | 18 +-----------------
7 files changed, 153 insertions(+), 29 deletions(-)