summaryrefslogtreecommitdiff
path: root/board/woomax/thermal.c
blob: a2ab52cc74a35c48ce9890ac2fe47bb5bff06683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* Copyright 2020 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "chipset.h"
#include "common.h"
#include "console.h"
#include "extpower.h"
#include "fan.h"
#include "hooks.h"
#include "host_command.h"
#include "temp_sensor.h"
#include "thermal.h"
#include "util.h"

/* Console output macros */
#define CPUTS(outstr) cputs(CC_THERMAL, outstr)
#define CPRINTS(format, args...) cprints(CC_THERMAL, format, ##args)

struct fan_step {
	/*
	 * Sensor 1~3 trigger point, set -1 if we're not using this
	 * sensor to determine fan speed.
	 */
	int8_t on[TEMP_SENSOR_COUNT];

	/*
	 * Sensor 1~3 trigger point, set -1 if we're not using this
	 * sensor to determine fan speed.
	 */
	int8_t off[TEMP_SENSOR_COUNT];

	/* Fan rpm */
	uint16_t rpm;
};

static const struct fan_step fan_step_table[] = {
	{
		/* level 0 */
		.on = { -1, -1, 36 },
		.off = { -1, -1, 99 },
		.rpm = 0,
	},
	{
		/* level 1 */
		.on = { -1, -1, 40 },
		.off = { -1, -1, 32 },
		.rpm = 2244,
	},
	{
		/* level 2 */
		.on = { -1, -1, 45 },
		.off = { -1, -1, 35 },
		.rpm = 2580,
	},
	{
		/* level 3 */
		.on = { -1, -1, 50 },
		.off = { -1, -1, 40 },
		.rpm = 2824,
	},
	{
		/* level 4 */
		.on = { -1, -1, 55 },
		.off = { -1, -1, 45 },
		.rpm = 3120,
	},
	{
		/* level 5 */
		.on = { -1, -1, 60 },
		.off = { -1, -1, 50 },
		.rpm = 3321,
	},
	{
		/* level 6 */
		.on = { -1, -1, 70 },
		.off = { -1, -1, 55 },
		.rpm = 3780,
	},
	{
		/* level 7 */
		.on = { -1, -1, 80 },
		.off = { -1, -1, 60 },
		.rpm = 4330,
	},
	{
		/* level 8 */
		.on = { -1, -1, 99 },
		.off = { -1, -1, 74 },
		.rpm = 4915,
	},
};

#define NUM_FAN_LEVELS ARRAY_SIZE(fan_step_table)

int fan_table_to_rpm(int fan, int *temp)
{
	static int current_level;
	static int prev_tmp[TEMP_SENSOR_COUNT];
	int i;

	/*
	 * Comopare the current and previous temperature, we have
	 * the three path:
	 * 1. decreasing path. (check the release point)
	 * 2. increasing path. (check the trigger point)
	 * 3. invariant path. (return the current RPM)
	 */
	if (temp[TEMP_SENSOR_CPU] < prev_tmp[TEMP_SENSOR_CPU]) {
		if (temp[TEMP_SENSOR_CPU] <
		    fan_step_table[current_level].off[TEMP_SENSOR_CPU])
			current_level = current_level - 1;
	} else if (temp[TEMP_SENSOR_CPU] > prev_tmp[TEMP_SENSOR_CPU]) {
		if (temp[TEMP_SENSOR_CPU] >
		    fan_step_table[current_level].on[TEMP_SENSOR_CPU])
			current_level = current_level + 1;
	}

	if (current_level < 0)
		current_level = 0;
	else if (current_level > NUM_FAN_LEVELS)
		current_level = NUM_FAN_LEVELS;

	for (i = 0; i < TEMP_SENSOR_COUNT; i++)
		prev_tmp[i] = temp[i];

	return fan_step_table[current_level].rpm;
}

void board_override_fan_control(int fan, int *tmp)
{
	if (chipset_in_state(CHIPSET_STATE_ON | CHIPSET_STATE_ANY_SUSPEND)) {
		fan_set_rpm_mode(FAN_CH(fan), 1);
		fan_set_rpm_target(FAN_CH(fan), fan_table_to_rpm(fan, tmp));
	}
}