Skip to content

Commit 50c78f3

Browse files
drosdeckUlf Hansson
authored andcommitted
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 <edson.drosdeck@gmail.com> Fixes: bedf9fc ("mmc: sdhci: Workaround broken command queuing on Intel GLK") Cc: stable@vger.kernel.org Acked-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/20250626112442.9791-1-edson.drosdeck@gmail.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
1 parent ec54c0a commit 50c78f3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/mmc/host/sdhci-pci-core.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,8 @@ static bool glk_broken_cqhci(struct sdhci_pci_slot *slot)
913913
{
914914
return slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_EMMC &&
915915
(dmi_match(DMI_BIOS_VENDOR, "LENOVO") ||
916-
dmi_match(DMI_SYS_VENDOR, "IRBIS"));
916+
dmi_match(DMI_SYS_VENDOR, "IRBIS") ||
917+
dmi_match(DMI_SYS_VENDOR, "Positivo Tecnologia SA"));
917918
}
918919

919920
static bool jsl_broken_hs400es(struct sdhci_pci_slot *slot)

0 commit comments

Comments
 (0)