Commit 50c78f39 authored by Edson Juliano Drosdeck's avatar Edson Juliano Drosdeck Committed by Ulf Hansson
Browse files

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: default avatarEdson Juliano Drosdeck <edson.drosdeck@gmail.com>
Fixes: bedf9fc0 ("mmc: sdhci: Workaround broken command queuing on Intel GLK")
Cc: stable@vger.kernel.org
Acked-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20250626112442.9791-1-edson.drosdeck@gmail.com


Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent ec54c0a2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)