* [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes
@ 2026-07-12 16:24 Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-12 16:24 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
This series fixes two bugs in the spi-pxa2xx driver found during work
to restore MacBook8,1 SPI keyboard/touchpad functionality across S3
suspend/resume cycles.
Patch 1 moves the force-PIO quirk for Apple MacBook8,1 from the client
driver (applespi) to the host controller driver (spi-pxa2xx-pci), where
LPSS setup properly belongs. It also fixes a related runtime PM bug:
when DMA is disabled, pm_runtime_allow() must not be called, because
runtime autosuspend clock-gates the LPSS block between transfers and
causes PCIe Completion Timeouts when its MMIO registers are subsequently
accessed.
Patch 2 fixes S3 suspend/resume for all Intel LPSS SPI controllers.
The LPSS power domain is fully removed across S3, so all private
registers (BAR0 0x200-0x2ff) and IDMA registers (0x800-0x814) are lost.
Without explicitly de-asserting LPSS_PRIV_RESETS (0x204) on resume,
any MMIO access triggers a PCIe Completion Timeout and watchdog reset.
Additionally, the IDMA block (sharing the SPI interrupt line) must have
its registers restored to prevent spurious interrupts from masking real
SPI transfers. The CS control register (0x224) is intentionally
re-initialised via lpss_ssp_setup() rather than restored from snapshot,
ensuring CS starts deasserted regardless of its state at suspend time.
These patches are independent of the companion applespi series also
submitted today.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Shih-Yuan Lee (2):
spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume
drivers/spi/spi-pxa2xx-pci.c | 38 ++++++++++++++++++++++--
drivers/spi/spi-pxa2xx.c | 57 ++++++++++++++++++++++++++++++++++++
drivers/spi/spi-pxa2xx.h | 4 +++
3 files changed, 96 insertions(+), 3 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
2026-07-12 16:24 [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes Shih-Yuan Lee
@ 2026-07-12 16:24 ` Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume Shih-Yuan Lee
` (2 subsequent siblings)
3 siblings, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-12 16:24 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
On MacBook8,1 (early 2015 12" MacBook), the LPSS SPI controller at
00:15.4 has two related problems:
1. The DMA handshake and interrupt routing frequently fail or time out,
causing the keyboard and trackpad (driven by the applespi driver via
SPI) to become unresponsive. Force PIO mode to avoid this.
2. When DMA is disabled, pm_runtime_allow() must not be called for the
controller, because runtime autosuspend clock-gates the LPSS block
between transfers. Accessing its MMIO registers while clock-gated
triggers a PCIe Completion Timeout which causes a watchdog reset.
Move the force-PIO quirk to spi-pxa2xx-pci.c (the LPSS host controller
driver) to avoid layering violations in the client driver, and guard
pm_runtime_allow() with the same pxa2xx_spi_pci_can_dma() check used
to set enable_dma so that PIO-mode controllers stay permanently active.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx-pci.c | 38 +++++++++++++++++++++++++++++++++---
1 file changed, 35 insertions(+), 3 deletions(-)
diff --git a/drivers/spi/spi-pxa2xx-pci.c b/drivers/spi/spi-pxa2xx-pci.c
index cae77ac18520..cb61f1d2d9e6 100644
--- a/drivers/spi/spi-pxa2xx-pci.c
+++ b/drivers/spi/spi-pxa2xx-pci.c
@@ -18,9 +18,14 @@
#include <linux/dmaengine.h>
#include <linux/platform_data/dma-dw.h>
+#include <linux/dmi.h>
#include "spi-pxa2xx.h"
+static bool spi_pxa2xx_force_pio;
+module_param_named(force_pio, spi_pxa2xx_force_pio, bool, 0444);
+MODULE_PARM_DESC(force_pio, "Force PIO mode (disables DMA) for SPI transfers. ([0] = disabled, 1 = enabled)");
+
#define PCI_DEVICE_ID_INTEL_QUARK_X1000 0x0935
#define PCI_DEVICE_ID_INTEL_BYT 0x0f0e
#define PCI_DEVICE_ID_INTEL_MRFLD 0x1194
@@ -93,6 +98,32 @@ static void lpss_dma_put_device(void *dma_dev)
pci_dev_put(dma_dev);
}
+static const struct dmi_system_id pxa2xx_spi_pci_dmi_table[] = {
+ {
+ .ident = "Apple MacBook8,1",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "MacBook8,1"),
+ },
+ },
+ { }
+};
+
+static bool pxa2xx_spi_pci_can_dma(struct pci_dev *dev)
+{
+ if (spi_pxa2xx_force_pio) {
+ pci_info(dev, "Forcing PIO mode (disabling DMA)\n");
+ return false;
+ }
+
+ if (dmi_check_system(pxa2xx_spi_pci_dmi_table)) {
+ pci_info(dev, "MacBook8,1 detected: disabling DMA to force PIO mode\n");
+ return false;
+ }
+
+ return true;
+}
+
static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
{
struct ssp_device *ssp = &c->ssp;
@@ -166,7 +197,7 @@ static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 1;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev);
return 0;
}
@@ -238,7 +269,7 @@ static int mrfld_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 8;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev);
return 0;
}
@@ -303,7 +334,8 @@ static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
pm_runtime_set_autosuspend_delay(&dev->dev, 50);
pm_runtime_use_autosuspend(&dev->dev);
pm_runtime_put_autosuspend(&dev->dev);
- pm_runtime_allow(&dev->dev);
+ if (pxa2xx_spi_pci_can_dma(dev))
+ pm_runtime_allow(&dev->dev);
return 0;
}
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume
2026-07-12 16:24 [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
@ 2026-07-12 16:24 ` Shih-Yuan Lee
2026-07-13 16:02 ` Mark Brown
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 " Shih-Yuan Lee
3 siblings, 1 reply; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-12 16:24 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
Intel LPSS SPI controllers lose all private register state across S3
suspend because the LPSS power domain is fully removed. On resume the
driver only re-enables the SSP clock but leaves the LPSS private
registers (BAR0 0x200-0x2ff) and the IDMA registers (0x800-0x814) in
their power-on-reset state, which causes two separate problems:
1. LPSS_PRIV_RESETS (0x204) stays zero, keeping the functional block
and IDMA in reset. Writing 7 to de-assert both resets before any
register access is mandatory; accessing MMIO while in reset causes a
PCIe Completion Timeout and a watchdog-triggered system reset.
2. The IDMA block shares the SPI interrupt line. With its registers
zeroed the IDMA asserts a spurious interrupt that masks the real SPI
interrupt, causing every subsequent SPI transfer to time out (-110).
3. The LPSS software chip-select control register (0x224) must *not* be
blindly restored from its suspend-time snapshot: if CS was asserted
at the moment of suspend, restoring that state corrupts the first
post-resume SPI transaction. Instead, call lpss_ssp_setup() which
unconditionally writes SW_MODE | CS_HIGH (idle/deasserted), matching
the state established at probe time.
Fix all three issues by:
- Saving the four LPSS clock/LTR/SSP private registers and six IDMA
registers in pxa2xx_spi_suspend().
- In pxa2xx_spi_resume(), writing LPSS_PRIV_RESETS first, then
restoring the saved private registers (excluding 0x204 and 0x224),
then calling lpss_ssp_setup() to re-initialise CS to idle-high,
and finally restoring the IDMA registers.
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx.c | 57 ++++++++++++++++++++++++++++++++++++++++
drivers/spi/spi-pxa2xx.h | 4 +++
2 files changed, 61 insertions(+)
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 6291d7c2e06f..e8a83c818328 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -1479,12 +1479,35 @@ void pxa2xx_spi_remove(struct device *dev)
}
EXPORT_SYMBOL_NS_GPL(pxa2xx_spi_remove, "SPI_PXA2xx");
+/*
+ * LPSS private registers to save across S3 suspend.
+ * NOTE: 0x224 (CS control) is intentionally excluded - it is re-initialised
+ * by lpss_ssp_setup() on resume to ensure CS starts deasserted (idle-high).
+ */
+static const unsigned int lpss_saved_regs[] = {
+ 0x200,
+ 0x204,
+ 0x220,
+ 0x238,
+};
+
static int pxa2xx_spi_suspend(struct device *dev)
{
struct driver_data *drv_data = dev_get_drvdata(dev);
struct ssp_device *ssp = drv_data->ssp;
int status;
+ if (is_lpss_ssp(drv_data) && !pm_runtime_suspended(dev)) {
+ struct pxa2xx_spi_controller *pdata = drv_data->controller_info;
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(lpss_saved_regs); i++)
+ pdata->lpss_priv_ctx[i] = readl(ssp->mmio_base + lpss_saved_regs[i]);
+
+ for (i = 0; i < 6; i++)
+ pdata->lpss_idma_ctx[i] = readl(ssp->mmio_base + 0x800 + i * 4);
+ }
+
status = spi_controller_suspend(drv_data->controller);
if (status)
return status;
@@ -1508,6 +1531,40 @@ static int pxa2xx_spi_resume(struct device *dev)
status = clk_prepare_enable(ssp->clk);
if (status)
return status;
+
+ if (is_lpss_ssp(drv_data)) {
+ struct pxa2xx_spi_controller *pdata = drv_data->controller_info;
+ int i;
+
+ /* First de-assert resets by writing 7 to 0x204 (LPSS_PRIV_RESETS) */
+ writel(7, ssp->mmio_base + 0x204);
+
+ /*
+ * Restore clock/LTR/SSP private registers.
+ * 0x204 (resets) is skipped - already written above.
+ * 0x224 (CS control) is skipped - re-initialised by
+ * lpss_ssp_setup() below to ensure CS starts idle-high.
+ */
+ for (i = 0; i < ARRAY_SIZE(lpss_saved_regs); i++) {
+ if (lpss_saved_regs[i] == 0x204)
+ continue;
+ writel(pdata->lpss_priv_ctx[i],
+ ssp->mmio_base + lpss_saved_regs[i]);
+ }
+
+ /*
+ * Re-initialise SW chip-select control so CS starts
+ * deasserted (SW_MODE | CS_HIGH) regardless of the
+ * state it was in at suspend time.
+ */
+ lpss_ssp_setup(drv_data);
+
+ /* Restore IDMA registers */
+ for (i = 0; i < 6; i++) {
+ writel(pdata->lpss_idma_ctx[i],
+ ssp->mmio_base + 0x800 + i * 4);
+ }
+ }
}
/* Start the queue running */
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h
index 447be0369384..423cef5118e7 100644
--- a/drivers/spi/spi-pxa2xx.h
+++ b/drivers/spi/spi-pxa2xx.h
@@ -34,6 +34,10 @@ struct pxa2xx_spi_controller {
/* For non-PXA arches */
struct ssp_device ssp;
+
+ /* LPSS private registers context */
+ u32 lpss_priv_ctx[4];
+ u32 lpss_idma_ctx[6];
};
struct spi_controller;
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume
2026-07-12 16:24 ` [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume Shih-Yuan Lee
@ 2026-07-13 16:02 ` Mark Brown
0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2026-07-13 16:02 UTC (permalink / raw)
To: Shih-Yuan Lee; +Cc: linux-spi, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2854 bytes --]
On Mon, Jul 13, 2026 at 12:24:20AM +0800, Shih-Yuan Lee wrote:
> Intel LPSS SPI controllers lose all private register state across S3
> suspend because the LPSS power domain is fully removed. On resume the
> driver only re-enables the SSP clock but leaves the LPSS private
> registers (BAR0 0x200-0x2ff) and the IDMA registers (0x800-0x814) in
> their power-on-reset state, which causes two separate problems:
> 1. LPSS_PRIV_RESETS (0x204) stays zero, keeping the functional block
> and IDMA in reset. Writing 7 to de-assert both resets before any
> register access is mandatory; accessing MMIO while in reset causes a
> PCIe Completion Timeout and a watchdog-triggered system reset.
>
> 2. The IDMA block shares the SPI interrupt line. With its registers
> zeroed the IDMA asserts a spurious interrupt that masks the real SPI
> interrupt, causing every subsequent SPI transfer to time out (-110).
>
> 3. The LPSS software chip-select control register (0x224) must *not* be
> blindly restored from its suspend-time snapshot: if CS was asserted
> at the moment of suspend, restoring that state corrupts the first
> post-resume SPI transaction. Instead, call lpss_ssp_setup() which
> unconditionally writes SW_MODE | CS_HIGH (idle/deasserted), matching
> the state established at probe time.
That's three problems, not two.
> +/*
> + * LPSS private registers to save across S3 suspend.
> + * NOTE: 0x224 (CS control) is intentionally excluded - it is re-initialised
> + * by lpss_ssp_setup() on resume to ensure CS starts deasserted (idle-high).
> + */
> +static const unsigned int lpss_saved_regs[] = {
> + 0x200,
> + 0x204,
> + 0x220,
> + 0x238,
> +};
Unnamed registers?
> static int pxa2xx_spi_suspend(struct device *dev)
> {
> struct driver_data *drv_data = dev_get_drvdata(dev);
> struct ssp_device *ssp = drv_data->ssp;
> int status;
>
> + if (is_lpss_ssp(drv_data) && !pm_runtime_suspended(dev)) {
> + struct pxa2xx_spi_controller *pdata = drv_data->controller_info;
> + int i;
> +
> + for (i = 0; i < ARRAY_SIZE(lpss_saved_regs); i++)
> + pdata->lpss_priv_ctx[i] = readl(ssp->mmio_base + lpss_saved_regs[i]);
> +
> + for (i = 0; i < 6; i++)
> + pdata->lpss_idma_ctx[i] = readl(ssp->mmio_base + 0x800 + i * 4);
> + }
> +
> status = spi_controller_suspend(drv_data->controller);
This is saving the registers before we quiesce the controller, the
values might change underneath us.
> + if (is_lpss_ssp(drv_data)) {
> + struct pxa2xx_spi_controller *pdata = drv_data->controller_info;
> + int i;
> +
> + /* First de-assert resets by writing 7 to 0x204 (LPSS_PRIV_RESETS) */
> + writel(7, ssp->mmio_base + 0x204);
Do all the is_lpss_spi() devices have the same base offset?
These magic numbers are not good.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes
2026-07-12 16:24 [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume Shih-Yuan Lee
@ 2026-07-17 15:46 ` Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
` (2 more replies)
2026-07-17 16:37 ` [PATCH v4 " Shih-Yuan Lee
3 siblings, 3 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 15:46 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
Hi Mark,
This patch series resolves two issues in the spi-pxa2xx host controller driver
related to Intel LPSS SPI controllers.
Patch 1 moves the forced PIO mode quirk for the Apple MacBook8,1 LPSS SPI
controller from the client driver (applespi) to the host controller PCI glue
driver (spi-pxa2xx-pci) where it belongs. It also fixes a runtime PM issue:
when DMA is disabled, aggressive runtime clock gating causes PCIe Completion
Timeouts on subsequent MMIO accesses.
Patch 2 fixes S3 suspend/resume for Intel LPSS SPI controllers. The LPSS
power domain is fully removed across S3, losing all private register state.
Accessing MMIO on resume while the block is held in reset causes a PCIe Completion
Timeout and a watchdog system reset. To fix this, we save the LPSS private
registers in struct driver_data during suspend, de-assert resets first on
resume, and restore the saved registers.
Changes in v3:
- Addressed feedback from upstream AI review regarding PM reference leaks,
races in the shared interrupt handler, and teardown order:
- Avoid PM reference leaks on probe bind/unbind cycle by keeping probe PM
configuration symmetric.
- Prevent userspace (PowerTOP, udev) from overriding runtime PM settings when
DMA is disabled by holding a PM reference via pm_runtime_get_noresume()
in pxa2xx_spi_probe() and dropping it in remove/error paths.
- Check device status in the shared interrupt handler ssp_int() using
pm_runtime_get_if_active() instead of pm_runtime_suspended(). If the device is
suspending (RPM_SUSPENDING) or suspended, ssp_int() immediately returns
IRQ_NONE to avoid reading unclocked MMIO registers during power transition.
- Call synchronize_irq() in pxa2xx_spi_runtime_suspend() to wait for active
handlers on the shared interrupt line to finish before disabling the clock.
- Adjust the driver teardown order in pxa2xx_spi_remove() and probe error paths:
always call free_irq() to unregister the handler before calling
clk_disable_unprepare() to turn off the clock, preventing concurrent
interrupts from reading registers while the clock is disabled.
- On S3 suspend success path, return 0 directly without dropping the PM
reference. This preserves the acquired PM reference across suspend.
On S3 resume, release it via pm_runtime_put_autosuspend(), and ensure
all error paths in resume (clock enable failure or spi_controller_resume
failure) jump to out_put to correctly release the reference, preventing
reference count underflow and leaks.
- Avoid duplicate can-DMA pci_info() logging by checking the pre-computed
enable_dma status in probe and passing a verbose flag to can_dma().
Changes in v2:
- Addressed feedback from Mark Brown on the original v1 series.
- Used drv_data->lpss_base together with relative offsets rather than
hardcoding absolute MMIO offsets that vary between LPSS IP revisions.
- Moved the register save block in suspend to after the controller is quiesced
(after spi_controller_suspend() and pxa_ssp_disable()).
- Store the context array lpss_priv_ctx[6] inside struct driver_data instead of
struct pxa2xx_spi_controller. This keeps the changes entirely local to the
core driver, preventing symbol version mismatches (disagrees about version
of symbol) for other subsystem components (e.g., spi-pxa2xx-platform.ko).
- Restrict the save/restore loop to the first 6 LPSS private registers
(offsets 0x00 to 0x14). Offsets beyond 0x14 (except CS control at 0x18, which is
re-initialised by lpss_ssp_setup()) are reserved/unimplemented on LPT
platforms (such as MacBook8,1), and writing to them triggers a PCIe
Completion Timeout causing a system freeze.
- Added named constants for LPSS_PRIV_RESETS and the de-assert value.
- Wrapped S3 suspend/resume with pm_runtime_resume_and_get() and
pm_runtime_put_autosuspend() respectively.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Shih-Yuan Lee (2):
spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
spi: pxa2xx: restore LPSS private register state on S3 resume
drivers/spi/spi-pxa2xx-pci.c | 47 ++++++++++--
drivers/spi/spi-pxa2xx.c | 140 ++++++++++++++++++++++++++++-------
drivers/spi/spi-pxa2xx.h | 1 +
3 files changed, 157 insertions(+), 31 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v3 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
@ 2026-07-17 15:46 ` Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
2026-07-17 21:43 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Mark Brown
2 siblings, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 15:46 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
On MacBook8,1 (early 2015 12" MacBook), the LPSS SPI controller at
00:15.4 has two related problems:
1. The DMA handshake and interrupt routing frequently fail or time out,
causing the keyboard and trackpad (driven by the applespi driver via
SPI) to become unresponsive. Force PIO mode to avoid this.
2. When DMA is disabled, runtime PM autosuspend clock-gates the LPSS
block between transfers. Accessing its MMIO registers while clock-gated
triggers a PCIe Completion Timeout which causes a watchdog reset.
Move the force-PIO DMI quirk to spi-pxa2xx-pci.c (the LPSS host controller
driver) to avoid layering violations in the client driver.
To prevent the PCIe Completion Timeout crash when operating in PIO mode:
- Only enable runtime autosuspend in pxa2xx_spi_pci_probe() if enable_dma
is true.
- If DMA is disabled (either statically via the DMI quirk / module parameter
or dynamically due to channel exhaustion), call pm_runtime_get_noresume()
in pxa2xx_spi_probe() to hold a runtime PM reference, and release it via
pm_runtime_put_noidle() in the remove/error paths. This keeps the PM count
above 0 and permanently locks the device out of autosuspend, preventing
userspace tools (like PowerTOP) or udev rules from overriding it.
- In the shared interrupt handler ssp_int(), check device status using
pm_runtime_get_if_active() instead of pm_runtime_suspended(). If the
device is suspending (RPM_SUSPENDING) or suspended, ssp_int() immediately
returns IRQ_NONE to avoid reading unclocked MMIO registers.
- In pxa2xx_spi_runtime_suspend(), call synchronize_irq() to wait for any
active handlers on the shared interrupt line to finish before disabling
the clock.
- Adjust the driver teardown order in pxa2xx_spi_remove() and probe error paths:
always call free_irq() to unregister the handler before calling
clk_disable_unprepare() to turn off the clock, preventing concurrent
interrupts from reading registers while the clock is disabled.
Avoid duplicate can-DMA pci_info() logging by checking the pre-computed
enable_dma status in probe and passing a verbose flag to can_dma().
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx-pci.c | 47 ++++++++++++++++++++++++++++----
drivers/spi/spi-pxa2xx.c | 53 +++++++++++++++++++++++++-----------
2 files changed, 78 insertions(+), 22 deletions(-)
diff --git a/drivers/spi/spi-pxa2xx-pci.c b/drivers/spi/spi-pxa2xx-pci.c
index cae77ac18520..c107b3b53d33 100644
--- a/drivers/spi/spi-pxa2xx-pci.c
+++ b/drivers/spi/spi-pxa2xx-pci.c
@@ -18,9 +18,14 @@
#include <linux/dmaengine.h>
#include <linux/platform_data/dma-dw.h>
+#include <linux/dmi.h>
#include "spi-pxa2xx.h"
+static bool spi_pxa2xx_force_pio;
+module_param_named(force_pio, spi_pxa2xx_force_pio, bool, 0444);
+MODULE_PARM_DESC(force_pio, "Force PIO mode (disables DMA) for SPI transfers. ([0] = disabled, 1 = enabled)");
+
#define PCI_DEVICE_ID_INTEL_QUARK_X1000 0x0935
#define PCI_DEVICE_ID_INTEL_BYT 0x0f0e
#define PCI_DEVICE_ID_INTEL_MRFLD 0x1194
@@ -93,6 +98,34 @@ static void lpss_dma_put_device(void *dma_dev)
pci_dev_put(dma_dev);
}
+static const struct dmi_system_id pxa2xx_spi_pci_dmi_table[] = {
+ {
+ .ident = "Apple MacBook8,1",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "MacBook8,1"),
+ },
+ },
+ { }
+};
+
+static bool pxa2xx_spi_pci_can_dma(struct pci_dev *dev, bool verbose)
+{
+ if (spi_pxa2xx_force_pio) {
+ if (verbose)
+ pci_info(dev, "Forcing PIO mode (disabling DMA)\n");
+ return false;
+ }
+
+ if (dmi_check_system(pxa2xx_spi_pci_dmi_table)) {
+ if (verbose)
+ pci_info(dev, "MacBook8,1 detected: disabling DMA to force PIO mode\n");
+ return false;
+ }
+
+ return true;
+}
+
static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
{
struct ssp_device *ssp = &c->ssp;
@@ -166,7 +199,7 @@ static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 1;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev, true);
return 0;
}
@@ -238,7 +271,7 @@ static int mrfld_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 8;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev, true);
return 0;
}
@@ -300,10 +333,12 @@ static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
if (ret)
return ret;
- pm_runtime_set_autosuspend_delay(&dev->dev, 50);
- pm_runtime_use_autosuspend(&dev->dev);
- pm_runtime_put_autosuspend(&dev->dev);
- pm_runtime_allow(&dev->dev);
+ if (pdata->enable_dma) {
+ pm_runtime_set_autosuspend_delay(&dev->dev, 50);
+ pm_runtime_use_autosuspend(&dev->dev);
+ pm_runtime_put_autosuspend(&dev->dev);
+ pm_runtime_allow(&dev->dev);
+ }
return 0;
}
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 6291d7c2e06f..22020c43fbe4 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -719,14 +719,11 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
u32 sccr1_reg;
u32 mask = drv_data->mask_sr;
u32 status;
+ int active;
+ irqreturn_t ret = IRQ_NONE;
- /*
- * The IRQ might be shared with other peripherals so we must first
- * check that are we RPM suspended or not. If we are we assume that
- * the IRQ was not for us (we shouldn't be RPM suspended when the
- * interrupt is enabled).
- */
- if (pm_runtime_suspended(drv_data->ssp->dev))
+ active = pm_runtime_get_if_active(drv_data->ssp->dev);
+ if (active == 0)
return IRQ_NONE;
/*
@@ -737,7 +734,7 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
*/
status = pxa2xx_spi_read(drv_data, SSSR);
if (status == ~0)
- return IRQ_NONE;
+ goto out_put;
sccr1_reg = pxa2xx_spi_read(drv_data, SSCR1);
@@ -750,7 +747,7 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
mask &= ~SSSR_TINT;
if (!(status & mask))
- return IRQ_NONE;
+ goto out_put;
pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg & ~drv_data->int_cr1);
pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg);
@@ -758,10 +755,19 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
if (!drv_data->controller->cur_msg) {
handle_bad_msg(drv_data);
/* Never fail */
- return IRQ_HANDLED;
+ ret = IRQ_HANDLED;
+ goto out_put;
}
- return drv_data->transfer_handler(drv_data);
+ ret = drv_data->transfer_handler(drv_data);
+
+out_put:
+ if (active > 0) {
+ pm_runtime_mark_last_busy(drv_data->ssp->dev);
+ pm_runtime_put_autosuspend(drv_data->ssp->dev);
+ }
+
+ return ret;
}
/*
@@ -1351,6 +1357,9 @@ int pxa2xx_spi_probe(struct device *dev, struct ssp_device *ssp,
}
}
+ if (!platform_info->enable_dma)
+ pm_runtime_get_noresume(dev);
+
/* Enable SOC clock */
status = clk_prepare_enable(ssp->clk);
if (status)
@@ -1449,11 +1458,18 @@ int pxa2xx_spi_probe(struct device *dev, struct ssp_device *ssp,
return status;
out_error_clock_enabled:
+ free_irq(ssp->irq, drv_data);
clk_disable_unprepare(ssp->clk);
+ pxa2xx_spi_dma_release(drv_data);
+ goto out_error_pm_forbid;
out_error_dma_irq_alloc:
- pxa2xx_spi_dma_release(drv_data);
free_irq(ssp->irq, drv_data);
+ pxa2xx_spi_dma_release(drv_data);
+
+out_error_pm_forbid:
+ if (!platform_info->enable_dma)
+ pm_runtime_put_noidle(dev);
return status;
}
@@ -1466,16 +1482,20 @@ void pxa2xx_spi_remove(struct device *dev)
spi_unregister_controller(drv_data->controller);
+ /* Release IRQ first so handler won't access registers after clock is disabled */
+ free_irq(ssp->irq, drv_data);
+
/* Disable the SSP at the peripheral and SOC level */
pxa_ssp_disable(ssp);
clk_disable_unprepare(ssp->clk);
/* Release DMA */
- if (drv_data->controller_info->enable_dma)
+ if (drv_data->controller_info->enable_dma) {
pxa2xx_spi_dma_release(drv_data);
-
- /* Release IRQ */
- free_irq(ssp->irq, drv_data);
+ pm_runtime_forbid(dev);
+ } else {
+ pm_runtime_put_noidle(dev);
+ }
}
EXPORT_SYMBOL_NS_GPL(pxa2xx_spi_remove, "SPI_PXA2xx");
@@ -1518,6 +1538,7 @@ static int pxa2xx_spi_runtime_suspend(struct device *dev)
{
struct driver_data *drv_data = dev_get_drvdata(dev);
+ synchronize_irq(drv_data->ssp->irq);
clk_disable_unprepare(drv_data->ssp->clk);
return 0;
}
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v3 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
@ 2026-07-17 15:46 ` Shih-Yuan Lee
2026-07-17 21:43 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Mark Brown
2 siblings, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 15:46 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
Intel LPSS SPI controllers lose all private register state across S3
suspend because the LPSS power domain is fully removed. On resume the
driver only re-enables the SSP clock, leaving the LPSS private registers
in their power-on-reset state, which causes two problems:
1. LPSS_PRIV_RESETS (offset 0x04 within the LPSS private space) stays
zero, keeping the functional block in reset. Any MMIO access while
the block is held in reset causes a PCIe Completion Timeout and a
watchdog-triggered system reset. LPSS_PRIV_RESETS_FUNC and
LPSS_PRIV_RESETS_IDMA must be de-asserted before any other register
access on resume.
2. The LPSS software chip-select control register must not be blindly
restored from its suspend-time snapshot: if CS was asserted at the
moment of suspend, restoring that state corrupts the first
post-resume SPI transaction. Instead, call lpss_ssp_setup() which
unconditionally writes SW_MODE | CS_HIGH (idle/deasserted), matching
the state established at probe time.
To resolve these issues safely:
- Wrap S3 suspend/resume with pm_runtime_resume_and_get() and
pm_runtime_put_autosuspend() respectively. This ensures that if the
device was runtime-suspended, it is temporarily resumed to active state
prior to suspend. This guarantees that the clock and power domain are
active during MMIO register access, and that the private registers are
consistently saved and restored across S3 sleep cycles.
- On S3 suspend success path, return 0 directly without dropping the PM
reference. This preserves the acquired PM reference across suspend.
On S3 resume, release it via pm_runtime_put_autosuspend(), and ensure
all error paths in resume (clock enable failure or spi_controller_resume
failure) jump to out_put to correctly release the reference, preventing
reference count underflow and leaks.
- Save only the first 6 LPSS private registers (offsets 0x00 to 0x14)
via drv_data->lpss_base during suspend. Offsets beyond 0x14 (except
CS control at 0x18, which is re-initialised by lpss_ssp_setup()) are
reserved/unimplemented on LPT platforms (such as MacBook8,1), and
writing to them triggers a PCIe Completion Timeout causing a system
freeze.
- Store the saved context in drv_data->lpss_priv_ctx[6] (inside struct
driver_data) which is private to the core driver. This avoids changing
the layout of struct pxa2xx_spi_controller, preventing ABI symbol
version mismatches with uncompiled platform drivers (e.g.,
spi-pxa2xx-platform.ko).
On resume, de-assert resets first, restore all other saved registers,
then call lpss_ssp_setup() to re-initialise CS.
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx.c | 87 +++++++++++++++++++++++++++++++++++-----
drivers/spi/spi-pxa2xx.h | 1 +
2 files changed, 79 insertions(+), 9 deletions(-)
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 22020c43fbe4..94d41cbb3d71 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -72,7 +72,12 @@ struct chip_data {
#define LPSS_CAPS_CS_EN_SHIFT 9
#define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
-#define LPSS_PRIV_CLOCK_GATE 0x38
+/* Offsets from drv_data->lpss_base */
+#define LPSS_PRIV_RESETS 0x04
+#define LPSS_PRIV_RESETS_IDMA BIT(2)
+#define LPSS_PRIV_RESETS_FUNC 0x3
+
+#define LPSS_PRIV_CLOCK_GATE 0x38
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_OFF 0x0
@@ -1505,16 +1510,39 @@ static int pxa2xx_spi_suspend(struct device *dev)
struct ssp_device *ssp = drv_data->ssp;
int status;
+ status = pm_runtime_resume_and_get(dev);
+ if (status < 0)
+ return status;
+
status = spi_controller_suspend(drv_data->controller);
if (status)
- return status;
+ goto out_put;
pxa_ssp_disable(ssp);
- if (!pm_runtime_suspended(dev))
- clk_disable_unprepare(ssp->clk);
+ if (is_lpss_ssp(drv_data)) {
+ unsigned int i;
+ /*
+ * Save the first 6 LPSS private registers (offsets 0x00 to 0x14)
+ * while the clock is still enabled. They are lost when the LPSS
+ * power domain is removed across S3 and must be restored on resume.
+ * Use drv_data->lpss_base so the correct per-platform offset
+ * is applied regardless of LPSS IP revision.
+ * Registers beyond 0x14 (except CS control at 0x18) are reserved
+ * or unimplemented on LPT, and accessing them triggers a PCIe
+ * Completion Timeout causing a system halt.
+ */
+ for (i = 0; i < 6; i++)
+ drv_data->lpss_priv_ctx[i] = readl(drv_data->lpss_base + i * 4);
+ }
+
+ clk_disable_unprepare(ssp->clk);
return 0;
+
+out_put:
+ pm_runtime_put_noidle(dev);
+ return status;
}
static int pxa2xx_spi_resume(struct device *dev)
@@ -1524,14 +1552,55 @@ static int pxa2xx_spi_resume(struct device *dev)
int status;
/* Enable the SSP clock */
- if (!pm_runtime_suspended(dev)) {
- status = clk_prepare_enable(ssp->clk);
- if (status)
- return status;
+ status = clk_prepare_enable(ssp->clk);
+ if (status)
+ goto out_put;
+
+ if (is_lpss_ssp(drv_data)) {
+ unsigned int i;
+
+ /*
+ * The LPSS power domain is removed across S3, taking
+ * all private registers with it. De-assert the
+ * functional block and IDMA resets first; any MMIO
+ * access while the block is held in reset causes a
+ * PCIe Completion Timeout and a watchdog-triggered
+ * system reset.
+ */
+ writel(LPSS_PRIV_RESETS_FUNC | LPSS_PRIV_RESETS_IDMA,
+ drv_data->lpss_base + LPSS_PRIV_RESETS);
+
+ /* Restore the other 5 saved private registers */
+ for (i = 0; i < 6; i++) {
+ if (i == LPSS_PRIV_RESETS / 4)
+ continue;
+ writel(drv_data->lpss_priv_ctx[i],
+ drv_data->lpss_base + i * 4);
+ }
+
+ /*
+ * Re-initialise the SW chip-select control register so
+ * CS starts deasserted (SW_MODE | CS_HIGH), regardless
+ * of the state it was in at suspend time. A stale
+ * asserted CS on the first post-resume transaction
+ * corrupts the write-status response from the device.
+ */
+ lpss_ssp_setup(drv_data);
}
/* Start the queue running */
- return spi_controller_resume(drv_data->controller);
+ status = spi_controller_resume(drv_data->controller);
+ if (status) {
+ clk_disable_unprepare(ssp->clk);
+ goto out_put;
+ }
+
+out_put:
+ /* Let runtime PM autosuspend again if needed */
+ pm_runtime_mark_last_busy(dev);
+ pm_runtime_put_autosuspend(dev);
+
+ return status;
}
static int pxa2xx_spi_runtime_suspend(struct device *dev)
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h
index 447be0369384..fce776e2404c 100644
--- a/drivers/spi/spi-pxa2xx.h
+++ b/drivers/spi/spi-pxa2xx.h
@@ -71,6 +71,7 @@ struct driver_data {
irqreturn_t (*transfer_handler)(struct driver_data *drv_data);
void __iomem *lpss_base;
+ u32 lpss_priv_ctx[6];
/* Optional slave FIFO ready signal */
struct gpio_desc *gpiod_ready;
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes
2026-07-12 16:24 [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes Shih-Yuan Lee
` (2 preceding siblings ...)
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
@ 2026-07-17 16:37 ` Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
3 siblings, 2 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 16:37 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
Hi Mark,
This patch series resolves two issues in the spi-pxa2xx host controller driver
related to Intel LPSS SPI controllers.
Patch 1 moves the forced PIO mode quirk for the Apple MacBook8,1 LPSS SPI
controller from the client driver (applespi) to the host controller PCI glue
driver (spi-pxa2xx-pci) where it belongs. It also fixes a runtime PM issue:
when DMA is disabled, aggressive runtime clock gating causes PCIe Completion
Timeouts on subsequent MMIO accesses.
Patch 2 fixes S3 suspend/resume for Intel LPSS SPI controllers. The LPSS
power domain is fully removed across S3, losing all private register state.
Accessing MMIO on resume while the block is held in reset causes a PCIe Completion
Timeout and a watchdog system reset. To fix this, we save the LPSS private
registers in struct driver_data during suspend, de-assert resets first on
resume, and restore the saved registers.
Changes in v4:
- Addressed feedback from Sashiko review regarding clock enable count
underflows, interrupt handler race conditions, and early probe races:
- Track clock state using drv_data->clk_enabled via pxa2xx_spi_clk_enable() and
pxa2xx_spi_clk_disable() helper functions. This guarantees clock enable/disable
symmetry, preventing clock disable count underflows and framework warnings on S3
resume or runtime autosuspend error paths.
- Introduce drv_data->suspended flag to protect MMIO access in ssp_int() during
system suspend and runtime suspend transition windows.
- Initialize drv_data->suspended = true early in probe(), clearing it only after
the clock is successfully enabled. This completely prevents shared interrupt
handler races during device probe when the clock is still off.
- Call synchronize_irq() after setting drv_data->suspended = true in suspend and
runtime_suspend. This ensures any running shared interrupt handlers finish
executing before the clock is physically turned off.
Changes in v3:
- Avoid PM reference leaks on probe bind/unbind cycle by keeping probe PM
configuration symmetric.
- Prevent userspace (PowerTOP, udev) from overriding runtime PM settings when
DMA is disabled by holding a PM reference via pm_runtime_get_noresume()
in pxa2xx_spi_probe() and dropping it in remove/error paths.
- Check device status in the shared interrupt handler ssp_int() using
pm_runtime_get_if_active() instead of pm_runtime_suspended(). If the device is
suspending (RPM_SUSPENDING) or suspended, ssp_int() immediately returns
IRQ_NONE to avoid reading unclocked MMIO registers during power transition.
- Adjust the driver teardown order in pxa2xx_spi_remove() and probe error paths:
always call free_irq() to unregister the handler before calling
clk_disable_unprepare() to turn off the clock, preventing concurrent
interrupts from reading registers while the clock is disabled.
- On S3 suspend success path, return 0 directly without dropping the PM
reference. This preserves the acquired PM reference across suspend.
On S3 resume, release it via pm_runtime_put_autosuspend(), and ensure
all error paths in resume (clock enable failure or spi_controller_resume
failure) jump to out_put to correctly release the reference, preventing
reference count underflow and leaks.
- Avoid duplicate can-DMA pci_info() logging by checking the pre-computed
enable_dma status in probe and passing a verbose flag to can_dma().
Changes in v2:
- Addressed feedback from Mark Brown on the original v1 series.
- Used drv_data->lpss_base together with relative offsets rather than
hardcoding absolute MMIO offsets that vary between LPSS IP revisions.
- Moved the register save block in suspend to after the controller is quiesced
(after spi_controller_suspend() and pxa_ssp_disable()).
- Store the context array lpss_priv_ctx[6] inside struct driver_data instead of
struct pxa2xx_spi_controller. This keeps the changes entirely local to the
core driver, preventing symbol version mismatches (disagrees about version
of symbol) for other subsystem components (e.g., spi-pxa2xx-platform.ko).
- Restrict the save/restore loop to the first 6 LPSS private registers
(offsets 0x00 to 0x14). Offsets beyond 0x14 (except CS control at 0x18, which is
re-initialised by lpss_ssp_setup()) are reserved/unimplemented on LPT
platforms (such as MacBook8,1), and writing to them triggers a PCIe
Completion Timeout causing a system freeze.
- Added named constants for LPSS_PRIV_RESETS and the de-assert value.
- Wrapped S3 suspend/resume with pm_runtime_resume_and_get() and
pm_runtime_put_autosuspend() respectively.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Shih-Yuan Lee (2):
spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
spi: pxa2xx: restore LPSS private register state on S3 resume
drivers/spi/spi-pxa2xx-pci.c | 47 +++++++--
drivers/spi/spi-pxa2xx.c | 191 +++++++++++++++++++++++++++++------
drivers/spi/spi-pxa2xx.h | 4 +
3 files changed, 206 insertions(+), 36 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1
2026-07-17 16:37 ` [PATCH v4 " Shih-Yuan Lee
@ 2026-07-17 16:37 ` Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
1 sibling, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 16:37 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
On MacBook8,1 (early 2015 12" MacBook), the LPSS SPI controller at
00:15.4 has two related problems: DMA handshake/interrupt routing fails,
and runtime PM autosuspend clock-gates the LPSS block, triggering PCIe
Completion Timeouts.
Move the force-PIO DMI quirk to spi-pxa2xx-pci.c (the LPSS host controller
driver) to avoid layering violations in the client driver.
To prevent the PCIe Completion Timeout crash when operating in PIO mode:
- Only enable runtime autosuspend in pxa2xx_spi_pci_probe() if enable_dma
is true.
- If DMA is disabled (either statically via the DMI quirk / module parameter
or dynamically due to channel exhaustion), call pm_runtime_get_noresume()
in pxa2xx_spi_probe() to hold a runtime PM reference, and release it via
pm_runtime_put_noidle() in the remove/error paths. This keeps the PM count
above 0 and permanently locks the device out of autosuspend, preventing
userspace tools (like PowerTOP) or udev rules from overriding it.
- Implement helper functions pxa2xx_spi_clk_enable() and pxa2xx_spi_clk_disable()
to track clock state via drv_data->clk_enabled, preventing clock disable
count underflows and framework warnings on resume/autosuspend error paths.
- Check device status in the shared interrupt handler ssp_int() using
pm_runtime_get_if_active() and drv_data->suspended. If the device is
suspended, suspending (RPM_SUSPENDING), or clock-disabled, ssp_int()
immediately returns IRQ_NONE to avoid reading unclocked MMIO registers.
- Initialize drv_data->suspended to true early in probe, and clear it only
after the clock is successfully enabled, preventing shared interrupt handler
races during device initialization.
- In pxa2xx_spi_runtime_suspend() and pxa2xx_spi_suspend(), set drv_data->suspended
to true and call synchronize_irq() to wait for any active handlers on the
shared interrupt line to finish before disabling the clock.
- Adjust the driver teardown order in pxa2xx_spi_remove() and probe error paths:
always call free_irq() to unregister the handler before calling
clk_disable_unprepare() to turn off the clock, preventing concurrent
interrupts from reading registers while the clock is disabled.
Avoid duplicate can-DMA pci_info() logging by checking the pre-computed
enable_dma status in probe and passing a verbose flag to can_dma().
Link: https://bugzilla.kernel.org/show_bug.cgi?id=108331
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx-pci.c | 47 +++++++++++++--
drivers/spi/spi-pxa2xx.c | 107 +++++++++++++++++++++++++++--------
drivers/spi/spi-pxa2xx.h | 3 +
3 files changed, 128 insertions(+), 29 deletions(-)
diff --git a/drivers/spi/spi-pxa2xx-pci.c b/drivers/spi/spi-pxa2xx-pci.c
index cae77ac18520..c107b3b53d33 100644
--- a/drivers/spi/spi-pxa2xx-pci.c
+++ b/drivers/spi/spi-pxa2xx-pci.c
@@ -18,9 +18,14 @@
#include <linux/dmaengine.h>
#include <linux/platform_data/dma-dw.h>
+#include <linux/dmi.h>
#include "spi-pxa2xx.h"
+static bool spi_pxa2xx_force_pio;
+module_param_named(force_pio, spi_pxa2xx_force_pio, bool, 0444);
+MODULE_PARM_DESC(force_pio, "Force PIO mode (disables DMA) for SPI transfers. ([0] = disabled, 1 = enabled)");
+
#define PCI_DEVICE_ID_INTEL_QUARK_X1000 0x0935
#define PCI_DEVICE_ID_INTEL_BYT 0x0f0e
#define PCI_DEVICE_ID_INTEL_MRFLD 0x1194
@@ -93,6 +98,34 @@ static void lpss_dma_put_device(void *dma_dev)
pci_dev_put(dma_dev);
}
+static const struct dmi_system_id pxa2xx_spi_pci_dmi_table[] = {
+ {
+ .ident = "Apple MacBook8,1",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "MacBook8,1"),
+ },
+ },
+ { }
+};
+
+static bool pxa2xx_spi_pci_can_dma(struct pci_dev *dev, bool verbose)
+{
+ if (spi_pxa2xx_force_pio) {
+ if (verbose)
+ pci_info(dev, "Forcing PIO mode (disabling DMA)\n");
+ return false;
+ }
+
+ if (dmi_check_system(pxa2xx_spi_pci_dmi_table)) {
+ if (verbose)
+ pci_info(dev, "MacBook8,1 detected: disabling DMA to force PIO mode\n");
+ return false;
+ }
+
+ return true;
+}
+
static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
{
struct ssp_device *ssp = &c->ssp;
@@ -166,7 +199,7 @@ static int lpss_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 1;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev, true);
return 0;
}
@@ -238,7 +271,7 @@ static int mrfld_spi_setup(struct pci_dev *dev, struct pxa2xx_spi_controller *c)
c->dma_filter = lpss_dma_filter;
c->dma_burst_size = 8;
- c->enable_dma = 1;
+ c->enable_dma = pxa2xx_spi_pci_can_dma(dev, true);
return 0;
}
@@ -300,10 +333,12 @@ static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
if (ret)
return ret;
- pm_runtime_set_autosuspend_delay(&dev->dev, 50);
- pm_runtime_use_autosuspend(&dev->dev);
- pm_runtime_put_autosuspend(&dev->dev);
- pm_runtime_allow(&dev->dev);
+ if (pdata->enable_dma) {
+ pm_runtime_set_autosuspend_delay(&dev->dev, 50);
+ pm_runtime_use_autosuspend(&dev->dev);
+ pm_runtime_put_autosuspend(&dev->dev);
+ pm_runtime_allow(&dev->dev);
+ }
return 0;
}
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 6291d7c2e06f..dcae43a04eac 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -713,20 +713,42 @@ static void handle_bad_msg(struct driver_data *drv_data)
dev_err(drv_data->ssp->dev, "bad message state in interrupt handler\n");
}
+static int pxa2xx_spi_clk_enable(struct driver_data *drv_data)
+{
+ int status;
+
+ if (drv_data->clk_enabled)
+ return 0;
+
+ status = clk_prepare_enable(drv_data->ssp->clk);
+ if (status == 0)
+ drv_data->clk_enabled = true;
+
+ return status;
+}
+
+static void pxa2xx_spi_clk_disable(struct driver_data *drv_data)
+{
+ if (drv_data->clk_enabled) {
+ clk_disable_unprepare(drv_data->ssp->clk);
+ drv_data->clk_enabled = false;
+ }
+}
+
static irqreturn_t ssp_int(int irq, void *dev_id)
{
struct driver_data *drv_data = dev_id;
u32 sccr1_reg;
u32 mask = drv_data->mask_sr;
u32 status;
+ int active;
+ irqreturn_t ret = IRQ_NONE;
- /*
- * The IRQ might be shared with other peripherals so we must first
- * check that are we RPM suspended or not. If we are we assume that
- * the IRQ was not for us (we shouldn't be RPM suspended when the
- * interrupt is enabled).
- */
- if (pm_runtime_suspended(drv_data->ssp->dev))
+ if (drv_data->suspended)
+ return IRQ_NONE;
+
+ active = pm_runtime_get_if_active(drv_data->ssp->dev);
+ if (active == 0)
return IRQ_NONE;
/*
@@ -737,7 +759,7 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
*/
status = pxa2xx_spi_read(drv_data, SSSR);
if (status == ~0)
- return IRQ_NONE;
+ goto out_put;
sccr1_reg = pxa2xx_spi_read(drv_data, SSCR1);
@@ -750,7 +772,7 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
mask &= ~SSSR_TINT;
if (!(status & mask))
- return IRQ_NONE;
+ goto out_put;
pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg & ~drv_data->int_cr1);
pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg);
@@ -758,10 +780,19 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
if (!drv_data->controller->cur_msg) {
handle_bad_msg(drv_data);
/* Never fail */
- return IRQ_HANDLED;
+ ret = IRQ_HANDLED;
+ goto out_put;
+ }
+
+ ret = drv_data->transfer_handler(drv_data);
+
+out_put:
+ if (active > 0) {
+ pm_runtime_mark_last_busy(drv_data->ssp->dev);
+ pm_runtime_put_autosuspend(drv_data->ssp->dev);
}
- return drv_data->transfer_handler(drv_data);
+ return ret;
}
/*
@@ -1288,6 +1319,7 @@ int pxa2xx_spi_probe(struct device *dev, struct ssp_device *ssp,
drv_data->controller = controller;
drv_data->controller_info = platform_info;
drv_data->ssp = ssp;
+ drv_data->suspended = true; /* Start suspended until clock is enabled */
/* The spi->mode bits understood by this driver: */
controller->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LOOP;
@@ -1351,11 +1383,16 @@ int pxa2xx_spi_probe(struct device *dev, struct ssp_device *ssp,
}
}
+ if (!platform_info->enable_dma)
+ pm_runtime_get_noresume(dev);
+
/* Enable SOC clock */
- status = clk_prepare_enable(ssp->clk);
+ status = pxa2xx_spi_clk_enable(drv_data);
if (status)
goto out_error_dma_irq_alloc;
+ drv_data->suspended = false;
+
controller->max_speed_hz = clk_get_rate(ssp->clk);
/*
* Set minimum speed for all other platforms than Intel Quark which is
@@ -1449,11 +1486,18 @@ int pxa2xx_spi_probe(struct device *dev, struct ssp_device *ssp,
return status;
out_error_clock_enabled:
- clk_disable_unprepare(ssp->clk);
+ free_irq(ssp->irq, drv_data);
+ pxa2xx_spi_clk_disable(drv_data);
+ pxa2xx_spi_dma_release(drv_data);
+ goto out_error_pm_forbid;
out_error_dma_irq_alloc:
- pxa2xx_spi_dma_release(drv_data);
free_irq(ssp->irq, drv_data);
+ pxa2xx_spi_dma_release(drv_data);
+
+out_error_pm_forbid:
+ if (!platform_info->enable_dma)
+ pm_runtime_put_noidle(dev);
return status;
}
@@ -1466,16 +1510,20 @@ void pxa2xx_spi_remove(struct device *dev)
spi_unregister_controller(drv_data->controller);
+ /* Release IRQ first so handler won't access registers after clock is disabled */
+ free_irq(ssp->irq, drv_data);
+
/* Disable the SSP at the peripheral and SOC level */
pxa_ssp_disable(ssp);
- clk_disable_unprepare(ssp->clk);
+ pxa2xx_spi_clk_disable(drv_data);
/* Release DMA */
- if (drv_data->controller_info->enable_dma)
+ if (drv_data->controller_info->enable_dma) {
pxa2xx_spi_dma_release(drv_data);
-
- /* Release IRQ */
- free_irq(ssp->irq, drv_data);
+ pm_runtime_forbid(dev);
+ } else {
+ pm_runtime_put_noidle(dev);
+ }
}
EXPORT_SYMBOL_NS_GPL(pxa2xx_spi_remove, "SPI_PXA2xx");
@@ -1489,10 +1537,13 @@ static int pxa2xx_spi_suspend(struct device *dev)
if (status)
return status;
+ drv_data->suspended = true;
+ synchronize_irq(ssp->irq);
+
pxa_ssp_disable(ssp);
if (!pm_runtime_suspended(dev))
- clk_disable_unprepare(ssp->clk);
+ pxa2xx_spi_clk_disable(drv_data);
return 0;
}
@@ -1505,11 +1556,13 @@ static int pxa2xx_spi_resume(struct device *dev)
/* Enable the SSP clock */
if (!pm_runtime_suspended(dev)) {
- status = clk_prepare_enable(ssp->clk);
+ status = pxa2xx_spi_clk_enable(drv_data);
if (status)
return status;
}
+ drv_data->suspended = false;
+
/* Start the queue running */
return spi_controller_resume(drv_data->controller);
}
@@ -1518,15 +1571,23 @@ static int pxa2xx_spi_runtime_suspend(struct device *dev)
{
struct driver_data *drv_data = dev_get_drvdata(dev);
- clk_disable_unprepare(drv_data->ssp->clk);
+ drv_data->suspended = true;
+ synchronize_irq(drv_data->ssp->irq);
+ pxa2xx_spi_clk_disable(drv_data);
return 0;
}
static int pxa2xx_spi_runtime_resume(struct device *dev)
{
struct driver_data *drv_data = dev_get_drvdata(dev);
+ int status;
- return clk_prepare_enable(drv_data->ssp->clk);
+ status = pxa2xx_spi_clk_enable(drv_data);
+ if (status)
+ return status;
+
+ drv_data->suspended = false;
+ return 0;
}
EXPORT_NS_GPL_DEV_PM_OPS(pxa2xx_spi_pm_ops, SPI_PXA2xx) = {
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h
index 447be0369384..44f37bf9c519 100644
--- a/drivers/spi/spi-pxa2xx.h
+++ b/drivers/spi/spi-pxa2xx.h
@@ -72,6 +72,9 @@ struct driver_data {
void __iomem *lpss_base;
+ bool suspended;
+ bool clk_enabled;
+
/* Optional slave FIFO ready signal */
struct gpio_desc *gpiod_ready;
};
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume
2026-07-17 16:37 ` [PATCH v4 " Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
@ 2026-07-17 16:37 ` Shih-Yuan Lee
1 sibling, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee @ 2026-07-17 16:37 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, Shih-Yuan Lee
Intel LPSS SPI controllers lose all private register state across S3
suspend because the LPSS power domain is fully removed. On resume the
driver only re-enables the SSP clock, leaving the LPSS private registers
in their power-on-reset state, which causes two problems:
1. LPSS_PRIV_RESETS (offset 0x04 within the LPSS private space) stays
zero, keeping the functional block in reset. Any MMIO access while
the block is held in reset causes a PCIe Completion Timeout and a
watchdog-triggered system reset. LPSS_PRIV_RESETS_FUNC and
LPSS_PRIV_RESETS_IDMA must be de-asserted before any other register
access on resume.
2. The LPSS software chip-select control register must not be blindly
restored from its suspend-time snapshot: if CS was asserted at the
moment of suspend, restoring that state corrupts the first
post-resume SPI transaction. Instead, call lpss_ssp_setup() which
unconditionally writes SW_MODE | CS_HIGH (idle/deasserted), matching
the state established at probe time.
To resolve these issues safely:
- Wrap S3 suspend/resume with pm_runtime_resume_and_get() and
pm_runtime_put_autosuspend() respectively. This ensures that if the
device was runtime-suspended, it is temporarily resumed to active state
prior to suspend. This guarantees that the clock and power domain are
active during MMIO register access, and that the private registers are
consistently saved and restored across S3 sleep cycles.
- On S3 suspend success path, return 0 directly without dropping the PM
reference. This preserves the acquired PM reference across suspend.
On S3 resume, release it via pm_runtime_put_autosuspend(), and ensure
all error paths in resume (clock enable failure or spi_controller_resume
failure) jump to out_put to correctly release the reference, preventing
reference count underflow and leaks.
- Save only the first 6 LPSS private registers (offsets 0x00 to 0x14)
via drv_data->lpss_base during suspend. Offsets beyond 0x14 (except
CS control at 0x18, which is re-initialised by lpss_ssp_setup()) are
reserved/unimplemented on LPT platforms (such as MacBook8,1), and
writing to them triggers a PCIe Completion Timeout causing a system
freeze.
- Store the saved context in drv_data->lpss_priv_ctx[6] (inside struct
driver_data) which is private to the core driver. This avoids changing
the layout of struct pxa2xx_spi_controller, preventing ABI symbol
version mismatches with uncompiled platform drivers (e.g.,
spi-pxa2xx-platform.ko).
On resume, de-assert resets first, restore all other saved registers,
then call lpss_ssp_setup() to re-initialise CS.
Signed-off-by: Shih-Yuan Lee <fourdollars@debian.org>
---
drivers/spi/spi-pxa2xx.c | 90 +++++++++++++++++++++++++++++++++++-----
drivers/spi/spi-pxa2xx.h | 1 +
2 files changed, 81 insertions(+), 10 deletions(-)
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index dcae43a04eac..c4b4cb49cfc0 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -72,7 +72,12 @@ struct chip_data {
#define LPSS_CAPS_CS_EN_SHIFT 9
#define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
-#define LPSS_PRIV_CLOCK_GATE 0x38
+/* Offsets from drv_data->lpss_base */
+#define LPSS_PRIV_RESETS 0x04
+#define LPSS_PRIV_RESETS_IDMA BIT(2)
+#define LPSS_PRIV_RESETS_FUNC 0x3
+
+#define LPSS_PRIV_CLOCK_GATE 0x38
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3
#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_OFF 0x0
@@ -1533,19 +1538,43 @@ static int pxa2xx_spi_suspend(struct device *dev)
struct ssp_device *ssp = drv_data->ssp;
int status;
+ status = pm_runtime_resume_and_get(dev);
+ if (status < 0)
+ return status;
+
status = spi_controller_suspend(drv_data->controller);
if (status)
- return status;
+ goto out_put;
+ /* Mark as suspended and synchronize IRQ before disabling clock */
drv_data->suspended = true;
synchronize_irq(ssp->irq);
pxa_ssp_disable(ssp);
- if (!pm_runtime_suspended(dev))
- pxa2xx_spi_clk_disable(drv_data);
+ if (is_lpss_ssp(drv_data)) {
+ unsigned int i;
+
+ /*
+ * Save the first 6 LPSS private registers (offsets 0x00 to 0x14)
+ * while the clock is still enabled. They are lost when the LPSS
+ * power domain is removed across S3 and must be restored on resume.
+ * Use drv_data->lpss_base so the correct per-platform offset
+ * is applied regardless of LPSS IP revision.
+ * Registers beyond 0x14 (except CS control at 0x18) are reserved
+ * or unimplemented on LPT, and accessing them triggers a PCIe
+ * Completion Timeout causing a system halt.
+ */
+ for (i = 0; i < 6; i++)
+ drv_data->lpss_priv_ctx[i] = readl(drv_data->lpss_base + i * 4);
+ }
+ pxa2xx_spi_clk_disable(drv_data);
return 0;
+
+out_put:
+ pm_runtime_put_noidle(dev);
+ return status;
}
static int pxa2xx_spi_resume(struct device *dev)
@@ -1555,16 +1584,57 @@ static int pxa2xx_spi_resume(struct device *dev)
int status;
/* Enable the SSP clock */
- if (!pm_runtime_suspended(dev)) {
- status = pxa2xx_spi_clk_enable(drv_data);
- if (status)
- return status;
- }
+ status = pxa2xx_spi_clk_enable(drv_data);
+ if (status)
+ goto out_put;
drv_data->suspended = false;
+ if (is_lpss_ssp(drv_data)) {
+ unsigned int i;
+
+ /*
+ * The LPSS power domain is removed across S3, taking
+ * all private registers with it. De-assert the
+ * functional block and IDMA resets first; any MMIO
+ * access while the block is held in reset causes a
+ * PCIe Completion Timeout and a watchdog-triggered
+ * system reset.
+ */
+ writel(LPSS_PRIV_RESETS_FUNC | LPSS_PRIV_RESETS_IDMA,
+ drv_data->lpss_base + LPSS_PRIV_RESETS);
+
+ /* Restore the other 5 saved private registers */
+ for (i = 0; i < 6; i++) {
+ if (i == LPSS_PRIV_RESETS / 4)
+ continue;
+ writel(drv_data->lpss_priv_ctx[i],
+ drv_data->lpss_base + i * 4);
+ }
+
+ /*
+ * Re-initialise the SW chip-select control register so
+ * CS starts deasserted (SW_MODE | CS_HIGH), regardless
+ * of the state it was in at suspend time. A stale
+ * asserted CS on the first post-resume transaction
+ * corrupts the write-status response from the device.
+ */
+ lpss_ssp_setup(drv_data);
+ }
+
/* Start the queue running */
- return spi_controller_resume(drv_data->controller);
+ status = spi_controller_resume(drv_data->controller);
+ if (status) {
+ pxa2xx_spi_clk_disable(drv_data);
+ goto out_put;
+ }
+
+out_put:
+ /* Let runtime PM autosuspend again if needed */
+ pm_runtime_mark_last_busy(dev);
+ pm_runtime_put_autosuspend(dev);
+
+ return status;
}
static int pxa2xx_spi_runtime_suspend(struct device *dev)
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h
index 44f37bf9c519..48169494f74e 100644
--- a/drivers/spi/spi-pxa2xx.h
+++ b/drivers/spi/spi-pxa2xx.h
@@ -71,6 +71,7 @@ struct driver_data {
irqreturn_t (*transfer_handler)(struct driver_data *drv_data);
void __iomem *lpss_base;
+ u32 lpss_priv_ctx[6];
bool suspended;
bool clk_enabled;
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
@ 2026-07-17 21:43 ` Mark Brown
2026-07-17 23:47 ` Shih-Yuan Lee (FourDollars)
2 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2026-07-17 21:43 UTC (permalink / raw)
To: Shih-Yuan Lee; +Cc: linux-spi, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 497 bytes --]
On Fri, Jul 17, 2026 at 11:46:44PM +0800, Shih-Yuan Lee wrote:
> Hi Mark,
>
> This patch series resolves two issues in the spi-pxa2xx host controller driver
> related to Intel LPSS SPI controllers.
Please don't send new patches in reply to old patches or serieses, this
makes it harder for both people and tools to understand what is going
on - it can bury things in mailboxes and make it difficult to keep track
of what current patches are, both for the new patches and the old ones.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes
2026-07-17 21:43 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Mark Brown
@ 2026-07-17 23:47 ` Shih-Yuan Lee (FourDollars)
0 siblings, 0 replies; 12+ messages in thread
From: Shih-Yuan Lee (FourDollars) @ 2026-07-17 23:47 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel
On Sat, Jul 18, 2026 at 5:44 AM Mark Brown <broonie@debian.org> wrote:
>
> On Fri, Jul 17, 2026 at 11:46:44PM +0800, Shih-Yuan Lee wrote:
> > Hi Mark,
> >
> > This patch series resolves two issues in the spi-pxa2xx host controller driver
> > related to Intel LPSS SPI controllers.
>
> Please don't send new patches in reply to old patches or serieses, this
> makes it harder for both people and tools to understand what is going
> on - it can bury things in mailboxes and make it difficult to keep track
> of what current patches are, both for the new patches and the old ones.
Understood. I will make sure to start a new thread for next time.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-07-17 23:48 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-12 16:24 [PATCH 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume fixes Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-12 16:24 ` [PATCH 2/2] spi: pxa2xx: restore LPSS private and IDMA registers on S3 resume Shih-Yuan Lee
2026-07-13 16:02 ` Mark Brown
2026-07-17 15:46 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-17 15:46 ` [PATCH v3 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
2026-07-17 21:43 ` [PATCH v3 0/2] spi: pxa2xx: MacBook8,1 quirk and LPSS S3 resume state fixes Mark Brown
2026-07-17 23:47 ` Shih-Yuan Lee (FourDollars)
2026-07-17 16:37 ` [PATCH v4 " Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 1/2] spi: pxa2xx: disable DMA and fix runtime PM for Apple MacBook8,1 Shih-Yuan Lee
2026-07-17 16:37 ` [PATCH v4 2/2] spi: pxa2xx: restore LPSS private register state on S3 resume Shih-Yuan Lee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox