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