Elkhart Lake needs the 0V quirk
authorjsg <jsg@openbsd.org>
Fri, 29 Mar 2024 02:36:49 +0000 (02:36 +0000)
committerjsg <jsg@openbsd.org>
Fri, 29 Mar 2024 02:36:49 +0000 (02:36 +0000)
fixes accessing eMMC on a machine with Celeron J6413
from and tested by Sven Falempin

sys/dev/pci/sdhc_pci.c

index f42d414..d495d32 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sdhc_pci.c,v 1.25 2024/03/28 23:38:54 jsg Exp $       */
+/*     $OpenBSD: sdhc_pci.c,v 1.26 2024/03/29 02:36:49 jsg Exp $       */
 
 /*
  * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -132,6 +132,7 @@ sdhc_pci_attach(struct device *parent, struct device *self, void *aux)
            PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_APOLLOLAKE_EMMC ||
            PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_GLK_EMMC ||
            PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_JSL_EMMC ||
+           PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_EHL_EMMC ||
            PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_ADL_N_EMMC))
                sc->sc.sc_flags |= SDHC_F_NOPWR0;