blob: 08de669e025ab9bddf0bd118a457288bbb2b49e0 [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"
Alex Deucherce8f5372010-05-07 15:10:16 -040026#ifdef CONFIG_ACPI
27#include <linux/acpi.h>
28#endif
29#include <linux/power_supply.h>
Alex Deucher21a81222010-07-02 12:58:16 -040030#include <linux/hwmon.h>
31#include <linux/hwmon-sysfs.h>
Rafał Miłecki74338742009-11-03 00:53:02 +010032
Rafał Miłeckic913e232009-12-22 23:02:16 +010033#define RADEON_IDLE_LOOP_MS 100
34#define RADEON_RECLOCK_DELAY_MS 200
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +010035#define RADEON_WAIT_VBLANK_TIMEOUT 200
Alex Deucher2031f772010-04-22 12:52:11 -040036#define RADEON_WAIT_IDLE_TIMEOUT 200
Rafał Miłeckic913e232009-12-22 23:02:16 +010037
Rafał Miłeckif712d0c2010-06-07 18:29:44 -040038static const char *radeon_pm_state_type_name[5] = {
39 "Default",
40 "Powersave",
41 "Battery",
42 "Balanced",
43 "Performance",
44};
45
Alex Deucherce8f5372010-05-07 15:10:16 -040046static void radeon_dynpm_idle_work_handler(struct work_struct *work);
Rafał Miłeckic913e232009-12-22 23:02:16 +010047static int radeon_debugfs_pm_init(struct radeon_device *rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -040048static bool radeon_pm_in_vbl(struct radeon_device *rdev);
49static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish);
50static void radeon_pm_update_profile(struct radeon_device *rdev);
51static void radeon_pm_set_clocks(struct radeon_device *rdev);
52
53#define ACPI_AC_CLASS "ac_adapter"
54
55#ifdef CONFIG_ACPI
56static int radeon_acpi_event(struct notifier_block *nb,
57 unsigned long val,
58 void *data)
59{
60 struct radeon_device *rdev = container_of(nb, struct radeon_device, acpi_nb);
61 struct acpi_bus_event *entry = (struct acpi_bus_event *)data;
62
63 if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0) {
64 if (power_supply_is_system_supplied() > 0)
Dave Airlied9fdaaf2010-08-02 10:42:55 +100065 DRM_DEBUG_DRIVER("pm: AC\n");
Alex Deucherce8f5372010-05-07 15:10:16 -040066 else
Dave Airlied9fdaaf2010-08-02 10:42:55 +100067 DRM_DEBUG_DRIVER("pm: DC\n");
Alex Deucherce8f5372010-05-07 15:10:16 -040068
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);
75 }
76 }
77 }
78
79 return NOTIFY_OK;
80}
81#endif
82
83static void radeon_pm_update_profile(struct radeon_device *rdev)
84{
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)
Alex Deucherc9e75b22010-06-02 17:56:01 -040097 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -040098 else
Alex Deucherc9e75b22010-06-02 17:56:01 -040099 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -0400100 }
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;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400108 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;
Alex Deucherce8f5372010-05-07 15:10:16 -0400114 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;
120 }
121
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;
132 }
133}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100134
Matthew Garrett5876dd22010-04-26 15:52:20 -0400135static void radeon_unmap_vram_bos(struct radeon_device *rdev)
136{
137 struct radeon_bo *bo, *n;
138
139 if (list_empty(&rdev->gem.objects))
140 return;
141
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);
145 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400146}
147
Alex Deucherce8f5372010-05-07 15:10:16 -0400148static void radeon_sync_with_vblank(struct radeon_device *rdev)
149{
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));
155 }
156}
157
158static void radeon_set_power_state(struct radeon_device *rdev)
159{
160 u32 sclk, mclk;
Alex Deucher92645872010-05-27 17:01:41 -0400161 bool misc_after = false;
Alex Deucherce8f5372010-05-07 15:10:16 -0400162
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;
166
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;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500170 if (sclk > rdev->pm.default_sclk)
171 sclk = rdev->pm.default_sclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400172
173 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
174 clock_info[rdev->pm.requested_clock_mode_index].mclk;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500175 if (mclk > rdev->pm.default_mclk)
176 mclk = rdev->pm.default_mclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400177
Alex Deucher92645872010-05-27 17:01:41 -0400178 /* upvolt before raising clocks, downvolt after lowering clocks */
179 if (sclk < rdev->pm.current_sclk)
180 misc_after = true;
181
182 radeon_sync_with_vblank(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400183
184 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400185 if (!radeon_pm_in_vbl(rdev))
186 return;
Alex Deucherce8f5372010-05-07 15:10:16 -0400187 }
188
Alex Deucher92645872010-05-27 17:01:41 -0400189 radeon_pm_prepare(rdev);
190
191 if (!misc_after)
192 /* voltage, pcie lanes, etc.*/
193 radeon_pm_misc(rdev);
194
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;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000201 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
Alex Deucher92645872010-05-27 17:01:41 -0400202 }
203
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;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000210 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
Alex Deucher92645872010-05-27 17:01:41 -0400211 }
212
213 if (misc_after)
214 /* voltage, pcie lanes, etc.*/
215 radeon_pm_misc(rdev);
216
217 radeon_pm_finish(rdev);
218
Alex Deucherce8f5372010-05-07 15:10:16 -0400219 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
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000222 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400223}
224
225static void radeon_pm_set_clocks(struct radeon_device *rdev)
Alex Deuchera4248162010-04-24 14:50:23 -0400226{
Matthew Garrett2aba6312010-04-26 15:45:23 -0400227 int i;
228
Alex Deucher4e186b22010-08-13 10:53:35 -0400229 /* 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;
233
Matthew Garrett612e06c2010-04-27 17:16:58 -0400234 mutex_lock(&rdev->ddev->struct_mutex);
235 mutex_lock(&rdev->vram_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400236 mutex_lock(&rdev->cp.mutex);
Alex Deucher4f3218c2010-04-29 16:14:02 -0400237
238 /* gui idle int has issues on older chips it seems */
239 if (rdev->family >= CHIP_R600) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400240 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);
250 }
Matthew Garrett01434b42010-04-30 15:48:23 -0400251 } else {
Alex Deucherce8f5372010-05-07 15:10:16 -0400252 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);
260 }
Alex Deucher4f3218c2010-04-29 16:14:02 -0400261 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400262 radeon_unmap_vram_bos(rdev);
263
Alex Deucherce8f5372010-05-07 15:10:16 -0400264 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400265 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);
269 }
270 }
271 }
Alex Deucher539d2412010-04-29 00:22:43 -0400272
Alex Deucherce8f5372010-05-07 15:10:16 -0400273 radeon_set_power_state(rdev);
Alex Deuchera4248162010-04-24 14:50:23 -0400274
Alex Deucherce8f5372010-05-07 15:10:16 -0400275 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400276 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);
280 }
281 }
282 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400283
Alex Deuchera4248162010-04-24 14:50:23 -0400284 /* 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);
288
Alex Deucherce8f5372010-05-07 15:10:16 -0400289 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400290
Alex Deuchera4248162010-04-24 14:50:23 -0400291 mutex_unlock(&rdev->cp.mutex);
Matthew Garrett612e06c2010-04-27 17:16:58 -0400292 mutex_unlock(&rdev->vram_mutex);
293 mutex_unlock(&rdev->ddev->struct_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400294}
295
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400296static void radeon_pm_print_states(struct radeon_device *rdev)
297{
298 int i, j;
299 struct radeon_power_state *power_state;
300 struct radeon_pm_clock_info *clock_info;
301
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000302 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400303 for (i = 0; i < rdev->pm.num_power_states; i++) {
304 power_state = &rdev->pm.power_state[i];
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000305 DRM_DEBUG_DRIVER("State %d: %s\n", i,
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400306 radeon_pm_state_type_name[power_state->type]);
307 if (i == rdev->pm.default_power_state_index)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000308 DRM_DEBUG_DRIVER("\tDefault");
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400309 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000310 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400311 if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000312 DRM_DEBUG_DRIVER("\tSingle display only\n");
313 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400314 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)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000317 DRM_DEBUG_DRIVER("\t\t%d e: %d%s\n",
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400318 j,
319 clock_info->sclk * 10,
320 clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
321 else
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000322 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d%s\n",
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400323 j,
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" : "");
328 }
329 }
330}
331
Alex Deucherce8f5372010-05-07 15:10:16 -0400332static ssize_t radeon_get_pm_profile(struct device *dev,
333 struct device_attribute *attr,
334 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400335{
336 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
337 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400338 int cp = rdev->pm.profile;
Alex Deuchera4248162010-04-24 14:50:23 -0400339
Alex Deucherce8f5372010-05-07 15:10:16 -0400340 return snprintf(buf, PAGE_SIZE, "%s\n",
341 (cp == PM_PROFILE_AUTO) ? "auto" :
342 (cp == PM_PROFILE_LOW) ? "low" :
Daniel J Blueman12e27be2010-07-28 12:25:58 +0100343 (cp == PM_PROFILE_MID) ? "mid" :
Alex Deucherce8f5372010-05-07 15:10:16 -0400344 (cp == PM_PROFILE_HIGH) ? "high" : "default");
Alex Deuchera4248162010-04-24 14:50:23 -0400345}
346
Alex Deucherce8f5372010-05-07 15:10:16 -0400347static ssize_t radeon_set_pm_profile(struct device *dev,
348 struct device_attribute *attr,
349 const char *buf,
350 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400351{
352 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
353 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400354
355 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400356 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;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400363 else if (strncmp("mid", buf, strlen("mid")) == 0)
364 rdev->pm.profile = PM_PROFILE_MID;
Alex Deucherce8f5372010-05-07 15:10:16 -0400365 else if (strncmp("high", buf, strlen("high")) == 0)
366 rdev->pm.profile = PM_PROFILE_HIGH;
367 else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000368 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400369 goto fail;
Alex Deuchera4248162010-04-24 14:50:23 -0400370 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400371 radeon_pm_update_profile(rdev);
372 radeon_pm_set_clocks(rdev);
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000373 } else
374 count = -EINVAL;
375
Alex Deucherce8f5372010-05-07 15:10:16 -0400376fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400377 mutex_unlock(&rdev->pm.mutex);
378
379 return count;
380}
381
Alex Deucherce8f5372010-05-07 15:10:16 -0400382static ssize_t radeon_get_pm_method(struct device *dev,
383 struct device_attribute *attr,
384 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400385{
386 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
387 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400388 int pm = rdev->pm.pm_method;
Alex Deuchera4248162010-04-24 14:50:23 -0400389
390 return snprintf(buf, PAGE_SIZE, "%s\n",
Alex Deucherce8f5372010-05-07 15:10:16 -0400391 (pm == PM_METHOD_DYNPM) ? "dynpm" : "profile");
Alex Deuchera4248162010-04-24 14:50:23 -0400392}
393
Alex Deucherce8f5372010-05-07 15:10:16 -0400394static ssize_t radeon_set_pm_method(struct device *dev,
395 struct device_attribute *attr,
396 const char *buf,
397 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400398{
399 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
400 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400401
Alex Deucherce8f5372010-05-07 15:10:16 -0400402
403 if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
Alex Deuchera4248162010-04-24 14:50:23 -0400404 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400405 rdev->pm.pm_method = PM_METHOD_DYNPM;
406 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
407 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
Alex Deuchera4248162010-04-24 14:50:23 -0400408 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400409 } else if (strncmp("profile", buf, strlen("profile")) == 0) {
410 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400411 /* disable dynpm */
412 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
413 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000414 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherce8f5372010-05-07 15:10:16 -0400415 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100416 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucherce8f5372010-05-07 15:10:16 -0400417 } else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000418 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400419 goto fail;
420 }
421 radeon_pm_compute_clocks(rdev);
422fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400423 return count;
424}
425
Alex Deucherce8f5372010-05-07 15:10:16 -0400426static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
427static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
Alex Deuchera4248162010-04-24 14:50:23 -0400428
Alex Deucher21a81222010-07-02 12:58:16 -0400429static ssize_t radeon_hwmon_show_temp(struct device *dev,
430 struct device_attribute *attr,
431 char *buf)
432{
433 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
434 struct radeon_device *rdev = ddev->dev_private;
Alex Deucher20d391d2011-02-01 16:12:34 -0500435 int temp;
Alex Deucher21a81222010-07-02 12:58:16 -0400436
437 switch (rdev->pm.int_thermal_type) {
438 case THERMAL_TYPE_RV6XX:
439 temp = rv6xx_get_temp(rdev);
440 break;
441 case THERMAL_TYPE_RV770:
442 temp = rv770_get_temp(rdev);
443 break;
444 case THERMAL_TYPE_EVERGREEN:
Alex Deucher4fddba12011-01-06 21:19:22 -0500445 case THERMAL_TYPE_NI:
Alex Deucher21a81222010-07-02 12:58:16 -0400446 temp = evergreen_get_temp(rdev);
447 break;
Alex Deuchere33df252010-11-22 17:56:32 -0500448 case THERMAL_TYPE_SUMO:
449 temp = sumo_get_temp(rdev);
450 break;
Alex Deucher21a81222010-07-02 12:58:16 -0400451 default:
452 temp = 0;
453 break;
454 }
455
456 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
457}
458
459static ssize_t radeon_hwmon_show_name(struct device *dev,
460 struct device_attribute *attr,
461 char *buf)
462{
463 return sprintf(buf, "radeon\n");
464}
465
466static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
467static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);
468
469static struct attribute *hwmon_attributes[] = {
470 &sensor_dev_attr_temp1_input.dev_attr.attr,
471 &sensor_dev_attr_name.dev_attr.attr,
472 NULL
473};
474
475static const struct attribute_group hwmon_attrgroup = {
476 .attrs = hwmon_attributes,
477};
478
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200479static int radeon_hwmon_init(struct radeon_device *rdev)
Alex Deucher21a81222010-07-02 12:58:16 -0400480{
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200481 int err = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400482
483 rdev->pm.int_hwmon_dev = NULL;
484
485 switch (rdev->pm.int_thermal_type) {
486 case THERMAL_TYPE_RV6XX:
487 case THERMAL_TYPE_RV770:
488 case THERMAL_TYPE_EVERGREEN:
Alex Deuchere33df252010-11-22 17:56:32 -0500489 case THERMAL_TYPE_SUMO:
Alex Deucher21a81222010-07-02 12:58:16 -0400490 rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200491 if (IS_ERR(rdev->pm.int_hwmon_dev)) {
492 err = PTR_ERR(rdev->pm.int_hwmon_dev);
493 dev_err(rdev->dev,
494 "Unable to register hwmon device: %d\n", err);
495 break;
496 }
Alex Deucher21a81222010-07-02 12:58:16 -0400497 dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
498 err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
499 &hwmon_attrgroup);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200500 if (err) {
501 dev_err(rdev->dev,
502 "Unable to create hwmon sysfs file: %d\n", err);
503 hwmon_device_unregister(rdev->dev);
504 }
Alex Deucher21a81222010-07-02 12:58:16 -0400505 break;
506 default:
507 break;
508 }
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200509
510 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400511}
512
513static void radeon_hwmon_fini(struct radeon_device *rdev)
514{
515 if (rdev->pm.int_hwmon_dev) {
516 sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
517 hwmon_device_unregister(rdev->pm.int_hwmon_dev);
518 }
519}
520
Alex Deucherce8f5372010-05-07 15:10:16 -0400521void radeon_pm_suspend(struct radeon_device *rdev)
Alex Deucher56278a82009-12-28 13:58:44 -0500522{
Alex Deucherce8f5372010-05-07 15:10:16 -0400523 mutex_lock(&rdev->pm.mutex);
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000524 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000525 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
526 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000527 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400528 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100529
530 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher56278a82009-12-28 13:58:44 -0500531}
532
Alex Deucherce8f5372010-05-07 15:10:16 -0400533void radeon_pm_resume(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100534{
Alex Deuchered18a362011-01-06 21:19:32 -0500535 /* set up the default clocks if the MC ucode is loaded */
536 if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
537 if (rdev->pm.default_vddc)
538 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc);
539 if (rdev->pm.default_sclk)
540 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
541 if (rdev->pm.default_mclk)
542 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
543 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400544 /* asic init will reset the default power state */
545 mutex_lock(&rdev->pm.mutex);
546 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
547 rdev->pm.current_clock_mode_index = 0;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500548 rdev->pm.current_sclk = rdev->pm.default_sclk;
549 rdev->pm.current_mclk = rdev->pm.default_mclk;
Alex Deucher4d601732010-06-07 18:15:18 -0400550 rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000551 if (rdev->pm.pm_method == PM_METHOD_DYNPM
552 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
553 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100554 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
555 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000556 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400557 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400558 radeon_pm_compute_clocks(rdev);
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100559}
560
Rafał Miłecki74338742009-11-03 00:53:02 +0100561int radeon_pm_init(struct radeon_device *rdev)
562{
Dave Airlie26481fb2010-05-18 19:00:14 +1000563 int ret;
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200564
Alex Deucherce8f5372010-05-07 15:10:16 -0400565 /* default to profile method */
566 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400567 rdev->pm.profile = PM_PROFILE_DEFAULT;
Alex Deucherce8f5372010-05-07 15:10:16 -0400568 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
569 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
570 rdev->pm.dynpm_can_upclock = true;
571 rdev->pm.dynpm_can_downclock = true;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500572 rdev->pm.default_sclk = rdev->clock.default_sclk;
573 rdev->pm.default_mclk = rdev->clock.default_mclk;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400574 rdev->pm.current_sclk = rdev->clock.default_sclk;
575 rdev->pm.current_mclk = rdev->clock.default_mclk;
Alex Deucher21a81222010-07-02 12:58:16 -0400576 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100577
Alex Deucher56278a82009-12-28 13:58:44 -0500578 if (rdev->bios) {
579 if (rdev->is_atom_bios)
580 radeon_atombios_get_power_modes(rdev);
581 else
582 radeon_combios_get_power_modes(rdev);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400583 radeon_pm_print_states(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400584 radeon_pm_init_profile(rdev);
Alex Deuchered18a362011-01-06 21:19:32 -0500585 /* set up the default clocks if the MC ucode is loaded */
586 if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
587 if (rdev->pm.default_vddc)
588 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc);
589 if (rdev->pm.default_sclk)
590 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
591 if (rdev->pm.default_mclk)
592 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
593 }
Alex Deucher56278a82009-12-28 13:58:44 -0500594 }
595
Alex Deucher21a81222010-07-02 12:58:16 -0400596 /* set up the internal thermal sensor if applicable */
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200597 ret = radeon_hwmon_init(rdev);
598 if (ret)
599 return ret;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100600
601 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
602
Alex Deucherce8f5372010-05-07 15:10:16 -0400603 if (rdev->pm.num_power_states > 1) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400604 /* where's the best place to put these? */
Dave Airlie26481fb2010-05-18 19:00:14 +1000605 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
606 if (ret)
607 DRM_ERROR("failed to create device file for power profile\n");
608 ret = device_create_file(rdev->dev, &dev_attr_power_method);
609 if (ret)
610 DRM_ERROR("failed to create device file for power method\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400611
612#ifdef CONFIG_ACPI
613 rdev->acpi_nb.notifier_call = radeon_acpi_event;
614 register_acpi_notifier(&rdev->acpi_nb);
615#endif
Alex Deucherce8f5372010-05-07 15:10:16 -0400616 if (radeon_debugfs_pm_init(rdev)) {
617 DRM_ERROR("Failed to register debugfs file for PM!\n");
618 }
619
620 DRM_INFO("radeon: power management initialized\n");
Rafał Miłecki74338742009-11-03 00:53:02 +0100621 }
622
623 return 0;
624}
625
Alex Deucher29fb52c2010-03-11 10:01:17 -0500626void radeon_pm_fini(struct radeon_device *rdev)
627{
Alex Deucherce8f5372010-05-07 15:10:16 -0400628 if (rdev->pm.num_power_states > 1) {
Alex Deuchera4248162010-04-24 14:50:23 -0400629 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400630 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
631 rdev->pm.profile = PM_PROFILE_DEFAULT;
632 radeon_pm_update_profile(rdev);
633 radeon_pm_set_clocks(rdev);
634 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400635 /* reset default clocks */
636 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
637 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
638 radeon_pm_set_clocks(rdev);
639 }
Alex Deuchera4248162010-04-24 14:50:23 -0400640 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100641
642 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher58e21df2010-03-22 13:31:08 -0400643
Alex Deucherce8f5372010-05-07 15:10:16 -0400644 device_remove_file(rdev->dev, &dev_attr_power_profile);
645 device_remove_file(rdev->dev, &dev_attr_power_method);
646#ifdef CONFIG_ACPI
647 unregister_acpi_notifier(&rdev->acpi_nb);
648#endif
649 }
Alex Deuchera4248162010-04-24 14:50:23 -0400650
Alex Deucher0975b162011-02-02 18:42:03 -0500651 if (rdev->pm.power_state)
652 kfree(rdev->pm.power_state);
653
Alex Deucher21a81222010-07-02 12:58:16 -0400654 radeon_hwmon_fini(rdev);
Alex Deucher29fb52c2010-03-11 10:01:17 -0500655}
656
Rafał Miłeckic913e232009-12-22 23:02:16 +0100657void radeon_pm_compute_clocks(struct radeon_device *rdev)
658{
659 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400660 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100661 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100662
Alex Deucherce8f5372010-05-07 15:10:16 -0400663 if (rdev->pm.num_power_states < 2)
664 return;
665
Rafał Miłeckic913e232009-12-22 23:02:16 +0100666 mutex_lock(&rdev->pm.mutex);
667
668 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400669 rdev->pm.active_crtc_count = 0;
670 list_for_each_entry(crtc,
671 &ddev->mode_config.crtc_list, head) {
672 radeon_crtc = to_radeon_crtc(crtc);
673 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100674 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400675 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100676 }
677 }
678
Alex Deucherce8f5372010-05-07 15:10:16 -0400679 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
680 radeon_pm_update_profile(rdev);
681 radeon_pm_set_clocks(rdev);
682 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
683 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
684 if (rdev->pm.active_crtc_count > 1) {
685 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
686 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Alex Deucherd7311172010-05-03 01:13:14 -0400687
Alex Deucherce8f5372010-05-07 15:10:16 -0400688 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
689 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
690 radeon_pm_get_dynpm_state(rdev);
691 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100692
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000693 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400694 }
695 } else if (rdev->pm.active_crtc_count == 1) {
696 /* TODO: Increase clocks if needed for current mode */
Rafał Miłeckic913e232009-12-22 23:02:16 +0100697
Alex Deucherce8f5372010-05-07 15:10:16 -0400698 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
699 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
700 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
701 radeon_pm_get_dynpm_state(rdev);
702 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100703
Tejun Heo32c87fc2011-01-03 14:49:32 +0100704 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
705 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deucherce8f5372010-05-07 15:10:16 -0400706 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
707 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100708 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
709 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000710 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400711 }
712 } else { /* count == 0 */
713 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
714 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100715
Alex Deucherce8f5372010-05-07 15:10:16 -0400716 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
717 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
718 radeon_pm_get_dynpm_state(rdev);
719 radeon_pm_set_clocks(rdev);
720 }
721 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100722 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100723 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100724
725 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100726}
727
Alex Deucherce8f5372010-05-07 15:10:16 -0400728static bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +1000729{
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400730 int crtc, vpos, hpos, vbl_status;
Dave Airlief7352612010-02-18 15:58:36 +1000731 bool in_vbl = true;
732
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400733 /* Iterate over all active crtc's. All crtc's must be in vblank,
734 * otherwise return in_vbl == false.
735 */
736 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
737 if (rdev->pm.active_crtcs & (1 << crtc)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +0200738 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
739 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
740 !(vbl_status & DRM_SCANOUTPOS_INVBL))
Dave Airlief7352612010-02-18 15:58:36 +1000741 in_vbl = false;
742 }
743 }
Matthew Garrettf81f2022010-04-28 12:13:06 -0400744
745 return in_vbl;
746}
747
Alex Deucherce8f5372010-05-07 15:10:16 -0400748static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
Matthew Garrettf81f2022010-04-28 12:13:06 -0400749{
750 u32 stat_crtc = 0;
751 bool in_vbl = radeon_pm_in_vbl(rdev);
752
Dave Airlief7352612010-02-18 15:58:36 +1000753 if (in_vbl == false)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000754 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
Alex Deucherbae6b5622010-04-22 13:38:05 -0400755 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +1000756 return in_vbl;
757}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100758
Alex Deucherce8f5372010-05-07 15:10:16 -0400759static void radeon_dynpm_idle_work_handler(struct work_struct *work)
Rafał Miłeckic913e232009-12-22 23:02:16 +0100760{
761 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -0400762 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100763 rdev = container_of(work, struct radeon_device,
Alex Deucherce8f5372010-05-07 15:10:16 -0400764 pm.dynpm_idle_work.work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100765
Matthew Garrettd9932a32010-04-26 16:02:26 -0400766 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100767 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400768 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100769 unsigned long irq_flags;
770 int not_processed = 0;
771
772 read_lock_irqsave(&rdev->fence_drv.lock, irq_flags);
773 if (!list_empty(&rdev->fence_drv.emited)) {
774 struct list_head *ptr;
775 list_for_each(ptr, &rdev->fence_drv.emited) {
776 /* count up to 3, that's enought info */
777 if (++not_processed >= 3)
778 break;
779 }
780 }
781 read_unlock_irqrestore(&rdev->fence_drv.lock, irq_flags);
782
783 if (not_processed >= 3) { /* should upclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400784 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
785 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
786 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
787 rdev->pm.dynpm_can_upclock) {
788 rdev->pm.dynpm_planned_action =
789 DYNPM_ACTION_UPCLOCK;
790 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100791 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
792 }
793 } else if (not_processed == 0) { /* should downclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400794 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
795 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
796 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
797 rdev->pm.dynpm_can_downclock) {
798 rdev->pm.dynpm_planned_action =
799 DYNPM_ACTION_DOWNCLOCK;
800 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100801 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
802 }
803 }
804
Alex Deucherd7311172010-05-03 01:13:14 -0400805 /* Note, radeon_pm_set_clocks is called with static_switch set
806 * to false since we want to wait for vbl to avoid flicker.
807 */
Alex Deucherce8f5372010-05-07 15:10:16 -0400808 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
809 jiffies > rdev->pm.dynpm_action_timeout) {
810 radeon_pm_get_dynpm_state(rdev);
811 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100812 }
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000813
Tejun Heo32c87fc2011-01-03 14:49:32 +0100814 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
815 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafał Miłeckic913e232009-12-22 23:02:16 +0100816 }
817 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -0400818 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100819}
820
Rafał Miłecki74338742009-11-03 00:53:02 +0100821/*
822 * Debugfs info
823 */
824#if defined(CONFIG_DEBUG_FS)
825
826static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
827{
828 struct drm_info_node *node = (struct drm_info_node *) m->private;
829 struct drm_device *dev = node->minor->dev;
830 struct radeon_device *rdev = dev->dev_private;
831
Alex Deucher9ace9f72011-01-06 21:19:26 -0500832 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
Rafał Miłecki62340772009-12-15 21:46:58 +0100833 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
Alex Deucher9ace9f72011-01-06 21:19:26 -0500834 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
Rafał Miłecki62340772009-12-15 21:46:58 +0100835 if (rdev->asic->get_memory_clock)
836 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
Rafał Miłecki0fcbe942010-06-07 18:25:21 -0400837 if (rdev->pm.current_vddc)
838 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
Rafał Miłeckiaa5120d2010-02-18 20:24:28 +0000839 if (rdev->asic->get_pcie_lanes)
840 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
Rafał Miłecki74338742009-11-03 00:53:02 +0100841
842 return 0;
843}
844
845static struct drm_info_list radeon_pm_info_list[] = {
846 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
847};
848#endif
849
Rafał Miłeckic913e232009-12-22 23:02:16 +0100850static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +0100851{
852#if defined(CONFIG_DEBUG_FS)
853 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
854#else
855 return 0;
856#endif
857}