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
->voltage
) {
68 ret
= pm
->voltage_set(dev
, perflvl
->voltage
);
70 NV_ERROR(dev
, "voltage_set %d failed: %d\n",
71 perflvl
->voltage
, ret
);
75 nouveau_pm_clock_set(dev
, perflvl
, PLL_CORE
, perflvl
->core
);
76 nouveau_pm_clock_set(dev
, perflvl
, PLL_SHADER
, perflvl
->shader
);
77 nouveau_pm_clock_set(dev
, perflvl
, PLL_MEMORY
, perflvl
->memory
);
78 nouveau_pm_clock_set(dev
, perflvl
, PLL_UNK05
, perflvl
->unk05
);
85 nouveau_pm_profile_set(struct drm_device
*dev
, const char *profile
)
87 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
88 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
89 struct nouveau_pm_level
*perflvl
= NULL
;
91 /* safety precaution, for now */
92 if (nouveau_perflvl_wr
!= 7777)
98 if (!strncmp(profile
, "boot", 4))
101 int pl
= simple_strtol(profile
, NULL
, 10);
104 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
105 if (pm
->perflvl
[i
].id
== pl
) {
106 perflvl
= &pm
->perflvl
[i
];
115 NV_INFO(dev
, "setting performance level: %s\n", profile
);
116 return nouveau_pm_perflvl_set(dev
, perflvl
);
120 nouveau_pm_perflvl_get(struct drm_device
*dev
, struct nouveau_pm_level
*perflvl
)
122 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
123 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
129 memset(perflvl
, 0, sizeof(*perflvl
));
131 ret
= pm
->clock_get(dev
, PLL_CORE
);
135 ret
= pm
->clock_get(dev
, PLL_MEMORY
);
137 perflvl
->memory
= ret
;
139 ret
= pm
->clock_get(dev
, PLL_SHADER
);
141 perflvl
->shader
= ret
;
143 ret
= pm
->clock_get(dev
, PLL_UNK05
);
145 perflvl
->unk05
= ret
;
147 if (pm
->voltage
.supported
&& pm
->voltage_get
) {
148 ret
= pm
->voltage_get(dev
);
150 perflvl
->voltage
= ret
;
157 nouveau_pm_perflvl_info(struct nouveau_pm_level
*perflvl
, char *ptr
, int len
)
159 char c
[16], s
[16], v
[16], f
[16];
163 snprintf(c
, sizeof(c
), " core %dMHz", perflvl
->core
/ 1000);
167 snprintf(s
, sizeof(s
), " shader %dMHz", perflvl
->shader
/ 1000);
170 if (perflvl
->voltage
)
171 snprintf(v
, sizeof(v
), " voltage %dmV", perflvl
->voltage
* 10);
174 if (perflvl
->fanspeed
)
175 snprintf(f
, sizeof(f
), " fanspeed %d%%", perflvl
->fanspeed
);
177 snprintf(ptr
, len
, "memory %dMHz%s%s%s%s\n", perflvl
->memory
/ 1000,
182 nouveau_pm_get_perflvl_info(struct device
*d
,
183 struct device_attribute
*a
, char *buf
)
185 struct nouveau_pm_level
*perflvl
= (struct nouveau_pm_level
*)a
;
189 snprintf(ptr
, len
, "%d: ", perflvl
->id
);
193 nouveau_pm_perflvl_info(perflvl
, ptr
, len
);
198 nouveau_pm_get_perflvl(struct device
*d
, struct device_attribute
*a
, char *buf
)
200 struct drm_device
*dev
= pci_get_drvdata(to_pci_dev(d
));
201 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
202 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
203 struct nouveau_pm_level cur
;
204 int len
= PAGE_SIZE
, ret
;
208 snprintf(ptr
, len
, "setting: boot\n");
209 else if (pm
->cur
== &pm
->boot
)
210 snprintf(ptr
, len
, "setting: boot\nc: ");
212 snprintf(ptr
, len
, "setting: static %d\nc: ", pm
->cur
->id
);
216 ret
= nouveau_pm_perflvl_get(dev
, &cur
);
218 nouveau_pm_perflvl_info(&cur
, ptr
, len
);
223 nouveau_pm_set_perflvl(struct device
*d
, struct device_attribute
*a
,
224 const char *buf
, size_t count
)
226 struct drm_device
*dev
= pci_get_drvdata(to_pci_dev(d
));
229 ret
= nouveau_pm_profile_set(dev
, buf
);
235 static DEVICE_ATTR(performance_level
, S_IRUGO
| S_IWUSR
,
236 nouveau_pm_get_perflvl
, nouveau_pm_set_perflvl
);
239 nouveau_sysfs_init(struct drm_device
*dev
)
241 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
242 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
243 struct device
*d
= &dev
->pdev
->dev
;
246 ret
= device_create_file(d
, &dev_attr_performance_level
);
250 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
251 struct nouveau_pm_level
*perflvl
= &pm
->perflvl
[i
];
253 perflvl
->dev_attr
.attr
.name
= perflvl
->name
;
254 perflvl
->dev_attr
.attr
.mode
= S_IRUGO
;
255 perflvl
->dev_attr
.show
= nouveau_pm_get_perflvl_info
;
256 perflvl
->dev_attr
.store
= NULL
;
257 sysfs_attr_init(&perflvl
->dev_attr
.attr
);
259 ret
= device_create_file(d
, &perflvl
->dev_attr
);
261 NV_ERROR(dev
, "failed pervlvl %d sysfs: %d\n",
263 perflvl
->dev_attr
.attr
.name
= NULL
;
264 nouveau_pm_fini(dev
);
273 nouveau_sysfs_fini(struct drm_device
*dev
)
275 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
276 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
277 struct device
*d
= &dev
->pdev
->dev
;
280 device_remove_file(d
, &dev_attr_performance_level
);
281 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
282 struct nouveau_pm_level
*pl
= &pm
->perflvl
[i
];
284 if (!pl
->dev_attr
.attr
.name
)
287 device_remove_file(d
, &pl
->dev_attr
);
293 nouveau_hwmon_show_temp(struct device
*d
, struct device_attribute
*a
, char *buf
)
295 struct drm_device
*dev
= dev_get_drvdata(d
);
296 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
297 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
299 return snprintf(buf
, PAGE_SIZE
, "%d\n", pm
->temp_get(dev
)*1000);
301 static SENSOR_DEVICE_ATTR(temp1_input
, S_IRUGO
, nouveau_hwmon_show_temp
,
305 nouveau_hwmon_max_temp(struct device
*d
, struct device_attribute
*a
, char *buf
)
307 struct drm_device
*dev
= dev_get_drvdata(d
);
308 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
309 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
310 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
312 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
->down_clock
*1000);
315 nouveau_hwmon_set_max_temp(struct device
*d
, struct device_attribute
*a
,
316 const char *buf
, size_t count
)
318 struct drm_device
*dev
= dev_get_drvdata(d
);
319 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
320 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
321 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
324 if (strict_strtol(buf
, 10, &value
) == -EINVAL
)
327 temp
->down_clock
= value
/1000;
329 nouveau_temp_safety_checks(dev
);
333 static SENSOR_DEVICE_ATTR(temp1_max
, S_IRUGO
| S_IWUSR
, nouveau_hwmon_max_temp
,
334 nouveau_hwmon_set_max_temp
,
338 nouveau_hwmon_critical_temp(struct device
*d
, struct device_attribute
*a
,
341 struct drm_device
*dev
= dev_get_drvdata(d
);
342 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
343 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
344 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
346 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
->critical
*1000);
349 nouveau_hwmon_set_critical_temp(struct device
*d
, struct device_attribute
*a
,
353 struct drm_device
*dev
= dev_get_drvdata(d
);
354 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
355 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
356 struct nouveau_pm_threshold_temp
*temp
= &pm
->threshold_temp
;
359 if (strict_strtol(buf
, 10, &value
) == -EINVAL
)
362 temp
->critical
= value
/1000;
364 nouveau_temp_safety_checks(dev
);
368 static SENSOR_DEVICE_ATTR(temp1_crit
, S_IRUGO
| S_IWUSR
,
369 nouveau_hwmon_critical_temp
,
370 nouveau_hwmon_set_critical_temp
,
373 static ssize_t
nouveau_hwmon_show_name(struct device
*dev
,
374 struct device_attribute
*attr
,
377 return sprintf(buf
, "nouveau\n");
379 static SENSOR_DEVICE_ATTR(name
, S_IRUGO
, nouveau_hwmon_show_name
, NULL
, 0);
381 static ssize_t
nouveau_hwmon_show_update_rate(struct device
*dev
,
382 struct device_attribute
*attr
,
385 return sprintf(buf
, "1000\n");
387 static SENSOR_DEVICE_ATTR(update_rate
, S_IRUGO
,
388 nouveau_hwmon_show_update_rate
,
391 static struct attribute
*hwmon_attributes
[] = {
392 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
393 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
394 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
395 &sensor_dev_attr_name
.dev_attr
.attr
,
396 &sensor_dev_attr_update_rate
.dev_attr
.attr
,
400 static const struct attribute_group hwmon_attrgroup
= {
401 .attrs
= hwmon_attributes
,
406 nouveau_hwmon_init(struct drm_device
*dev
)
409 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
410 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
411 struct device
*hwmon_dev
;
417 hwmon_dev
= hwmon_device_register(&dev
->pdev
->dev
);
418 if (IS_ERR(hwmon_dev
)) {
419 ret
= PTR_ERR(hwmon_dev
);
421 "Unable to register hwmon device: %d\n", ret
);
424 dev_set_drvdata(hwmon_dev
, dev
);
425 ret
= sysfs_create_group(&dev
->pdev
->dev
.kobj
, &hwmon_attrgroup
);
428 "Unable to create hwmon sysfs file: %d\n", ret
);
429 hwmon_device_unregister(hwmon_dev
);
433 pm
->hwmon
= hwmon_dev
;
439 nouveau_hwmon_fini(struct drm_device
*dev
)
442 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
443 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
446 sysfs_remove_group(&dev
->pdev
->dev
.kobj
, &hwmon_attrgroup
);
447 hwmon_device_unregister(pm
->hwmon
);
454 nouveau_pm_acpi_event(struct notifier_block
*nb
, unsigned long val
, void *data
)
456 struct drm_nouveau_private
*dev_priv
=
457 container_of(nb
, struct drm_nouveau_private
, engine
.pm
.acpi_nb
);
458 struct drm_device
*dev
= dev_priv
->dev
;
459 struct acpi_bus_event
*entry
= (struct acpi_bus_event
*)data
;
461 if (strcmp(entry
->device_class
, "ac_adapter") == 0) {
462 bool ac
= power_supply_is_system_supplied();
464 NV_DEBUG(dev
, "power supply changed: %s\n", ac
? "AC" : "DC");
472 nouveau_pm_init(struct drm_device
*dev
)
474 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
475 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
479 nouveau_volt_init(dev
);
480 nouveau_perf_init(dev
);
481 nouveau_temp_init(dev
);
482 nouveau_mem_timing_init(dev
);
484 NV_INFO(dev
, "%d available performance level(s)\n", pm
->nr_perflvl
);
485 for (i
= 0; i
< pm
->nr_perflvl
; i
++) {
486 nouveau_pm_perflvl_info(&pm
->perflvl
[i
], info
, sizeof(info
));
487 NV_INFO(dev
, "%d: %s", pm
->perflvl
[i
].id
, info
);
490 /* determine current ("boot") performance level */
491 ret
= nouveau_pm_perflvl_get(dev
, &pm
->boot
);
493 strncpy(pm
->boot
.name
, "boot", 4);
496 nouveau_pm_perflvl_info(&pm
->boot
, info
, sizeof(info
));
497 NV_INFO(dev
, "c: %s", info
);
500 /* switch performance levels now if requested */
501 if (nouveau_perflvl
!= NULL
) {
502 ret
= nouveau_pm_profile_set(dev
, nouveau_perflvl
);
504 NV_ERROR(dev
, "error setting perflvl \"%s\": %d\n",
505 nouveau_perflvl
, ret
);
509 nouveau_sysfs_init(dev
);
510 nouveau_hwmon_init(dev
);
512 pm
->acpi_nb
.notifier_call
= nouveau_pm_acpi_event
;
513 register_acpi_notifier(&pm
->acpi_nb
);
520 nouveau_pm_fini(struct drm_device
*dev
)
522 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
523 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
525 if (pm
->cur
!= &pm
->boot
)
526 nouveau_pm_perflvl_set(dev
, &pm
->boot
);
528 nouveau_mem_timing_fini(dev
);
529 nouveau_temp_fini(dev
);
530 nouveau_perf_fini(dev
);
531 nouveau_volt_fini(dev
);
534 unregister_acpi_notifier(&pm
->acpi_nb
);
536 nouveau_hwmon_fini(dev
);
537 nouveau_sysfs_fini(dev
);
541 nouveau_pm_resume(struct drm_device
*dev
)
543 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
544 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
545 struct nouveau_pm_level
*perflvl
;
547 if (!pm
->cur
|| pm
->cur
== &pm
->boot
)
552 nouveau_pm_perflvl_set(dev
, perflvl
);