drm/radeon: use system_wq instead of dev_priv->wq
[linux-2.6.git] / drivers / gpu / drm / radeon / radeon_pm.c
blob0afd26ccccfac14aa692c4f36ecf207a03f2f42d
1 /*
2 * Permission is hereby granted, free of charge, to any person obtaining a
3 * copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation
5 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
16 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
17 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
18 * OTHER DEALINGS IN THE SOFTWARE.
20 * Authors: Rafał Miłecki <zajec5@gmail.com>
21 * Alex Deucher <alexdeucher@gmail.com>
23 #include "drmP.h"
24 #include "radeon.h"
25 #include "avivod.h"
26 #ifdef CONFIG_ACPI
27 #include <linux/acpi.h>
28 #endif
29 #include <linux/power_supply.h>
30 #include <linux/hwmon.h>
31 #include <linux/hwmon-sysfs.h>
33 #define RADEON_IDLE_LOOP_MS 100
34 #define RADEON_RECLOCK_DELAY_MS 200
35 #define RADEON_WAIT_VBLANK_TIMEOUT 200
36 #define RADEON_WAIT_IDLE_TIMEOUT 200
38 static const char *radeon_pm_state_type_name[5] = {
39 "Default",
40 "Powersave",
41 "Battery",
42 "Balanced",
43 "Performance",
46 static void radeon_dynpm_idle_work_handler(struct work_struct *work);
47 static int radeon_debugfs_pm_init(struct radeon_device *rdev);
48 static bool radeon_pm_in_vbl(struct radeon_device *rdev);
49 static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish);
50 static void radeon_pm_update_profile(struct radeon_device *rdev);
51 static void radeon_pm_set_clocks(struct radeon_device *rdev);
53 #define ACPI_AC_CLASS "ac_adapter"
55 #ifdef CONFIG_ACPI
56 static int radeon_acpi_event(struct notifier_block *nb,
57 unsigned long val,
58 void *data)
60 struct radeon_device *rdev = container_of(nb, struct radeon_device, acpi_nb);
61 struct acpi_bus_event *entry = (struct acpi_bus_event *)data;
63 if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0) {
64 if (power_supply_is_system_supplied() > 0)
65 DRM_DEBUG_DRIVER("pm: AC\n");
66 else
67 DRM_DEBUG_DRIVER("pm: DC\n");
69 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
70 if (rdev->pm.profile == PM_PROFILE_AUTO) {
71 mutex_lock(&rdev->pm.mutex);
72 radeon_pm_update_profile(rdev);
73 radeon_pm_set_clocks(rdev);
74 mutex_unlock(&rdev->pm.mutex);
79 return NOTIFY_OK;
81 #endif
83 static void radeon_pm_update_profile(struct radeon_device *rdev)
85 switch (rdev->pm.profile) {
86 case PM_PROFILE_DEFAULT:
87 rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
88 break;
89 case PM_PROFILE_AUTO:
90 if (power_supply_is_system_supplied() > 0) {
91 if (rdev->pm.active_crtc_count > 1)
92 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
93 else
94 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
95 } else {
96 if (rdev->pm.active_crtc_count > 1)
97 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
98 else
99 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
101 break;
102 case PM_PROFILE_LOW:
103 if (rdev->pm.active_crtc_count > 1)
104 rdev->pm.profile_index = PM_PROFILE_LOW_MH_IDX;
105 else
106 rdev->pm.profile_index = PM_PROFILE_LOW_SH_IDX;
107 break;
108 case PM_PROFILE_MID:
109 if (rdev->pm.active_crtc_count > 1)
110 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
111 else
112 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
113 break;
114 case PM_PROFILE_HIGH:
115 if (rdev->pm.active_crtc_count > 1)
116 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
117 else
118 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
119 break;
122 if (rdev->pm.active_crtc_count == 0) {
123 rdev->pm.requested_power_state_index =
124 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_ps_idx;
125 rdev->pm.requested_clock_mode_index =
126 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_cm_idx;
127 } else {
128 rdev->pm.requested_power_state_index =
129 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_ps_idx;
130 rdev->pm.requested_clock_mode_index =
131 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_cm_idx;
135 static void radeon_unmap_vram_bos(struct radeon_device *rdev)
137 struct radeon_bo *bo, *n;
139 if (list_empty(&rdev->gem.objects))
140 return;
142 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
143 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
144 ttm_bo_unmap_virtual(&bo->tbo);
148 static void radeon_sync_with_vblank(struct radeon_device *rdev)
150 if (rdev->pm.active_crtcs) {
151 rdev->pm.vblank_sync = false;
152 wait_event_timeout(
153 rdev->irq.vblank_queue, rdev->pm.vblank_sync,
154 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
158 static void radeon_set_power_state(struct radeon_device *rdev)
160 u32 sclk, mclk;
161 bool misc_after = false;
163 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
164 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
165 return;
167 if (radeon_gui_idle(rdev)) {
168 sclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
169 clock_info[rdev->pm.requested_clock_mode_index].sclk;
170 if (sclk > rdev->clock.default_sclk)
171 sclk = rdev->clock.default_sclk;
173 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
174 clock_info[rdev->pm.requested_clock_mode_index].mclk;
175 if (mclk > rdev->clock.default_mclk)
176 mclk = rdev->clock.default_mclk;
178 /* upvolt before raising clocks, downvolt after lowering clocks */
179 if (sclk < rdev->pm.current_sclk)
180 misc_after = true;
182 radeon_sync_with_vblank(rdev);
184 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
185 if (!radeon_pm_in_vbl(rdev))
186 return;
189 radeon_pm_prepare(rdev);
191 if (!misc_after)
192 /* voltage, pcie lanes, etc.*/
193 radeon_pm_misc(rdev);
195 /* set engine clock */
196 if (sclk != rdev->pm.current_sclk) {
197 radeon_pm_debug_check_in_vbl(rdev, false);
198 radeon_set_engine_clock(rdev, sclk);
199 radeon_pm_debug_check_in_vbl(rdev, true);
200 rdev->pm.current_sclk = sclk;
201 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
204 /* set memory clock */
205 if (rdev->asic->set_memory_clock && (mclk != rdev->pm.current_mclk)) {
206 radeon_pm_debug_check_in_vbl(rdev, false);
207 radeon_set_memory_clock(rdev, mclk);
208 radeon_pm_debug_check_in_vbl(rdev, true);
209 rdev->pm.current_mclk = mclk;
210 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
213 if (misc_after)
214 /* voltage, pcie lanes, etc.*/
215 radeon_pm_misc(rdev);
217 radeon_pm_finish(rdev);
219 rdev->pm.current_power_state_index = rdev->pm.requested_power_state_index;
220 rdev->pm.current_clock_mode_index = rdev->pm.requested_clock_mode_index;
221 } else
222 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
225 static void radeon_pm_set_clocks(struct radeon_device *rdev)
227 int i;
229 /* no need to take locks, etc. if nothing's going to change */
230 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
231 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
232 return;
234 mutex_lock(&rdev->ddev->struct_mutex);
235 mutex_lock(&rdev->vram_mutex);
236 mutex_lock(&rdev->cp.mutex);
238 /* gui idle int has issues on older chips it seems */
239 if (rdev->family >= CHIP_R600) {
240 if (rdev->irq.installed) {
241 /* wait for GPU idle */
242 rdev->pm.gui_idle = false;
243 rdev->irq.gui_idle = true;
244 radeon_irq_set(rdev);
245 wait_event_interruptible_timeout(
246 rdev->irq.idle_queue, rdev->pm.gui_idle,
247 msecs_to_jiffies(RADEON_WAIT_IDLE_TIMEOUT));
248 rdev->irq.gui_idle = false;
249 radeon_irq_set(rdev);
251 } else {
252 if (rdev->cp.ready) {
253 struct radeon_fence *fence;
254 radeon_ring_alloc(rdev, 64);
255 radeon_fence_create(rdev, &fence);
256 radeon_fence_emit(rdev, fence);
257 radeon_ring_commit(rdev);
258 radeon_fence_wait(fence, false);
259 radeon_fence_unref(&fence);
262 radeon_unmap_vram_bos(rdev);
264 if (rdev->irq.installed) {
265 for (i = 0; i < rdev->num_crtc; i++) {
266 if (rdev->pm.active_crtcs & (1 << i)) {
267 rdev->pm.req_vblank |= (1 << i);
268 drm_vblank_get(rdev->ddev, i);
273 radeon_set_power_state(rdev);
275 if (rdev->irq.installed) {
276 for (i = 0; i < rdev->num_crtc; i++) {
277 if (rdev->pm.req_vblank & (1 << i)) {
278 rdev->pm.req_vblank &= ~(1 << i);
279 drm_vblank_put(rdev->ddev, i);
284 /* update display watermarks based on new power state */
285 radeon_update_bandwidth_info(rdev);
286 if (rdev->pm.active_crtc_count)
287 radeon_bandwidth_update(rdev);
289 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
291 mutex_unlock(&rdev->cp.mutex);
292 mutex_unlock(&rdev->vram_mutex);
293 mutex_unlock(&rdev->ddev->struct_mutex);
296 static void radeon_pm_print_states(struct radeon_device *rdev)
298 int i, j;
299 struct radeon_power_state *power_state;
300 struct radeon_pm_clock_info *clock_info;
302 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
303 for (i = 0; i < rdev->pm.num_power_states; i++) {
304 power_state = &rdev->pm.power_state[i];
305 DRM_DEBUG_DRIVER("State %d: %s\n", i,
306 radeon_pm_state_type_name[power_state->type]);
307 if (i == rdev->pm.default_power_state_index)
308 DRM_DEBUG_DRIVER("\tDefault");
309 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
310 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
311 if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
312 DRM_DEBUG_DRIVER("\tSingle display only\n");
313 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
314 for (j = 0; j < power_state->num_clock_modes; j++) {
315 clock_info = &(power_state->clock_info[j]);
316 if (rdev->flags & RADEON_IS_IGP)
317 DRM_DEBUG_DRIVER("\t\t%d e: %d%s\n",
319 clock_info->sclk * 10,
320 clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
321 else
322 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d%s\n",
324 clock_info->sclk * 10,
325 clock_info->mclk * 10,
326 clock_info->voltage.voltage,
327 clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
332 static ssize_t radeon_get_pm_profile(struct device *dev,
333 struct device_attribute *attr,
334 char *buf)
336 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
337 struct radeon_device *rdev = ddev->dev_private;
338 int cp = rdev->pm.profile;
340 return snprintf(buf, PAGE_SIZE, "%s\n",
341 (cp == PM_PROFILE_AUTO) ? "auto" :
342 (cp == PM_PROFILE_LOW) ? "low" :
343 (cp == PM_PROFILE_MID) ? "mid" :
344 (cp == PM_PROFILE_HIGH) ? "high" : "default");
347 static ssize_t radeon_set_pm_profile(struct device *dev,
348 struct device_attribute *attr,
349 const char *buf,
350 size_t count)
352 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
353 struct radeon_device *rdev = ddev->dev_private;
355 mutex_lock(&rdev->pm.mutex);
356 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
357 if (strncmp("default", buf, strlen("default")) == 0)
358 rdev->pm.profile = PM_PROFILE_DEFAULT;
359 else if (strncmp("auto", buf, strlen("auto")) == 0)
360 rdev->pm.profile = PM_PROFILE_AUTO;
361 else if (strncmp("low", buf, strlen("low")) == 0)
362 rdev->pm.profile = PM_PROFILE_LOW;
363 else if (strncmp("mid", buf, strlen("mid")) == 0)
364 rdev->pm.profile = PM_PROFILE_MID;
365 else if (strncmp("high", buf, strlen("high")) == 0)
366 rdev->pm.profile = PM_PROFILE_HIGH;
367 else {
368 DRM_ERROR("invalid power profile!\n");
369 goto fail;
371 radeon_pm_update_profile(rdev);
372 radeon_pm_set_clocks(rdev);
374 fail:
375 mutex_unlock(&rdev->pm.mutex);
377 return count;
380 static ssize_t radeon_get_pm_method(struct device *dev,
381 struct device_attribute *attr,
382 char *buf)
384 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
385 struct radeon_device *rdev = ddev->dev_private;
386 int pm = rdev->pm.pm_method;
388 return snprintf(buf, PAGE_SIZE, "%s\n",
389 (pm == PM_METHOD_DYNPM) ? "dynpm" : "profile");
392 static ssize_t radeon_set_pm_method(struct device *dev,
393 struct device_attribute *attr,
394 const char *buf,
395 size_t count)
397 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
398 struct radeon_device *rdev = ddev->dev_private;
401 if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
402 mutex_lock(&rdev->pm.mutex);
403 rdev->pm.pm_method = PM_METHOD_DYNPM;
404 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
405 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
406 mutex_unlock(&rdev->pm.mutex);
407 } else if (strncmp("profile", buf, strlen("profile")) == 0) {
408 mutex_lock(&rdev->pm.mutex);
409 /* disable dynpm */
410 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
411 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
412 rdev->pm.pm_method = PM_METHOD_PROFILE;
413 mutex_unlock(&rdev->pm.mutex);
414 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
415 } else {
416 DRM_ERROR("invalid power method!\n");
417 goto fail;
419 radeon_pm_compute_clocks(rdev);
420 fail:
421 return count;
424 static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
425 static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
427 static ssize_t radeon_hwmon_show_temp(struct device *dev,
428 struct device_attribute *attr,
429 char *buf)
431 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
432 struct radeon_device *rdev = ddev->dev_private;
433 u32 temp;
435 switch (rdev->pm.int_thermal_type) {
436 case THERMAL_TYPE_RV6XX:
437 temp = rv6xx_get_temp(rdev);
438 break;
439 case THERMAL_TYPE_RV770:
440 temp = rv770_get_temp(rdev);
441 break;
442 case THERMAL_TYPE_EVERGREEN:
443 temp = evergreen_get_temp(rdev);
444 break;
445 case THERMAL_TYPE_SUMO:
446 temp = sumo_get_temp(rdev);
447 break;
448 default:
449 temp = 0;
450 break;
453 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
456 static ssize_t radeon_hwmon_show_name(struct device *dev,
457 struct device_attribute *attr,
458 char *buf)
460 return sprintf(buf, "radeon\n");
463 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
464 static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);
466 static struct attribute *hwmon_attributes[] = {
467 &sensor_dev_attr_temp1_input.dev_attr.attr,
468 &sensor_dev_attr_name.dev_attr.attr,
469 NULL
472 static const struct attribute_group hwmon_attrgroup = {
473 .attrs = hwmon_attributes,
476 static int radeon_hwmon_init(struct radeon_device *rdev)
478 int err = 0;
480 rdev->pm.int_hwmon_dev = NULL;
482 switch (rdev->pm.int_thermal_type) {
483 case THERMAL_TYPE_RV6XX:
484 case THERMAL_TYPE_RV770:
485 case THERMAL_TYPE_EVERGREEN:
486 case THERMAL_TYPE_SUMO:
487 rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
488 if (IS_ERR(rdev->pm.int_hwmon_dev)) {
489 err = PTR_ERR(rdev->pm.int_hwmon_dev);
490 dev_err(rdev->dev,
491 "Unable to register hwmon device: %d\n", err);
492 break;
494 dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
495 err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
496 &hwmon_attrgroup);
497 if (err) {
498 dev_err(rdev->dev,
499 "Unable to create hwmon sysfs file: %d\n", err);
500 hwmon_device_unregister(rdev->dev);
502 break;
503 default:
504 break;
507 return err;
510 static void radeon_hwmon_fini(struct radeon_device *rdev)
512 if (rdev->pm.int_hwmon_dev) {
513 sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
514 hwmon_device_unregister(rdev->pm.int_hwmon_dev);
518 void radeon_pm_suspend(struct radeon_device *rdev)
520 mutex_lock(&rdev->pm.mutex);
521 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
522 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
523 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
525 mutex_unlock(&rdev->pm.mutex);
527 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
530 void radeon_pm_resume(struct radeon_device *rdev)
532 /* asic init will reset the default power state */
533 mutex_lock(&rdev->pm.mutex);
534 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
535 rdev->pm.current_clock_mode_index = 0;
536 rdev->pm.current_sclk = rdev->clock.default_sclk;
537 rdev->pm.current_mclk = rdev->clock.default_mclk;
538 rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage;
539 if (rdev->pm.pm_method == PM_METHOD_DYNPM
540 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
541 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
542 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
543 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
545 mutex_unlock(&rdev->pm.mutex);
546 radeon_pm_compute_clocks(rdev);
549 int radeon_pm_init(struct radeon_device *rdev)
551 int ret;
553 /* default to profile method */
554 rdev->pm.pm_method = PM_METHOD_PROFILE;
555 rdev->pm.profile = PM_PROFILE_DEFAULT;
556 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
557 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
558 rdev->pm.dynpm_can_upclock = true;
559 rdev->pm.dynpm_can_downclock = true;
560 rdev->pm.current_sclk = rdev->clock.default_sclk;
561 rdev->pm.current_mclk = rdev->clock.default_mclk;
562 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
564 if (rdev->bios) {
565 if (rdev->is_atom_bios)
566 radeon_atombios_get_power_modes(rdev);
567 else
568 radeon_combios_get_power_modes(rdev);
569 radeon_pm_print_states(rdev);
570 radeon_pm_init_profile(rdev);
573 /* set up the internal thermal sensor if applicable */
574 ret = radeon_hwmon_init(rdev);
575 if (ret)
576 return ret;
578 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
580 if (rdev->pm.num_power_states > 1) {
581 /* where's the best place to put these? */
582 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
583 if (ret)
584 DRM_ERROR("failed to create device file for power profile\n");
585 ret = device_create_file(rdev->dev, &dev_attr_power_method);
586 if (ret)
587 DRM_ERROR("failed to create device file for power method\n");
589 #ifdef CONFIG_ACPI
590 rdev->acpi_nb.notifier_call = radeon_acpi_event;
591 register_acpi_notifier(&rdev->acpi_nb);
592 #endif
593 if (radeon_debugfs_pm_init(rdev)) {
594 DRM_ERROR("Failed to register debugfs file for PM!\n");
597 DRM_INFO("radeon: power management initialized\n");
600 return 0;
603 void radeon_pm_fini(struct radeon_device *rdev)
605 if (rdev->pm.num_power_states > 1) {
606 mutex_lock(&rdev->pm.mutex);
607 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
608 rdev->pm.profile = PM_PROFILE_DEFAULT;
609 radeon_pm_update_profile(rdev);
610 radeon_pm_set_clocks(rdev);
611 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
612 /* reset default clocks */
613 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
614 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
615 radeon_pm_set_clocks(rdev);
617 mutex_unlock(&rdev->pm.mutex);
619 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
621 device_remove_file(rdev->dev, &dev_attr_power_profile);
622 device_remove_file(rdev->dev, &dev_attr_power_method);
623 #ifdef CONFIG_ACPI
624 unregister_acpi_notifier(&rdev->acpi_nb);
625 #endif
628 radeon_hwmon_fini(rdev);
631 void radeon_pm_compute_clocks(struct radeon_device *rdev)
633 struct drm_device *ddev = rdev->ddev;
634 struct drm_crtc *crtc;
635 struct radeon_crtc *radeon_crtc;
637 if (rdev->pm.num_power_states < 2)
638 return;
640 mutex_lock(&rdev->pm.mutex);
642 rdev->pm.active_crtcs = 0;
643 rdev->pm.active_crtc_count = 0;
644 list_for_each_entry(crtc,
645 &ddev->mode_config.crtc_list, head) {
646 radeon_crtc = to_radeon_crtc(crtc);
647 if (radeon_crtc->enabled) {
648 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
649 rdev->pm.active_crtc_count++;
653 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
654 radeon_pm_update_profile(rdev);
655 radeon_pm_set_clocks(rdev);
656 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
657 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
658 if (rdev->pm.active_crtc_count > 1) {
659 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
660 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
662 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
663 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
664 radeon_pm_get_dynpm_state(rdev);
665 radeon_pm_set_clocks(rdev);
667 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
669 } else if (rdev->pm.active_crtc_count == 1) {
670 /* TODO: Increase clocks if needed for current mode */
672 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
673 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
674 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
675 radeon_pm_get_dynpm_state(rdev);
676 radeon_pm_set_clocks(rdev);
678 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
679 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
680 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
681 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
682 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
683 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
684 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
686 } else { /* count == 0 */
687 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
688 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
690 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
691 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
692 radeon_pm_get_dynpm_state(rdev);
693 radeon_pm_set_clocks(rdev);
699 mutex_unlock(&rdev->pm.mutex);
702 static bool radeon_pm_in_vbl(struct radeon_device *rdev)
704 int crtc, vpos, hpos, vbl_status;
705 bool in_vbl = true;
707 /* Iterate over all active crtc's. All crtc's must be in vblank,
708 * otherwise return in_vbl == false.
710 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
711 if (rdev->pm.active_crtcs & (1 << crtc)) {
712 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
713 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
714 !(vbl_status & DRM_SCANOUTPOS_INVBL))
715 in_vbl = false;
719 return in_vbl;
722 static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
724 u32 stat_crtc = 0;
725 bool in_vbl = radeon_pm_in_vbl(rdev);
727 if (in_vbl == false)
728 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
729 finish ? "exit" : "entry");
730 return in_vbl;
733 static void radeon_dynpm_idle_work_handler(struct work_struct *work)
735 struct radeon_device *rdev;
736 int resched;
737 rdev = container_of(work, struct radeon_device,
738 pm.dynpm_idle_work.work);
740 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
741 mutex_lock(&rdev->pm.mutex);
742 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
743 unsigned long irq_flags;
744 int not_processed = 0;
746 read_lock_irqsave(&rdev->fence_drv.lock, irq_flags);
747 if (!list_empty(&rdev->fence_drv.emited)) {
748 struct list_head *ptr;
749 list_for_each(ptr, &rdev->fence_drv.emited) {
750 /* count up to 3, that's enought info */
751 if (++not_processed >= 3)
752 break;
755 read_unlock_irqrestore(&rdev->fence_drv.lock, irq_flags);
757 if (not_processed >= 3) { /* should upclock */
758 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
759 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
760 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
761 rdev->pm.dynpm_can_upclock) {
762 rdev->pm.dynpm_planned_action =
763 DYNPM_ACTION_UPCLOCK;
764 rdev->pm.dynpm_action_timeout = jiffies +
765 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
767 } else if (not_processed == 0) { /* should downclock */
768 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
769 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
770 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
771 rdev->pm.dynpm_can_downclock) {
772 rdev->pm.dynpm_planned_action =
773 DYNPM_ACTION_DOWNCLOCK;
774 rdev->pm.dynpm_action_timeout = jiffies +
775 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
779 /* Note, radeon_pm_set_clocks is called with static_switch set
780 * to false since we want to wait for vbl to avoid flicker.
782 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
783 jiffies > rdev->pm.dynpm_action_timeout) {
784 radeon_pm_get_dynpm_state(rdev);
785 radeon_pm_set_clocks(rdev);
788 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
789 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
791 mutex_unlock(&rdev->pm.mutex);
792 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
796 * Debugfs info
798 #if defined(CONFIG_DEBUG_FS)
800 static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
802 struct drm_info_node *node = (struct drm_info_node *) m->private;
803 struct drm_device *dev = node->minor->dev;
804 struct radeon_device *rdev = dev->dev_private;
806 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->clock.default_sclk);
807 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
808 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->clock.default_mclk);
809 if (rdev->asic->get_memory_clock)
810 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
811 if (rdev->pm.current_vddc)
812 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
813 if (rdev->asic->get_pcie_lanes)
814 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
816 return 0;
819 static struct drm_info_list radeon_pm_info_list[] = {
820 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
822 #endif
824 static int radeon_debugfs_pm_init(struct radeon_device *rdev)
826 #if defined(CONFIG_DEBUG_FS)
827 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
828 #else
829 return 0;
830 #endif