soc/intel/meteorlake: Add DPTF ACPI Device IDs into header file

This patch adds DPTF ACPI Device IDs into the header file
(soc/dptf.h).

Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: Ib78258ac1b9a5252bb5e6fae4d7cc30a3f103e78
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71126
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Reviewed-by: Ivy Jian <ivy.jian@quanta.corp-partner.google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Subrata Banik 2022-12-20 11:45:09 +05:30 committed by Felix Held
parent e9ac9f97e8
commit 42f704a967
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _SOC_DPTF_H_
#define _SOC_DPTF_H_
/* Below are the unique ACPI Device IDs for thermal/dptf on Meteor Lake SoC. */
/* DPTF ACPI Device ID */
#define DPTF_DPTF_DEVICE "INTC1042"
/* Generic ACPI Device ID for TSR0/1/2/3 and charger */
#define DPTF_GEN_DEVICE "INTC1062"
/* Fan ACPI Device ID */
#define DPTF_FAN_DEVICE "INTC1063"
/* TPCH ACPI Device ID */
#define DPTF_TPCH_DEVICE "INTC1064"
/* TPWR ACPI Device ID */
#define DPTF_TPWR_DEVICE "INTC1065"
/* BAT1 ACPI Device ID */
#define DPTF_BAT1_DEVICE "INTC1066"
#endif /* _SOC_DPTF_H_ */