mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 19:52:44 +00:00
Add support for the AMD 8111.
This commit is contained in:
parent
d2f313a8ae
commit
62d4722034
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128472
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user