]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/core/subdev/therm/base.c
Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / core / subdev / therm / base.c
1 /*
2  * Copyright 2012 The Nouveau community
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Martin Peres
23  */
24
25 #include <core/object.h>
26 #include <core/device.h>
27
28 #include <subdev/bios.h>
29
30 #include "priv.h"
31
32 static int
33 nouveau_therm_update_trip(struct nouveau_therm *therm)
34 {
35         struct nouveau_therm_priv *priv = (void *)therm;
36         struct nouveau_therm_trip_point *trip = priv->fan->bios.trip,
37                                         *cur_trip = NULL,
38                                         *last_trip = priv->last_trip;
39         u8  temp = therm->temp_get(therm);
40         u16 duty, i;
41
42         /* look for the trip point corresponding to the current temperature */
43         cur_trip = NULL;
44         for (i = 0; i < priv->fan->bios.nr_fan_trip; i++) {
45                 if (temp >= trip[i].temp)
46                         cur_trip = &trip[i];
47         }
48
49         /* account for the hysteresis cycle */
50         if (last_trip && temp <= (last_trip->temp) &&
51             temp > (last_trip->temp - last_trip->hysteresis))
52                 cur_trip = last_trip;
53
54         if (cur_trip) {
55                 duty = cur_trip->fan_duty;
56                 priv->last_trip = cur_trip;
57         } else {
58                 duty = 0;
59                 priv->last_trip = NULL;
60         }
61
62         return duty;
63 }
64
65 static int
66 nouveau_therm_update_linear(struct nouveau_therm *therm)
67 {
68         struct nouveau_therm_priv *priv = (void *)therm;
69         u8  linear_min_temp = priv->fan->bios.linear_min_temp;
70         u8  linear_max_temp = priv->fan->bios.linear_max_temp;
71         u8  temp = therm->temp_get(therm);
72         u16 duty;
73
74         /* handle the non-linear part first */
75         if (temp < linear_min_temp)
76                 return priv->fan->bios.min_duty;
77         else if (temp > linear_max_temp)
78                 return priv->fan->bios.max_duty;
79
80         /* we are in the linear zone */
81         duty  = (temp - linear_min_temp);
82         duty *= (priv->fan->bios.max_duty - priv->fan->bios.min_duty);
83         duty /= (linear_max_temp - linear_min_temp);
84         duty += priv->fan->bios.min_duty;
85
86         return duty;
87 }
88
89 static void
90 nouveau_therm_update(struct nouveau_therm *therm, int mode)
91 {
92         struct nouveau_timer *ptimer = nouveau_timer(therm);
93         struct nouveau_therm_priv *priv = (void *)therm;
94         unsigned long flags;
95         int duty;
96
97         spin_lock_irqsave(&priv->lock, flags);
98         if (mode < 0)
99                 mode = priv->mode;
100         priv->mode = mode;
101
102         switch (mode) {
103         case NOUVEAU_THERM_CTRL_MANUAL:
104                 duty = nouveau_therm_fan_get(therm);
105                 if (duty < 0)
106                         duty = 100;
107                 break;
108         case NOUVEAU_THERM_CTRL_AUTO:
109                 if (priv->fan->bios.nr_fan_trip)
110                         duty = nouveau_therm_update_trip(therm);
111                 else
112                         duty = nouveau_therm_update_linear(therm);
113                 break;
114         case NOUVEAU_THERM_CTRL_NONE:
115         default:
116                 goto done;
117         }
118
119         nv_debug(therm, "FAN target request: %d%%\n", duty);
120         nouveau_therm_fan_set(therm, (mode != NOUVEAU_THERM_CTRL_AUTO), duty);
121
122 done:
123         if (list_empty(&priv->alarm.head) && (mode == NOUVEAU_THERM_CTRL_AUTO))
124                 ptimer->alarm(ptimer, 1000000000ULL, &priv->alarm);
125         spin_unlock_irqrestore(&priv->lock, flags);
126 }
127
128 static void
129 nouveau_therm_alarm(struct nouveau_alarm *alarm)
130 {
131         struct nouveau_therm_priv *priv =
132                container_of(alarm, struct nouveau_therm_priv, alarm);
133         nouveau_therm_update(&priv->base, -1);
134 }
135
136 int
137 nouveau_therm_mode(struct nouveau_therm *therm, int mode)
138 {
139         struct nouveau_therm_priv *priv = (void *)therm;
140         struct nouveau_device *device = nv_device(therm);
141         static const char *name[] = {
142                 "disabled",
143                 "manual",
144                 "automatic"
145         };
146
147         /* The default PDAEMON ucode interferes with fan management */
148         if ((mode >= ARRAY_SIZE(name)) ||
149             (mode != NOUVEAU_THERM_CTRL_NONE && device->card_type >= NV_C0))
150                 return -EINVAL;
151
152         if (priv->mode == mode)
153                 return 0;
154
155         nv_info(therm, "Thermal management: %s\n", name[mode]);
156         nouveau_therm_update(therm, mode);
157         return 0;
158 }
159
160 int
161 nouveau_therm_attr_get(struct nouveau_therm *therm,
162                        enum nouveau_therm_attr_type type)
163 {
164         struct nouveau_therm_priv *priv = (void *)therm;
165
166         switch (type) {
167         case NOUVEAU_THERM_ATTR_FAN_MIN_DUTY:
168                 return priv->fan->bios.min_duty;
169         case NOUVEAU_THERM_ATTR_FAN_MAX_DUTY:
170                 return priv->fan->bios.max_duty;
171         case NOUVEAU_THERM_ATTR_FAN_MODE:
172                 return priv->mode;
173         case NOUVEAU_THERM_ATTR_THRS_FAN_BOOST:
174                 return priv->bios_sensor.thrs_fan_boost.temp;
175         case NOUVEAU_THERM_ATTR_THRS_FAN_BOOST_HYST:
176                 return priv->bios_sensor.thrs_fan_boost.hysteresis;
177         case NOUVEAU_THERM_ATTR_THRS_DOWN_CLK:
178                 return priv->bios_sensor.thrs_down_clock.temp;
179         case NOUVEAU_THERM_ATTR_THRS_DOWN_CLK_HYST:
180                 return priv->bios_sensor.thrs_down_clock.hysteresis;
181         case NOUVEAU_THERM_ATTR_THRS_CRITICAL:
182                 return priv->bios_sensor.thrs_critical.temp;
183         case NOUVEAU_THERM_ATTR_THRS_CRITICAL_HYST:
184                 return priv->bios_sensor.thrs_critical.hysteresis;
185         case NOUVEAU_THERM_ATTR_THRS_SHUTDOWN:
186                 return priv->bios_sensor.thrs_shutdown.temp;
187         case NOUVEAU_THERM_ATTR_THRS_SHUTDOWN_HYST:
188                 return priv->bios_sensor.thrs_shutdown.hysteresis;
189         }
190
191         return -EINVAL;
192 }
193
194 int
195 nouveau_therm_attr_set(struct nouveau_therm *therm,
196                        enum nouveau_therm_attr_type type, int value)
197 {
198         struct nouveau_therm_priv *priv = (void *)therm;
199
200         switch (type) {
201         case NOUVEAU_THERM_ATTR_FAN_MIN_DUTY:
202                 if (value < 0)
203                         value = 0;
204                 if (value > priv->fan->bios.max_duty)
205                         value = priv->fan->bios.max_duty;
206                 priv->fan->bios.min_duty = value;
207                 return 0;
208         case NOUVEAU_THERM_ATTR_FAN_MAX_DUTY:
209                 if (value < 0)
210                         value = 0;
211                 if (value < priv->fan->bios.min_duty)
212                         value = priv->fan->bios.min_duty;
213                 priv->fan->bios.max_duty = value;
214                 return 0;
215         case NOUVEAU_THERM_ATTR_FAN_MODE:
216                 return nouveau_therm_mode(therm, value);
217         case NOUVEAU_THERM_ATTR_THRS_FAN_BOOST:
218                 priv->bios_sensor.thrs_fan_boost.temp = value;
219                 priv->sensor.program_alarms(therm);
220                 return 0;
221         case NOUVEAU_THERM_ATTR_THRS_FAN_BOOST_HYST:
222                 priv->bios_sensor.thrs_fan_boost.hysteresis = value;
223                 priv->sensor.program_alarms(therm);
224                 return 0;
225         case NOUVEAU_THERM_ATTR_THRS_DOWN_CLK:
226                 priv->bios_sensor.thrs_down_clock.temp = value;
227                 priv->sensor.program_alarms(therm);
228                 return 0;
229         case NOUVEAU_THERM_ATTR_THRS_DOWN_CLK_HYST:
230                 priv->bios_sensor.thrs_down_clock.hysteresis = value;
231                 priv->sensor.program_alarms(therm);
232                 return 0;
233         case NOUVEAU_THERM_ATTR_THRS_CRITICAL:
234                 priv->bios_sensor.thrs_critical.temp = value;
235                 priv->sensor.program_alarms(therm);
236                 return 0;
237         case NOUVEAU_THERM_ATTR_THRS_CRITICAL_HYST:
238                 priv->bios_sensor.thrs_critical.hysteresis = value;
239                 priv->sensor.program_alarms(therm);
240                 return 0;
241         case NOUVEAU_THERM_ATTR_THRS_SHUTDOWN:
242                 priv->bios_sensor.thrs_shutdown.temp = value;
243                 priv->sensor.program_alarms(therm);
244                 return 0;
245         case NOUVEAU_THERM_ATTR_THRS_SHUTDOWN_HYST:
246                 priv->bios_sensor.thrs_shutdown.hysteresis = value;
247                 priv->sensor.program_alarms(therm);
248                 return 0;
249         }
250
251         return -EINVAL;
252 }
253
254 int
255 _nouveau_therm_init(struct nouveau_object *object)
256 {
257         struct nouveau_therm *therm = (void *)object;
258         struct nouveau_therm_priv *priv = (void *)therm;
259         int ret;
260
261         ret = nouveau_subdev_init(&therm->base);
262         if (ret)
263                 return ret;
264
265         if (priv->suspend >= 0)
266                 nouveau_therm_mode(therm, priv->mode);
267         priv->sensor.program_alarms(therm);
268         return 0;
269 }
270
271 int
272 _nouveau_therm_fini(struct nouveau_object *object, bool suspend)
273 {
274         struct nouveau_therm *therm = (void *)object;
275         struct nouveau_therm_priv *priv = (void *)therm;
276
277         if (suspend) {
278                 priv->suspend = priv->mode;
279                 priv->mode = NOUVEAU_THERM_CTRL_NONE;
280         }
281
282         return nouveau_subdev_fini(&therm->base, suspend);
283 }
284
285 int
286 nouveau_therm_create_(struct nouveau_object *parent,
287                       struct nouveau_object *engine,
288                       struct nouveau_oclass *oclass,
289                       int length, void **pobject)
290 {
291         struct nouveau_therm_priv *priv;
292         int ret;
293
294         ret = nouveau_subdev_create_(parent, engine, oclass, 0, "PTHERM",
295                                      "therm", length, pobject);
296         priv = *pobject;
297         if (ret)
298                 return ret;
299
300         nouveau_alarm_init(&priv->alarm, nouveau_therm_alarm);
301         spin_lock_init(&priv->lock);
302         spin_lock_init(&priv->sensor.alarm_program_lock);
303
304         priv->base.fan_get = nouveau_therm_fan_user_get;
305         priv->base.fan_set = nouveau_therm_fan_user_set;
306         priv->base.fan_sense = nouveau_therm_fan_sense;
307         priv->base.attr_get = nouveau_therm_attr_get;
308         priv->base.attr_set = nouveau_therm_attr_set;
309         priv->mode = priv->suspend = -1; /* undefined */
310         return 0;
311 }
312
313 int
314 nouveau_therm_preinit(struct nouveau_therm *therm)
315 {
316         nouveau_therm_ic_ctor(therm);
317         nouveau_therm_sensor_ctor(therm);
318         nouveau_therm_fan_ctor(therm);
319
320         nouveau_therm_mode(therm, NOUVEAU_THERM_CTRL_NONE);
321         return 0;
322 }
323
324 void
325 _nouveau_therm_dtor(struct nouveau_object *object)
326 {
327         struct nouveau_therm_priv *priv = (void *)object;
328         kfree(priv->fan);
329         nouveau_subdev_destroy(&priv->base.base);
330 }