* [PATCH v4 0/4] i2c: designware: Improve device disable handling
@ 2026-05-07 20:05 William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function William A. Kennington III
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: William A. Kennington III @ 2026-05-07 20:05 UTC (permalink / raw)
To: Mika Westerberg, Andy Shevchenko, Jan Dabros, Andi Shyti
Cc: linux-i2c, linux-kernel, William A. Kennington III
When the I2C controller attempts a new transaction while the target
controller is shutting down or restarting, it can lead to bus lockups
and system bootloops if the hardware enters an inconsistent state.
This patch series addresses this by ensuring that the internal state
machines are properly cleared when disabling the controller if target
activity is detected.
Additionally, it adds a shutdown hook that gracefully sets the target
disable bit before disabling the controller. This guarantees that any
incoming requests from the controller are immediately NACKed during
shutdown, preventing the bus from hanging.
Signed-off-by: William A. Kennington III <william@wkennington.com>
---
Changes in v4:
- Updated language to use inclusive terms
- Refactored some minor comment / code nits
- Link to v3: https://lore.kernel.org/r/20260504-dw-i2c-v3-0-57e56135d602@wkennington.com
Changes in v3:
- Split the monolithic patch into 4 logical patches
- Reverted stray formatting change in the PCI driver's dw_i2c_driver struct.
Changes in v2:
- Fix description footers
- Fix emails
---
William A. Kennington III (4):
i2c: designware: Introduce shutdown exported function
i2c: designware: Convert PCI driver to use shutdown hook
i2c: designware: Convert platform driver to use shutdown hook
i2c: designware: Handle active target cleanly
drivers/i2c/busses/i2c-designware-common.c | 32 +++++++++++++++++++++++++++++
drivers/i2c/busses/i2c-designware-core.h | 1 +
drivers/i2c/busses/i2c-designware-master.c | 31 +++++++++++++++++-----------
drivers/i2c/busses/i2c-designware-pcidrv.c | 14 +++++++++++++
drivers/i2c/busses/i2c-designware-platdrv.c | 14 +++++++++++++
5 files changed, 80 insertions(+), 12 deletions(-)
---
base-commit: 5862221fddede6bb15566ab3c1f23a3c353da5e1
change-id: 20260504-dw-i2c-d5a1b1a0036a
Best regards,
--
William A. Kennington III <william@wkennington.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function
2026-05-07 20:05 [PATCH v4 0/4] i2c: designware: Improve device disable handling William A. Kennington III
@ 2026-05-07 20:05 ` William A. Kennington III
2026-05-08 8:12 ` Andy Shevchenko
2026-05-07 20:05 ` [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook William A. Kennington III
` (2 subsequent siblings)
3 siblings, 1 reply; 12+ messages in thread
From: William A. Kennington III @ 2026-05-07 20:05 UTC (permalink / raw)
To: Mika Westerberg, Andy Shevchenko, Jan Dabros, Andi Shyti
Cc: linux-i2c, linux-kernel, William A. Kennington III
Introduce an exported shutdown function to safely shutdown the
DesignWare I2C controller.
This shutdown hook gracefully sets the target disable bit before disabling
the controller. This guarantees that any incoming requests from the
controller are immediately NACKed during shutdown, preventing the bus from
hanging.
Signed-off-by: William A. Kennington III <william@wkennington.com>
---
drivers/i2c/busses/i2c-designware-common.c | 24 ++++++++++++++++++++++++
drivers/i2c/busses/i2c-designware-core.h | 1 +
2 files changed, 25 insertions(+)
diff --git a/drivers/i2c/busses/i2c-designware-common.c b/drivers/i2c/busses/i2c-designware-common.c
index 4dc57fd56170..886f4dad166a 100644
--- a/drivers/i2c/busses/i2c-designware-common.c
+++ b/drivers/i2c/busses/i2c-designware-common.c
@@ -1028,5 +1028,29 @@ EXPORT_GPL_DEV_PM_OPS(i2c_dw_dev_pm_ops) = {
RUNTIME_PM_OPS(i2c_dw_runtime_suspend, i2c_dw_runtime_resume, NULL)
};
+void i2c_dw_shutdown(struct dw_i2c_dev *dev)
+{
+ unsigned int con;
+
+ /*
+ * We only need to handle shutdown for target mode to ensure
+ * we NACK any incoming controller requests. Master mode cleanup
+ * is handled after each transfer in i2c_dw_xfer().
+ */
+ if (dev->mode != DW_IC_SLAVE)
+ return;
+
+ /*
+ * To quickly NACK the controller during shutdown, we set the target
+ * disable bit while the controller is still enabled.
+ */
+ regmap_read(dev->map, DW_IC_CON, &con);
+ con |= DW_IC_CON_SLAVE_DISABLE;
+ regmap_write(dev->map, DW_IC_CON, con);
+
+ i2c_dw_disable(dev);
+}
+EXPORT_SYMBOL_GPL(i2c_dw_shutdown);
+
MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter core");
MODULE_LICENSE("GPL");
diff --git a/drivers/i2c/busses/i2c-designware-core.h b/drivers/i2c/busses/i2c-designware-core.h
index 9d8d104cc391..c71aa2dd368d 100644
--- a/drivers/i2c/busses/i2c-designware-core.h
+++ b/drivers/i2c/busses/i2c-designware-core.h
@@ -417,6 +417,7 @@ static inline void i2c_dw_configure(struct dw_i2c_dev *dev)
int i2c_dw_probe(struct dw_i2c_dev *dev);
int i2c_dw_init(struct dw_i2c_dev *dev);
+void i2c_dw_shutdown(struct dw_i2c_dev *dev);
void i2c_dw_set_mode(struct dw_i2c_dev *dev, int mode);
#if IS_ENABLED(CONFIG_I2C_DESIGNWARE_BAYTRAIL)
--
2.54.0.563.g4f69b47b94-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook
2026-05-07 20:05 [PATCH v4 0/4] i2c: designware: Improve device disable handling William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function William A. Kennington III
@ 2026-05-07 20:05 ` William A. Kennington III
2026-05-08 8:15 ` Andy Shevchenko
2026-05-07 20:05 ` [PATCH v4 3/4] i2c: designware: Convert platform " William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 4/4] i2c: designware: Handle active target cleanly William A. Kennington III
3 siblings, 1 reply; 12+ messages in thread
From: William A. Kennington III @ 2026-05-07 20:05 UTC (permalink / raw)
To: Mika Westerberg, Andy Shevchenko, Jan Dabros, Andi Shyti
Cc: linux-i2c, linux-kernel, William A. Kennington III
Convert the PCI driver to use the new i2c_dw_shutdown() hook, allowing
the controller to gracefully NACK master requests during system shutdown.
Signed-off-by: William A. Kennington III <william@wkennington.com>
---
drivers/i2c/busses/i2c-designware-pcidrv.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/drivers/i2c/busses/i2c-designware-pcidrv.c b/drivers/i2c/busses/i2c-designware-pcidrv.c
index f21f9877c040..ab21d4414681 100644
--- a/drivers/i2c/busses/i2c-designware-pcidrv.c
+++ b/drivers/i2c/busses/i2c-designware-pcidrv.c
@@ -356,10 +356,24 @@ static const struct pci_device_id i2c_designware_pci_ids[] = {
};
MODULE_DEVICE_TABLE(pci, i2c_designware_pci_ids);
+static void i2c_dw_pci_shutdown(struct pci_dev *pdev)
+{
+ struct dw_i2c_dev *i_dev;
+
+ i_dev = pci_get_drvdata(pdev);
+ if (!i_dev)
+ return;
+
+ pm_runtime_disable(&pdev->dev);
+ if (!pm_runtime_status_suspended(&pdev->dev))
+ i2c_dw_shutdown(i_dev);
+}
+
static struct pci_driver dw_i2c_driver = {
.name = DRIVER_NAME,
.probe = i2c_dw_pci_probe,
.remove = i2c_dw_pci_remove,
+ .shutdown = i2c_dw_pci_shutdown,
.driver = {
.pm = pm_ptr(&i2c_dw_dev_pm_ops),
},
--
2.54.0.563.g4f69b47b94-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v4 3/4] i2c: designware: Convert platform driver to use shutdown hook
2026-05-07 20:05 [PATCH v4 0/4] i2c: designware: Improve device disable handling William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook William A. Kennington III
@ 2026-05-07 20:05 ` William A. Kennington III
2026-05-08 8:15 ` Andy Shevchenko
2026-05-07 20:05 ` [PATCH v4 4/4] i2c: designware: Handle active target cleanly William A. Kennington III
3 siblings, 1 reply; 12+ messages in thread
From: William A. Kennington III @ 2026-05-07 20:05 UTC (permalink / raw)
To: Mika Westerberg, Andy Shevchenko, Jan Dabros, Andi Shyti
Cc: linux-i2c, linux-kernel, William A. Kennington III
Convert the platform driver to use the new i2c_dw_shutdown() hook,
allowing the controller to gracefully NACK master requests during
system shutdown.
Signed-off-by: William A. Kennington III <william@wkennington.com>
---
drivers/i2c/busses/i2c-designware-platdrv.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c b/drivers/i2c/busses/i2c-designware-platdrv.c
index 3351c4a9ef11..da2babd6188b 100644
--- a/drivers/i2c/busses/i2c-designware-platdrv.c
+++ b/drivers/i2c/busses/i2c-designware-platdrv.c
@@ -289,9 +289,23 @@ static const struct platform_device_id dw_i2c_platform_ids[] = {
};
MODULE_DEVICE_TABLE(platform, dw_i2c_platform_ids);
+static void dw_i2c_plat_shutdown(struct platform_device *pdev)
+{
+ struct dw_i2c_dev *i_dev;
+
+ i_dev = platform_get_drvdata(pdev);
+ if (!i_dev)
+ return;
+
+ pm_runtime_disable(&pdev->dev);
+ if (!pm_runtime_status_suspended(&pdev->dev))
+ i2c_dw_shutdown(i_dev);
+}
+
static struct platform_driver dw_i2c_driver = {
.probe = dw_i2c_plat_probe,
.remove = dw_i2c_plat_remove,
+ .shutdown = dw_i2c_plat_shutdown,
.driver = {
.name = "i2c_designware",
.of_match_table = dw_i2c_of_match,
--
2.54.0.563.g4f69b47b94-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v4 4/4] i2c: designware: Handle active target cleanly
2026-05-07 20:05 [PATCH v4 0/4] i2c: designware: Improve device disable handling William A. Kennington III
` (2 preceding siblings ...)
2026-05-07 20:05 ` [PATCH v4 3/4] i2c: designware: Convert platform " William A. Kennington III
@ 2026-05-07 20:05 ` William A. Kennington III
2026-05-08 10:01 ` Andy Shevchenko
3 siblings, 1 reply; 12+ messages in thread
From: William A. Kennington III @ 2026-05-07 20:05 UTC (permalink / raw)
To: Mika Westerberg, Andy Shevchenko, Jan Dabros, Andi Shyti
Cc: linux-i2c, linux-kernel, William A. Kennington III
When the I2C controller attempts a new transaction while the target
controller is shutting down or restarting, it can lead to bus lockups
and system bootloops if the hardware enters an inconsistent state.
Address this by ensuring that the internal state machines are properly
cleared when disabling the controller if target activity is detected.
If the controller remains active after disabling, perform a bus recovery
to reset it to a known good state.
Signed-off-by: William A. Kennington III <william@wkennington.com>
---
drivers/i2c/busses/i2c-designware-common.c | 8 ++++++++
drivers/i2c/busses/i2c-designware-master.c | 31 ++++++++++++++++++------------
2 files changed, 27 insertions(+), 12 deletions(-)
diff --git a/drivers/i2c/busses/i2c-designware-common.c b/drivers/i2c/busses/i2c-designware-common.c
index 886f4dad166a..cf5feed269bd 100644
--- a/drivers/i2c/busses/i2c-designware-common.c
+++ b/drivers/i2c/busses/i2c-designware-common.c
@@ -633,6 +633,14 @@ void __i2c_dw_disable(struct dw_i2c_dev *dev)
abort_needed = (raw_intr_stats & DW_IC_INTR_MST_ON_HOLD) ||
(ic_stats & DW_IC_STATUS_MASTER_HOLD_TX_FIFO_EMPTY);
+
+ /*
+ * If we are in target mode and there is activity, we should also
+ * trigger an abort to clear the internal state machines.
+ */
+ if (dev->mode == DW_IC_SLAVE && (ic_stats & DW_IC_STATUS_SLAVE_ACTIVITY))
+ abort_needed = true;
+
if (abort_needed) {
if (!(enable & DW_IC_ENABLE_ENABLE)) {
regmap_write(dev->map, DW_IC_ENABLE, DW_IC_ENABLE_ENABLE);
diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c
index de929b91d5ea..7a301c8b604e 100644
--- a/drivers/i2c/busses/i2c-designware-master.c
+++ b/drivers/i2c/busses/i2c-designware-master.c
@@ -785,18 +785,25 @@ __i2c_dw_xfer_one_part(struct dw_i2c_dev *dev, struct i2c_msg *msgs, size_t num)
* IC_RAW_INTR_STAT.MASTER_ON_HOLD holding SCL low. Check if
* controller is still ACTIVE before disabling I2C.
*/
- if (i2c_dw_is_controller_active(dev))
- dev_err(dev->dev, "controller active\n");
-
- /*
- * We must disable the adapter before returning and signaling the end
- * of the current transfer. Otherwise the hardware might continue
- * generating interrupts which in turn causes a race condition with
- * the following transfer. Needs some more investigation if the
- * additional interrupts are a hardware bug or this driver doesn't
- * handle them correctly yet.
- */
- __i2c_dw_disable_nowait(dev);
+ if (i2c_dw_is_controller_active(dev)) {
+ /*
+ * If the controller is still active after the timeout, attempt a
+ * bus recovery to clear any potentially locked state.
+ */
+ dev_err(dev->dev, "controller active after xfer, recovering\n");
+ i2c_recover_bus(&dev->adapter);
+ i2c_dw_init(dev);
+ } else {
+ /*
+ * We must disable the adapter before returning and signaling the end
+ * of the current transfer. Otherwise the hardware might continue
+ * generating interrupts which in turn causes a race condition with
+ * the following transfer. Needs some more investigation if the
+ * additional interrupts are a hardware bug or this driver doesn't
+ * handle them correctly yet.
+ */
+ __i2c_dw_disable_nowait(dev);
+ }
if (dev->msg_err)
return dev->msg_err;
--
2.54.0.563.g4f69b47b94-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function
2026-05-07 20:05 ` [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function William A. Kennington III
@ 2026-05-08 8:12 ` Andy Shevchenko
2026-05-08 10:01 ` Andy Shevchenko
0 siblings, 1 reply; 12+ messages in thread
From: Andy Shevchenko @ 2026-05-08 8:12 UTC (permalink / raw)
To: William A. Kennington III
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On Thu, May 07, 2026 at 08:05:15PM +0000, William A. Kennington III wrote:
> Introduce an exported shutdown function to safely shutdown the
> DesignWare I2C controller.
>
> This shutdown hook gracefully sets the target disable bit before disabling
> the controller. This guarantees that any incoming requests from the
> controller are immediately NACKed during shutdown, preventing the bus from
> hanging.
...
> + /*
> + * We only need to handle shutdown for target mode to ensure
> + * we NACK any incoming controller requests. Master mode cleanup
Master --> Controller
> + * is handled after each transfer in i2c_dw_xfer().
> + */
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook
2026-05-07 20:05 ` [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook William A. Kennington III
@ 2026-05-08 8:15 ` Andy Shevchenko
2026-05-11 19:55 ` William A. Kennington III
0 siblings, 1 reply; 12+ messages in thread
From: Andy Shevchenko @ 2026-05-08 8:15 UTC (permalink / raw)
To: William A. Kennington III
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On Thu, May 07, 2026 at 08:05:16PM +0000, William A. Kennington III wrote:
> Convert the PCI driver to use the new i2c_dw_shutdown() hook, allowing
> the controller to gracefully NACK master requests during system shutdown.
...
> +static void i2c_dw_pci_shutdown(struct pci_dev *pdev)
> +{
> + struct dw_i2c_dev *i_dev;
> +
> + i_dev = pci_get_drvdata(pdev);
> + if (!i_dev)
> + return;
> +
> + pm_runtime_disable(&pdev->dev);
> + if (!pm_runtime_status_suspended(&pdev->dev))
There is a difference between pm_runtime_status_suspended() and
pm_runtime_suspended(). Are you sure you use the proper call here?
(Please, double check.)
> + i2c_dw_shutdown(i_dev);
> +}
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 3/4] i2c: designware: Convert platform driver to use shutdown hook
2026-05-07 20:05 ` [PATCH v4 3/4] i2c: designware: Convert platform " William A. Kennington III
@ 2026-05-08 8:15 ` Andy Shevchenko
2026-05-11 19:55 ` William A. Kennington III
0 siblings, 1 reply; 12+ messages in thread
From: Andy Shevchenko @ 2026-05-08 8:15 UTC (permalink / raw)
To: William A. Kennington III
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On Thu, May 07, 2026 at 08:05:17PM +0000, William A. Kennington III wrote:
> Convert the platform driver to use the new i2c_dw_shutdown() hook,
> allowing the controller to gracefully NACK master requests during
> system shutdown.
...
> + if (!pm_runtime_status_suspended(&pdev->dev))
Same question here.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 4/4] i2c: designware: Handle active target cleanly
2026-05-07 20:05 ` [PATCH v4 4/4] i2c: designware: Handle active target cleanly William A. Kennington III
@ 2026-05-08 10:01 ` Andy Shevchenko
0 siblings, 0 replies; 12+ messages in thread
From: Andy Shevchenko @ 2026-05-08 10:01 UTC (permalink / raw)
To: William A. Kennington III
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On Thu, May 07, 2026 at 08:05:18PM +0000, William A. Kennington III wrote:
> When the I2C controller attempts a new transaction while the target
> controller is shutting down or restarting, it can lead to bus lockups
> and system bootloops if the hardware enters an inconsistent state.
>
> Address this by ensuring that the internal state machines are properly
> cleared when disabling the controller if target activity is detected.
>
> If the controller remains active after disabling, perform a bus recovery
> to reset it to a known good state.
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function
2026-05-08 8:12 ` Andy Shevchenko
@ 2026-05-08 10:01 ` Andy Shevchenko
0 siblings, 0 replies; 12+ messages in thread
From: Andy Shevchenko @ 2026-05-08 10:01 UTC (permalink / raw)
To: William A. Kennington III
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On Fri, May 08, 2026 at 11:12:53AM +0300, Andy Shevchenko wrote:
> On Thu, May 07, 2026 at 08:05:15PM +0000, William A. Kennington III wrote:
...
> > + /*
> > + * We only need to handle shutdown for target mode to ensure
> > + * we NACK any incoming controller requests. Master mode cleanup
>
> Master --> Controller
>
> > + * is handled after each transfer in i2c_dw_xfer().
> > + */
With that fixed,
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook
2026-05-08 8:15 ` Andy Shevchenko
@ 2026-05-11 19:55 ` William A. Kennington III
0 siblings, 0 replies; 12+ messages in thread
From: William A. Kennington III @ 2026-05-11 19:55 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On 5/8/26 01:15, Andy Shevchenko wrote:
> On Thu, May 07, 2026 at 08:05:16PM +0000, William A. Kennington III wrote:
>> Convert the PCI driver to use the new i2c_dw_shutdown() hook, allowing
>> the controller to gracefully NACK master requests during system shutdown.
> ...
Done
>
>> +static void i2c_dw_pci_shutdown(struct pci_dev *pdev)
>> +{
>> + struct dw_i2c_dev *i_dev;
>> +
>> + i_dev = pci_get_drvdata(pdev);
>> + if (!i_dev)
>> + return;
>> +
>> + pm_runtime_disable(&pdev->dev);
>> + if (!pm_runtime_status_suspended(&pdev->dev))
> There is a difference between pm_runtime_status_suspended() and
> pm_runtime_suspended(). Are you sure you use the proper call here?
> (Please, double check.)
pm_runtime_suspend() would always return false after pm_runtime_disable()
>
>> + i2c_dw_shutdown(i_dev);
>> +}
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 3/4] i2c: designware: Convert platform driver to use shutdown hook
2026-05-08 8:15 ` Andy Shevchenko
@ 2026-05-11 19:55 ` William A. Kennington III
0 siblings, 0 replies; 12+ messages in thread
From: William A. Kennington III @ 2026-05-11 19:55 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Mika Westerberg, Jan Dabros, Andi Shyti, linux-i2c, linux-kernel
On 5/8/26 01:15, Andy Shevchenko wrote:
> On Thu, May 07, 2026 at 08:05:17PM +0000, William A. Kennington III wrote:
>> Convert the platform driver to use the new i2c_dw_shutdown() hook,
>> allowing the controller to gracefully NACK master requests during
>> system shutdown.
> ...
>
>> + if (!pm_runtime_status_suspended(&pdev->dev))
> Same question here.
ACK on previous message
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-05-11 19:55 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 20:05 [PATCH v4 0/4] i2c: designware: Improve device disable handling William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 1/4] i2c: designware: Introduce shutdown exported function William A. Kennington III
2026-05-08 8:12 ` Andy Shevchenko
2026-05-08 10:01 ` Andy Shevchenko
2026-05-07 20:05 ` [PATCH v4 2/4] i2c: designware: Convert PCI driver to use shutdown hook William A. Kennington III
2026-05-08 8:15 ` Andy Shevchenko
2026-05-11 19:55 ` William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 3/4] i2c: designware: Convert platform " William A. Kennington III
2026-05-08 8:15 ` Andy Shevchenko
2026-05-11 19:55 ` William A. Kennington III
2026-05-07 20:05 ` [PATCH v4 4/4] i2c: designware: Handle active target cleanly William A. Kennington III
2026-05-08 10:01 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox