Skip to content

Commit 5280e0b

Browse files
drosdeckgregkh
authored andcommitted
mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based Positivo models
commit 50c78f3 upstream. 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: bedf9fc ("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]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 6198bfe commit 5280e0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

918919
static bool jsl_broken_hs400es(struct sdhci_pci_slot *slot)

0 commit comments

Comments
 (0)