diff options
author | loos <loos@FreeBSD.org> | 2016-05-23 16:37:04 +0000 |
---|---|---|
committer | loos <loos@FreeBSD.org> | 2016-05-23 16:37:04 +0000 |
commit | 50658bb171fa22e6b22c709dc656302c22721c1e (patch) | |
tree | 41897603fd7683c02f9ca3deb9286aea61348dd4 | |
parent | eda758df2d0fec118c6f221cfd2f7ed31cae7ab1 (diff) | |
download | FreeBSD-src-50658bb171fa22e6b22c709dc656302c22721c1e.zip FreeBSD-src-50658bb171fa22e6b22c709dc656302c22721c1e.tar.gz |
MFC r298270:
Add PCI ID for family 10h model 30h to amdtemp(4).
This adds support to CPU found in PC Engines APU2 series.
Sponsored by: Rubicon Communications (Netgate)
-rw-r--r-- | sys/dev/amdtemp/amdtemp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/amdtemp/amdtemp.c b/sys/dev/amdtemp/amdtemp.c index 54f47ce..aa46661 100644 --- a/sys/dev/amdtemp/amdtemp.c +++ b/sys/dev/amdtemp/amdtemp.c @@ -80,6 +80,7 @@ struct amdtemp_softc { #define DEVICEID_AMD_MISC14 0x1703 #define DEVICEID_AMD_MISC15 0x1603 #define DEVICEID_AMD_MISC16 0x1533 +#define DEVICEID_AMD_MISC16_M30H 0x1583 #define DEVICEID_AMD_MISC17 0x141d static struct amdtemp_product { @@ -93,6 +94,7 @@ static struct amdtemp_product { { VENDORID_AMD, DEVICEID_AMD_MISC14 }, { VENDORID_AMD, DEVICEID_AMD_MISC15 }, { VENDORID_AMD, DEVICEID_AMD_MISC16 }, + { VENDORID_AMD, DEVICEID_AMD_MISC16_M30H }, { VENDORID_AMD, DEVICEID_AMD_MISC17 }, { 0, 0 } }; |