Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / nouveau / core / subdev / therm / fan.c
1 /*
2  * Copyright 2012 Red Hat Inc.
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: Ben Skeggs
23  *          Martin Peres
24  */
25
26 #include "priv.h"
27
28 #include <core/object.h>
29 #include <core/device.h>
30
31 #include <subdev/gpio.h>
32 #include <subdev/timer.h>
33
34 static int
35 nouveau_fan_update(struct nouveau_fan *fan, bool immediate, int target)
36 {
37         struct nouveau_therm *therm = fan->parent;
38         struct nouveau_therm_priv *priv = (void *)therm;
39         struct nouveau_timer *ptimer = nouveau_timer(priv);
40         unsigned long flags;
41         int ret = 0;
42         int duty;
43
44         /* update target fan speed, restricting to allowed range */
45         spin_lock_irqsave(&fan->lock, flags);
46         if (target < 0)
47                 target = fan->percent;
48         target = max_t(u8, target, fan->bios.min_duty);
49         target = min_t(u8, target, fan->bios.max_duty);
50         if (fan->percent != target) {
51                 nv_debug(therm, "FAN target: %d\n", target);
52                 fan->percent = target;
53         }
54
55         /* check that we're not already at the target duty cycle */
56         duty = fan->get(therm);
57         if (duty == target)
58                 goto done;
59
60         /* smooth out the fanspeed increase/decrease */
61         if (!immediate && duty >= 0) {
62                 /* the constant "3" is a rough approximation taken from
63                  * nvidia's behaviour.
64                  * it is meant to bump the fan speed more incrementally
65                  */
66                 if (duty < target)
67                         duty = min(duty + 3, target);
68                 else if (duty > target)
69                         duty = max(duty - 3, target);
70         } else {
71                 duty = target;
72         }
73
74         nv_debug(therm, "FAN update: %d\n", duty);
75         ret = fan->set(therm, duty);
76         if (ret)
77                 goto done;
78
79         /* schedule next fan update, if not at target speed already */
80         if (list_empty(&fan->alarm.head) && target != duty) {
81                 u16 bump_period = fan->bios.bump_period;
82                 u16 slow_down_period = fan->bios.slow_down_period;
83                 u64 delay;
84
85                 if (duty > target)
86                         delay = slow_down_period;
87                 else if (duty == target)
88                         delay = min(bump_period, slow_down_period) ;
89                 else
90                         delay = bump_period;
91
92                 ptimer->alarm(ptimer, delay * 1000 * 1000, &fan->alarm);
93         }
94
95 done:
96         spin_unlock_irqrestore(&fan->lock, flags);
97         return ret;
98 }
99
100 static void
101 nouveau_fan_alarm(struct nouveau_alarm *alarm)
102 {
103         struct nouveau_fan *fan = container_of(alarm, struct nouveau_fan, alarm);
104         nouveau_fan_update(fan, false, -1);
105 }
106
107 int
108 nouveau_therm_fan_get(struct nouveau_therm *therm)
109 {
110         struct nouveau_therm_priv *priv = (void *)therm;
111         return priv->fan->get(therm);
112 }
113
114 int
115 nouveau_therm_fan_set(struct nouveau_therm *therm, bool immediate, int percent)
116 {
117         struct nouveau_therm_priv *priv = (void *)therm;
118         return nouveau_fan_update(priv->fan, immediate, percent);
119 }
120
121 int
122 nouveau_therm_fan_sense(struct nouveau_therm *therm)
123 {
124         struct nouveau_therm_priv *priv = (void *)therm;
125         struct nouveau_timer *ptimer = nouveau_timer(therm);
126         struct nouveau_gpio *gpio = nouveau_gpio(therm);
127         u32 cycles, cur, prev;
128         u64 start, end, tach;
129
130         if (priv->fan->tach.func == DCB_GPIO_UNUSED)
131                 return -ENODEV;
132
133         /* Time a complete rotation and extrapolate to RPM:
134          * When the fan spins, it changes the value of GPIO FAN_SENSE.
135          * We get 4 changes (0 -> 1 -> 0 -> 1) per complete rotation.
136          */
137         start = ptimer->read(ptimer);
138         prev = gpio->get(gpio, 0, priv->fan->tach.func, priv->fan->tach.line);
139         cycles = 0;
140         do {
141                 usleep_range(500, 1000); /* supports 0 < rpm < 7500 */
142
143                 cur = gpio->get(gpio, 0, priv->fan->tach.func, priv->fan->tach.line);
144                 if (prev != cur) {
145                         if (!start)
146                                 start = ptimer->read(ptimer);
147                         cycles++;
148                         prev = cur;
149                 }
150         } while (cycles < 5 && ptimer->read(ptimer) - start < 250000000);
151         end = ptimer->read(ptimer);
152
153         if (cycles == 5) {
154                 tach = (u64)60000000000ULL;
155                 do_div(tach, (end - start));
156                 return tach;
157         } else
158                 return 0;
159 }
160
161 int
162 nouveau_therm_fan_user_get(struct nouveau_therm *therm)
163 {
164         return nouveau_therm_fan_get(therm);
165 }
166
167 int
168 nouveau_therm_fan_user_set(struct nouveau_therm *therm, int percent)
169 {
170         struct nouveau_therm_priv *priv = (void *)therm;
171
172         if (priv->mode != NOUVEAU_THERM_CTRL_MANUAL)
173                 return -EINVAL;
174
175         return nouveau_therm_fan_set(therm, true, percent);
176 }
177
178 static void
179 nouveau_therm_fan_set_defaults(struct nouveau_therm *therm)
180 {
181         struct nouveau_therm_priv *priv = (void *)therm;
182
183         priv->fan->bios.pwm_freq = 0;
184         priv->fan->bios.min_duty = 0;
185         priv->fan->bios.max_duty = 100;
186         priv->fan->bios.bump_period = 500;
187         priv->fan->bios.slow_down_period = 2000;
188         priv->fan->bios.linear_min_temp = 40;
189         priv->fan->bios.linear_max_temp = 85;
190 }
191
192 static void
193 nouveau_therm_fan_safety_checks(struct nouveau_therm *therm)
194 {
195         struct nouveau_therm_priv *priv = (void *)therm;
196
197         if (priv->fan->bios.min_duty > 100)
198                 priv->fan->bios.min_duty = 100;
199         if (priv->fan->bios.max_duty > 100)
200                 priv->fan->bios.max_duty = 100;
201
202         if (priv->fan->bios.min_duty > priv->fan->bios.max_duty)
203                 priv->fan->bios.min_duty = priv->fan->bios.max_duty;
204 }
205
206 int
207 nouveau_therm_fan_ctor(struct nouveau_therm *therm)
208 {
209         struct nouveau_therm_priv *priv = (void *)therm;
210         struct nouveau_gpio *gpio = nouveau_gpio(therm);
211         struct nouveau_bios *bios = nouveau_bios(therm);
212         struct dcb_gpio_func func;
213         int ret;
214
215         /* attempt to locate a drivable fan, and determine control method */
216         ret = gpio->find(gpio, 0, DCB_GPIO_FAN, 0xff, &func);
217         if (ret == 0) {
218                 if (func.log[0] & DCB_GPIO_LOG_DIR_IN) {
219                         nv_debug(therm, "GPIO_FAN is in input mode\n");
220                         ret = -EINVAL;
221                 } else {
222                         ret = nouveau_fanpwm_create(therm, &func);
223                         if (ret != 0)
224                                 ret = nouveau_fantog_create(therm, &func);
225                 }
226         }
227
228         /* no controllable fan found, create a dummy fan module */
229         if (ret != 0) {
230                 ret = nouveau_fannil_create(therm);
231                 if (ret)
232                         return ret;
233         }
234
235         nv_info(therm, "FAN control: %s\n", priv->fan->type);
236
237         /* attempt to detect a tachometer connection */
238         ret = gpio->find(gpio, 0, DCB_GPIO_FAN_SENSE, 0xff, &priv->fan->tach);
239         if (ret)
240                 priv->fan->tach.func = DCB_GPIO_UNUSED;
241
242         /* initialise fan bump/slow update handling */
243         priv->fan->parent = therm;
244         nouveau_alarm_init(&priv->fan->alarm, nouveau_fan_alarm);
245         spin_lock_init(&priv->fan->lock);
246
247         /* other random init... */
248         nouveau_therm_fan_set_defaults(therm);
249         nvbios_perf_fan_parse(bios, &priv->fan->perf);
250         if (nvbios_therm_fan_parse(bios, &priv->fan->bios))
251                 nv_error(therm, "parsing the thermal table failed\n");
252         nouveau_therm_fan_safety_checks(therm);
253         return 0;
254 }