diff options
author | Subrata Banik <subratabanik@google.com> | 2022-12-19 17:45:25 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-12-22 08:05:02 +0000 |
commit | 4b0c8ccb141982ca47387046a09a604fe655a6e2 (patch) | |
tree | 10abd674408235dffe1ca1ee902656ff0eac6270 /src/soc/intel/apollolake/include | |
parent | 80ed5012ef38fdc3bca04d76cfc91a2fcceaff43 (diff) |
soc/intel/apollolake: Move DPTF ACPI Device IDs into header file
This patch moves DPTF ACPI Device IDs into the header file (soc/dptf.h)
so that upcoming patches in this patch train can achieve more
common code.
TEST=Able to build and boot Google/Reef.
Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: I0ce956351afc06871c465b67f51cba8786ce52db
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71104
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/include')
-rw-r--r-- | src/soc/intel/apollolake/include/soc/dptf.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/include/soc/dptf.h b/src/soc/intel/apollolake/include/soc/dptf.h new file mode 100644 index 0000000000..06cf9ebef4 --- /dev/null +++ b/src/soc/intel/apollolake/include/soc/dptf.h @@ -0,0 +1,14 @@ +/* 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 Apollo Lake SoC. */ +/* DPTF ACPI Device ID */ +#define DPTF_DPTF_DEVICE "INT3400" +/* Generic ACPI Device ID for TSR0/1/2/3 and charger */ +#define DPTF_GEN_DEVICE "INT3403" +/* Fan ACPI Device ID */ +#define DPTF_FAN_DEVICE "INT3404" + +#endif /* _SOC_DPTF_H_ */ |