2 * Copyright 2010 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
27 #include "nouveau_drv.h"
28 #include "nouveau_pm.h"
31 #include <linux/acpi.h>
33 #include <linux/power_supply.h>
34 #include <linux/hwmon.h>
35 #include <linux/hwmon-sysfs.h>
38 nouveau_pm_clock_set(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
,
41 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
42 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
48 pre_state
= pm
->clock_pre(dev
, perflvl
, id
, khz
);
49 if (IS_ERR(pre_state
))
50 return PTR_ERR(pre_state
);
53 pm
->clock_set(dev
, pre_state
);
58 nouveau_pm_perflvl_set(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
)
60 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
61 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
64 if (perflvl
== pm
->cur
)
67 if (pm
->voltage
.supported
&& pm
->voltage_set
&& perflvl
->volt_min
) {
68 ret
= pm
->voltage_set(dev
, perflvl
->volt_min
);
70 NV_ERROR(dev
, "voltage_set %d failed: %d\n",
71 perflvl
->volt_min
, ret
);
76 void *state
= pm
->clocks_pre(dev
, perflvl
);
78 return PTR_ERR(state
);
79 pm
->clocks_set(dev
, state
);
82 nouveau_pm_clock_set(dev
, perflvl
, PLL_CORE
, perflvl
->core
);
83 nouveau_pm_clock_set(dev
, perflvl
, PLL_SHADER
, perflvl
->shader
);
84 nouveau_pm_clock_set(dev
, perflvl
, PLL_MEMORY
, perflvl
->memory
);
85 nouveau_pm_clock_set(dev
, perflvl
, PLL_UNK05
, perflvl
->unk05
);
93 nouveau_pm_profile_set(struct drm_device
*dev
, const char *profile
)
95 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
96 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
97 struct nouveau_pm_level
*perflvl
= NULL
;
99 /* safety precaution, for now */
100 if (nouveau_perflvl_wr
!= 7777)
103 if (!strncmp(profile
, "boot", 4))
106 int pl
= simple_strtol(profile
, NULL
, 10);
109 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
110 if (pm
->perflvl
[i
].id
== pl
) {
111 perflvl
= &pm
->perflvl
[i
];
120 NV_INFO(dev
, "setting performance level: %s\n", profile
);
121 return nouveau_pm_perflvl_set(dev
, perflvl
);
125 nouveau_pm_perflvl_get(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
)
127 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
128 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
131 memset(perflvl
, 0, sizeof(*perflvl
));
133 if (pm
->clocks_get
) {
134 ret
= pm
->clocks_get(dev
, perflvl
);
139 ret
= pm
->clock_get(dev
, PLL_CORE
);
143 ret
= pm
->clock_get(dev
, PLL_MEMORY
);
145 perflvl
->memory
= ret
;
147 ret
= pm
->clock_get(dev
, PLL_SHADER
);
149 perflvl
->shader
= ret
;
151 ret
= pm
->clock_get(dev
, PLL_UNK05
);
153 perflvl
->unk05
= ret
;
156 if (pm
->voltage
.supported
&& pm
->voltage_get
) {
157 ret
= pm
->voltage_get(dev
);
159 perflvl
->volt_min
= ret
;
160 perflvl
->volt_max
= ret
;
168 nouveau_pm_perflvl_info(struct nouveau_pm_level
*perflvl
, char *ptr
, int len
)
170 char c
[16], s
[16], v
[32], f
[16], t
[16], m
[16];
174 snprintf(c
, sizeof(c
), " core %dMHz", perflvl
->core
/ 1000);
178 snprintf(s
, sizeof(s
), " shader %dMHz", perflvl
->shader
/ 1000);
182 snprintf(m
, sizeof(m
), " memory %dMHz", perflvl
->memory
/ 1000);
185 if (perflvl
->volt_min
&& perflvl
->volt_min
!= perflvl
->volt_max
) {
186 snprintf(v
, sizeof(v
), " voltage %dmV-%dmV",
187 perflvl
->volt_min
/ 1000, perflvl
->volt_max
/ 1000);
189 if (perflvl
->volt_min
) {
190 snprintf(v
, sizeof(v
), " voltage %dmV",
191 perflvl
->volt_min
/ 1000);
195 if (perflvl
->fanspeed
)
196 snprintf(f
, sizeof(f
), " fanspeed %d%%", perflvl
->fanspeed
);
200 snprintf(t
, sizeof(t
), " timing %d", perflvl
->timing
->id
);
202 snprintf(ptr
, len
, "%s%s%s%s%s%s\n", c
, s
, m
, t
, v
, f
);
206 nouveau_pm_get_perflvl_info(struct device
*d
,
207 struct device_attribute
*a
, char *buf
)
209 struct nouveau_pm_level
*perflvl
= (struct nouveau_pm_level
*)a
;
213 snprintf(ptr
, len
, "%d:", perflvl
->id
);
217 nouveau_pm_perflvl_info(perflvl
, ptr
, len
);
222 nouveau_pm_get_perflvl(struct device
*d
, struct device_attribute
*a
, char *buf
)
224 struct drm_device
*dev
= pci_get_drvdata(to_pci_dev(d
));
225 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
226 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
227 struct nouveau_pm_level cur
;
228 int len
= PAGE_SIZE
, ret
;
232 snprintf(ptr
, len
, "setting: boot\n");
233 else if (pm
->cur
== &pm
->boot
)
234 snprintf(ptr
, len
, "setting: boot\nc:");
236 snprintf(ptr
, len
, "setting: static %d\nc:", pm
->cur
->id
);
240 ret
= nouveau_pm_perflvl_get(dev
, &cur
);
242 nouveau_pm_perflvl_info(&cur
, ptr
, len
);
247 nouveau_pm_set_perflvl(struct device
*d
, struct device_attribute
*a
,
248 const char *buf
, size_t count
)
250 struct drm_device
*dev
= pci_get_drvdata(to_pci_dev(d
));
253 ret
= nouveau_pm_profile_set(dev
, buf
);
259 static DEVICE_ATTR(performance_level
, S_IRUGO
| S_IWUSR
,
260 nouveau_pm_get_perflvl
, nouveau_pm_set_perflvl
);
263 nouveau_sysfs_init(struct drm_device
*dev
)
265 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
266 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
267 struct device
*d
= &dev
->pdev
->dev
;
270 ret
= device_create_file(d
, &dev_attr_performance_level
);
274 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
275 struct nouveau_pm_level
*perflvl
= &pm
->perflvl
[i
];
277 perflvl
->dev_attr
.attr
.name
= perflvl
->name
;
278 perflvl
->dev_attr
.attr
.mode
= S_IRUGO
;
279 perflvl
->dev_attr
.show
= nouveau_pm_get_perflvl_info
;
280 perflvl
->dev_attr
.store
= NULL
;
281 sysfs_attr_init(&perflvl
->dev_attr
.attr
);
283 ret
= device_create_file(d
, &perflvl
->dev_attr
);
285 NV_ERROR(dev
, "failed pervlvl %d sysfs: %d\n",
287 perflvl
->dev_attr
.attr
.name
= NULL
;
288 nouveau_pm_fini(dev
);
297 nouveau_sysfs_fini(struct drm_device
*dev
)
299 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
300 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
301 struct device
*d
= &dev
->pdev
->dev
;
304 device_remove_file(d
, &dev_attr_performance_level
);
305 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
306 struct nouveau_pm_level
*pl
= &pm
->perflvl
[i
];
308 if (!pl
->dev_attr
.attr
.name
)
311 device_remove_file(d
, &pl
->dev_attr
);
315 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
317 nouveau_hwmon_show_temp(struct device
*d
, struct device_attribute
*a
, char *buf
)
319 struct drm_device
*dev
= dev_get_drvdata(d
);
320 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
321 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
323 return snprintf(buf
, PAGE_SIZE
, "%d\n", pm
->temp_get(dev
)*1000);
325 static SENSOR_DEVICE_ATTR(temp1_input
, S_IRUGO
, nouveau_hwmon_show_temp
,
329 nouveau_hwmon_max_temp(struct device
*d
, struct device_attribute
*a
, char *buf
)
331 struct drm_device
*dev
= dev_get_drvdata(d
);
332 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
333 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
334 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
336 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
->down_clock
*1000);
339 nouveau_hwmon_set_max_temp(struct device
*d
, struct device_attribute
*a
,
340 const char *buf
, size_t count
)
342 struct drm_device
*dev
= dev_get_drvdata(d
);
343 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
344 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
345 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
348 if (strict_strtol(buf
, 10, &value
) == -EINVAL
)
351 temp
->down_clock
= value
/1000;
353 nouveau_temp_safety_checks(dev
);
357 static SENSOR_DEVICE_ATTR(temp1_max
, S_IRUGO
| S_IWUSR
, nouveau_hwmon_max_temp
,
358 nouveau_hwmon_set_max_temp
,
362 nouveau_hwmon_critical_temp(struct device
*d
, struct device_attribute
*a
,
365 struct drm_device
*dev
= dev_get_drvdata(d
);
366 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
367 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
368 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
370 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
->critical
*1000);
373 nouveau_hwmon_set_critical_temp(struct device
*d
, struct device_attribute
*a
,
377 struct drm_device
*dev
= dev_get_drvdata(d
);
378 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
379 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
380 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
383 if (strict_strtol(buf
, 10, &value
) == -EINVAL
)
386 temp
->critical
= value
/1000;
388 nouveau_temp_safety_checks(dev
);
392 static SENSOR_DEVICE_ATTR(temp1_crit
, S_IRUGO
| S_IWUSR
,
393 nouveau_hwmon_critical_temp
,
394 nouveau_hwmon_set_critical_temp
,
397 static ssize_t
nouveau_hwmon_show_name(struct device
*dev
,
398 struct device_attribute
*attr
,
401 return sprintf(buf
, "nouveau\n");
403 static SENSOR_DEVICE_ATTR(name
, S_IRUGO
, nouveau_hwmon_show_name
, NULL
, 0);
405 static ssize_t
nouveau_hwmon_show_update_rate(struct device
*dev
,
406 struct device_attribute
*attr
,
409 return sprintf(buf
, "1000\n");
411 static SENSOR_DEVICE_ATTR(update_rate
, S_IRUGO
,
412 nouveau_hwmon_show_update_rate
,
415 static struct attribute
*hwmon_attributes
[] = {
416 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
417 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
418 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
419 &sensor_dev_attr_name
.dev_attr
.attr
,
420 &sensor_dev_attr_update_rate
.dev_attr
.attr
,
424 static const struct attribute_group hwmon_attrgroup
= {
425 .attrs
= hwmon_attributes
,
430 nouveau_hwmon_init(struct drm_device
*dev
)
432 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
433 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
434 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
435 struct device
*hwmon_dev
;
441 hwmon_dev
= hwmon_device_register(&dev
->pdev
->dev
);
442 if (IS_ERR(hwmon_dev
)) {
443 ret
= PTR_ERR(hwmon_dev
);
445 "Unable to register hwmon device: %d\n", ret
);
448 dev_set_drvdata(hwmon_dev
, dev
);
449 ret
= sysfs_create_group(&dev
->pdev
->dev
.kobj
, &hwmon_attrgroup
);
452 "Unable to create hwmon sysfs file: %d\n", ret
);
453 hwmon_device_unregister(hwmon_dev
);
457 pm
->hwmon
= hwmon_dev
;
463 nouveau_hwmon_fini(struct drm_device
*dev
)
465 #if defined(CONFIG_HWMON) || (defined(MODULE) && defined(CONFIG_HWMON_MODULE))
466 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
467 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
470 sysfs_remove_group(&dev
->pdev
->dev
.kobj
, &hwmon_attrgroup
);
471 hwmon_device_unregister(pm
->hwmon
);
476 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
478 nouveau_pm_acpi_event(struct notifier_block
*nb
, unsigned long val
, void *data
)
480 struct drm_nouveau_private
*dev_priv
=
481 container_of(nb
, struct drm_nouveau_private
, engine
.pm
.acpi_nb
);
482 struct drm_device
*dev
= dev_priv
->dev
;
483 struct acpi_bus_event
*entry
= (struct acpi_bus_event
*)data
;
485 if (strcmp(entry
->device_class
, "ac_adapter") == 0) {
486 bool ac
= power_supply_is_system_supplied();
488 NV_DEBUG(dev
, "power supply changed: %s\n", ac
? "AC" : "DC");
496 nouveau_pm_init(struct drm_device
*dev
)
498 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
499 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
503 nouveau_mem_timing_init(dev
);
504 nouveau_volt_init(dev
);
505 nouveau_perf_init(dev
);
506 nouveau_temp_init(dev
);
508 NV_INFO(dev
, "%d available performance level(s)\n", pm
->nr_perflvl
);
509 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
510 nouveau_pm_perflvl_info(&pm
->perflvl
[i
], info
, sizeof(info
));
511 NV_INFO(dev
, "%d:%s", pm
->perflvl
[i
].id
, info
);
514 /* determine current ("boot") performance level */
515 ret
= nouveau_pm_perflvl_get(dev
, &pm
->boot
);
517 strncpy(pm
->boot
.name
, "boot", 4);
520 nouveau_pm_perflvl_info(&pm
->boot
, info
, sizeof(info
));
521 NV_INFO(dev
, "c:%s", info
);
524 /* switch performance levels now if requested */
525 if (nouveau_perflvl
!= NULL
) {
526 ret
= nouveau_pm_profile_set(dev
, nouveau_perflvl
);
528 NV_ERROR(dev
, "error setting perflvl \"%s\": %d\n",
529 nouveau_perflvl
, ret
);
533 nouveau_sysfs_init(dev
);
534 nouveau_hwmon_init(dev
);
535 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
536 pm
->acpi_nb
.notifier_call
= nouveau_pm_acpi_event
;
537 register_acpi_notifier(&pm
->acpi_nb
);
544 nouveau_pm_fini(struct drm_device
*dev
)
546 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
547 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
549 if (pm
->cur
!= &pm
->boot
)
550 nouveau_pm_perflvl_set(dev
, &pm
->boot
);
552 nouveau_temp_fini(dev
);
553 nouveau_perf_fini(dev
);
554 nouveau_volt_fini(dev
);
555 nouveau_mem_timing_fini(dev
);
557 #if defined(CONFIG_ACPI) && defined(CONFIG_POWER_SUPPLY)
558 unregister_acpi_notifier(&pm
->acpi_nb
);
560 nouveau_hwmon_fini(dev
);
561 nouveau_sysfs_fini(dev
);
565 nouveau_pm_resume(struct drm_device
*dev
)
567 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
568 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
569 struct nouveau_pm_level
*perflvl
;
571 if (!pm
->cur
|| pm
->cur
== &pm
->boot
)
576 nouveau_pm_perflvl_set(dev
, perflvl
);