blob: 0bfa656aa87d482fead90b86c73aac94e94849de [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 */
David Howells760285e2012-10-02 18:01:07 +010023#include <drm/drmP.h>
Rafał Miłecki74338742009-11-03 00:53:02 +010024#include "radeon.h"
Dave Airlief7352612010-02-18 15:58:36 +100025#include "avivod.h"
Alex Deucher8a83ec52011-04-12 14:49:23 -040026#include "atom.h"
Alex Deucherce8f5372010-05-07 15:10:16 -040027#include <linux/power_supply.h>
Alex Deucher21a81222010-07-02 12:58:16 -040028#include <linux/hwmon.h>
29#include <linux/hwmon-sysfs.h>
Rafał Miłecki74338742009-11-03 00:53:02 +010030
Rafał Miłeckic913e232009-12-22 23:02:16 +010031#define RADEON_IDLE_LOOP_MS 100
32#define RADEON_RECLOCK_DELAY_MS 200
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +010033#define RADEON_WAIT_VBLANK_TIMEOUT 200
Rafał Miłeckic913e232009-12-22 23:02:16 +010034
Rafał Miłeckif712d0c2010-06-07 18:29:44 -040035static const char *radeon_pm_state_type_name[5] = {
Alex Deuchereb2c27a2012-10-01 18:28:09 -040036 "",
Rafał Miłeckif712d0c2010-06-07 18:29:44 -040037 "Powersave",
38 "Battery",
39 "Balanced",
40 "Performance",
41};
42
Alex Deucherce8f5372010-05-07 15:10:16 -040043static void radeon_dynpm_idle_work_handler(struct work_struct *work);
Rafał Miłeckic913e232009-12-22 23:02:16 +010044static int radeon_debugfs_pm_init(struct radeon_device *rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -040045static bool radeon_pm_in_vbl(struct radeon_device *rdev);
46static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish);
47static void radeon_pm_update_profile(struct radeon_device *rdev);
48static void radeon_pm_set_clocks(struct radeon_device *rdev);
49
Alex Deuchera4c9e2e2011-11-04 10:09:41 -040050int radeon_pm_get_type_index(struct radeon_device *rdev,
51 enum radeon_pm_state_type ps_type,
52 int instance)
53{
54 int i;
55 int found_instance = -1;
56
57 for (i = 0; i < rdev->pm.num_power_states; i++) {
58 if (rdev->pm.power_state[i].type == ps_type) {
59 found_instance++;
60 if (found_instance == instance)
61 return i;
62 }
63 }
64 /* return default if no match */
65 return rdev->pm.default_power_state_index;
66}
67
Alex Deucherc4917072012-07-31 17:14:35 -040068void radeon_pm_acpi_event_handler(struct radeon_device *rdev)
Alex Deucherce8f5372010-05-07 15:10:16 -040069{
Alex Deucherc4917072012-07-31 17:14:35 -040070 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
71 if (rdev->pm.profile == PM_PROFILE_AUTO) {
72 mutex_lock(&rdev->pm.mutex);
73 radeon_pm_update_profile(rdev);
74 radeon_pm_set_clocks(rdev);
75 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -040076 }
77 }
Alex Deucherce8f5372010-05-07 15:10:16 -040078}
Alex Deucherce8f5372010-05-07 15:10:16 -040079
80static void radeon_pm_update_profile(struct radeon_device *rdev)
81{
82 switch (rdev->pm.profile) {
83 case PM_PROFILE_DEFAULT:
84 rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
85 break;
86 case PM_PROFILE_AUTO:
87 if (power_supply_is_system_supplied() > 0) {
88 if (rdev->pm.active_crtc_count > 1)
89 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
90 else
91 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
92 } else {
93 if (rdev->pm.active_crtc_count > 1)
Alex Deucherc9e75b22010-06-02 17:56:01 -040094 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -040095 else
Alex Deucherc9e75b22010-06-02 17:56:01 -040096 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -040097 }
98 break;
99 case PM_PROFILE_LOW:
100 if (rdev->pm.active_crtc_count > 1)
101 rdev->pm.profile_index = PM_PROFILE_LOW_MH_IDX;
102 else
103 rdev->pm.profile_index = PM_PROFILE_LOW_SH_IDX;
104 break;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400105 case PM_PROFILE_MID:
106 if (rdev->pm.active_crtc_count > 1)
107 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
108 else
109 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
110 break;
Alex Deucherce8f5372010-05-07 15:10:16 -0400111 case PM_PROFILE_HIGH:
112 if (rdev->pm.active_crtc_count > 1)
113 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
114 else
115 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
116 break;
117 }
118
119 if (rdev->pm.active_crtc_count == 0) {
120 rdev->pm.requested_power_state_index =
121 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_ps_idx;
122 rdev->pm.requested_clock_mode_index =
123 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_cm_idx;
124 } else {
125 rdev->pm.requested_power_state_index =
126 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_ps_idx;
127 rdev->pm.requested_clock_mode_index =
128 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_cm_idx;
129 }
130}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100131
Matthew Garrett5876dd22010-04-26 15:52:20 -0400132static void radeon_unmap_vram_bos(struct radeon_device *rdev)
133{
134 struct radeon_bo *bo, *n;
135
136 if (list_empty(&rdev->gem.objects))
137 return;
138
139 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
140 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
141 ttm_bo_unmap_virtual(&bo->tbo);
142 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400143}
144
Alex Deucherce8f5372010-05-07 15:10:16 -0400145static void radeon_sync_with_vblank(struct radeon_device *rdev)
146{
147 if (rdev->pm.active_crtcs) {
148 rdev->pm.vblank_sync = false;
149 wait_event_timeout(
150 rdev->irq.vblank_queue, rdev->pm.vblank_sync,
151 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
152 }
153}
154
155static void radeon_set_power_state(struct radeon_device *rdev)
156{
157 u32 sclk, mclk;
Alex Deucher92645872010-05-27 17:01:41 -0400158 bool misc_after = false;
Alex Deucherce8f5372010-05-07 15:10:16 -0400159
160 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
161 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
162 return;
163
164 if (radeon_gui_idle(rdev)) {
165 sclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
166 clock_info[rdev->pm.requested_clock_mode_index].sclk;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500167 if (sclk > rdev->pm.default_sclk)
168 sclk = rdev->pm.default_sclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400169
Alex Deucher27810fb2012-10-01 19:25:11 -0400170 /* starting with BTC, there is one state that is used for both
171 * MH and SH. Difference is that we always use the high clock index for
172 * mclk.
173 */
174 if ((rdev->pm.pm_method == PM_METHOD_PROFILE) &&
175 (rdev->family >= CHIP_BARTS) &&
176 rdev->pm.active_crtc_count &&
177 ((rdev->pm.profile_index == PM_PROFILE_MID_MH_IDX) ||
178 (rdev->pm.profile_index == PM_PROFILE_LOW_MH_IDX)))
179 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
180 clock_info[rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx].mclk;
181 else
182 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
183 clock_info[rdev->pm.requested_clock_mode_index].mclk;
184
Alex Deucher9ace9f72011-01-06 21:19:26 -0500185 if (mclk > rdev->pm.default_mclk)
186 mclk = rdev->pm.default_mclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400187
Alex Deucher92645872010-05-27 17:01:41 -0400188 /* upvolt before raising clocks, downvolt after lowering clocks */
189 if (sclk < rdev->pm.current_sclk)
190 misc_after = true;
191
192 radeon_sync_with_vblank(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400193
194 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400195 if (!radeon_pm_in_vbl(rdev))
196 return;
Alex Deucherce8f5372010-05-07 15:10:16 -0400197 }
198
Alex Deucher92645872010-05-27 17:01:41 -0400199 radeon_pm_prepare(rdev);
200
201 if (!misc_after)
202 /* voltage, pcie lanes, etc.*/
203 radeon_pm_misc(rdev);
204
205 /* set engine clock */
206 if (sclk != rdev->pm.current_sclk) {
207 radeon_pm_debug_check_in_vbl(rdev, false);
208 radeon_set_engine_clock(rdev, sclk);
209 radeon_pm_debug_check_in_vbl(rdev, true);
210 rdev->pm.current_sclk = sclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000211 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
Alex Deucher92645872010-05-27 17:01:41 -0400212 }
213
214 /* set memory clock */
Alex Deucher798bcf72012-02-23 17:53:48 -0500215 if (rdev->asic->pm.set_memory_clock && (mclk != rdev->pm.current_mclk)) {
Alex Deucher92645872010-05-27 17:01:41 -0400216 radeon_pm_debug_check_in_vbl(rdev, false);
217 radeon_set_memory_clock(rdev, mclk);
218 radeon_pm_debug_check_in_vbl(rdev, true);
219 rdev->pm.current_mclk = mclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000220 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
Alex Deucher92645872010-05-27 17:01:41 -0400221 }
222
223 if (misc_after)
224 /* voltage, pcie lanes, etc.*/
225 radeon_pm_misc(rdev);
226
227 radeon_pm_finish(rdev);
228
Alex Deucherce8f5372010-05-07 15:10:16 -0400229 rdev->pm.current_power_state_index = rdev->pm.requested_power_state_index;
230 rdev->pm.current_clock_mode_index = rdev->pm.requested_clock_mode_index;
231 } else
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000232 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400233}
234
235static void radeon_pm_set_clocks(struct radeon_device *rdev)
Alex Deuchera4248162010-04-24 14:50:23 -0400236{
Jerome Glisse5f8f6352012-12-17 11:04:32 -0500237 int i, r;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400238
Alex Deucher4e186b22010-08-13 10:53:35 -0400239 /* no need to take locks, etc. if nothing's going to change */
240 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
241 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
242 return;
243
Matthew Garrett612e06c2010-04-27 17:16:58 -0400244 mutex_lock(&rdev->ddev->struct_mutex);
Christian Königdb7fce32012-05-11 14:57:18 +0200245 down_write(&rdev->pm.mclk_lock);
Christian Königd6999bc2012-05-09 15:34:45 +0200246 mutex_lock(&rdev->ring_lock);
Alex Deucher4f3218c2010-04-29 16:14:02 -0400247
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400248 /* wait for the rings to drain */
249 for (i = 0; i < RADEON_NUM_RINGS; i++) {
250 struct radeon_ring *ring = &rdev->ring[i];
Jerome Glisse5f8f6352012-12-17 11:04:32 -0500251 if (!ring->ready) {
252 continue;
253 }
254 r = radeon_fence_wait_empty_locked(rdev, i);
255 if (r) {
256 /* needs a GPU reset dont reset here */
257 mutex_unlock(&rdev->ring_lock);
258 up_write(&rdev->pm.mclk_lock);
259 mutex_unlock(&rdev->ddev->struct_mutex);
260 return;
261 }
Alex Deucher4f3218c2010-04-29 16:14:02 -0400262 }
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400263
Matthew Garrett5876dd22010-04-26 15:52:20 -0400264 radeon_unmap_vram_bos(rdev);
265
Alex Deucherce8f5372010-05-07 15:10:16 -0400266 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400267 for (i = 0; i < rdev->num_crtc; i++) {
268 if (rdev->pm.active_crtcs & (1 << i)) {
269 rdev->pm.req_vblank |= (1 << i);
270 drm_vblank_get(rdev->ddev, i);
271 }
272 }
273 }
Alex Deucher539d2412010-04-29 00:22:43 -0400274
Alex Deucherce8f5372010-05-07 15:10:16 -0400275 radeon_set_power_state(rdev);
Alex Deuchera4248162010-04-24 14:50:23 -0400276
Alex Deucherce8f5372010-05-07 15:10:16 -0400277 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400278 for (i = 0; i < rdev->num_crtc; i++) {
279 if (rdev->pm.req_vblank & (1 << i)) {
280 rdev->pm.req_vblank &= ~(1 << i);
281 drm_vblank_put(rdev->ddev, i);
282 }
283 }
284 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400285
Alex Deuchera4248162010-04-24 14:50:23 -0400286 /* update display watermarks based on new power state */
287 radeon_update_bandwidth_info(rdev);
288 if (rdev->pm.active_crtc_count)
289 radeon_bandwidth_update(rdev);
290
Alex Deucherce8f5372010-05-07 15:10:16 -0400291 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400292
Christian Königd6999bc2012-05-09 15:34:45 +0200293 mutex_unlock(&rdev->ring_lock);
Christian Königdb7fce32012-05-11 14:57:18 +0200294 up_write(&rdev->pm.mclk_lock);
Matthew Garrett612e06c2010-04-27 17:16:58 -0400295 mutex_unlock(&rdev->ddev->struct_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400296}
297
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400298static void radeon_pm_print_states(struct radeon_device *rdev)
299{
300 int i, j;
301 struct radeon_power_state *power_state;
302 struct radeon_pm_clock_info *clock_info;
303
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000304 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400305 for (i = 0; i < rdev->pm.num_power_states; i++) {
306 power_state = &rdev->pm.power_state[i];
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000307 DRM_DEBUG_DRIVER("State %d: %s\n", i,
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400308 radeon_pm_state_type_name[power_state->type]);
309 if (i == rdev->pm.default_power_state_index)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000310 DRM_DEBUG_DRIVER("\tDefault");
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400311 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000312 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400313 if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000314 DRM_DEBUG_DRIVER("\tSingle display only\n");
315 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400316 for (j = 0; j < power_state->num_clock_modes; j++) {
317 clock_info = &(power_state->clock_info[j]);
318 if (rdev->flags & RADEON_IS_IGP)
Alex Deuchereb2c27a2012-10-01 18:28:09 -0400319 DRM_DEBUG_DRIVER("\t\t%d e: %d\n",
320 j,
321 clock_info->sclk * 10);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400322 else
Alex Deuchereb2c27a2012-10-01 18:28:09 -0400323 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d\n",
324 j,
325 clock_info->sclk * 10,
326 clock_info->mclk * 10,
327 clock_info->voltage.voltage);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400328 }
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 Deucher1bd47d22012-03-20 17:18:10 -0400451 case THERMAL_TYPE_SI:
452 temp = si_get_temp(rdev);
453 break;
Alex Deucher21a81222010-07-02 12:58:16 -0400454 default:
455 temp = 0;
456 break;
457 }
458
459 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
460}
461
462static ssize_t radeon_hwmon_show_name(struct device *dev,
463 struct device_attribute *attr,
464 char *buf)
465{
466 return sprintf(buf, "radeon\n");
467}
468
469static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
470static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);
471
472static struct attribute *hwmon_attributes[] = {
473 &sensor_dev_attr_temp1_input.dev_attr.attr,
474 &sensor_dev_attr_name.dev_attr.attr,
475 NULL
476};
477
478static const struct attribute_group hwmon_attrgroup = {
479 .attrs = hwmon_attributes,
480};
481
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200482static int radeon_hwmon_init(struct radeon_device *rdev)
Alex Deucher21a81222010-07-02 12:58:16 -0400483{
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200484 int err = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400485
486 rdev->pm.int_hwmon_dev = NULL;
487
488 switch (rdev->pm.int_thermal_type) {
489 case THERMAL_TYPE_RV6XX:
490 case THERMAL_TYPE_RV770:
491 case THERMAL_TYPE_EVERGREEN:
Alex Deucher457558e2011-05-25 17:49:54 -0400492 case THERMAL_TYPE_NI:
Alex Deuchere33df252010-11-22 17:56:32 -0500493 case THERMAL_TYPE_SUMO:
Alex Deucher1bd47d22012-03-20 17:18:10 -0400494 case THERMAL_TYPE_SI:
Alex Deucher5d7486c2012-03-20 17:18:29 -0400495 /* No support for TN yet */
496 if (rdev->family == CHIP_ARUBA)
497 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400498 rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200499 if (IS_ERR(rdev->pm.int_hwmon_dev)) {
500 err = PTR_ERR(rdev->pm.int_hwmon_dev);
501 dev_err(rdev->dev,
502 "Unable to register hwmon device: %d\n", err);
503 break;
504 }
Alex Deucher21a81222010-07-02 12:58:16 -0400505 dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
506 err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
507 &hwmon_attrgroup);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200508 if (err) {
509 dev_err(rdev->dev,
510 "Unable to create hwmon sysfs file: %d\n", err);
511 hwmon_device_unregister(rdev->dev);
512 }
Alex Deucher21a81222010-07-02 12:58:16 -0400513 break;
514 default:
515 break;
516 }
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200517
518 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400519}
520
521static void radeon_hwmon_fini(struct radeon_device *rdev)
522{
523 if (rdev->pm.int_hwmon_dev) {
524 sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
525 hwmon_device_unregister(rdev->pm.int_hwmon_dev);
526 }
527}
528
Alex Deucherce8f5372010-05-07 15:10:16 -0400529void radeon_pm_suspend(struct radeon_device *rdev)
Alex Deucher56278a82009-12-28 13:58:44 -0500530{
Alex Deucherce8f5372010-05-07 15:10:16 -0400531 mutex_lock(&rdev->pm.mutex);
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000532 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000533 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
534 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000535 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400536 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100537
538 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher56278a82009-12-28 13:58:44 -0500539}
540
Alex Deucherce8f5372010-05-07 15:10:16 -0400541void radeon_pm_resume(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100542{
Alex Deuchered18a362011-01-06 21:19:32 -0500543 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400544 if ((rdev->family >= CHIP_BARTS) &&
545 (rdev->family <= CHIP_CAYMAN) &&
546 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -0500547 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400548 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
549 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher2feea492011-04-12 14:49:24 -0400550 if (rdev->pm.default_vddci)
551 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
552 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -0500553 if (rdev->pm.default_sclk)
554 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
555 if (rdev->pm.default_mclk)
556 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
557 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400558 /* asic init will reset the default power state */
559 mutex_lock(&rdev->pm.mutex);
560 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
561 rdev->pm.current_clock_mode_index = 0;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500562 rdev->pm.current_sclk = rdev->pm.default_sclk;
563 rdev->pm.current_mclk = rdev->pm.default_mclk;
Alex Deucher4d601732010-06-07 18:15:18 -0400564 rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage;
Alex Deucher2feea492011-04-12 14:49:24 -0400565 rdev->pm.current_vddci = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.vddci;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000566 if (rdev->pm.pm_method == PM_METHOD_DYNPM
567 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
568 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100569 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
570 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000571 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400572 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400573 radeon_pm_compute_clocks(rdev);
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100574}
575
Rafał Miłecki74338742009-11-03 00:53:02 +0100576int radeon_pm_init(struct radeon_device *rdev)
577{
Dave Airlie26481fb2010-05-18 19:00:14 +1000578 int ret;
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200579
Alex Deucherce8f5372010-05-07 15:10:16 -0400580 /* default to profile method */
581 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400582 rdev->pm.profile = PM_PROFILE_DEFAULT;
Alex Deucherce8f5372010-05-07 15:10:16 -0400583 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
584 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
585 rdev->pm.dynpm_can_upclock = true;
586 rdev->pm.dynpm_can_downclock = true;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500587 rdev->pm.default_sclk = rdev->clock.default_sclk;
588 rdev->pm.default_mclk = rdev->clock.default_mclk;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400589 rdev->pm.current_sclk = rdev->clock.default_sclk;
590 rdev->pm.current_mclk = rdev->clock.default_mclk;
Alex Deucher21a81222010-07-02 12:58:16 -0400591 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100592
Alex Deucher56278a82009-12-28 13:58:44 -0500593 if (rdev->bios) {
594 if (rdev->is_atom_bios)
595 radeon_atombios_get_power_modes(rdev);
596 else
597 radeon_combios_get_power_modes(rdev);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400598 radeon_pm_print_states(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400599 radeon_pm_init_profile(rdev);
Alex Deuchered18a362011-01-06 21:19:32 -0500600 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400601 if ((rdev->family >= CHIP_BARTS) &&
602 (rdev->family <= CHIP_CAYMAN) &&
603 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -0500604 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400605 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
606 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher4639dd22011-07-25 18:50:08 -0400607 if (rdev->pm.default_vddci)
608 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
609 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -0500610 if (rdev->pm.default_sclk)
611 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
612 if (rdev->pm.default_mclk)
613 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
614 }
Alex Deucher56278a82009-12-28 13:58:44 -0500615 }
616
Alex Deucher21a81222010-07-02 12:58:16 -0400617 /* set up the internal thermal sensor if applicable */
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200618 ret = radeon_hwmon_init(rdev);
619 if (ret)
620 return ret;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100621
622 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
623
Alex Deucherce8f5372010-05-07 15:10:16 -0400624 if (rdev->pm.num_power_states > 1) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400625 /* where's the best place to put these? */
Dave Airlie26481fb2010-05-18 19:00:14 +1000626 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
627 if (ret)
628 DRM_ERROR("failed to create device file for power profile\n");
629 ret = device_create_file(rdev->dev, &dev_attr_power_method);
630 if (ret)
631 DRM_ERROR("failed to create device file for power method\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400632
Alex Deucherce8f5372010-05-07 15:10:16 -0400633 if (radeon_debugfs_pm_init(rdev)) {
634 DRM_ERROR("Failed to register debugfs file for PM!\n");
635 }
636
637 DRM_INFO("radeon: power management initialized\n");
Rafał Miłecki74338742009-11-03 00:53:02 +0100638 }
639
640 return 0;
641}
642
Alex Deucher29fb52c2010-03-11 10:01:17 -0500643void radeon_pm_fini(struct radeon_device *rdev)
644{
Alex Deucherce8f5372010-05-07 15:10:16 -0400645 if (rdev->pm.num_power_states > 1) {
Alex Deuchera4248162010-04-24 14:50:23 -0400646 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400647 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
648 rdev->pm.profile = PM_PROFILE_DEFAULT;
649 radeon_pm_update_profile(rdev);
650 radeon_pm_set_clocks(rdev);
651 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400652 /* reset default clocks */
653 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
654 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
655 radeon_pm_set_clocks(rdev);
656 }
Alex Deuchera4248162010-04-24 14:50:23 -0400657 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100658
659 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher58e21df2010-03-22 13:31:08 -0400660
Alex Deucherce8f5372010-05-07 15:10:16 -0400661 device_remove_file(rdev->dev, &dev_attr_power_profile);
662 device_remove_file(rdev->dev, &dev_attr_power_method);
Alex Deucherce8f5372010-05-07 15:10:16 -0400663 }
Alex Deuchera4248162010-04-24 14:50:23 -0400664
Alex Deucher0975b162011-02-02 18:42:03 -0500665 if (rdev->pm.power_state)
666 kfree(rdev->pm.power_state);
667
Alex Deucher21a81222010-07-02 12:58:16 -0400668 radeon_hwmon_fini(rdev);
Alex Deucher29fb52c2010-03-11 10:01:17 -0500669}
670
Rafał Miłeckic913e232009-12-22 23:02:16 +0100671void radeon_pm_compute_clocks(struct radeon_device *rdev)
672{
673 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400674 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100675 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100676
Alex Deucherce8f5372010-05-07 15:10:16 -0400677 if (rdev->pm.num_power_states < 2)
678 return;
679
Rafał Miłeckic913e232009-12-22 23:02:16 +0100680 mutex_lock(&rdev->pm.mutex);
681
682 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400683 rdev->pm.active_crtc_count = 0;
684 list_for_each_entry(crtc,
685 &ddev->mode_config.crtc_list, head) {
686 radeon_crtc = to_radeon_crtc(crtc);
687 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100688 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400689 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100690 }
691 }
692
Alex Deucherce8f5372010-05-07 15:10:16 -0400693 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
694 radeon_pm_update_profile(rdev);
695 radeon_pm_set_clocks(rdev);
696 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
697 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
698 if (rdev->pm.active_crtc_count > 1) {
699 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
700 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Alex Deucherd7311172010-05-03 01:13:14 -0400701
Alex Deucherce8f5372010-05-07 15:10:16 -0400702 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
703 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
704 radeon_pm_get_dynpm_state(rdev);
705 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100706
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000707 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400708 }
709 } else if (rdev->pm.active_crtc_count == 1) {
710 /* TODO: Increase clocks if needed for current mode */
Rafał Miłeckic913e232009-12-22 23:02:16 +0100711
Alex Deucherce8f5372010-05-07 15:10:16 -0400712 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
713 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
714 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
715 radeon_pm_get_dynpm_state(rdev);
716 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100717
Tejun Heo32c87fc2011-01-03 14:49:32 +0100718 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
719 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deucherce8f5372010-05-07 15:10:16 -0400720 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
721 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100722 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
723 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000724 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400725 }
726 } else { /* count == 0 */
727 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
728 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100729
Alex Deucherce8f5372010-05-07 15:10:16 -0400730 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
731 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
732 radeon_pm_get_dynpm_state(rdev);
733 radeon_pm_set_clocks(rdev);
734 }
735 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100736 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100737 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100738
739 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100740}
741
Alex Deucherce8f5372010-05-07 15:10:16 -0400742static bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +1000743{
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400744 int crtc, vpos, hpos, vbl_status;
Dave Airlief7352612010-02-18 15:58:36 +1000745 bool in_vbl = true;
746
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400747 /* Iterate over all active crtc's. All crtc's must be in vblank,
748 * otherwise return in_vbl == false.
749 */
750 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
751 if (rdev->pm.active_crtcs & (1 << crtc)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +0200752 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
753 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
754 !(vbl_status & DRM_SCANOUTPOS_INVBL))
Dave Airlief7352612010-02-18 15:58:36 +1000755 in_vbl = false;
756 }
757 }
Matthew Garrettf81f2022010-04-28 12:13:06 -0400758
759 return in_vbl;
760}
761
Alex Deucherce8f5372010-05-07 15:10:16 -0400762static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
Matthew Garrettf81f2022010-04-28 12:13:06 -0400763{
764 u32 stat_crtc = 0;
765 bool in_vbl = radeon_pm_in_vbl(rdev);
766
Dave Airlief7352612010-02-18 15:58:36 +1000767 if (in_vbl == false)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000768 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
Alex Deucherbae6b5622010-04-22 13:38:05 -0400769 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +1000770 return in_vbl;
771}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100772
Alex Deucherce8f5372010-05-07 15:10:16 -0400773static void radeon_dynpm_idle_work_handler(struct work_struct *work)
Rafał Miłeckic913e232009-12-22 23:02:16 +0100774{
775 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -0400776 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100777 rdev = container_of(work, struct radeon_device,
Alex Deucherce8f5372010-05-07 15:10:16 -0400778 pm.dynpm_idle_work.work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100779
Matthew Garrettd9932a32010-04-26 16:02:26 -0400780 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100781 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400782 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100783 int not_processed = 0;
Alex Deucher74652802011-08-25 13:39:48 -0400784 int i;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100785
Alex Deucher74652802011-08-25 13:39:48 -0400786 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
Alex Deucher0ec06122012-06-14 15:54:57 -0400787 struct radeon_ring *ring = &rdev->ring[i];
788
789 if (ring->ready) {
790 not_processed += radeon_fence_count_emitted(rdev, i);
791 if (not_processed >= 3)
792 break;
793 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100794 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100795
796 if (not_processed >= 3) { /* should upclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400797 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
798 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
799 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
800 rdev->pm.dynpm_can_upclock) {
801 rdev->pm.dynpm_planned_action =
802 DYNPM_ACTION_UPCLOCK;
803 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100804 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
805 }
806 } else if (not_processed == 0) { /* should downclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400807 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
808 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
809 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
810 rdev->pm.dynpm_can_downclock) {
811 rdev->pm.dynpm_planned_action =
812 DYNPM_ACTION_DOWNCLOCK;
813 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100814 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
815 }
816 }
817
Alex Deucherd7311172010-05-03 01:13:14 -0400818 /* Note, radeon_pm_set_clocks is called with static_switch set
819 * to false since we want to wait for vbl to avoid flicker.
820 */
Alex Deucherce8f5372010-05-07 15:10:16 -0400821 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
822 jiffies > rdev->pm.dynpm_action_timeout) {
823 radeon_pm_get_dynpm_state(rdev);
824 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100825 }
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000826
Tejun Heo32c87fc2011-01-03 14:49:32 +0100827 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
828 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafał Miłeckic913e232009-12-22 23:02:16 +0100829 }
830 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -0400831 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100832}
833
Rafał Miłecki74338742009-11-03 00:53:02 +0100834/*
835 * Debugfs info
836 */
837#if defined(CONFIG_DEBUG_FS)
838
839static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
840{
841 struct drm_info_node *node = (struct drm_info_node *) m->private;
842 struct drm_device *dev = node->minor->dev;
843 struct radeon_device *rdev = dev->dev_private;
844
Alex Deucher9ace9f72011-01-06 21:19:26 -0500845 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
Rafał Miłecki62340772009-12-15 21:46:58 +0100846 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
Alex Deucher9ace9f72011-01-06 21:19:26 -0500847 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
Alex Deucher798bcf72012-02-23 17:53:48 -0500848 if (rdev->asic->pm.get_memory_clock)
Rafał Miłecki62340772009-12-15 21:46:58 +0100849 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
Rafał Miłecki0fcbe942010-06-07 18:25:21 -0400850 if (rdev->pm.current_vddc)
851 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
Alex Deucher798bcf72012-02-23 17:53:48 -0500852 if (rdev->asic->pm.get_pcie_lanes)
Rafał Miłeckiaa5120d2010-02-18 20:24:28 +0000853 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
Rafał Miłecki74338742009-11-03 00:53:02 +0100854
855 return 0;
856}
857
858static struct drm_info_list radeon_pm_info_list[] = {
859 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
860};
861#endif
862
Rafał Miłeckic913e232009-12-22 23:02:16 +0100863static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +0100864{
865#if defined(CONFIG_DEBUG_FS)
866 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
867#else
868 return 0;
869#endif
870}