diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2020-10-15 17:56:10 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-11-20 00:11:19 +0000 |
commit | e593747f061e6e05e8f46d3875be6941c45905f5 (patch) | |
tree | 4c26382508f4e426917d83fc5636d49b0c5fc264 /src/soc/intel/common | |
parent | 71b3edd779638554281512ce2ef733876c1feaf7 (diff) |
soc/intel/common/acpi: add _HID to PEPD
Add the _HID INT33A1 to PEPD to make Linux recognize it as "Intel Power
Engine" in the pmc core driver.
The _ADR gets dropped, because _HID and _ADR are mutually exclusive.
Change-Id: I7a0335681f1601f7fd8a9245a3dea72ffd100b55
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46469
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/acpi/acpi/pep.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/acpi/acpi/pep.asl b/src/soc/intel/common/block/acpi/acpi/pep.asl index ef6707647f..b6a0d9d91a 100644 --- a/src/soc/intel/common/block/acpi/acpi/pep.asl +++ b/src/soc/intel/common/block/acpi/acpi/pep.asl @@ -16,7 +16,7 @@ External(\_SB.PCI0.RGPM, MethodObj) Device(PEPD) { - Name(_ADR, 0x00000000) + Name(_HID, "INT33A1") /* Intel Power Engine */ Name(_CID, EISAID("PNP0D80")) Method(_DSM, 4) { |