svn commit: r339007 - head/sys/dev/sdhci

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sat Sep 29 00:35:37 UTC 2018


Author: gonzo
Date: Sat Sep 29 00:35:36 2018
New Revision: 339007
URL: https://svnweb.freebsd.org/changeset/base/339007

Log:
  [sdhci] Add ACPI identifier for AMD eMMC 5.0 controller
  
  Submitted by:	Rajesh Kumar <rajfbsd at gmail.com>
  Approved by:	re (rgrimes)
  Differential Revision:	https://reviews.freebsd.org/D17189

Modified:
  head/sys/dev/sdhci/sdhci_acpi.c

Modified: head/sys/dev/sdhci/sdhci_acpi.c
==============================================================================
--- head/sys/dev/sdhci/sdhci_acpi.c	Fri Sep 28 22:02:01 2018	(r339006)
+++ head/sys/dev/sdhci/sdhci_acpi.c	Sat Sep 29 00:35:36 2018	(r339007)
@@ -79,6 +79,8 @@ static const struct sdhci_acpi_device {
 	    SDHCI_QUIRK_MMC_DDR52 |
 	    SDHCI_QUIRK_CAPS_BIT63_FOR_MMC_HS400 |
 	    SDHCI_QUIRK_PRESET_VALUE_BROKEN },
+	{ "AMDI0040",	0, "AMD eMMC 5.0 Controller",
+	    SDHCI_QUIRK_32BIT_DMA_SIZE },
 	{ NULL, 0, NULL, 0}
 };
 
@@ -87,6 +89,7 @@ static char *sdhci_ids[] = {
 	"80860F16",
 	"80865ACA",
 	"80865ACC",
+	"AMDI0040",
 	NULL
 };
 


More information about the svn-src-head mailing list