diff options
author | Frank Wu <frank_wu@compal.corp-partner.google.com> | 2018-04-11 16:25:42 +0800 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-04-17 06:04:56 +0000 |
commit | 0ac94ee3b0729fa9f389fb431a0f82b51e37b80f (patch) | |
tree | d180df57ffcaf5504c1735e7ad5f91471028f6a8 /src/soc/intel/skylake | |
parent | ad4ddfcfdbf634d2ba4746d92cfd11854f87417a (diff) | |
download | coreboot-0ac94ee3b0729fa9f389fb431a0f82b51e37b80f.tar.gz coreboot-0ac94ee3b0729fa9f389fb431a0f82b51e37b80f.tar.bz2 coreboot-0ac94ee3b0729fa9f389fb431a0f82b51e37b80f.zip |
soc/intel/skylake: check DPTF_TSR0_ACTIVE_AC* in _ACx methods
Because thermal table is not included the values of DPTF_TSR0_ACTIVE_AC5
and DPTF_TSR0_ACTIVE_AC6 from internal nami/vayne thermal team.
Add conditional compilation in _ACx methods if DPTF_ENABLE_FAN_CONTROL
is defined in the dptf.asl.
BUG=b:72974136
BRANCH=poppy
TEST=emerge-nami coreboot and booted on nami board.
Change-Id: I3e36ce94f714ff13f8ccee65992d7a9c7e0bb5b2
Signed-off-by: Frank Wu <frank_wu@compal.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/25614
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/skylake')
-rw-r--r-- | src/soc/intel/skylake/acpi/dptf/thermal.asl | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/soc/intel/skylake/acpi/dptf/thermal.asl b/src/soc/intel/skylake/acpi/dptf/thermal.asl index f1a3cef1fc50..d84807b4109a 100644 --- a/src/soc/intel/skylake/acpi/dptf/thermal.asl +++ b/src/soc/intel/skylake/acpi/dptf/thermal.asl @@ -155,41 +155,49 @@ Device (TSR0) } #ifdef DPTF_ENABLE_FAN_CONTROL +#ifdef DPTF_TSR0_ACTIVE_AC0 Method (_AC0) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC0)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC1 Method (_AC1) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC1)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC2 Method (_AC2) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC2)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC3 Method (_AC3) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC3)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC4 Method (_AC4) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC4)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC5 Method (_AC5) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC5)) } - +#endif +#ifdef DPTF_TSR0_ACTIVE_AC6 Method (_AC6) { Return (\_SB.DPTF.CTOK (DPTF_TSR0_ACTIVE_AC6)) } #endif +#endif } #endif |