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#include <linux/thermal.h>
26#include <trace/events/thermal.h>
27
28#include "thermal_core.h"
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50static unsigned long get_target_state(struct thermal_instance *instance,
51 enum thermal_trend trend, bool throttle)
52{
53 struct thermal_cooling_device *cdev = instance->cdev;
54 unsigned long cur_state;
55 unsigned long next_target;
56
57
58
59
60
61
62 cdev->ops->get_cur_state(cdev, &cur_state);
63 next_target = instance->target;
64 dev_dbg(&cdev->device, "cur_state=%ld\n", cur_state);
65
66 if (!instance->initialized) {
67 if (throttle) {
68 next_target = (cur_state + 1) >= instance->upper ?
69 instance->upper :
70 ((cur_state + 1) < instance->lower ?
71 instance->lower : (cur_state + 1));
72 } else {
73 next_target = THERMAL_NO_TARGET;
74 }
75
76 return next_target;
77 }
78
79 switch (trend) {
80 case THERMAL_TREND_RAISING:
81 if (throttle) {
82 next_target = cur_state < instance->upper ?
83 (cur_state + 1) : instance->upper;
84 if (next_target < instance->lower)
85 next_target = instance->lower;
86 }
87 break;
88 case THERMAL_TREND_RAISE_FULL:
89 if (throttle)
90 next_target = instance->upper;
91 break;
92 case THERMAL_TREND_DROPPING:
93 if (cur_state <= instance->lower) {
94 if (!throttle)
95 next_target = THERMAL_NO_TARGET;
96 } else {
97 next_target = cur_state - 1;
98 if (next_target > instance->upper)
99 next_target = instance->upper;
100 }
101 break;
102 case THERMAL_TREND_DROP_FULL:
103 if (cur_state == instance->lower) {
104 if (!throttle)
105 next_target = THERMAL_NO_TARGET;
106 } else
107 next_target = instance->lower;
108 break;
109 default:
110 break;
111 }
112
113 return next_target;
114}
115
116static void update_passive_instance(struct thermal_zone_device *tz,
117 enum thermal_trip_type type, int value)
118{
119
120
121
122
123 if (type == THERMAL_TRIP_PASSIVE || type == THERMAL_TRIPS_NONE)
124 tz->passive += value;
125}
126
127static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
128{
129 int trip_temp;
130 enum thermal_trip_type trip_type;
131 enum thermal_trend trend;
132 struct thermal_instance *instance;
133 bool throttle = false;
134 int old_target;
135
136 if (trip == THERMAL_TRIPS_NONE) {
137 trip_temp = tz->forced_passive;
138 trip_type = THERMAL_TRIPS_NONE;
139 } else {
140 tz->ops->get_trip_temp(tz, trip, &trip_temp);
141 tz->ops->get_trip_type(tz, trip, &trip_type);
142 }
143
144 trend = get_tz_trend(tz, trip);
145
146 if (tz->temperature >= trip_temp) {
147 throttle = true;
148 trace_thermal_zone_trip(tz, trip, trip_type);
149 }
150
151 dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d]:trend=%d,throttle=%d\n",
152 trip, trip_type, trip_temp, trend, throttle);
153
154 mutex_lock(&tz->lock);
155
156 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
157 if (instance->trip != trip)
158 continue;
159
160 old_target = instance->target;
161 instance->target = get_target_state(instance, trend, throttle);
162 dev_dbg(&instance->cdev->device, "old_target=%d, target=%d\n",
163 old_target, (int)instance->target);
164
165 if (instance->initialized && old_target == instance->target)
166 continue;
167
168
169 if (old_target == THERMAL_NO_TARGET &&
170 instance->target != THERMAL_NO_TARGET)
171 update_passive_instance(tz, trip_type, 1);
172
173 else if (old_target != THERMAL_NO_TARGET &&
174 instance->target == THERMAL_NO_TARGET)
175 update_passive_instance(tz, trip_type, -1);
176
177 instance->initialized = true;
178 mutex_lock(&instance->cdev->lock);
179 instance->cdev->updated = false;
180 mutex_unlock(&instance->cdev->lock);
181 }
182
183 mutex_unlock(&tz->lock);
184}
185
186
187
188
189
190
191
192
193
194
195
196
197static int step_wise_throttle(struct thermal_zone_device *tz, int trip)
198{
199 struct thermal_instance *instance;
200
201 thermal_zone_trip_update(tz, trip);
202
203 if (tz->forced_passive)
204 thermal_zone_trip_update(tz, THERMAL_TRIPS_NONE);
205
206 mutex_lock(&tz->lock);
207
208 list_for_each_entry(instance, &tz->thermal_instances, tz_node)
209 thermal_cdev_update(instance->cdev);
210
211 mutex_unlock(&tz->lock);
212
213 return 0;
214}
215
216static struct thermal_governor thermal_gov_step_wise = {
217 .name = "step_wise",
218 .throttle = step_wise_throttle,
219};
220
221int thermal_gov_step_wise_register(void)
222{
223 return thermal_register_governor(&thermal_gov_step_wise);
224}
225
226void thermal_gov_step_wise_unregister(void)
227{
228 thermal_unregister_governor(&thermal_gov_step_wise);
229}
230