summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2004-04-20 13:36:44 +0000
committerobrien <obrien@FreeBSD.org>2004-04-20 13:36:44 +0000
commit8486d0e8588ea324828f26cb3d3632486d181733 (patch)
treed4d42ab0c0095e59e97f2acd64fee0a894ffd8b9 /sys/pci
parent333a9bb2543cf7af7798ac4cb2488648d1abae0c (diff)
downloadFreeBSD-src-8486d0e8588ea324828f26cb3d3632486d181733.zip
FreeBSD-src-8486d0e8588ea324828f26cb3d3632486d181733.tar.gz
Add support for the AMD 8111.
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/amdpm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/pci/amdpm.c b/sys/pci/amdpm.c
index afed542..5333e67 100644
--- a/sys/pci/amdpm.c
+++ b/sys/pci/amdpm.c
@@ -68,6 +68,7 @@ static int amdpm_debug = 0;
#define AMDPM_DEVICEID_AMD756PM 0x740b
#define AMDPM_DEVICEID_AMD766PM 0x7413
#define AMDPM_DEVICEID_AMD768PM 0x7443
+#define AMDPM_DEVICEID_AMD8111PM 0x746A
/* nVidia nForce chipset */
#define AMDPM_VENDORID_NVIDIA 0x10de
@@ -150,8 +151,9 @@ amdpm_probe(device_t dev)
if ((vid == AMDPM_VENDORID_AMD) &&
((did == AMDPM_DEVICEID_AMD756PM) ||
(did == AMDPM_DEVICEID_AMD766PM) ||
- (did == AMDPM_DEVICEID_AMD768PM))) {
- device_set_desc(dev, "AMD 756/766/768 Power Management Controller");
+ (did == AMDPM_DEVICEID_AMD768PM) ||
+ (did == AMDPM_DEVICEID_AMD8111PM))) {
+ device_set_desc(dev, "AMD 756/766/768/8111 Power Management Controller");
/*
* We have to do this, since the BIOS won't give us the
OpenPOWER on IntegriCloud