]> Pileus Git - ~andy/linux/blob - drivers/gpu/drm/nouveau/nouveau_pm.c
drm/nouveau/gpio: port gpio to subdev interfaces
[~andy/linux] / drivers / gpu / drm / nouveau / nouveau_pm.c
1 /*
2  * Copyright 2010 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  */
24
25 #include "drmP.h"
26
27 #include "nouveau_drv.h"
28 #include "nouveau_pm.h"
29 #include <subdev/bios/gpio.h>
30
31 #ifdef CONFIG_ACPI
32 #include <linux/acpi.h>
33 #endif
34 #include <linux/power_supply.h>
35 #include <linux/hwmon.h>
36 #include <linux/hwmon-sysfs.h>
37
38 static int
39 nouveau_pwmfan_get(struct drm_device *dev)
40 {
41         struct drm_nouveau_private *dev_priv = dev->dev_private;
42         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
43         struct dcb_gpio_func gpio;
44         u32 divs, duty;
45         int ret;
46
47         if (!pm->pwm_get)
48                 return -ENODEV;
49
50         ret = nouveau_gpio_find(dev, 0, DCB_GPIO_PWM_FAN, 0xff, &gpio);
51         if (ret == 0) {
52                 ret = pm->pwm_get(dev, gpio.line, &divs, &duty);
53                 if (ret == 0 && divs) {
54                         divs = max(divs, duty);
55                         if (dev_priv->card_type <= NV_40 || (gpio.log[0] & 1))
56                                 duty = divs - duty;
57                         return (duty * 100) / divs;
58                 }
59
60                 return nouveau_gpio_func_get(dev, gpio.func) * 100;
61         }
62
63         return -ENODEV;
64 }
65
66 static int
67 nouveau_pwmfan_set(struct drm_device *dev, int percent)
68 {
69         struct drm_nouveau_private *dev_priv = dev->dev_private;
70         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
71         struct dcb_gpio_func gpio;
72         u32 divs, duty;
73         int ret;
74
75         if (!pm->pwm_set)
76                 return -ENODEV;
77
78         ret = nouveau_gpio_find(dev, 0, DCB_GPIO_PWM_FAN, 0xff, &gpio);
79         if (ret == 0) {
80                 divs = pm->fan.pwm_divisor;
81                 if (pm->fan.pwm_freq) {
82                         /*XXX: PNVIO clock more than likely... */
83                         divs = 135000 / pm->fan.pwm_freq;
84                         if (dev_priv->chipset < 0xa3)
85                                 divs /= 4;
86                 }
87
88                 duty = ((divs * percent) + 99) / 100;
89                 if (dev_priv->card_type <= NV_40 || (gpio.log[0] & 1))
90                         duty = divs - duty;
91
92                 ret = pm->pwm_set(dev, gpio.line, divs, duty);
93                 if (!ret)
94                         pm->fan.percent = percent;
95                 return ret;
96         }
97
98         return -ENODEV;
99 }
100
101 static int
102 nouveau_pm_perflvl_aux(struct drm_device *dev, struct nouveau_pm_level *perflvl,
103                        struct nouveau_pm_level *a, struct nouveau_pm_level *b)
104 {
105         struct drm_nouveau_private *dev_priv = dev->dev_private;
106         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
107         int ret;
108
109         /*XXX: not on all boards, we should control based on temperature
110          *     on recent boards..  or maybe on some other factor we don't
111          *     know about?
112          */
113         if (a->fanspeed && b->fanspeed && b->fanspeed > a->fanspeed) {
114                 ret = nouveau_pwmfan_set(dev, perflvl->fanspeed);
115                 if (ret && ret != -ENODEV) {
116                         NV_ERROR(dev, "fanspeed set failed: %d\n", ret);
117                         return ret;
118                 }
119         }
120
121         if (pm->voltage.supported && pm->voltage_set) {
122                 if (perflvl->volt_min && b->volt_min > a->volt_min) {
123                         ret = pm->voltage_set(dev, perflvl->volt_min);
124                         if (ret) {
125                                 NV_ERROR(dev, "voltage set failed: %d\n", ret);
126                                 return ret;
127                         }
128                 }
129         }
130
131         return 0;
132 }
133
134 static int
135 nouveau_pm_perflvl_set(struct drm_device *dev, struct nouveau_pm_level *perflvl)
136 {
137         struct drm_nouveau_private *dev_priv = dev->dev_private;
138         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
139         void *state;
140         int ret;
141
142         if (perflvl == pm->cur)
143                 return 0;
144
145         ret = nouveau_pm_perflvl_aux(dev, perflvl, pm->cur, perflvl);
146         if (ret)
147                 return ret;
148
149         state = pm->clocks_pre(dev, perflvl);
150         if (IS_ERR(state)) {
151                 ret = PTR_ERR(state);
152                 goto error;
153         }
154         ret = pm->clocks_set(dev, state);
155         if (ret)
156                 goto error;
157
158         ret = nouveau_pm_perflvl_aux(dev, perflvl, perflvl, pm->cur);
159         if (ret)
160                 return ret;
161
162         pm->cur = perflvl;
163         return 0;
164
165 error:
166         /* restore the fan speed and voltage before leaving */
167         nouveau_pm_perflvl_aux(dev, perflvl, perflvl, pm->cur);
168         return ret;
169 }
170
171 void
172 nouveau_pm_trigger(struct drm_device *dev)
173 {
174         struct drm_nouveau_private *dev_priv = dev->dev_private;
175         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
176         struct nouveau_pm_profile *profile = NULL;
177         struct nouveau_pm_level *perflvl = NULL;
178         int ret;
179
180         /* select power profile based on current power source */
181         if (power_supply_is_system_supplied())
182                 profile = pm->profile_ac;
183         else
184                 profile = pm->profile_dc;
185
186         if (profile != pm->profile) {
187                 pm->profile->func->fini(pm->profile);
188                 pm->profile = profile;
189                 pm->profile->func->init(pm->profile);
190         }
191
192         /* select performance level based on profile */
193         perflvl = profile->func->select(profile);
194
195         /* change perflvl, if necessary */
196         if (perflvl != pm->cur) {
197                 struct nouveau_timer_engine *ptimer = &dev_priv->engine.timer;
198                 u64 time0 = ptimer->read(dev);
199
200                 NV_INFO(dev, "setting performance level: %d", perflvl->id);
201                 ret = nouveau_pm_perflvl_set(dev, perflvl);
202                 if (ret)
203                         NV_INFO(dev, "> reclocking failed: %d\n\n", ret);
204
205                 NV_INFO(dev, "> reclocking took %lluns\n\n",
206                              ptimer->read(dev) - time0);
207         }
208 }
209
210 static struct nouveau_pm_profile *
211 profile_find(struct drm_device *dev, const char *string)
212 {
213         struct drm_nouveau_private *dev_priv = dev->dev_private;
214         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
215         struct nouveau_pm_profile *profile;
216
217         list_for_each_entry(profile, &pm->profiles, head) {
218                 if (!strncmp(profile->name, string, sizeof(profile->name)))
219                         return profile;
220         }
221
222         return NULL;
223 }
224
225 static int
226 nouveau_pm_profile_set(struct drm_device *dev, const char *profile)
227 {
228         struct drm_nouveau_private *dev_priv = dev->dev_private;
229         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
230         struct nouveau_pm_profile *ac = NULL, *dc = NULL;
231         char string[16], *cur = string, *ptr;
232
233         /* safety precaution, for now */
234         if (nouveau_perflvl_wr != 7777)
235                 return -EPERM;
236
237         strncpy(string, profile, sizeof(string));
238         string[sizeof(string) - 1] = 0;
239         if ((ptr = strchr(string, '\n')))
240                 *ptr = '\0';
241
242         ptr = strsep(&cur, ",");
243         if (ptr)
244                 ac = profile_find(dev, ptr);
245
246         ptr = strsep(&cur, ",");
247         if (ptr)
248                 dc = profile_find(dev, ptr);
249         else
250                 dc = ac;
251
252         if (ac == NULL || dc == NULL)
253                 return -EINVAL;
254
255         pm->profile_ac = ac;
256         pm->profile_dc = dc;
257         nouveau_pm_trigger(dev);
258         return 0;
259 }
260
261 static void
262 nouveau_pm_static_dummy(struct nouveau_pm_profile *profile)
263 {
264 }
265
266 static struct nouveau_pm_level *
267 nouveau_pm_static_select(struct nouveau_pm_profile *profile)
268 {
269         return container_of(profile, struct nouveau_pm_level, profile);
270 }
271
272 const struct nouveau_pm_profile_func nouveau_pm_static_profile_func = {
273         .destroy = nouveau_pm_static_dummy,
274         .init = nouveau_pm_static_dummy,
275         .fini = nouveau_pm_static_dummy,
276         .select = nouveau_pm_static_select,
277 };
278
279 static int
280 nouveau_pm_perflvl_get(struct drm_device *dev, struct nouveau_pm_level *perflvl)
281 {
282         struct drm_nouveau_private *dev_priv = dev->dev_private;
283         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
284         int ret;
285
286         memset(perflvl, 0, sizeof(*perflvl));
287
288         if (pm->clocks_get) {
289                 ret = pm->clocks_get(dev, perflvl);
290                 if (ret)
291                         return ret;
292         }
293
294         if (pm->voltage.supported && pm->voltage_get) {
295                 ret = pm->voltage_get(dev);
296                 if (ret > 0) {
297                         perflvl->volt_min = ret;
298                         perflvl->volt_max = ret;
299                 }
300         }
301
302         ret = nouveau_pwmfan_get(dev);
303         if (ret > 0)
304                 perflvl->fanspeed = ret;
305
306         nouveau_mem_timing_read(dev, &perflvl->timing);
307         return 0;
308 }
309
310 static void
311 nouveau_pm_perflvl_info(struct nouveau_pm_level *perflvl, char *ptr, int len)
312 {
313         char c[16], s[16], v[32], f[16], m[16];
314
315         c[0] = '\0';
316         if (perflvl->core)
317                 snprintf(c, sizeof(c), " core %dMHz", perflvl->core / 1000);
318
319         s[0] = '\0';
320         if (perflvl->shader)
321                 snprintf(s, sizeof(s), " shader %dMHz", perflvl->shader / 1000);
322
323         m[0] = '\0';
324         if (perflvl->memory)
325                 snprintf(m, sizeof(m), " memory %dMHz", perflvl->memory / 1000);
326
327         v[0] = '\0';
328         if (perflvl->volt_min && perflvl->volt_min != perflvl->volt_max) {
329                 snprintf(v, sizeof(v), " voltage %dmV-%dmV",
330                          perflvl->volt_min / 1000, perflvl->volt_max / 1000);
331         } else
332         if (perflvl->volt_min) {
333                 snprintf(v, sizeof(v), " voltage %dmV",
334                          perflvl->volt_min / 1000);
335         }
336
337         f[0] = '\0';
338         if (perflvl->fanspeed)
339                 snprintf(f, sizeof(f), " fanspeed %d%%", perflvl->fanspeed);
340
341         snprintf(ptr, len, "%s%s%s%s%s\n", c, s, m, v, f);
342 }
343
344 static ssize_t
345 nouveau_pm_get_perflvl_info(struct device *d,
346                             struct device_attribute *a, char *buf)
347 {
348         struct nouveau_pm_level *perflvl =
349                 container_of(a, struct nouveau_pm_level, dev_attr);
350         char *ptr = buf;
351         int len = PAGE_SIZE;
352
353         snprintf(ptr, len, "%d:", perflvl->id);
354         ptr += strlen(buf);
355         len -= strlen(buf);
356
357         nouveau_pm_perflvl_info(perflvl, ptr, len);
358         return strlen(buf);
359 }
360
361 static ssize_t
362 nouveau_pm_get_perflvl(struct device *d, struct device_attribute *a, char *buf)
363 {
364         struct drm_device *dev = pci_get_drvdata(to_pci_dev(d));
365         struct drm_nouveau_private *dev_priv = dev->dev_private;
366         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
367         struct nouveau_pm_level cur;
368         int len = PAGE_SIZE, ret;
369         char *ptr = buf;
370
371         snprintf(ptr, len, "profile: %s, %s\nc:",
372                  pm->profile_ac->name, pm->profile_dc->name);
373         ptr += strlen(buf);
374         len -= strlen(buf);
375
376         ret = nouveau_pm_perflvl_get(dev, &cur);
377         if (ret == 0)
378                 nouveau_pm_perflvl_info(&cur, ptr, len);
379         return strlen(buf);
380 }
381
382 static ssize_t
383 nouveau_pm_set_perflvl(struct device *d, struct device_attribute *a,
384                        const char *buf, size_t count)
385 {
386         struct drm_device *dev = pci_get_drvdata(to_pci_dev(d));
387         int ret;
388
389         ret = nouveau_pm_profile_set(dev, buf);
390         if (ret)
391                 return ret;
392         return strlen(buf);
393 }
394
395 static DEVICE_ATTR(performance_level, S_IRUGO | S_IWUSR,
396                    nouveau_pm_get_perflvl, nouveau_pm_set_perflvl);
397
398 static int
399 nouveau_sysfs_init(struct drm_device *dev)
400 {
401         struct drm_nouveau_private *dev_priv = dev->dev_private;
402         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
403         struct device *d = &dev->pdev->dev;
404         int ret, i;
405
406         ret = device_create_file(d, &dev_attr_performance_level);
407         if (ret)
408                 return ret;
409
410         for (i = 0; i < pm->nr_perflvl; i++) {
411                 struct nouveau_pm_level *perflvl = &pm->perflvl[i];
412
413                 perflvl->dev_attr.attr.name = perflvl->name;
414                 perflvl->dev_attr.attr.mode = S_IRUGO;
415                 perflvl->dev_attr.show = nouveau_pm_get_perflvl_info;
416                 perflvl->dev_attr.store = NULL;
417                 sysfs_attr_init(&perflvl->dev_attr.attr);
418
419                 ret = device_create_file(d, &perflvl->dev_attr);
420                 if (ret) {
421                         NV_ERROR(dev, "failed pervlvl %d sysfs: %d\n",
422                                  perflvl->id, i);
423                         perflvl->dev_attr.attr.name = NULL;
424                         nouveau_pm_fini(dev);
425                         return ret;
426                 }
427         }
428
429         return 0;
430 }
431
432 static void
433 nouveau_sysfs_fini(struct drm_device *dev)
434 {
435         struct drm_nouveau_private *dev_priv = dev->dev_private;
436         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
437         struct device *d = &dev->pdev->dev;
438         int i;
439
440         device_remove_file(d, &dev_attr_performance_level);
441         for (i = 0; i < pm->nr_perflvl; i++) {
442                 struct nouveau_pm_level *pl = &pm->perflvl[i];
443
444                 if (!pl->dev_attr.attr.name)
445                         break;
446
447                 device_remove_file(d, &pl->dev_attr);
448         }
449 }
450
451 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
452 static ssize_t
453 nouveau_hwmon_show_temp(struct device *d, struct device_attribute *a, char *buf)
454 {
455         struct drm_device *dev = dev_get_drvdata(d);
456         struct drm_nouveau_private *dev_priv = dev->dev_private;
457         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
458
459         return snprintf(buf, PAGE_SIZE, "%d\n", pm->temp_get(dev)*1000);
460 }
461 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, nouveau_hwmon_show_temp,
462                                                   NULL, 0);
463
464 static ssize_t
465 nouveau_hwmon_max_temp(struct device *d, struct device_attribute *a, char *buf)
466 {
467         struct drm_device *dev = dev_get_drvdata(d);
468         struct drm_nouveau_private *dev_priv = dev->dev_private;
469         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
470         struct nouveau_pm_threshold_temp *temp = &pm->threshold_temp;
471
472         return snprintf(buf, PAGE_SIZE, "%d\n", temp->down_clock*1000);
473 }
474 static ssize_t
475 nouveau_hwmon_set_max_temp(struct device *d, struct device_attribute *a,
476                                                 const char *buf, size_t count)
477 {
478         struct drm_device *dev = dev_get_drvdata(d);
479         struct drm_nouveau_private *dev_priv = dev->dev_private;
480         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
481         struct nouveau_pm_threshold_temp *temp = &pm->threshold_temp;
482         long value;
483
484         if (kstrtol(buf, 10, &value) == -EINVAL)
485                 return count;
486
487         temp->down_clock = value/1000;
488
489         nouveau_temp_safety_checks(dev);
490
491         return count;
492 }
493 static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR, nouveau_hwmon_max_temp,
494                                                   nouveau_hwmon_set_max_temp,
495                                                   0);
496
497 static ssize_t
498 nouveau_hwmon_critical_temp(struct device *d, struct device_attribute *a,
499                                                         char *buf)
500 {
501         struct drm_device *dev = dev_get_drvdata(d);
502         struct drm_nouveau_private *dev_priv = dev->dev_private;
503         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
504         struct nouveau_pm_threshold_temp *temp = &pm->threshold_temp;
505
506         return snprintf(buf, PAGE_SIZE, "%d\n", temp->critical*1000);
507 }
508 static ssize_t
509 nouveau_hwmon_set_critical_temp(struct device *d, struct device_attribute *a,
510                                                             const char *buf,
511                                                                 size_t count)
512 {
513         struct drm_device *dev = dev_get_drvdata(d);
514         struct drm_nouveau_private *dev_priv = dev->dev_private;
515         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
516         struct nouveau_pm_threshold_temp *temp = &pm->threshold_temp;
517         long value;
518
519         if (kstrtol(buf, 10, &value) == -EINVAL)
520                 return count;
521
522         temp->critical = value/1000;
523
524         nouveau_temp_safety_checks(dev);
525
526         return count;
527 }
528 static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO | S_IWUSR,
529                                                 nouveau_hwmon_critical_temp,
530                                                 nouveau_hwmon_set_critical_temp,
531                                                 0);
532
533 static ssize_t nouveau_hwmon_show_name(struct device *dev,
534                                       struct device_attribute *attr,
535                                       char *buf)
536 {
537         return sprintf(buf, "nouveau\n");
538 }
539 static SENSOR_DEVICE_ATTR(name, S_IRUGO, nouveau_hwmon_show_name, NULL, 0);
540
541 static ssize_t nouveau_hwmon_show_update_rate(struct device *dev,
542                                       struct device_attribute *attr,
543                                       char *buf)
544 {
545         return sprintf(buf, "1000\n");
546 }
547 static SENSOR_DEVICE_ATTR(update_rate, S_IRUGO,
548                                                 nouveau_hwmon_show_update_rate,
549                                                 NULL, 0);
550
551 static ssize_t
552 nouveau_hwmon_show_fan0_input(struct device *d, struct device_attribute *attr,
553                               char *buf)
554 {
555         struct drm_device *dev = dev_get_drvdata(d);
556         struct drm_nouveau_private *dev_priv = dev->dev_private;
557         struct nouveau_timer_engine *ptimer = &dev_priv->engine.timer;
558         u32 cycles, cur, prev;
559         u64 start;
560
561         if (!nouveau_gpio_func_valid(dev, DCB_GPIO_FAN_SENSE))
562                 return -ENODEV;
563
564         /* Monitor the GPIO input 0x3b for 250ms.
565          * When the fan spins, it changes the value of GPIO FAN_SENSE.
566          * We get 4 changes (0 -> 1 -> 0 -> 1 -> [...]) per complete rotation.
567          */
568         start = ptimer->read(dev);
569         prev = nouveau_gpio_func_get(dev, DCB_GPIO_FAN_SENSE);
570         cycles = 0;
571         do {
572                 cur = nouveau_gpio_func_get(dev, DCB_GPIO_FAN_SENSE);
573                 if (prev != cur) {
574                         cycles++;
575                         prev = cur;
576                 }
577
578                 usleep_range(500, 1000); /* supports 0 < rpm < 7500 */
579         } while (ptimer->read(dev) - start < 250000000);
580
581         /* interpolate to get rpm */
582         return sprintf(buf, "%i\n", cycles / 4 * 4 * 60);
583 }
584 static SENSOR_DEVICE_ATTR(fan0_input, S_IRUGO, nouveau_hwmon_show_fan0_input,
585                           NULL, 0);
586
587 static ssize_t
588 nouveau_hwmon_get_pwm0(struct device *d, struct device_attribute *a, char *buf)
589 {
590         struct drm_device *dev = dev_get_drvdata(d);
591         int ret;
592
593         ret = nouveau_pwmfan_get(dev);
594         if (ret < 0)
595                 return ret;
596
597         return sprintf(buf, "%i\n", ret);
598 }
599
600 static ssize_t
601 nouveau_hwmon_set_pwm0(struct device *d, struct device_attribute *a,
602                        const char *buf, size_t count)
603 {
604         struct drm_device *dev = dev_get_drvdata(d);
605         struct drm_nouveau_private *dev_priv = dev->dev_private;
606         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
607         int ret = -ENODEV;
608         long value;
609
610         if (nouveau_perflvl_wr != 7777)
611                 return -EPERM;
612
613         if (kstrtol(buf, 10, &value) == -EINVAL)
614                 return -EINVAL;
615
616         if (value < pm->fan.min_duty)
617                 value = pm->fan.min_duty;
618         if (value > pm->fan.max_duty)
619                 value = pm->fan.max_duty;
620
621         ret = nouveau_pwmfan_set(dev, value);
622         if (ret)
623                 return ret;
624
625         return count;
626 }
627
628 static SENSOR_DEVICE_ATTR(pwm0, S_IRUGO | S_IWUSR,
629                           nouveau_hwmon_get_pwm0,
630                           nouveau_hwmon_set_pwm0, 0);
631
632 static ssize_t
633 nouveau_hwmon_get_pwm0_min(struct device *d,
634                            struct device_attribute *a, char *buf)
635 {
636         struct drm_device *dev = dev_get_drvdata(d);
637         struct drm_nouveau_private *dev_priv = dev->dev_private;
638         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
639
640         return sprintf(buf, "%i\n", pm->fan.min_duty);
641 }
642
643 static ssize_t
644 nouveau_hwmon_set_pwm0_min(struct device *d, struct device_attribute *a,
645                            const char *buf, size_t count)
646 {
647         struct drm_device *dev = dev_get_drvdata(d);
648         struct drm_nouveau_private *dev_priv = dev->dev_private;
649         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
650         long value;
651
652         if (kstrtol(buf, 10, &value) == -EINVAL)
653                 return -EINVAL;
654
655         if (value < 0)
656                 value = 0;
657
658         if (pm->fan.max_duty - value < 10)
659                 value = pm->fan.max_duty - 10;
660
661         if (value < 10)
662                 pm->fan.min_duty = 10;
663         else
664                 pm->fan.min_duty = value;
665
666         return count;
667 }
668
669 static SENSOR_DEVICE_ATTR(pwm0_min, S_IRUGO | S_IWUSR,
670                           nouveau_hwmon_get_pwm0_min,
671                           nouveau_hwmon_set_pwm0_min, 0);
672
673 static ssize_t
674 nouveau_hwmon_get_pwm0_max(struct device *d,
675                            struct device_attribute *a, char *buf)
676 {
677         struct drm_device *dev = dev_get_drvdata(d);
678         struct drm_nouveau_private *dev_priv = dev->dev_private;
679         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
680
681         return sprintf(buf, "%i\n", pm->fan.max_duty);
682 }
683
684 static ssize_t
685 nouveau_hwmon_set_pwm0_max(struct device *d, struct device_attribute *a,
686                            const char *buf, size_t count)
687 {
688         struct drm_device *dev = dev_get_drvdata(d);
689         struct drm_nouveau_private *dev_priv = dev->dev_private;
690         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
691         long value;
692
693         if (kstrtol(buf, 10, &value) == -EINVAL)
694                 return -EINVAL;
695
696         if (value < 0)
697                 value = 0;
698
699         if (value - pm->fan.min_duty < 10)
700                 value = pm->fan.min_duty + 10;
701
702         if (value > 100)
703                 pm->fan.max_duty = 100;
704         else
705                 pm->fan.max_duty = value;
706
707         return count;
708 }
709
710 static SENSOR_DEVICE_ATTR(pwm0_max, S_IRUGO | S_IWUSR,
711                           nouveau_hwmon_get_pwm0_max,
712                           nouveau_hwmon_set_pwm0_max, 0);
713
714 static struct attribute *hwmon_attributes[] = {
715         &sensor_dev_attr_temp1_input.dev_attr.attr,
716         &sensor_dev_attr_temp1_max.dev_attr.attr,
717         &sensor_dev_attr_temp1_crit.dev_attr.attr,
718         &sensor_dev_attr_name.dev_attr.attr,
719         &sensor_dev_attr_update_rate.dev_attr.attr,
720         NULL
721 };
722 static struct attribute *hwmon_fan_rpm_attributes[] = {
723         &sensor_dev_attr_fan0_input.dev_attr.attr,
724         NULL
725 };
726 static struct attribute *hwmon_pwm_fan_attributes[] = {
727         &sensor_dev_attr_pwm0.dev_attr.attr,
728         &sensor_dev_attr_pwm0_min.dev_attr.attr,
729         &sensor_dev_attr_pwm0_max.dev_attr.attr,
730         NULL
731 };
732
733 static const struct attribute_group hwmon_attrgroup = {
734         .attrs = hwmon_attributes,
735 };
736 static const struct attribute_group hwmon_fan_rpm_attrgroup = {
737         .attrs = hwmon_fan_rpm_attributes,
738 };
739 static const struct attribute_group hwmon_pwm_fan_attrgroup = {
740         .attrs = hwmon_pwm_fan_attributes,
741 };
742 #endif
743
744 static int
745 nouveau_hwmon_init(struct drm_device *dev)
746 {
747         struct drm_nouveau_private *dev_priv = dev->dev_private;
748         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
749 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
750         struct device *hwmon_dev;
751         int ret = 0;
752
753         if (!pm->temp_get)
754                 return -ENODEV;
755
756         hwmon_dev = hwmon_device_register(&dev->pdev->dev);
757         if (IS_ERR(hwmon_dev)) {
758                 ret = PTR_ERR(hwmon_dev);
759                 NV_ERROR(dev,
760                         "Unable to register hwmon device: %d\n", ret);
761                 return ret;
762         }
763         dev_set_drvdata(hwmon_dev, dev);
764
765         /* default sysfs entries */
766         ret = sysfs_create_group(&dev->pdev->dev.kobj, &hwmon_attrgroup);
767         if (ret) {
768                 if (ret)
769                         goto error;
770         }
771
772         /* if the card has a pwm fan */
773         /*XXX: incorrect, need better detection for this, some boards have
774          *     the gpio entries for pwm fan control even when there's no
775          *     actual fan connected to it... therm table? */
776         if (nouveau_pwmfan_get(dev) >= 0) {
777                 ret = sysfs_create_group(&dev->pdev->dev.kobj,
778                                          &hwmon_pwm_fan_attrgroup);
779                 if (ret)
780                         goto error;
781         }
782
783         /* if the card can read the fan rpm */
784         if (nouveau_gpio_func_valid(dev, DCB_GPIO_FAN_SENSE)) {
785                 ret = sysfs_create_group(&dev->pdev->dev.kobj,
786                                          &hwmon_fan_rpm_attrgroup);
787                 if (ret)
788                         goto error;
789         }
790
791         pm->hwmon = hwmon_dev;
792
793         return 0;
794
795 error:
796         NV_ERROR(dev, "Unable to create some hwmon sysfs files: %d\n", ret);
797         hwmon_device_unregister(hwmon_dev);
798         pm->hwmon = NULL;
799         return ret;
800 #else
801         pm->hwmon = NULL;
802         return 0;
803 #endif
804 }
805
806 static void
807 nouveau_hwmon_fini(struct drm_device *dev)
808 {
809 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
810         struct drm_nouveau_private *dev_priv = dev->dev_private;
811         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
812
813         if (pm->hwmon) {
814                 sysfs_remove_group(&dev->pdev->dev.kobj, &hwmon_attrgroup);
815                 sysfs_remove_group(&dev->pdev->dev.kobj,
816                                    &hwmon_pwm_fan_attrgroup);
817                 sysfs_remove_group(&dev->pdev->dev.kobj,
818                                    &hwmon_fan_rpm_attrgroup);
819
820                 hwmon_device_unregister(pm->hwmon);
821         }
822 #endif
823 }
824
825 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
826 static int
827 nouveau_pm_acpi_event(struct notifier_block *nb, unsigned long val, void *data)
828 {
829         struct drm_nouveau_private *dev_priv =
830                 container_of(nb, struct drm_nouveau_private, engine.pm.acpi_nb);
831         struct drm_device *dev = dev_priv->dev;
832         struct acpi_bus_event *entry = (struct acpi_bus_event *)data;
833
834         if (strcmp(entry->device_class, "ac_adapter") == 0) {
835                 bool ac = power_supply_is_system_supplied();
836
837                 NV_DEBUG(dev, "power supply changed: %s\n", ac ? "AC" : "DC");
838                 nouveau_pm_trigger(dev);
839         }
840
841         return NOTIFY_OK;
842 }
843 #endif
844
845 int
846 nouveau_pm_init(struct drm_device *dev)
847 {
848         struct drm_nouveau_private *dev_priv = dev->dev_private;
849         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
850         char info[256];
851         int ret, i;
852
853         /* parse aux tables from vbios */
854         nouveau_volt_init(dev);
855         nouveau_temp_init(dev);
856
857         /* determine current ("boot") performance level */
858         ret = nouveau_pm_perflvl_get(dev, &pm->boot);
859         if (ret) {
860                 NV_ERROR(dev, "failed to determine boot perflvl\n");
861                 return ret;
862         }
863
864         strncpy(pm->boot.name, "boot", 4);
865         strncpy(pm->boot.profile.name, "boot", 4);
866         pm->boot.profile.func = &nouveau_pm_static_profile_func;
867
868         INIT_LIST_HEAD(&pm->profiles);
869         list_add(&pm->boot.profile.head, &pm->profiles);
870
871         pm->profile_ac = &pm->boot.profile;
872         pm->profile_dc = &pm->boot.profile;
873         pm->profile = &pm->boot.profile;
874         pm->cur = &pm->boot;
875
876         /* add performance levels from vbios */
877         nouveau_perf_init(dev);
878
879         /* display available performance levels */
880         NV_INFO(dev, "%d available performance level(s)\n", pm->nr_perflvl);
881         for (i = 0; i < pm->nr_perflvl; i++) {
882                 nouveau_pm_perflvl_info(&pm->perflvl[i], info, sizeof(info));
883                 NV_INFO(dev, "%d:%s", pm->perflvl[i].id, info);
884         }
885
886         nouveau_pm_perflvl_info(&pm->boot, info, sizeof(info));
887         NV_INFO(dev, "c:%s", info);
888
889         /* switch performance levels now if requested */
890         if (nouveau_perflvl != NULL)
891                 nouveau_pm_profile_set(dev, nouveau_perflvl);
892
893         /* determine the current fan speed */
894         pm->fan.percent = nouveau_pwmfan_get(dev);
895
896         nouveau_sysfs_init(dev);
897         nouveau_hwmon_init(dev);
898 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
899         pm->acpi_nb.notifier_call = nouveau_pm_acpi_event;
900         register_acpi_notifier(&pm->acpi_nb);
901 #endif
902
903         return 0;
904 }
905
906 void
907 nouveau_pm_fini(struct drm_device *dev)
908 {
909         struct drm_nouveau_private *dev_priv = dev->dev_private;
910         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
911         struct nouveau_pm_profile *profile, *tmp;
912
913         list_for_each_entry_safe(profile, tmp, &pm->profiles, head) {
914                 list_del(&profile->head);
915                 profile->func->destroy(profile);
916         }
917
918         if (pm->cur != &pm->boot)
919                 nouveau_pm_perflvl_set(dev, &pm->boot);
920
921         nouveau_temp_fini(dev);
922         nouveau_perf_fini(dev);
923         nouveau_volt_fini(dev);
924
925 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
926         unregister_acpi_notifier(&pm->acpi_nb);
927 #endif
928         nouveau_hwmon_fini(dev);
929         nouveau_sysfs_fini(dev);
930 }
931
932 void
933 nouveau_pm_resume(struct drm_device *dev)
934 {
935         struct drm_nouveau_private *dev_priv = dev->dev_private;
936         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
937         struct nouveau_pm_level *perflvl;
938
939         if (!pm->cur || pm->cur == &pm->boot)
940                 return;
941
942         perflvl = pm->cur;
943         pm->cur = &pm->boot;
944         nouveau_pm_perflvl_set(dev, perflvl);
945         nouveau_pwmfan_set(dev, pm->fan.percent);
946 }