From 41ba825e6556cef83781ccd109547f50df78acfe Mon Sep 17 00:00:00 2001 From: marius Date: Thu, 15 Mar 2018 22:51:13 +0000 Subject: [PATCH] MFC: r327315 Add quirks for Intel Denverton eMMC 5.0 controllers. git-svn-id: svn://svn.freebsd.org/base/stable/10@331033 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/dev/sdhci/sdhci_pci.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys/dev/sdhci/sdhci_pci.c b/sys/dev/sdhci/sdhci_pci.c index 37c426606..3d219ce84 100644 --- a/sys/dev/sdhci/sdhci_pci.c +++ b/sys/dev/sdhci/sdhci_pci.c @@ -118,6 +118,12 @@ static const struct sdhci_device { SDHCI_QUIRK_MMC_DDR52 | SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 | SDHCI_QUIRK_PRESET_VALUE_BROKEN }, + { 0x19db8086, 0xffff, "Intel Denverton eMMC 5.0 Controller", + SDHCI_QUIRK_INTEL_POWER_UP_RESET | + SDHCI_QUIRK_WAIT_WHILE_BUSY | + SDHCI_QUIRK_MMC_DDR52 | + SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 | + SDHCI_QUIRK_PRESET_VALUE_BROKEN }, { 0x22948086, 0xffff, "Intel Braswell eMMC 4.5.1 Controller", SDHCI_QUIRK_DATA_TIMEOUT_1MHZ | SDHCI_QUIRK_INTEL_POWER_UP_RESET | -- 2.45.0