blob: 88163e043fcf5b6bad8251646be5257c808c9eac [file] [log] [blame]
Rafał Miłecki74338742009-11-03 00:53:02 +01001/*
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:
8 *
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
11 *
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.
19 *
20 * Authors: Rafał Miłecki <zajec5@gmail.com>
Alex Deucher56278a82009-12-28 13:58:44 -050021 * Alex Deucher <alexdeucher@gmail.com>
Rafał Miłecki74338742009-11-03 00:53:02 +010022 */
23#include "drmP.h"
24#include "radeon.h"
Dave Airlief7352612010-02-18 15:58:36 +100025#include "avivod.h"
Rafał Miłecki74338742009-11-03 00:53:02 +010026
Rafał Miłeckic913e232009-12-22 23:02:16 +010027#define RADEON_IDLE_LOOP_MS 100
28#define RADEON_RECLOCK_DELAY_MS 200
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +010029#define RADEON_WAIT_VBLANK_TIMEOUT 200
Alex Deucher2031f772010-04-22 12:52:11 -040030#define RADEON_WAIT_IDLE_TIMEOUT 200
Rafał Miłeckic913e232009-12-22 23:02:16 +010031
Rafał Miłeckic913e232009-12-22 23:02:16 +010032static void radeon_pm_idle_work_handler(struct work_struct *work);
33static int radeon_debugfs_pm_init(struct radeon_device *rdev);
34
Matthew Garrett5876dd22010-04-26 15:52:20 -040035static void radeon_unmap_vram_bos(struct radeon_device *rdev)
36{
37 struct radeon_bo *bo, *n;
38
39 if (list_empty(&rdev->gem.objects))
40 return;
41
42 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
43 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
44 ttm_bo_unmap_virtual(&bo->tbo);
45 }
46
47 if (rdev->gart.table.vram.robj)
48 ttm_bo_unmap_virtual(&rdev->gart.table.vram.robj->tbo);
49
50 if (rdev->stollen_vga_memory)
51 ttm_bo_unmap_virtual(&rdev->stollen_vga_memory->tbo);
52
53 if (rdev->r600_blit.shader_obj)
54 ttm_bo_unmap_virtual(&rdev->r600_blit.shader_obj->tbo);
55}
56
Matthew Garrett2aba6312010-04-26 15:45:23 -040057static void radeon_pm_set_clocks(struct radeon_device *rdev, int static_switch)
Alex Deuchera4248162010-04-24 14:50:23 -040058{
Matthew Garrett2aba6312010-04-26 15:45:23 -040059 int i;
60
Matthew Garrettc37d2302010-04-27 13:58:46 -040061 if (!static_switch)
62 radeon_get_power_state(rdev, rdev->pm.planned_action);
63
Matthew Garrett612e06c2010-04-27 17:16:58 -040064 mutex_lock(&rdev->ddev->struct_mutex);
65 mutex_lock(&rdev->vram_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -040066 mutex_lock(&rdev->cp.mutex);
67
68 /* wait for GPU idle */
69 rdev->pm.gui_idle = false;
70 rdev->irq.gui_idle = true;
71 radeon_irq_set(rdev);
72 wait_event_interruptible_timeout(
73 rdev->irq.idle_queue, rdev->pm.gui_idle,
74 msecs_to_jiffies(RADEON_WAIT_IDLE_TIMEOUT));
75 rdev->irq.gui_idle = false;
76 radeon_irq_set(rdev);
77
Matthew Garrett5876dd22010-04-26 15:52:20 -040078 radeon_unmap_vram_bos(rdev);
79
Matthew Garrett2aba6312010-04-26 15:45:23 -040080 if (!static_switch) {
81 for (i = 0; i < rdev->num_crtc; i++) {
82 if (rdev->pm.active_crtcs & (1 << i)) {
83 rdev->pm.req_vblank |= (1 << i);
84 drm_vblank_get(rdev->ddev, i);
85 }
86 }
87 }
88
89 radeon_set_power_state(rdev, static_switch);
Alex Deuchera4248162010-04-24 14:50:23 -040090
Matthew Garrett2aba6312010-04-26 15:45:23 -040091 if (!static_switch) {
92 for (i = 0; i < rdev->num_crtc; i++) {
93 if (rdev->pm.req_vblank & (1 << i)) {
94 rdev->pm.req_vblank &= ~(1 << i);
95 drm_vblank_put(rdev->ddev, i);
96 }
97 }
98 }
Matthew Garrett5876dd22010-04-26 15:52:20 -040099
Alex Deuchera4248162010-04-24 14:50:23 -0400100 /* update display watermarks based on new power state */
101 radeon_update_bandwidth_info(rdev);
102 if (rdev->pm.active_crtc_count)
103 radeon_bandwidth_update(rdev);
104
Matthew Garrett2aba6312010-04-26 15:45:23 -0400105 rdev->pm.planned_action = PM_ACTION_NONE;
106
Alex Deuchera4248162010-04-24 14:50:23 -0400107 mutex_unlock(&rdev->cp.mutex);
Matthew Garrett612e06c2010-04-27 17:16:58 -0400108 mutex_unlock(&rdev->vram_mutex);
109 mutex_unlock(&rdev->ddev->struct_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400110}
111
112static ssize_t radeon_get_power_state_static(struct device *dev,
113 struct device_attribute *attr,
114 char *buf)
115{
116 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
117 struct radeon_device *rdev = ddev->dev_private;
118
119 return snprintf(buf, PAGE_SIZE, "%d.%d\n", rdev->pm.current_power_state_index,
120 rdev->pm.current_clock_mode_index);
121}
122
123static ssize_t radeon_set_power_state_static(struct device *dev,
124 struct device_attribute *attr,
125 const char *buf,
126 size_t count)
127{
128 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
129 struct radeon_device *rdev = ddev->dev_private;
130 int ps, cm;
131
132 if (sscanf(buf, "%u.%u", &ps, &cm) != 2) {
133 DRM_ERROR("Invalid power state!\n");
134 return count;
135 }
136
137 mutex_lock(&rdev->pm.mutex);
138 if ((ps >= 0) && (ps < rdev->pm.num_power_states) &&
139 (cm >= 0) && (cm < rdev->pm.power_state[ps].num_clock_modes)) {
140 if ((rdev->pm.active_crtc_count > 1) &&
141 (rdev->pm.power_state[ps].flags & RADEON_PM_SINGLE_DISPLAY_ONLY)) {
142 DRM_ERROR("Invalid power state for multi-head: %d.%d\n", ps, cm);
143 } else {
144 /* disable dynpm */
145 rdev->pm.state = PM_STATE_DISABLED;
146 rdev->pm.planned_action = PM_ACTION_NONE;
147 rdev->pm.requested_power_state_index = ps;
148 rdev->pm.requested_clock_mode_index = cm;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400149 radeon_pm_set_clocks(rdev, true);
Alex Deuchera4248162010-04-24 14:50:23 -0400150 }
151 } else
152 DRM_ERROR("Invalid power state: %d.%d\n\n", ps, cm);
153 mutex_unlock(&rdev->pm.mutex);
154
155 return count;
156}
157
158static ssize_t radeon_get_dynpm(struct device *dev,
159 struct device_attribute *attr,
160 char *buf)
161{
162 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
163 struct radeon_device *rdev = ddev->dev_private;
164
165 return snprintf(buf, PAGE_SIZE, "%s\n",
166 (rdev->pm.state == PM_STATE_DISABLED) ? "disabled" : "enabled");
167}
168
169static ssize_t radeon_set_dynpm(struct device *dev,
170 struct device_attribute *attr,
171 const char *buf,
172 size_t count)
173{
174 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
175 struct radeon_device *rdev = ddev->dev_private;
176 int tmp = simple_strtoul(buf, NULL, 10);
177
178 if (tmp == 0) {
179 /* update power mode info */
180 radeon_pm_compute_clocks(rdev);
181 /* disable dynpm */
182 mutex_lock(&rdev->pm.mutex);
183 rdev->pm.state = PM_STATE_DISABLED;
184 rdev->pm.planned_action = PM_ACTION_NONE;
185 mutex_unlock(&rdev->pm.mutex);
186 DRM_INFO("radeon: dynamic power management disabled\n");
187 } else if (tmp == 1) {
188 if (rdev->pm.num_power_states > 1) {
189 /* enable dynpm */
190 mutex_lock(&rdev->pm.mutex);
191 rdev->pm.state = PM_STATE_PAUSED;
192 rdev->pm.planned_action = PM_ACTION_DEFAULT;
193 radeon_get_power_state(rdev, rdev->pm.planned_action);
194 mutex_unlock(&rdev->pm.mutex);
195 /* update power mode info */
196 radeon_pm_compute_clocks(rdev);
197 DRM_INFO("radeon: dynamic power management enabled\n");
198 } else
199 DRM_ERROR("dynpm not valid on this system\n");
200 } else
201 DRM_ERROR("Invalid setting: %d\n", tmp);
202
203 return count;
204}
205
206static DEVICE_ATTR(power_state, S_IRUGO | S_IWUSR, radeon_get_power_state_static, radeon_set_power_state_static);
207static DEVICE_ATTR(dynpm, S_IRUGO | S_IWUSR, radeon_get_dynpm, radeon_set_dynpm);
208
209
Rafał Miłeckic913e232009-12-22 23:02:16 +0100210static const char *pm_state_names[4] = {
211 "PM_STATE_DISABLED",
212 "PM_STATE_MINIMUM",
213 "PM_STATE_PAUSED",
214 "PM_STATE_ACTIVE"
215};
Rafał Miłecki74338742009-11-03 00:53:02 +0100216
Alex Deucher0ec0e742009-12-23 13:21:58 -0500217static const char *pm_state_types[5] = {
Alex Deucherd91eeb72010-04-05 15:26:43 -0400218 "",
Alex Deucher0ec0e742009-12-23 13:21:58 -0500219 "Powersave",
220 "Battery",
221 "Balanced",
222 "Performance",
223};
224
Alex Deucher56278a82009-12-28 13:58:44 -0500225static void radeon_print_power_mode_info(struct radeon_device *rdev)
226{
227 int i, j;
228 bool is_default;
229
230 DRM_INFO("%d Power State(s)\n", rdev->pm.num_power_states);
231 for (i = 0; i < rdev->pm.num_power_states; i++) {
Alex Deuchera48b9b42010-04-22 14:03:55 -0400232 if (rdev->pm.default_power_state_index == i)
Alex Deucher56278a82009-12-28 13:58:44 -0500233 is_default = true;
234 else
235 is_default = false;
Alex Deucher0ec0e742009-12-23 13:21:58 -0500236 DRM_INFO("State %d %s %s\n", i,
237 pm_state_types[rdev->pm.power_state[i].type],
238 is_default ? "(default)" : "");
Alex Deucher56278a82009-12-28 13:58:44 -0500239 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
Alex Deucher79daedc2010-04-22 14:25:19 -0400240 DRM_INFO("\t%d PCIE Lanes\n", rdev->pm.power_state[i].pcie_lanes);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400241 if (rdev->pm.power_state[i].flags & RADEON_PM_SINGLE_DISPLAY_ONLY)
242 DRM_INFO("\tSingle display only\n");
Alex Deucher56278a82009-12-28 13:58:44 -0500243 DRM_INFO("\t%d Clock Mode(s)\n", rdev->pm.power_state[i].num_clock_modes);
244 for (j = 0; j < rdev->pm.power_state[i].num_clock_modes; j++) {
245 if (rdev->flags & RADEON_IS_IGP)
246 DRM_INFO("\t\t%d engine: %d\n",
247 j,
248 rdev->pm.power_state[i].clock_info[j].sclk * 10);
249 else
250 DRM_INFO("\t\t%d engine/memory: %d/%d\n",
251 j,
252 rdev->pm.power_state[i].clock_info[j].sclk * 10,
253 rdev->pm.power_state[i].clock_info[j].mclk * 10);
254 }
255 }
256}
257
Alex Deucherbae6b5622010-04-22 13:38:05 -0400258void radeon_sync_with_vblank(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100259{
260 if (rdev->pm.active_crtcs) {
261 rdev->pm.vblank_sync = false;
262 wait_event_timeout(
263 rdev->irq.vblank_queue, rdev->pm.vblank_sync,
264 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
265 }
266}
267
Rafał Miłecki74338742009-11-03 00:53:02 +0100268int radeon_pm_init(struct radeon_device *rdev)
269{
Rafał Miłeckic913e232009-12-22 23:02:16 +0100270 rdev->pm.state = PM_STATE_DISABLED;
271 rdev->pm.planned_action = PM_ACTION_NONE;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400272 rdev->pm.can_upclock = true;
273 rdev->pm.can_downclock = true;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100274
Alex Deucher56278a82009-12-28 13:58:44 -0500275 if (rdev->bios) {
276 if (rdev->is_atom_bios)
277 radeon_atombios_get_power_modes(rdev);
278 else
279 radeon_combios_get_power_modes(rdev);
280 radeon_print_power_mode_info(rdev);
281 }
282
Rafał Miłecki74338742009-11-03 00:53:02 +0100283 if (radeon_debugfs_pm_init(rdev)) {
Rafał Miłeckic142c3e2009-11-06 11:38:34 +0100284 DRM_ERROR("Failed to register debugfs file for PM!\n");
Rafał Miłecki74338742009-11-03 00:53:02 +0100285 }
286
Alex Deuchera4248162010-04-24 14:50:23 -0400287 /* where's the best place to put this? */
288 device_create_file(rdev->dev, &dev_attr_power_state);
289 device_create_file(rdev->dev, &dev_attr_dynpm);
290
Rafał Miłeckic913e232009-12-22 23:02:16 +0100291 INIT_DELAYED_WORK(&rdev->pm.idle_work, radeon_pm_idle_work_handler);
292
Alex Deucher90c39052010-03-24 11:32:29 -0400293 if ((radeon_dynpm != -1 && radeon_dynpm) && (rdev->pm.num_power_states > 1)) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100294 rdev->pm.state = PM_STATE_PAUSED;
295 DRM_INFO("radeon: dynamic power management enabled\n");
296 }
297
298 DRM_INFO("radeon: power management initialized\n");
299
Rafał Miłecki74338742009-11-03 00:53:02 +0100300 return 0;
301}
302
Alex Deucher29fb52c2010-03-11 10:01:17 -0500303void radeon_pm_fini(struct radeon_device *rdev)
304{
Alex Deucher58e21df2010-03-22 13:31:08 -0400305 if (rdev->pm.state != PM_STATE_DISABLED) {
306 /* cancel work */
307 cancel_delayed_work_sync(&rdev->pm.idle_work);
308 /* reset default clocks */
309 rdev->pm.state = PM_STATE_DISABLED;
310 rdev->pm.planned_action = PM_ACTION_DEFAULT;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400311 radeon_pm_set_clocks(rdev, false);
Alex Deuchera4248162010-04-24 14:50:23 -0400312 } else if ((rdev->pm.current_power_state_index !=
313 rdev->pm.default_power_state_index) ||
314 (rdev->pm.current_clock_mode_index != 0)) {
315 rdev->pm.requested_power_state_index = rdev->pm.default_power_state_index;
316 rdev->pm.requested_clock_mode_index = 0;
317 mutex_lock(&rdev->pm.mutex);
Matthew Garrett2aba6312010-04-26 15:45:23 -0400318 radeon_pm_set_clocks(rdev, true);
Alex Deuchera4248162010-04-24 14:50:23 -0400319 mutex_unlock(&rdev->pm.mutex);
Alex Deucher58e21df2010-03-22 13:31:08 -0400320 }
321
Alex Deuchera4248162010-04-24 14:50:23 -0400322 device_remove_file(rdev->dev, &dev_attr_power_state);
323 device_remove_file(rdev->dev, &dev_attr_dynpm);
324
Alex Deucher29fb52c2010-03-11 10:01:17 -0500325 if (rdev->pm.i2c_bus)
326 radeon_i2c_destroy(rdev->pm.i2c_bus);
327}
328
Rafał Miłeckic913e232009-12-22 23:02:16 +0100329void radeon_pm_compute_clocks(struct radeon_device *rdev)
330{
331 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400332 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100333 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100334
335 if (rdev->pm.state == PM_STATE_DISABLED)
336 return;
337
338 mutex_lock(&rdev->pm.mutex);
339
340 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400341 rdev->pm.active_crtc_count = 0;
342 list_for_each_entry(crtc,
343 &ddev->mode_config.crtc_list, head) {
344 radeon_crtc = to_radeon_crtc(crtc);
345 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100346 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400347 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100348 }
349 }
350
Alex Deuchera48b9b42010-04-22 14:03:55 -0400351 if (rdev->pm.active_crtc_count > 1) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100352 if (rdev->pm.state == PM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100353 cancel_delayed_work(&rdev->pm.idle_work);
354
355 rdev->pm.state = PM_STATE_PAUSED;
356 rdev->pm.planned_action = PM_ACTION_UPCLOCK;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400357 radeon_pm_set_clocks(rdev, false);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100358
359 DRM_DEBUG("radeon: dynamic power management deactivated\n");
Rafał Miłeckic913e232009-12-22 23:02:16 +0100360 }
Alex Deuchera48b9b42010-04-22 14:03:55 -0400361 } else if (rdev->pm.active_crtc_count == 1) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100362 /* TODO: Increase clocks if needed for current mode */
363
364 if (rdev->pm.state == PM_STATE_MINIMUM) {
365 rdev->pm.state = PM_STATE_ACTIVE;
366 rdev->pm.planned_action = PM_ACTION_UPCLOCK;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400367 radeon_pm_set_clocks(rdev, false);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100368
369 queue_delayed_work(rdev->wq, &rdev->pm.idle_work,
370 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deuchera48b9b42010-04-22 14:03:55 -0400371 } else if (rdev->pm.state == PM_STATE_PAUSED) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100372 rdev->pm.state = PM_STATE_ACTIVE;
373 queue_delayed_work(rdev->wq, &rdev->pm.idle_work,
374 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
375 DRM_DEBUG("radeon: dynamic power management activated\n");
376 }
Alex Deuchera48b9b42010-04-22 14:03:55 -0400377 } else { /* count == 0 */
Rafał Miłeckic913e232009-12-22 23:02:16 +0100378 if (rdev->pm.state != PM_STATE_MINIMUM) {
379 cancel_delayed_work(&rdev->pm.idle_work);
380
381 rdev->pm.state = PM_STATE_MINIMUM;
382 rdev->pm.planned_action = PM_ACTION_MINIMUM;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400383 radeon_pm_set_clocks(rdev, false);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100384 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100385 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100386
387 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100388}
389
Matthew Garrettf81f2022010-04-28 12:13:06 -0400390bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +1000391{
Alex Deucherbae6b5622010-04-22 13:38:05 -0400392 u32 stat_crtc = 0;
Dave Airlief7352612010-02-18 15:58:36 +1000393 bool in_vbl = true;
394
Alex Deucherbae6b5622010-04-22 13:38:05 -0400395 if (ASIC_IS_DCE4(rdev)) {
Dave Airlief7352612010-02-18 15:58:36 +1000396 if (rdev->pm.active_crtcs & (1 << 0)) {
Alex Deucherbae6b5622010-04-22 13:38:05 -0400397 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC0_REGISTER_OFFSET);
398 if (!(stat_crtc & 1))
Dave Airlief7352612010-02-18 15:58:36 +1000399 in_vbl = false;
400 }
401 if (rdev->pm.active_crtcs & (1 << 1)) {
Alex Deucherbae6b5622010-04-22 13:38:05 -0400402 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC1_REGISTER_OFFSET);
403 if (!(stat_crtc & 1))
404 in_vbl = false;
405 }
406 if (rdev->pm.active_crtcs & (1 << 2)) {
407 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC2_REGISTER_OFFSET);
408 if (!(stat_crtc & 1))
409 in_vbl = false;
410 }
411 if (rdev->pm.active_crtcs & (1 << 3)) {
412 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC3_REGISTER_OFFSET);
413 if (!(stat_crtc & 1))
414 in_vbl = false;
415 }
416 if (rdev->pm.active_crtcs & (1 << 4)) {
417 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC4_REGISTER_OFFSET);
418 if (!(stat_crtc & 1))
419 in_vbl = false;
420 }
421 if (rdev->pm.active_crtcs & (1 << 5)) {
422 stat_crtc = RREG32(EVERGREEN_CRTC_STATUS + EVERGREEN_CRTC5_REGISTER_OFFSET);
423 if (!(stat_crtc & 1))
424 in_vbl = false;
425 }
426 } else if (ASIC_IS_AVIVO(rdev)) {
427 if (rdev->pm.active_crtcs & (1 << 0)) {
428 stat_crtc = RREG32(D1CRTC_STATUS);
429 if (!(stat_crtc & 1))
430 in_vbl = false;
431 }
432 if (rdev->pm.active_crtcs & (1 << 1)) {
433 stat_crtc = RREG32(D2CRTC_STATUS);
434 if (!(stat_crtc & 1))
435 in_vbl = false;
436 }
437 } else {
438 if (rdev->pm.active_crtcs & (1 << 0)) {
439 stat_crtc = RREG32(RADEON_CRTC_STATUS);
440 if (!(stat_crtc & 1))
441 in_vbl = false;
442 }
443 if (rdev->pm.active_crtcs & (1 << 1)) {
444 stat_crtc = RREG32(RADEON_CRTC2_STATUS);
445 if (!(stat_crtc & 1))
Dave Airlief7352612010-02-18 15:58:36 +1000446 in_vbl = false;
447 }
448 }
Matthew Garrettf81f2022010-04-28 12:13:06 -0400449
450 return in_vbl;
451}
452
453bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
454{
455 u32 stat_crtc = 0;
456 bool in_vbl = radeon_pm_in_vbl(rdev);
457
Dave Airlief7352612010-02-18 15:58:36 +1000458 if (in_vbl == false)
Alex Deucherbae6b5622010-04-22 13:38:05 -0400459 DRM_INFO("not in vbl for pm change %08x at %s\n", stat_crtc,
460 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +1000461 return in_vbl;
462}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100463
464static void radeon_pm_idle_work_handler(struct work_struct *work)
465{
466 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -0400467 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100468 rdev = container_of(work, struct radeon_device,
469 pm.idle_work.work);
470
Matthew Garrettd9932a32010-04-26 16:02:26 -0400471 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100472 mutex_lock(&rdev->pm.mutex);
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100473 if (rdev->pm.state == PM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100474 unsigned long irq_flags;
475 int not_processed = 0;
476
477 read_lock_irqsave(&rdev->fence_drv.lock, irq_flags);
478 if (!list_empty(&rdev->fence_drv.emited)) {
479 struct list_head *ptr;
480 list_for_each(ptr, &rdev->fence_drv.emited) {
481 /* count up to 3, that's enought info */
482 if (++not_processed >= 3)
483 break;
484 }
485 }
486 read_unlock_irqrestore(&rdev->fence_drv.lock, irq_flags);
487
488 if (not_processed >= 3) { /* should upclock */
489 if (rdev->pm.planned_action == PM_ACTION_DOWNCLOCK) {
490 rdev->pm.planned_action = PM_ACTION_NONE;
491 } else if (rdev->pm.planned_action == PM_ACTION_NONE &&
Alex Deuchera48b9b42010-04-22 14:03:55 -0400492 rdev->pm.can_upclock) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100493 rdev->pm.planned_action =
494 PM_ACTION_UPCLOCK;
495 rdev->pm.action_timeout = jiffies +
496 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
497 }
498 } else if (not_processed == 0) { /* should downclock */
499 if (rdev->pm.planned_action == PM_ACTION_UPCLOCK) {
500 rdev->pm.planned_action = PM_ACTION_NONE;
501 } else if (rdev->pm.planned_action == PM_ACTION_NONE &&
Alex Deuchera48b9b42010-04-22 14:03:55 -0400502 rdev->pm.can_downclock) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100503 rdev->pm.planned_action =
504 PM_ACTION_DOWNCLOCK;
505 rdev->pm.action_timeout = jiffies +
506 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
507 }
508 }
509
510 if (rdev->pm.planned_action != PM_ACTION_NONE &&
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100511 jiffies > rdev->pm.action_timeout) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400512 radeon_pm_set_clocks(rdev, false);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100513 }
514 }
515 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -0400516 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100517
518 queue_delayed_work(rdev->wq, &rdev->pm.idle_work,
519 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
520}
521
Rafał Miłecki74338742009-11-03 00:53:02 +0100522/*
523 * Debugfs info
524 */
525#if defined(CONFIG_DEBUG_FS)
526
527static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
528{
529 struct drm_info_node *node = (struct drm_info_node *) m->private;
530 struct drm_device *dev = node->minor->dev;
531 struct radeon_device *rdev = dev->dev_private;
532
Rafał Miłeckic913e232009-12-22 23:02:16 +0100533 seq_printf(m, "state: %s\n", pm_state_names[rdev->pm.state]);
Rafał Miłecki62340772009-12-15 21:46:58 +0100534 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->clock.default_sclk);
535 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
536 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->clock.default_mclk);
537 if (rdev->asic->get_memory_clock)
538 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
Rafał Miłeckiaa5120d2010-02-18 20:24:28 +0000539 if (rdev->asic->get_pcie_lanes)
540 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
Rafał Miłecki74338742009-11-03 00:53:02 +0100541
542 return 0;
543}
544
545static struct drm_info_list radeon_pm_info_list[] = {
546 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
547};
548#endif
549
Rafał Miłeckic913e232009-12-22 23:02:16 +0100550static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +0100551{
552#if defined(CONFIG_DEBUG_FS)
553 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
554#else
555 return 0;
556#endif
557}