summaryrefslogtreecommitdiff
path: root/board/jinlon
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2023-02-07 16:47:39 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-02-09 02:32:31 +0000
commitf4634ab70f21585b33a5bc49770cdeaed6deeb34 (patch)
treeed724d60e9f5225756fb32a881e520b3d42ced42 /board/jinlon
parent6936b5758b01e25700462fba12e165c9eba224f6 (diff)
downloadchrome-ec-f4634ab70f21585b33a5bc49770cdeaed6deeb34.tar.gz
jinlon: Adjust TEMP_SENSOR_4 thresholds to reduce fan speed in clamshell
BUG=b:261696880 BRANCH=firmware-hatch-12672.B TEST=Thermal team verified thermal policy is expected. Change-Id: Ia376eddaaaf8036aa244011a7cf097e8f883ca7a Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4225587 Tested-by: Devin Lu <devin.lu@quantatw.com> Commit-Queue: Devin Lu <devin.lu@quantatw.com> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'board/jinlon')
-rw-r--r--board/jinlon/thermal.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/board/jinlon/thermal.c b/board/jinlon/thermal.c
index 70e6016109..6a18861af3 100644
--- a/board/jinlon/thermal.c
+++ b/board/jinlon/thermal.c
@@ -41,50 +41,50 @@ static const struct fan_step *fan_step_table;
static const struct fan_step fan_table_clamshell[] = {
{
/* level 0 */
- .on = { 0, -1, 54, 37 },
+ .on = { 0, -1, 54, 41 },
.off = { 99, -1, 99, 99 },
.rpm = { 0, 0 },
},
{
/* level 1 */
- .on = { 0, -1, 57, 39 },
- .off = { 99, -1, 54, 37 },
+ .on = { 0, -1, 57, 42 },
+ .off = { 99, -1, 54, 41 },
.rpm = { 3950, 3850 },
},
{
/* level 2 */
- .on = { 0, -1, 58, 40 },
- .off = { 99, -1, 57, 39 },
+ .on = { 0, -1, 58, 43 },
+ .off = { 99, -1, 57, 42 },
.rpm = { 4200, 4100 },
},
{
/* level 3 */
- .on = { 0, -1, 59, 41 },
- .off = { 99, -1, 58, 40 },
+ .on = { 0, -1, 59, 44 },
+ .off = { 99, -1, 58, 43 },
.rpm = { 4550, 4450 },
},
{
/* level 4 */
- .on = { 62, -1, 60, 42 },
- .off = { 58, -1, 59, 41 },
+ .on = { 62, -1, 60, 45 },
+ .off = { 58, -1, 59, 44 },
.rpm = { 4900, 4800 },
},
{
/* level 5 */
- .on = { 64, -1, 61, 43 },
- .off = { 62, -1, 60, 42 },
+ .on = { 64, -1, 61, 46 },
+ .off = { 62, -1, 60, 45 },
.rpm = { 5250, 5150 },
},
{
/* level 6 */
- .on = { 65, -1, 64, 45 },
- .off = { 63, -1, 61, 43 },
+ .on = { 65, -1, 64, 47 },
+ .off = { 63, -1, 61, 46 },
.rpm = { 5400, 5300 },
},
{
/* level 7 */
.on = { 100, -1, 100, 100 },
- .off = { 65, -1, 62, 44 },
+ .off = { 65, -1, 62, 47 },
.rpm = { 6000, 5900 },
},
};