Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Mar 2021 19:00:23 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 84c6bae8db2e - releng/13.0 - acpi: limit the AMDI0020/AMDI0010 workaround to an option
Message-ID:  <202103011900.121J0NTL030725@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch releng/13.0 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=84c6bae8db2e0ae98e321f928364b61a7a13cda5

commit 84c6bae8db2e0ae98e321f928364b61a7a13cda5
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2021-02-08 21:43:25 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2021-03-01 18:58:52 +0000

    acpi: limit the AMDI0020/AMDI0010 workaround to an option
    
    It appears that production versions of EPYC firmware get the _STA method right
    for these nodes. In fact, this workaround breaks on production hardware by
    including too many uart nodes. This work around was for pre-release hardware
    that wound up not having a large deployment. Move this work around to a kernel
    option since the machines that needed it have been powered off and are difficult
    to resurrect. Should there be a more significant deployment than is understood,
    we can restrict it based on smbios strings.
    
    Discussed with: mmacy@, seanc@, jhb@
    MFC After: 3 days
    Approved by: re@ (gjb)
    (cherry picked from commit 35af933173d516101f4c44af328fbe2d6e587869)
    (cherry picked from commit a60c5de933e1516f65ead98b0ee141224ad607f4)
---
 sys/conf/options      | 1 +
 sys/dev/acpica/acpi.c | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/sys/conf/options b/sys/conf/options
index 77979b72fe58..2f324143c574 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -705,6 +705,7 @@ ACPI_DEBUG		opt_acpi.h
 ACPI_MAX_TASKS		opt_acpi.h
 ACPI_MAX_THREADS	opt_acpi.h
 DEV_ACPI		opt_acpi.h
+ACPI_EARLY_EPYC_WAR	opt_acpi.h
 
 # options for IOMMU support
 IOMMU			opt_iommu.h
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index 04c8c1b27625..18623a6ab240 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -2273,6 +2273,8 @@ acpi_DeviceIsPresent(device_t dev)
 	h = acpi_get_handle(dev);
 	if (h == NULL)
 		return (FALSE);
+
+#ifdef ACPI_EARLY_EPYC_WAR
 	/*
 	 * Certain Treadripper boards always returns 0 for FreeBSD because it
 	 * only returns non-zero for the OS string "Windows 2015". Otherwise it
@@ -2281,6 +2283,7 @@ acpi_DeviceIsPresent(device_t dev)
 	 */
 	if (acpi_MatchHid(h, "AMDI0020") || acpi_MatchHid(h, "AMDI0010"))
 		return (TRUE);
+#endif
 
 	status = acpi_GetInteger(h, "_STA", &s);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103011900.121J0NTL030725>