mb/google/brya/var/kinox: Correct the target of DPTF active policy
Kinox has four temperature sensors. Modify the target of DPTF active policy to map correct temperature sensor. BUG=b:231380286 TEST=Boot to Chrome OS and doesn't see "DPTF: Invalid sensor ID" from ec comsole. Signed-off-by: Dtrain Hsu <dtrain_hsu@compal.corp-partner.google.com> Change-Id: Icb5c285a6f483e2a1b6510a962ff7f7f6e9a79e3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/64722 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
parent
10a500eb32
commit
8dd47aea04
|
@ -71,7 +71,7 @@ chip soc/intel/alderlake
|
|||
}
|
||||
},
|
||||
[1] = {
|
||||
.target = DPTF_TEMP_SENSOR_1,
|
||||
.target = DPTF_TEMP_SENSOR_0,
|
||||
.thresholds = {
|
||||
TEMP_PCT(75, 97),
|
||||
TEMP_PCT(70, 93),
|
||||
|
@ -84,7 +84,7 @@ chip soc/intel/alderlake
|
|||
}
|
||||
},
|
||||
[2] = {
|
||||
.target = DPTF_TEMP_SENSOR_2,
|
||||
.target = DPTF_TEMP_SENSOR_1,
|
||||
.thresholds = {
|
||||
TEMP_PCT(75, 97),
|
||||
TEMP_PCT(70, 93),
|
||||
|
@ -97,7 +97,7 @@ chip soc/intel/alderlake
|
|||
}
|
||||
},
|
||||
[3] = {
|
||||
.target = DPTF_TEMP_SENSOR_3,
|
||||
.target = DPTF_TEMP_SENSOR_2,
|
||||
.thresholds = {
|
||||
TEMP_PCT(75, 97),
|
||||
TEMP_PCT(70, 93),
|
||||
|
@ -110,7 +110,7 @@ chip soc/intel/alderlake
|
|||
}
|
||||
},
|
||||
[4] = {
|
||||
.target = DPTF_TEMP_SENSOR_4,
|
||||
.target = DPTF_TEMP_SENSOR_3,
|
||||
.thresholds = {
|
||||
TEMP_PCT(75, 97),
|
||||
TEMP_PCT(70, 93),
|
||||
|
|
Loading…
Reference in New Issue