diff options
author | Varshit B Pandya <varshit.b.pandya@intel.com> | 2022-03-20 20:39:51 +0530 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2022-04-01 13:45:49 +0000 |
commit | e7d3a1a9e8e69cfa2963339e7cf45160509cd784 (patch) | |
tree | 693be5440f3ae8c62f8d99b4d65a4b5b8901d212 /src/include/acpi | |
parent | 47b7904d78ff2f0eb002edea99a3b761ccde962b (diff) |
drivers/intel/dptf: Add support for Power participant
As per Intel Dynamic Tuning revision 1.3.13 (Doc no: 541817)
Add support for TPWR device under \_SB.DPTF
BUG=b:205928013
TEST=Build, boot brya0 and dump SSDT to check TPWR device
Device (TPWR)
{
Name (_HID, "INTC1060") // _HID: Hardware ID
Name (_UID, "TPWR") // _UID: Unique ID
Name (_STR, "Power Participant") // _STR: Description String
Name (PTYP, 0x11)
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0x0F)
}
}
Signed-off-by: Varshit B Pandya <varshit.b.pandya@intel.com>
Change-Id: I437e509f58df1777d75e5981f0a5a63095ccb6a3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62944
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/acpi')
-rw-r--r-- | src/include/acpi/acpigen_dptf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/acpi/acpigen_dptf.h b/src/include/acpi/acpigen_dptf.h index 758398d8e4..0d4945203e 100644 --- a/src/include/acpi/acpigen_dptf.h +++ b/src/include/acpi/acpigen_dptf.h @@ -26,6 +26,7 @@ enum dptf_participant { DPTF_TEMP_SENSOR_3, DPTF_TEMP_SENSOR_4, DPTF_TPCH, + DPTF_POWER, DPTF_PARTICIPANT_COUNT, }; |