The branch stable/12 has been updated by mav:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=89f349bab6d6e6176704b83bd0ec358f9689a6cf

commit 89f349bab6d6e6176704b83bd0ec358f9689a6cf
Author:     Conrad Meyer <[email protected]>
AuthorDate: 2020-09-25 04:16:28 +0000
Commit:     Alexander Motin <[email protected]>
CommitDate: 2021-03-04 15:10:39 +0000

    amdtemp(4), amdsmn(4): Attach to Ryzen 4000 APU (Zen 2, "Renoir")
    
    PR:             249864
    Reported by:    Florian Millet <florian.millet AT laposte.net>
    Tested by:      Florian Millet
    
    (cherry picked from commit 5b505170794dfaae633294aaf178bd797b7a1b11)
---
 sys/dev/amdsmn/amdsmn.c   | 9 ++++++++-
 sys/dev/amdtemp/amdtemp.c | 2 ++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/sys/dev/amdsmn/amdsmn.c b/sys/dev/amdsmn/amdsmn.c
index ec09dbc4d8e5..ebc45256d14d 100644
--- a/sys/dev/amdsmn/amdsmn.c
+++ b/sys/dev/amdsmn/amdsmn.c
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 2017-2019 Conrad Meyer <[email protected]>
+ * Copyright (c) 2017-2020 Conrad Meyer <[email protected]>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -60,6 +60,7 @@ __FBSDID("$FreeBSD$");
 #define        PCI_DEVICE_ID_AMD_17H_ROOT              0x1450
 #define        PCI_DEVICE_ID_AMD_17H_M10H_ROOT         0x15d0
 #define        PCI_DEVICE_ID_AMD_17H_M30H_ROOT         0x1480  /* Also M70H. */
+#define        PCI_DEVICE_ID_AMD_17H_M60H_ROOT         0x1630
 
 struct pciid;
 struct amdsmn_softc {
@@ -97,6 +98,12 @@ static const struct pciid {
                .amdsmn_addr_reg = F17H_SMN_ADDR_REG,
                .amdsmn_data_reg = F17H_SMN_DATA_REG,
        },
+       {
+               .amdsmn_vendorid = CPU_VENDOR_AMD,
+               .amdsmn_deviceid = PCI_DEVICE_ID_AMD_17H_M60H_ROOT,
+               .amdsmn_addr_reg = F17H_SMN_ADDR_REG,
+               .amdsmn_data_reg = F17H_SMN_DATA_REG,
+       },
 };
 
 /*
diff --git a/sys/dev/amdtemp/amdtemp.c b/sys/dev/amdtemp/amdtemp.c
index 38be7d9bd1b5..5847f9da00e1 100644
--- a/sys/dev/amdtemp/amdtemp.c
+++ b/sys/dev/amdtemp/amdtemp.c
@@ -107,6 +107,7 @@ struct amdtemp_softc {
 #define        DEVICEID_AMD_HOSTB17H_ROOT      0x1450
 #define        DEVICEID_AMD_HOSTB17H_M10H_ROOT 0x15d0
 #define        DEVICEID_AMD_HOSTB17H_M30H_ROOT 0x1480  /* Also M70h. */
+#define        DEVICEID_AMD_HOSTB17H_M60H_ROOT 0x1630
 
 static const struct amdtemp_product {
        uint16_t        amdtemp_vendorid;
@@ -130,6 +131,7 @@ static const struct amdtemp_product {
        { VENDORID_AMD, DEVICEID_AMD_HOSTB17H_ROOT, false },
        { VENDORID_AMD, DEVICEID_AMD_HOSTB17H_M10H_ROOT, false },
        { VENDORID_AMD, DEVICEID_AMD_HOSTB17H_M30H_ROOT, false },
+       { VENDORID_AMD, DEVICEID_AMD_HOSTB17H_M60H_ROOT, false },
 };
 
 /*
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to