diff options
| author | Edson Juliano Drosdeck <[email protected]> | 2025-06-26 11:24:42 +0000 |
|---|---|---|
| committer | Ulf Hansson <[email protected]> | 2025-07-03 11:01:50 +0000 |
| commit | 50c78f398e92fafa1cbba3469c95fe04b2e4206d (patch) | |
| tree | 345d9cc6db00ff845f08fffd8108ef128a9d5379 | |
| parent | mtk-sd: reset host->mrq on prepare_data() error (diff) | |
| download | kernel-50c78f398e92fafa1cbba3469c95fe04b2e4206d.tar.gz kernel-50c78f398e92fafa1cbba3469c95fe04b2e4206d.zip | |
mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based Positivo models
Disable command queuing on Intel GLK-based Positivo models.
Without this quirk, CQE (Command Queuing Engine) causes instability
or I/O errors during operation. Disabling it ensures stable
operation on affected devices.
Signed-off-by: Edson Juliano Drosdeck <[email protected]>
Fixes: bedf9fc01ff1 ("mmc: sdhci: Workaround broken command queuing on Intel GLK")
Cc: [email protected]
Acked-by: Adrian Hunter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
| -rw-r--r-- | drivers/mmc/host/sdhci-pci-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c index 13a84b9309e0..e3877a1c72a9 100644 --- a/drivers/mmc/host/sdhci-pci-core.c +++ b/drivers/mmc/host/sdhci-pci-core.c @@ -913,7 +913,8 @@ static bool glk_broken_cqhci(struct sdhci_pci_slot *slot) { return slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_EMMC && (dmi_match(DMI_BIOS_VENDOR, "LENOVO") || - dmi_match(DMI_SYS_VENDOR, "IRBIS")); + dmi_match(DMI_SYS_VENDOR, "IRBIS") || + dmi_match(DMI_SYS_VENDOR, "Positivo Tecnologia SA")); } static bool jsl_broken_hs400es(struct sdhci_pci_slot *slot) |
