blob: 7fc76d165e8995cb391d4f96f1d20c9481bb2ea6 [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 Deucher1c71bda2013-09-09 19:11:52 -040070 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
71 mutex_lock(&rdev->pm.mutex);
72 if (power_supply_is_system_supplied() > 0)
73 rdev->pm.dpm.ac_power = true;
74 else
75 rdev->pm.dpm.ac_power = false;
76 if (rdev->asic->dpm.enable_bapm)
77 radeon_dpm_enable_bapm(rdev, rdev->pm.dpm.ac_power);
78 mutex_unlock(&rdev->pm.mutex);
79 } else if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
Alex Deucherc4917072012-07-31 17:14:35 -040080 if (rdev->pm.profile == PM_PROFILE_AUTO) {
81 mutex_lock(&rdev->pm.mutex);
82 radeon_pm_update_profile(rdev);
83 radeon_pm_set_clocks(rdev);
84 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -040085 }
86 }
Alex Deucherce8f5372010-05-07 15:10:16 -040087}
Alex Deucherce8f5372010-05-07 15:10:16 -040088
89static void radeon_pm_update_profile(struct radeon_device *rdev)
90{
91 switch (rdev->pm.profile) {
92 case PM_PROFILE_DEFAULT:
93 rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
94 break;
95 case PM_PROFILE_AUTO:
96 if (power_supply_is_system_supplied() > 0) {
97 if (rdev->pm.active_crtc_count > 1)
98 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
99 else
100 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
101 } else {
102 if (rdev->pm.active_crtc_count > 1)
Alex Deucherc9e75b22010-06-02 17:56:01 -0400103 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -0400104 else
Alex Deucherc9e75b22010-06-02 17:56:01 -0400105 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -0400106 }
107 break;
108 case PM_PROFILE_LOW:
109 if (rdev->pm.active_crtc_count > 1)
110 rdev->pm.profile_index = PM_PROFILE_LOW_MH_IDX;
111 else
112 rdev->pm.profile_index = PM_PROFILE_LOW_SH_IDX;
113 break;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400114 case PM_PROFILE_MID:
115 if (rdev->pm.active_crtc_count > 1)
116 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
117 else
118 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
119 break;
Alex Deucherce8f5372010-05-07 15:10:16 -0400120 case PM_PROFILE_HIGH:
121 if (rdev->pm.active_crtc_count > 1)
122 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
123 else
124 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
125 break;
126 }
127
128 if (rdev->pm.active_crtc_count == 0) {
129 rdev->pm.requested_power_state_index =
130 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_ps_idx;
131 rdev->pm.requested_clock_mode_index =
132 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_cm_idx;
133 } else {
134 rdev->pm.requested_power_state_index =
135 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_ps_idx;
136 rdev->pm.requested_clock_mode_index =
137 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_cm_idx;
138 }
139}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100140
Matthew Garrett5876dd22010-04-26 15:52:20 -0400141static void radeon_unmap_vram_bos(struct radeon_device *rdev)
142{
143 struct radeon_bo *bo, *n;
144
145 if (list_empty(&rdev->gem.objects))
146 return;
147
148 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
149 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
150 ttm_bo_unmap_virtual(&bo->tbo);
151 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400152}
153
Alex Deucherce8f5372010-05-07 15:10:16 -0400154static void radeon_sync_with_vblank(struct radeon_device *rdev)
155{
156 if (rdev->pm.active_crtcs) {
157 rdev->pm.vblank_sync = false;
158 wait_event_timeout(
159 rdev->irq.vblank_queue, rdev->pm.vblank_sync,
160 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
161 }
162}
163
164static void radeon_set_power_state(struct radeon_device *rdev)
165{
166 u32 sclk, mclk;
Alex Deucher92645872010-05-27 17:01:41 -0400167 bool misc_after = false;
Alex Deucherce8f5372010-05-07 15:10:16 -0400168
169 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
170 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
171 return;
172
173 if (radeon_gui_idle(rdev)) {
174 sclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
175 clock_info[rdev->pm.requested_clock_mode_index].sclk;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500176 if (sclk > rdev->pm.default_sclk)
177 sclk = rdev->pm.default_sclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400178
Alex Deucher27810fb2012-10-01 19:25:11 -0400179 /* starting with BTC, there is one state that is used for both
180 * MH and SH. Difference is that we always use the high clock index for
Alex Deucher7ae764b2013-02-11 08:44:48 -0500181 * mclk and vddci.
Alex Deucher27810fb2012-10-01 19:25:11 -0400182 */
183 if ((rdev->pm.pm_method == PM_METHOD_PROFILE) &&
184 (rdev->family >= CHIP_BARTS) &&
185 rdev->pm.active_crtc_count &&
186 ((rdev->pm.profile_index == PM_PROFILE_MID_MH_IDX) ||
187 (rdev->pm.profile_index == PM_PROFILE_LOW_MH_IDX)))
188 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
189 clock_info[rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx].mclk;
190 else
191 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
192 clock_info[rdev->pm.requested_clock_mode_index].mclk;
193
Alex Deucher9ace9f72011-01-06 21:19:26 -0500194 if (mclk > rdev->pm.default_mclk)
195 mclk = rdev->pm.default_mclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400196
Alex Deucher92645872010-05-27 17:01:41 -0400197 /* upvolt before raising clocks, downvolt after lowering clocks */
198 if (sclk < rdev->pm.current_sclk)
199 misc_after = true;
200
201 radeon_sync_with_vblank(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400202
203 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400204 if (!radeon_pm_in_vbl(rdev))
205 return;
Alex Deucherce8f5372010-05-07 15:10:16 -0400206 }
207
Alex Deucher92645872010-05-27 17:01:41 -0400208 radeon_pm_prepare(rdev);
209
210 if (!misc_after)
211 /* voltage, pcie lanes, etc.*/
212 radeon_pm_misc(rdev);
213
214 /* set engine clock */
215 if (sclk != rdev->pm.current_sclk) {
216 radeon_pm_debug_check_in_vbl(rdev, false);
217 radeon_set_engine_clock(rdev, sclk);
218 radeon_pm_debug_check_in_vbl(rdev, true);
219 rdev->pm.current_sclk = sclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000220 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
Alex Deucher92645872010-05-27 17:01:41 -0400221 }
222
223 /* set memory clock */
Alex Deucher798bcf72012-02-23 17:53:48 -0500224 if (rdev->asic->pm.set_memory_clock && (mclk != rdev->pm.current_mclk)) {
Alex Deucher92645872010-05-27 17:01:41 -0400225 radeon_pm_debug_check_in_vbl(rdev, false);
226 radeon_set_memory_clock(rdev, mclk);
227 radeon_pm_debug_check_in_vbl(rdev, true);
228 rdev->pm.current_mclk = mclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000229 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
Alex Deucher92645872010-05-27 17:01:41 -0400230 }
231
232 if (misc_after)
233 /* voltage, pcie lanes, etc.*/
234 radeon_pm_misc(rdev);
235
236 radeon_pm_finish(rdev);
237
Alex Deucherce8f5372010-05-07 15:10:16 -0400238 rdev->pm.current_power_state_index = rdev->pm.requested_power_state_index;
239 rdev->pm.current_clock_mode_index = rdev->pm.requested_clock_mode_index;
240 } else
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000241 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400242}
243
244static void radeon_pm_set_clocks(struct radeon_device *rdev)
Alex Deuchera4248162010-04-24 14:50:23 -0400245{
Jerome Glisse5f8f6352012-12-17 11:04:32 -0500246 int i, r;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400247
Alex Deucher4e186b22010-08-13 10:53:35 -0400248 /* no need to take locks, etc. if nothing's going to change */
249 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
250 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
251 return;
252
Matthew Garrett612e06c2010-04-27 17:16:58 -0400253 mutex_lock(&rdev->ddev->struct_mutex);
Christian Königdb7fce32012-05-11 14:57:18 +0200254 down_write(&rdev->pm.mclk_lock);
Christian Königd6999bc2012-05-09 15:34:45 +0200255 mutex_lock(&rdev->ring_lock);
Alex Deucher4f3218c2010-04-29 16:14:02 -0400256
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400257 /* wait for the rings to drain */
258 for (i = 0; i < RADEON_NUM_RINGS; i++) {
259 struct radeon_ring *ring = &rdev->ring[i];
Jerome Glisse5f8f6352012-12-17 11:04:32 -0500260 if (!ring->ready) {
261 continue;
262 }
263 r = radeon_fence_wait_empty_locked(rdev, i);
264 if (r) {
265 /* needs a GPU reset dont reset here */
266 mutex_unlock(&rdev->ring_lock);
267 up_write(&rdev->pm.mclk_lock);
268 mutex_unlock(&rdev->ddev->struct_mutex);
269 return;
270 }
Alex Deucher4f3218c2010-04-29 16:14:02 -0400271 }
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400272
Matthew Garrett5876dd22010-04-26 15:52:20 -0400273 radeon_unmap_vram_bos(rdev);
274
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.active_crtcs & (1 << i)) {
278 rdev->pm.req_vblank |= (1 << i);
279 drm_vblank_get(rdev->ddev, i);
280 }
281 }
282 }
Alex Deucher539d2412010-04-29 00:22:43 -0400283
Alex Deucherce8f5372010-05-07 15:10:16 -0400284 radeon_set_power_state(rdev);
Alex Deuchera4248162010-04-24 14:50:23 -0400285
Alex Deucherce8f5372010-05-07 15:10:16 -0400286 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400287 for (i = 0; i < rdev->num_crtc; i++) {
288 if (rdev->pm.req_vblank & (1 << i)) {
289 rdev->pm.req_vblank &= ~(1 << i);
290 drm_vblank_put(rdev->ddev, i);
291 }
292 }
293 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400294
Alex Deuchera4248162010-04-24 14:50:23 -0400295 /* update display watermarks based on new power state */
296 radeon_update_bandwidth_info(rdev);
297 if (rdev->pm.active_crtc_count)
298 radeon_bandwidth_update(rdev);
299
Alex Deucherce8f5372010-05-07 15:10:16 -0400300 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400301
Christian Königd6999bc2012-05-09 15:34:45 +0200302 mutex_unlock(&rdev->ring_lock);
Christian Königdb7fce32012-05-11 14:57:18 +0200303 up_write(&rdev->pm.mclk_lock);
Matthew Garrett612e06c2010-04-27 17:16:58 -0400304 mutex_unlock(&rdev->ddev->struct_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400305}
306
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400307static void radeon_pm_print_states(struct radeon_device *rdev)
308{
309 int i, j;
310 struct radeon_power_state *power_state;
311 struct radeon_pm_clock_info *clock_info;
312
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000313 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400314 for (i = 0; i < rdev->pm.num_power_states; i++) {
315 power_state = &rdev->pm.power_state[i];
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000316 DRM_DEBUG_DRIVER("State %d: %s\n", i,
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400317 radeon_pm_state_type_name[power_state->type]);
318 if (i == rdev->pm.default_power_state_index)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000319 DRM_DEBUG_DRIVER("\tDefault");
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400320 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000321 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400322 if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000323 DRM_DEBUG_DRIVER("\tSingle display only\n");
324 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400325 for (j = 0; j < power_state->num_clock_modes; j++) {
326 clock_info = &(power_state->clock_info[j]);
327 if (rdev->flags & RADEON_IS_IGP)
Alex Deuchereb2c27a2012-10-01 18:28:09 -0400328 DRM_DEBUG_DRIVER("\t\t%d e: %d\n",
329 j,
330 clock_info->sclk * 10);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400331 else
Alex Deuchereb2c27a2012-10-01 18:28:09 -0400332 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d\n",
333 j,
334 clock_info->sclk * 10,
335 clock_info->mclk * 10,
336 clock_info->voltage.voltage);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400337 }
338 }
339}
340
Alex Deucherce8f5372010-05-07 15:10:16 -0400341static ssize_t radeon_get_pm_profile(struct device *dev,
342 struct device_attribute *attr,
343 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400344{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200345 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deuchera4248162010-04-24 14:50:23 -0400346 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400347 int cp = rdev->pm.profile;
Alex Deuchera4248162010-04-24 14:50:23 -0400348
Alex Deucherce8f5372010-05-07 15:10:16 -0400349 return snprintf(buf, PAGE_SIZE, "%s\n",
350 (cp == PM_PROFILE_AUTO) ? "auto" :
351 (cp == PM_PROFILE_LOW) ? "low" :
Daniel J Blueman12e27be2010-07-28 12:25:58 +0100352 (cp == PM_PROFILE_MID) ? "mid" :
Alex Deucherce8f5372010-05-07 15:10:16 -0400353 (cp == PM_PROFILE_HIGH) ? "high" : "default");
Alex Deuchera4248162010-04-24 14:50:23 -0400354}
355
Alex Deucherce8f5372010-05-07 15:10:16 -0400356static ssize_t radeon_set_pm_profile(struct device *dev,
357 struct device_attribute *attr,
358 const char *buf,
359 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400360{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200361 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deuchera4248162010-04-24 14:50:23 -0400362 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400363
364 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400365 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
366 if (strncmp("default", buf, strlen("default")) == 0)
367 rdev->pm.profile = PM_PROFILE_DEFAULT;
368 else if (strncmp("auto", buf, strlen("auto")) == 0)
369 rdev->pm.profile = PM_PROFILE_AUTO;
370 else if (strncmp("low", buf, strlen("low")) == 0)
371 rdev->pm.profile = PM_PROFILE_LOW;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400372 else if (strncmp("mid", buf, strlen("mid")) == 0)
373 rdev->pm.profile = PM_PROFILE_MID;
Alex Deucherce8f5372010-05-07 15:10:16 -0400374 else if (strncmp("high", buf, strlen("high")) == 0)
375 rdev->pm.profile = PM_PROFILE_HIGH;
376 else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000377 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400378 goto fail;
Alex Deuchera4248162010-04-24 14:50:23 -0400379 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400380 radeon_pm_update_profile(rdev);
381 radeon_pm_set_clocks(rdev);
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000382 } else
383 count = -EINVAL;
384
Alex Deucherce8f5372010-05-07 15:10:16 -0400385fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400386 mutex_unlock(&rdev->pm.mutex);
387
388 return count;
389}
390
Alex Deucherce8f5372010-05-07 15:10:16 -0400391static ssize_t radeon_get_pm_method(struct device *dev,
392 struct device_attribute *attr,
393 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400394{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200395 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deuchera4248162010-04-24 14:50:23 -0400396 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400397 int pm = rdev->pm.pm_method;
Alex Deuchera4248162010-04-24 14:50:23 -0400398
399 return snprintf(buf, PAGE_SIZE, "%s\n",
Alex Deucherda321c82013-04-12 13:55:22 -0400400 (pm == PM_METHOD_DYNPM) ? "dynpm" :
401 (pm == PM_METHOD_PROFILE) ? "profile" : "dpm");
Alex Deuchera4248162010-04-24 14:50:23 -0400402}
403
Alex Deucherce8f5372010-05-07 15:10:16 -0400404static ssize_t radeon_set_pm_method(struct device *dev,
405 struct device_attribute *attr,
406 const char *buf,
407 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400408{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200409 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deuchera4248162010-04-24 14:50:23 -0400410 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400411
Alex Deucherda321c82013-04-12 13:55:22 -0400412 /* we don't support the legacy modes with dpm */
413 if (rdev->pm.pm_method == PM_METHOD_DPM) {
414 count = -EINVAL;
415 goto fail;
416 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400417
418 if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
Alex Deuchera4248162010-04-24 14:50:23 -0400419 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400420 rdev->pm.pm_method = PM_METHOD_DYNPM;
421 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
422 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
Alex Deuchera4248162010-04-24 14:50:23 -0400423 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400424 } else if (strncmp("profile", buf, strlen("profile")) == 0) {
425 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400426 /* disable dynpm */
427 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
428 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000429 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherce8f5372010-05-07 15:10:16 -0400430 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100431 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucherce8f5372010-05-07 15:10:16 -0400432 } else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000433 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400434 goto fail;
435 }
436 radeon_pm_compute_clocks(rdev);
437fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400438 return count;
439}
440
Alex Deucherda321c82013-04-12 13:55:22 -0400441static ssize_t radeon_get_dpm_state(struct device *dev,
442 struct device_attribute *attr,
443 char *buf)
444{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200445 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deucherda321c82013-04-12 13:55:22 -0400446 struct radeon_device *rdev = ddev->dev_private;
447 enum radeon_pm_state_type pm = rdev->pm.dpm.user_state;
448
449 return snprintf(buf, PAGE_SIZE, "%s\n",
450 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
451 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
452}
453
454static ssize_t radeon_set_dpm_state(struct device *dev,
455 struct device_attribute *attr,
456 const char *buf,
457 size_t count)
458{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200459 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deucherda321c82013-04-12 13:55:22 -0400460 struct radeon_device *rdev = ddev->dev_private;
461
462 mutex_lock(&rdev->pm.mutex);
463 if (strncmp("battery", buf, strlen("battery")) == 0)
464 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BATTERY;
465 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
466 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BALANCED;
467 else if (strncmp("performance", buf, strlen("performance")) == 0)
468 rdev->pm.dpm.user_state = POWER_STATE_TYPE_PERFORMANCE;
469 else {
470 mutex_unlock(&rdev->pm.mutex);
471 count = -EINVAL;
472 goto fail;
473 }
474 mutex_unlock(&rdev->pm.mutex);
475 radeon_pm_compute_clocks(rdev);
476fail:
477 return count;
478}
479
Alex Deucher70d01a52013-07-02 18:38:02 -0400480static ssize_t radeon_get_dpm_forced_performance_level(struct device *dev,
481 struct device_attribute *attr,
482 char *buf)
483{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200484 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deucher70d01a52013-07-02 18:38:02 -0400485 struct radeon_device *rdev = ddev->dev_private;
486 enum radeon_dpm_forced_level level = rdev->pm.dpm.forced_level;
487
488 return snprintf(buf, PAGE_SIZE, "%s\n",
489 (level == RADEON_DPM_FORCED_LEVEL_AUTO) ? "auto" :
490 (level == RADEON_DPM_FORCED_LEVEL_LOW) ? "low" : "high");
491}
492
493static ssize_t radeon_set_dpm_forced_performance_level(struct device *dev,
494 struct device_attribute *attr,
495 const char *buf,
496 size_t count)
497{
Jean Delvare3e4e2122013-09-10 10:30:44 +0200498 struct drm_device *ddev = dev_get_drvdata(dev);
Alex Deucher70d01a52013-07-02 18:38:02 -0400499 struct radeon_device *rdev = ddev->dev_private;
500 enum radeon_dpm_forced_level level;
501 int ret = 0;
502
503 mutex_lock(&rdev->pm.mutex);
504 if (strncmp("low", buf, strlen("low")) == 0) {
505 level = RADEON_DPM_FORCED_LEVEL_LOW;
506 } else if (strncmp("high", buf, strlen("high")) == 0) {
507 level = RADEON_DPM_FORCED_LEVEL_HIGH;
508 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
509 level = RADEON_DPM_FORCED_LEVEL_AUTO;
510 } else {
Alex Deucher70d01a52013-07-02 18:38:02 -0400511 count = -EINVAL;
512 goto fail;
513 }
514 if (rdev->asic->dpm.force_performance_level) {
Alex Deucher0a17af372013-10-23 17:22:29 -0400515 if (rdev->pm.dpm.thermal_active) {
516 count = -EINVAL;
517 goto fail;
518 }
Alex Deucher70d01a52013-07-02 18:38:02 -0400519 ret = radeon_dpm_force_performance_level(rdev, level);
520 if (ret)
521 count = -EINVAL;
522 }
Alex Deucher70d01a52013-07-02 18:38:02 -0400523fail:
Alex Deucher0a17af372013-10-23 17:22:29 -0400524 mutex_unlock(&rdev->pm.mutex);
525
Alex Deucher70d01a52013-07-02 18:38:02 -0400526 return count;
527}
528
Alex Deucherce8f5372010-05-07 15:10:16 -0400529static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
530static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
Alex Deucherda321c82013-04-12 13:55:22 -0400531static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, radeon_get_dpm_state, radeon_set_dpm_state);
Alex Deucher70d01a52013-07-02 18:38:02 -0400532static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
533 radeon_get_dpm_forced_performance_level,
534 radeon_set_dpm_forced_performance_level);
Alex Deuchera4248162010-04-24 14:50:23 -0400535
Alex Deucher21a81222010-07-02 12:58:16 -0400536static ssize_t radeon_hwmon_show_temp(struct device *dev,
537 struct device_attribute *attr,
538 char *buf)
539{
Guenter Roeckec39f642013-11-22 21:52:00 -0800540 struct radeon_device *rdev = dev_get_drvdata(dev);
Alex Deucher20d391d2011-02-01 16:12:34 -0500541 int temp;
Alex Deucher21a81222010-07-02 12:58:16 -0400542
Alex Deucher6bd1c382013-06-21 14:38:03 -0400543 if (rdev->asic->pm.get_temperature)
544 temp = radeon_get_temperature(rdev);
545 else
Alex Deucher21a81222010-07-02 12:58:16 -0400546 temp = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400547
548 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
549}
550
Jean Delvare6ea4e842013-09-10 10:32:41 +0200551static ssize_t radeon_hwmon_show_temp_thresh(struct device *dev,
552 struct device_attribute *attr,
553 char *buf)
554{
Sergey Senozhatskye4158f12013-12-13 02:25:57 +0300555 struct radeon_device *rdev = dev_get_drvdata(dev);
Jean Delvare6ea4e842013-09-10 10:32:41 +0200556 int hyst = to_sensor_dev_attr(attr)->index;
557 int temp;
558
559 if (hyst)
560 temp = rdev->pm.dpm.thermal.min_temp;
561 else
562 temp = rdev->pm.dpm.thermal.max_temp;
563
564 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
565}
566
Alex Deucher21a81222010-07-02 12:58:16 -0400567static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
Jean Delvare6ea4e842013-09-10 10:32:41 +0200568static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, radeon_hwmon_show_temp_thresh, NULL, 0);
569static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, radeon_hwmon_show_temp_thresh, NULL, 1);
Alex Deucher21a81222010-07-02 12:58:16 -0400570
571static struct attribute *hwmon_attributes[] = {
572 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare6ea4e842013-09-10 10:32:41 +0200573 &sensor_dev_attr_temp1_crit.dev_attr.attr,
574 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
Alex Deucher21a81222010-07-02 12:58:16 -0400575 NULL
576};
577
Jean Delvare6ea4e842013-09-10 10:32:41 +0200578static umode_t hwmon_attributes_visible(struct kobject *kobj,
579 struct attribute *attr, int index)
580{
581 struct device *dev = container_of(kobj, struct device, kobj);
Sergey Senozhatskye4158f12013-12-13 02:25:57 +0300582 struct radeon_device *rdev = dev_get_drvdata(dev);
Jean Delvare6ea4e842013-09-10 10:32:41 +0200583
584 /* Skip limit attributes if DPM is not enabled */
585 if (rdev->pm.pm_method != PM_METHOD_DPM &&
586 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
587 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr))
588 return 0;
589
590 return attr->mode;
591}
592
Alex Deucher21a81222010-07-02 12:58:16 -0400593static const struct attribute_group hwmon_attrgroup = {
594 .attrs = hwmon_attributes,
Jean Delvare6ea4e842013-09-10 10:32:41 +0200595 .is_visible = hwmon_attributes_visible,
Alex Deucher21a81222010-07-02 12:58:16 -0400596};
597
Guenter Roeckec39f642013-11-22 21:52:00 -0800598static const struct attribute_group *hwmon_groups[] = {
599 &hwmon_attrgroup,
600 NULL
601};
602
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200603static int radeon_hwmon_init(struct radeon_device *rdev)
Alex Deucher21a81222010-07-02 12:58:16 -0400604{
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200605 int err = 0;
Guenter Roeckec39f642013-11-22 21:52:00 -0800606 struct device *hwmon_dev;
Alex Deucher21a81222010-07-02 12:58:16 -0400607
608 switch (rdev->pm.int_thermal_type) {
609 case THERMAL_TYPE_RV6XX:
610 case THERMAL_TYPE_RV770:
611 case THERMAL_TYPE_EVERGREEN:
Alex Deucher457558e2011-05-25 17:49:54 -0400612 case THERMAL_TYPE_NI:
Alex Deuchere33df252010-11-22 17:56:32 -0500613 case THERMAL_TYPE_SUMO:
Alex Deucher1bd47d22012-03-20 17:18:10 -0400614 case THERMAL_TYPE_SI:
Alex Deucher286d9cc2013-06-21 15:50:47 -0400615 case THERMAL_TYPE_CI:
616 case THERMAL_TYPE_KV:
Alex Deucher6bd1c382013-06-21 14:38:03 -0400617 if (rdev->asic->pm.get_temperature == NULL)
Alex Deucher5d7486c2012-03-20 17:18:29 -0400618 return err;
Guenter Roeckec39f642013-11-22 21:52:00 -0800619 hwmon_dev = hwmon_device_register_with_groups(rdev->dev,
620 "radeon", rdev,
621 hwmon_groups);
622 if (IS_ERR(hwmon_dev)) {
623 err = PTR_ERR(hwmon_dev);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200624 dev_err(rdev->dev,
625 "Unable to register hwmon device: %d\n", err);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200626 }
Alex Deucher21a81222010-07-02 12:58:16 -0400627 break;
628 default:
629 break;
630 }
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200631
632 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400633}
634
Alex Deucherda321c82013-04-12 13:55:22 -0400635static void radeon_dpm_thermal_work_handler(struct work_struct *work)
636{
637 struct radeon_device *rdev =
638 container_of(work, struct radeon_device,
639 pm.dpm.thermal.work);
640 /* switch to the thermal state */
641 enum radeon_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
642
643 if (!rdev->pm.dpm_enabled)
644 return;
645
646 if (rdev->asic->pm.get_temperature) {
647 int temp = radeon_get_temperature(rdev);
648
649 if (temp < rdev->pm.dpm.thermal.min_temp)
650 /* switch back the user state */
651 dpm_state = rdev->pm.dpm.user_state;
652 } else {
653 if (rdev->pm.dpm.thermal.high_to_low)
654 /* switch back the user state */
655 dpm_state = rdev->pm.dpm.user_state;
656 }
Alex Deucher60320342013-07-24 14:59:48 -0400657 mutex_lock(&rdev->pm.mutex);
658 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
659 rdev->pm.dpm.thermal_active = true;
660 else
661 rdev->pm.dpm.thermal_active = false;
662 rdev->pm.dpm.state = dpm_state;
663 mutex_unlock(&rdev->pm.mutex);
664
665 radeon_pm_compute_clocks(rdev);
Alex Deucherda321c82013-04-12 13:55:22 -0400666}
667
668static struct radeon_ps *radeon_dpm_pick_power_state(struct radeon_device *rdev,
669 enum radeon_pm_state_type dpm_state)
670{
671 int i;
672 struct radeon_ps *ps;
673 u32 ui_class;
Alex Deucher48783062013-07-08 11:35:06 -0400674 bool single_display = (rdev->pm.dpm.new_active_crtc_count < 2) ?
675 true : false;
676
677 /* check if the vblank period is too short to adjust the mclk */
678 if (single_display && rdev->asic->dpm.vblank_too_short) {
679 if (radeon_dpm_vblank_too_short(rdev))
680 single_display = false;
681 }
Alex Deucherda321c82013-04-12 13:55:22 -0400682
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400683 /* certain older asics have a separare 3D performance state,
684 * so try that first if the user selected performance
685 */
686 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
687 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
Alex Deucherda321c82013-04-12 13:55:22 -0400688 /* balanced states don't exist at the moment */
689 if (dpm_state == POWER_STATE_TYPE_BALANCED)
690 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
691
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400692restart_search:
Alex Deucherda321c82013-04-12 13:55:22 -0400693 /* Pick the best power state based on current conditions */
694 for (i = 0; i < rdev->pm.dpm.num_ps; i++) {
695 ps = &rdev->pm.dpm.ps[i];
696 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
697 switch (dpm_state) {
698 /* user states */
699 case POWER_STATE_TYPE_BATTERY:
700 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
701 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400702 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400703 return ps;
704 } else
705 return ps;
706 }
707 break;
708 case POWER_STATE_TYPE_BALANCED:
709 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
710 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400711 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400712 return ps;
713 } else
714 return ps;
715 }
716 break;
717 case POWER_STATE_TYPE_PERFORMANCE:
718 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
719 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400720 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400721 return ps;
722 } else
723 return ps;
724 }
725 break;
726 /* internal states */
727 case POWER_STATE_TYPE_INTERNAL_UVD:
Alex Deucherd4d32782013-06-11 17:55:39 -0400728 if (rdev->pm.dpm.uvd_ps)
729 return rdev->pm.dpm.uvd_ps;
730 else
731 break;
Alex Deucherda321c82013-04-12 13:55:22 -0400732 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
733 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
734 return ps;
735 break;
736 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
737 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
738 return ps;
739 break;
740 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
741 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
742 return ps;
743 break;
744 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
745 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
746 return ps;
747 break;
748 case POWER_STATE_TYPE_INTERNAL_BOOT:
749 return rdev->pm.dpm.boot_ps;
750 case POWER_STATE_TYPE_INTERNAL_THERMAL:
751 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
752 return ps;
753 break;
754 case POWER_STATE_TYPE_INTERNAL_ACPI:
755 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
756 return ps;
757 break;
758 case POWER_STATE_TYPE_INTERNAL_ULV:
759 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
760 return ps;
761 break;
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400762 case POWER_STATE_TYPE_INTERNAL_3DPERF:
763 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
764 return ps;
765 break;
Alex Deucherda321c82013-04-12 13:55:22 -0400766 default:
767 break;
768 }
769 }
770 /* use a fallback state if we didn't match */
771 switch (dpm_state) {
772 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
Alex Deucherce3537d2013-07-24 12:12:49 -0400773 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
774 goto restart_search;
Alex Deucherda321c82013-04-12 13:55:22 -0400775 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
776 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
777 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
Alex Deucherd4d32782013-06-11 17:55:39 -0400778 if (rdev->pm.dpm.uvd_ps) {
779 return rdev->pm.dpm.uvd_ps;
780 } else {
781 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
782 goto restart_search;
783 }
Alex Deucherda321c82013-04-12 13:55:22 -0400784 case POWER_STATE_TYPE_INTERNAL_THERMAL:
785 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
786 goto restart_search;
787 case POWER_STATE_TYPE_INTERNAL_ACPI:
788 dpm_state = POWER_STATE_TYPE_BATTERY;
789 goto restart_search;
790 case POWER_STATE_TYPE_BATTERY:
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400791 case POWER_STATE_TYPE_BALANCED:
792 case POWER_STATE_TYPE_INTERNAL_3DPERF:
Alex Deucherda321c82013-04-12 13:55:22 -0400793 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
794 goto restart_search;
795 default:
796 break;
797 }
798
799 return NULL;
800}
801
802static void radeon_dpm_change_power_state_locked(struct radeon_device *rdev)
803{
804 int i;
805 struct radeon_ps *ps;
806 enum radeon_pm_state_type dpm_state;
Alex Deucher84dd1922013-01-16 12:52:04 -0500807 int ret;
Alex Deucherda321c82013-04-12 13:55:22 -0400808
809 /* if dpm init failed */
810 if (!rdev->pm.dpm_enabled)
811 return;
812
813 if (rdev->pm.dpm.user_state != rdev->pm.dpm.state) {
814 /* add other state override checks here */
Alex Deucher8a227552013-06-21 15:12:57 -0400815 if ((!rdev->pm.dpm.thermal_active) &&
816 (!rdev->pm.dpm.uvd_active))
Alex Deucherda321c82013-04-12 13:55:22 -0400817 rdev->pm.dpm.state = rdev->pm.dpm.user_state;
818 }
819 dpm_state = rdev->pm.dpm.state;
820
821 ps = radeon_dpm_pick_power_state(rdev, dpm_state);
822 if (ps)
Alex Deucher89c9bc52013-01-16 14:40:26 -0500823 rdev->pm.dpm.requested_ps = ps;
Alex Deucherda321c82013-04-12 13:55:22 -0400824 else
825 return;
826
Alex Deucherd22b7e42012-11-29 19:27:56 -0500827 /* no need to reprogram if nothing changed unless we are on BTC+ */
Alex Deucherda321c82013-04-12 13:55:22 -0400828 if (rdev->pm.dpm.current_ps == rdev->pm.dpm.requested_ps) {
Alex Deucherd22b7e42012-11-29 19:27:56 -0500829 if ((rdev->family < CHIP_BARTS) || (rdev->flags & RADEON_IS_IGP)) {
830 /* for pre-BTC and APUs if the num crtcs changed but state is the same,
831 * all we need to do is update the display configuration.
832 */
833 if (rdev->pm.dpm.new_active_crtcs != rdev->pm.dpm.current_active_crtcs) {
834 /* update display watermarks based on new power state */
835 radeon_bandwidth_update(rdev);
836 /* update displays */
837 radeon_dpm_display_configuration_changed(rdev);
838 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
839 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
840 }
841 return;
842 } else {
843 /* for BTC+ if the num crtcs hasn't changed and state is the same,
844 * nothing to do, if the num crtcs is > 1 and state is the same,
845 * update display configuration.
846 */
847 if (rdev->pm.dpm.new_active_crtcs ==
848 rdev->pm.dpm.current_active_crtcs) {
849 return;
850 } else {
851 if ((rdev->pm.dpm.current_active_crtc_count > 1) &&
852 (rdev->pm.dpm.new_active_crtc_count > 1)) {
853 /* update display watermarks based on new power state */
854 radeon_bandwidth_update(rdev);
855 /* update displays */
856 radeon_dpm_display_configuration_changed(rdev);
857 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
858 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
859 return;
860 }
861 }
Alex Deucherda321c82013-04-12 13:55:22 -0400862 }
Alex Deucherda321c82013-04-12 13:55:22 -0400863 }
864
Alex Deucher033a37d2013-10-23 18:35:43 -0400865 if (radeon_dpm == 1) {
866 printk("switching from power state:\n");
867 radeon_dpm_print_power_state(rdev, rdev->pm.dpm.current_ps);
868 printk("switching to power state:\n");
869 radeon_dpm_print_power_state(rdev, rdev->pm.dpm.requested_ps);
870 }
Alex Deucherda321c82013-04-12 13:55:22 -0400871 mutex_lock(&rdev->ddev->struct_mutex);
872 down_write(&rdev->pm.mclk_lock);
873 mutex_lock(&rdev->ring_lock);
874
Alex Deucher89c9bc52013-01-16 14:40:26 -0500875 ret = radeon_dpm_pre_set_power_state(rdev);
876 if (ret)
877 goto done;
Alex Deucher84dd1922013-01-16 12:52:04 -0500878
Alex Deucherda321c82013-04-12 13:55:22 -0400879 /* update display watermarks based on new power state */
880 radeon_bandwidth_update(rdev);
881 /* update displays */
882 radeon_dpm_display_configuration_changed(rdev);
883
884 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
885 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
886
887 /* wait for the rings to drain */
888 for (i = 0; i < RADEON_NUM_RINGS; i++) {
889 struct radeon_ring *ring = &rdev->ring[i];
890 if (ring->ready)
891 radeon_fence_wait_empty_locked(rdev, i);
892 }
893
894 /* program the new power state */
895 radeon_dpm_set_power_state(rdev);
896
897 /* update current power state */
898 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps;
899
Alex Deucher89c9bc52013-01-16 14:40:26 -0500900 radeon_dpm_post_set_power_state(rdev);
Alex Deucher84dd1922013-01-16 12:52:04 -0500901
Alex Deucher1cd8b212013-09-13 14:07:03 -0400902 if (rdev->asic->dpm.force_performance_level) {
Alex Deucher14ac88a2013-10-23 17:31:42 -0400903 if (rdev->pm.dpm.thermal_active) {
904 enum radeon_dpm_forced_level level = rdev->pm.dpm.forced_level;
Alex Deucher1cd8b212013-09-13 14:07:03 -0400905 /* force low perf level for thermal */
906 radeon_dpm_force_performance_level(rdev, RADEON_DPM_FORCED_LEVEL_LOW);
Alex Deucher14ac88a2013-10-23 17:31:42 -0400907 /* save the user's level */
908 rdev->pm.dpm.forced_level = level;
909 } else {
910 /* otherwise, user selected level */
911 radeon_dpm_force_performance_level(rdev, rdev->pm.dpm.forced_level);
912 }
Alex Deucher60320342013-07-24 14:59:48 -0400913 }
914
Alex Deucher84dd1922013-01-16 12:52:04 -0500915done:
Alex Deucherda321c82013-04-12 13:55:22 -0400916 mutex_unlock(&rdev->ring_lock);
917 up_write(&rdev->pm.mclk_lock);
918 mutex_unlock(&rdev->ddev->struct_mutex);
919}
920
Alex Deucherce3537d2013-07-24 12:12:49 -0400921void radeon_dpm_enable_uvd(struct radeon_device *rdev, bool enable)
922{
923 enum radeon_pm_state_type dpm_state;
924
Alex Deucher9e9d9762013-07-31 18:13:23 -0400925 if (rdev->asic->dpm.powergate_uvd) {
Alex Deucherce3537d2013-07-24 12:12:49 -0400926 mutex_lock(&rdev->pm.mutex);
Alex Deucher9e9d9762013-07-31 18:13:23 -0400927 /* enable/disable UVD */
928 radeon_dpm_powergate_uvd(rdev, !enable);
Alex Deucherce3537d2013-07-24 12:12:49 -0400929 mutex_unlock(&rdev->pm.mutex);
930 } else {
Alex Deucher9e9d9762013-07-31 18:13:23 -0400931 if (enable) {
932 mutex_lock(&rdev->pm.mutex);
933 rdev->pm.dpm.uvd_active = true;
Alex Deucherdca50862013-09-30 19:11:24 -0400934 /* disable this for now */
935#if 0
Alex Deucher9e9d9762013-07-31 18:13:23 -0400936 if ((rdev->pm.dpm.sd == 1) && (rdev->pm.dpm.hd == 0))
937 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_SD;
938 else if ((rdev->pm.dpm.sd == 2) && (rdev->pm.dpm.hd == 0))
939 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
940 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 1))
941 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
942 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 2))
943 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD2;
944 else
Alex Deucherdca50862013-09-30 19:11:24 -0400945#endif
Alex Deucher9e9d9762013-07-31 18:13:23 -0400946 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD;
947 rdev->pm.dpm.state = dpm_state;
948 mutex_unlock(&rdev->pm.mutex);
949 } else {
950 mutex_lock(&rdev->pm.mutex);
951 rdev->pm.dpm.uvd_active = false;
952 mutex_unlock(&rdev->pm.mutex);
953 }
Alex Deucherce3537d2013-07-24 12:12:49 -0400954
Alex Deucher9e9d9762013-07-31 18:13:23 -0400955 radeon_pm_compute_clocks(rdev);
956 }
Alex Deucherce3537d2013-07-24 12:12:49 -0400957}
958
Alex Deucherda321c82013-04-12 13:55:22 -0400959static void radeon_pm_suspend_old(struct radeon_device *rdev)
Alex Deucher56278a82009-12-28 13:58:44 -0500960{
Alex Deucherce8f5372010-05-07 15:10:16 -0400961 mutex_lock(&rdev->pm.mutex);
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000962 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000963 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
964 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000965 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400966 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100967
968 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher56278a82009-12-28 13:58:44 -0500969}
970
Alex Deucherda321c82013-04-12 13:55:22 -0400971static void radeon_pm_suspend_dpm(struct radeon_device *rdev)
972{
973 mutex_lock(&rdev->pm.mutex);
974 /* disable dpm */
975 radeon_dpm_disable(rdev);
976 /* reset the power state */
977 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
978 rdev->pm.dpm_enabled = false;
979 mutex_unlock(&rdev->pm.mutex);
980}
981
982void radeon_pm_suspend(struct radeon_device *rdev)
983{
984 if (rdev->pm.pm_method == PM_METHOD_DPM)
985 radeon_pm_suspend_dpm(rdev);
986 else
987 radeon_pm_suspend_old(rdev);
988}
989
990static void radeon_pm_resume_old(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100991{
Alex Deuchered18a362011-01-06 21:19:32 -0500992 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400993 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucher36099182013-09-21 14:37:49 -0400994 (rdev->family <= CHIP_CAYMAN) &&
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400995 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -0500996 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400997 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
998 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher2feea492011-04-12 14:49:24 -0400999 if (rdev->pm.default_vddci)
1000 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1001 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -05001002 if (rdev->pm.default_sclk)
1003 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1004 if (rdev->pm.default_mclk)
1005 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1006 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001007 /* asic init will reset the default power state */
1008 mutex_lock(&rdev->pm.mutex);
1009 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
1010 rdev->pm.current_clock_mode_index = 0;
Alex Deucher9ace9f72011-01-06 21:19:26 -05001011 rdev->pm.current_sclk = rdev->pm.default_sclk;
1012 rdev->pm.current_mclk = rdev->pm.default_mclk;
Alex Deucher4d601732010-06-07 18:15:18 -04001013 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 -04001014 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 +00001015 if (rdev->pm.pm_method == PM_METHOD_DYNPM
1016 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
1017 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +01001018 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1019 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +00001020 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001021 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -04001022 radeon_pm_compute_clocks(rdev);
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +01001023}
1024
Alex Deucherda321c82013-04-12 13:55:22 -04001025static void radeon_pm_resume_dpm(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +01001026{
Dave Airlie26481fb2010-05-18 19:00:14 +10001027 int ret;
Dan Carpenter0d18abe2010-08-09 21:59:42 +02001028
Alex Deucherda321c82013-04-12 13:55:22 -04001029 /* asic init will reset to the boot state */
1030 mutex_lock(&rdev->pm.mutex);
1031 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
1032 radeon_dpm_setup_asic(rdev);
1033 ret = radeon_dpm_enable(rdev);
1034 mutex_unlock(&rdev->pm.mutex);
Alex Deuchere14cd2b2013-12-19 16:17:47 -05001035 if (ret)
1036 goto dpm_resume_fail;
1037 ret = radeon_pm_late_init(rdev);
1038 if (ret)
1039 goto dpm_resume_fail;
1040
1041 rdev->pm.dpm_enabled = true;
1042 radeon_pm_compute_clocks(rdev);
1043 return;
1044
1045dpm_resume_fail:
1046 DRM_ERROR("radeon: dpm resume failed\n");
1047 if ((rdev->family >= CHIP_BARTS) &&
1048 (rdev->family <= CHIP_CAYMAN) &&
1049 rdev->mc_fw) {
1050 if (rdev->pm.default_vddc)
1051 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
1052 SET_VOLTAGE_TYPE_ASIC_VDDC);
1053 if (rdev->pm.default_vddci)
1054 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1055 SET_VOLTAGE_TYPE_ASIC_VDDCI);
1056 if (rdev->pm.default_sclk)
1057 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1058 if (rdev->pm.default_mclk)
1059 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
Alex Deucherda321c82013-04-12 13:55:22 -04001060 }
1061}
1062
1063void radeon_pm_resume(struct radeon_device *rdev)
1064{
1065 if (rdev->pm.pm_method == PM_METHOD_DPM)
1066 radeon_pm_resume_dpm(rdev);
1067 else
1068 radeon_pm_resume_old(rdev);
1069}
1070
1071static int radeon_pm_init_old(struct radeon_device *rdev)
1072{
1073 int ret;
1074
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001075 rdev->pm.profile = PM_PROFILE_DEFAULT;
Alex Deucherce8f5372010-05-07 15:10:16 -04001076 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
1077 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1078 rdev->pm.dynpm_can_upclock = true;
1079 rdev->pm.dynpm_can_downclock = true;
Alex Deucher9ace9f72011-01-06 21:19:26 -05001080 rdev->pm.default_sclk = rdev->clock.default_sclk;
1081 rdev->pm.default_mclk = rdev->clock.default_mclk;
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001082 rdev->pm.current_sclk = rdev->clock.default_sclk;
1083 rdev->pm.current_mclk = rdev->clock.default_mclk;
Alex Deucher21a81222010-07-02 12:58:16 -04001084 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001085
Alex Deucher56278a82009-12-28 13:58:44 -05001086 if (rdev->bios) {
1087 if (rdev->is_atom_bios)
1088 radeon_atombios_get_power_modes(rdev);
1089 else
1090 radeon_combios_get_power_modes(rdev);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -04001091 radeon_pm_print_states(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -04001092 radeon_pm_init_profile(rdev);
Alex Deuchered18a362011-01-06 21:19:32 -05001093 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -04001094 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucher36099182013-09-21 14:37:49 -04001095 (rdev->family <= CHIP_CAYMAN) &&
Alex Deucher2e3b3b12012-09-14 10:59:26 -04001096 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -05001097 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -04001098 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
1099 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher4639dd22011-07-25 18:50:08 -04001100 if (rdev->pm.default_vddci)
1101 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1102 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -05001103 if (rdev->pm.default_sclk)
1104 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1105 if (rdev->pm.default_mclk)
1106 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1107 }
Alex Deucher56278a82009-12-28 13:58:44 -05001108 }
1109
Alex Deucher21a81222010-07-02 12:58:16 -04001110 /* set up the internal thermal sensor if applicable */
Dan Carpenter0d18abe2010-08-09 21:59:42 +02001111 ret = radeon_hwmon_init(rdev);
1112 if (ret)
1113 return ret;
Tejun Heo32c87fc2011-01-03 14:49:32 +01001114
1115 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
1116
Alex Deucherce8f5372010-05-07 15:10:16 -04001117 if (rdev->pm.num_power_states > 1) {
Alex Deucherce8f5372010-05-07 15:10:16 -04001118 /* where's the best place to put these? */
Dave Airlie26481fb2010-05-18 19:00:14 +10001119 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
1120 if (ret)
1121 DRM_ERROR("failed to create device file for power profile\n");
1122 ret = device_create_file(rdev->dev, &dev_attr_power_method);
1123 if (ret)
1124 DRM_ERROR("failed to create device file for power method\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001125
Alex Deucherce8f5372010-05-07 15:10:16 -04001126 if (radeon_debugfs_pm_init(rdev)) {
1127 DRM_ERROR("Failed to register debugfs file for PM!\n");
1128 }
1129
1130 DRM_INFO("radeon: power management initialized\n");
Rafał Miłecki74338742009-11-03 00:53:02 +01001131 }
1132
1133 return 0;
1134}
1135
Alex Deucherda321c82013-04-12 13:55:22 -04001136static void radeon_dpm_print_power_states(struct radeon_device *rdev)
1137{
1138 int i;
1139
1140 for (i = 0; i < rdev->pm.dpm.num_ps; i++) {
1141 printk("== power state %d ==\n", i);
1142 radeon_dpm_print_power_state(rdev, &rdev->pm.dpm.ps[i]);
1143 }
1144}
1145
1146static int radeon_pm_init_dpm(struct radeon_device *rdev)
1147{
1148 int ret;
1149
Alex Deucher1cd8b212013-09-13 14:07:03 -04001150 /* default to balanced state */
Alex Deucheredcaa5b2013-07-05 11:48:31 -04001151 rdev->pm.dpm.state = POWER_STATE_TYPE_BALANCED;
1152 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BALANCED;
Alex Deucher1cd8b212013-09-13 14:07:03 -04001153 rdev->pm.dpm.forced_level = RADEON_DPM_FORCED_LEVEL_AUTO;
Alex Deucherda321c82013-04-12 13:55:22 -04001154 rdev->pm.default_sclk = rdev->clock.default_sclk;
1155 rdev->pm.default_mclk = rdev->clock.default_mclk;
1156 rdev->pm.current_sclk = rdev->clock.default_sclk;
1157 rdev->pm.current_mclk = rdev->clock.default_mclk;
1158 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
1159
1160 if (rdev->bios && rdev->is_atom_bios)
1161 radeon_atombios_get_power_modes(rdev);
1162 else
1163 return -EINVAL;
1164
1165 /* set up the internal thermal sensor if applicable */
1166 ret = radeon_hwmon_init(rdev);
1167 if (ret)
1168 return ret;
1169
1170 INIT_WORK(&rdev->pm.dpm.thermal.work, radeon_dpm_thermal_work_handler);
1171 mutex_lock(&rdev->pm.mutex);
1172 radeon_dpm_init(rdev);
1173 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
Alex Deucher033a37d2013-10-23 18:35:43 -04001174 if (radeon_dpm == 1)
1175 radeon_dpm_print_power_states(rdev);
Alex Deucherda321c82013-04-12 13:55:22 -04001176 radeon_dpm_setup_asic(rdev);
1177 ret = radeon_dpm_enable(rdev);
1178 mutex_unlock(&rdev->pm.mutex);
Alex Deuchere14cd2b2013-12-19 16:17:47 -05001179 if (ret)
1180 goto dpm_failed;
1181 ret = radeon_pm_late_init(rdev);
1182 if (ret)
1183 goto dpm_failed;
Alex Deucherda321c82013-04-12 13:55:22 -04001184 rdev->pm.dpm_enabled = true;
1185 radeon_pm_compute_clocks(rdev);
1186
Alex Deucherbb5abf92013-12-18 13:39:58 -05001187 ret = device_create_file(rdev->dev, &dev_attr_power_dpm_state);
1188 if (ret)
1189 DRM_ERROR("failed to create device file for dpm state\n");
1190 ret = device_create_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
1191 if (ret)
1192 DRM_ERROR("failed to create device file for dpm state\n");
1193 /* XXX: these are noops for dpm but are here for backwards compat */
1194 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
1195 if (ret)
1196 DRM_ERROR("failed to create device file for power profile\n");
1197 ret = device_create_file(rdev->dev, &dev_attr_power_method);
1198 if (ret)
1199 DRM_ERROR("failed to create device file for power method\n");
Alex Deucher1316b792013-06-28 09:28:39 -04001200
Alex Deucherbb5abf92013-12-18 13:39:58 -05001201 if (radeon_debugfs_pm_init(rdev)) {
1202 DRM_ERROR("Failed to register debugfs file for dpm!\n");
Alex Deucherda321c82013-04-12 13:55:22 -04001203 }
1204
Alex Deucherbb5abf92013-12-18 13:39:58 -05001205 DRM_INFO("radeon: dpm initialized\n");
1206
Alex Deucherda321c82013-04-12 13:55:22 -04001207 return 0;
Alex Deuchere14cd2b2013-12-19 16:17:47 -05001208
1209dpm_failed:
1210 rdev->pm.dpm_enabled = false;
1211 if ((rdev->family >= CHIP_BARTS) &&
1212 (rdev->family <= CHIP_CAYMAN) &&
1213 rdev->mc_fw) {
1214 if (rdev->pm.default_vddc)
1215 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
1216 SET_VOLTAGE_TYPE_ASIC_VDDC);
1217 if (rdev->pm.default_vddci)
1218 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1219 SET_VOLTAGE_TYPE_ASIC_VDDCI);
1220 if (rdev->pm.default_sclk)
1221 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1222 if (rdev->pm.default_mclk)
1223 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1224 }
1225 DRM_ERROR("radeon: dpm initialization failed\n");
1226 return ret;
Alex Deucherda321c82013-04-12 13:55:22 -04001227}
1228
1229int radeon_pm_init(struct radeon_device *rdev)
1230{
1231 /* enable dpm on rv6xx+ */
1232 switch (rdev->family) {
Alex Deucher4a6369e2013-04-12 14:04:10 -04001233 case CHIP_RV610:
1234 case CHIP_RV630:
1235 case CHIP_RV620:
1236 case CHIP_RV635:
1237 case CHIP_RV670:
Alex Deucher9d670062013-04-12 13:59:22 -04001238 case CHIP_RS780:
1239 case CHIP_RS880:
Alex Deucher69e0b572013-04-12 16:42:42 -04001240 case CHIP_CAYMAN:
Alex Deuchercc8dbbb2013-08-14 01:03:41 -04001241 case CHIP_BONAIRE:
Alex Deucher41a524a2013-08-14 01:01:40 -04001242 case CHIP_KABINI:
1243 case CHIP_KAVERI:
Alex Deucher2d400382013-08-09 18:27:47 -04001244 case CHIP_HAWAII:
Alex Deucher8a53fa22013-08-07 16:09:08 -04001245 /* DPM requires the RLC, RV770+ dGPU requires SMC */
Alex Deucher761bfb92013-08-06 13:34:00 -04001246 if (!rdev->rlc_fw)
1247 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucher8a53fa22013-08-07 16:09:08 -04001248 else if ((rdev->family >= CHIP_RV770) &&
1249 (!(rdev->flags & RADEON_IS_IGP)) &&
1250 (!rdev->smc_fw))
1251 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucher761bfb92013-08-06 13:34:00 -04001252 else if (radeon_dpm == 1)
Alex Deucher9d670062013-04-12 13:59:22 -04001253 rdev->pm.pm_method = PM_METHOD_DPM;
1254 else
1255 rdev->pm.pm_method = PM_METHOD_PROFILE;
1256 break;
Alex Deucherab70b1d2013-11-01 15:16:02 -04001257 case CHIP_RV770:
1258 case CHIP_RV730:
1259 case CHIP_RV710:
1260 case CHIP_RV740:
Alex Deucher59f7a2f2013-11-01 15:11:34 -04001261 case CHIP_CEDAR:
1262 case CHIP_REDWOOD:
1263 case CHIP_JUNIPER:
1264 case CHIP_CYPRESS:
1265 case CHIP_HEMLOCK:
Alex Deucher5a16f762013-10-23 17:11:06 -04001266 case CHIP_PALM:
1267 case CHIP_SUMO:
1268 case CHIP_SUMO2:
Alex Deucher56684ec2013-10-30 10:18:37 -04001269 case CHIP_BARTS:
1270 case CHIP_TURKS:
1271 case CHIP_CAICOS:
Alex Deucher3a118982013-11-14 10:21:29 -05001272 case CHIP_ARUBA:
Alex Deucher68bc7782013-10-23 17:14:06 -04001273 case CHIP_TAHITI:
1274 case CHIP_PITCAIRN:
1275 case CHIP_VERDE:
1276 case CHIP_OLAND:
1277 case CHIP_HAINAN:
Alex Deucher5a16f762013-10-23 17:11:06 -04001278 /* DPM requires the RLC, RV770+ dGPU requires SMC */
1279 if (!rdev->rlc_fw)
1280 rdev->pm.pm_method = PM_METHOD_PROFILE;
1281 else if ((rdev->family >= CHIP_RV770) &&
1282 (!(rdev->flags & RADEON_IS_IGP)) &&
1283 (!rdev->smc_fw))
1284 rdev->pm.pm_method = PM_METHOD_PROFILE;
1285 else if (radeon_dpm == 0)
1286 rdev->pm.pm_method = PM_METHOD_PROFILE;
1287 else
1288 rdev->pm.pm_method = PM_METHOD_DPM;
1289 break;
Alex Deucherda321c82013-04-12 13:55:22 -04001290 default:
1291 /* default to profile method */
1292 rdev->pm.pm_method = PM_METHOD_PROFILE;
1293 break;
1294 }
1295
1296 if (rdev->pm.pm_method == PM_METHOD_DPM)
1297 return radeon_pm_init_dpm(rdev);
1298 else
1299 return radeon_pm_init_old(rdev);
1300}
1301
Alex Deucher914a8982013-12-19 11:37:22 -05001302int radeon_pm_late_init(struct radeon_device *rdev)
1303{
1304 int ret = 0;
1305
1306 if (rdev->pm.pm_method == PM_METHOD_DPM) {
1307 mutex_lock(&rdev->pm.mutex);
1308 ret = radeon_dpm_late_enable(rdev);
1309 mutex_unlock(&rdev->pm.mutex);
1310 }
1311 return ret;
1312}
1313
Alex Deucherda321c82013-04-12 13:55:22 -04001314static void radeon_pm_fini_old(struct radeon_device *rdev)
Alex Deucher29fb52c2010-03-11 10:01:17 -05001315{
Alex Deucherce8f5372010-05-07 15:10:16 -04001316 if (rdev->pm.num_power_states > 1) {
Alex Deuchera4248162010-04-24 14:50:23 -04001317 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -04001318 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
1319 rdev->pm.profile = PM_PROFILE_DEFAULT;
1320 radeon_pm_update_profile(rdev);
1321 radeon_pm_set_clocks(rdev);
1322 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -04001323 /* reset default clocks */
1324 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
1325 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
1326 radeon_pm_set_clocks(rdev);
1327 }
Alex Deuchera4248162010-04-24 14:50:23 -04001328 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +01001329
1330 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher58e21df2010-03-22 13:31:08 -04001331
Alex Deucherce8f5372010-05-07 15:10:16 -04001332 device_remove_file(rdev->dev, &dev_attr_power_profile);
1333 device_remove_file(rdev->dev, &dev_attr_power_method);
Alex Deucherce8f5372010-05-07 15:10:16 -04001334 }
Alex Deuchera4248162010-04-24 14:50:23 -04001335
Alex Deucher0975b162011-02-02 18:42:03 -05001336 if (rdev->pm.power_state)
1337 kfree(rdev->pm.power_state);
Alex Deucher29fb52c2010-03-11 10:01:17 -05001338}
1339
Alex Deucherda321c82013-04-12 13:55:22 -04001340static void radeon_pm_fini_dpm(struct radeon_device *rdev)
1341{
1342 if (rdev->pm.num_power_states > 1) {
1343 mutex_lock(&rdev->pm.mutex);
1344 radeon_dpm_disable(rdev);
1345 mutex_unlock(&rdev->pm.mutex);
1346
1347 device_remove_file(rdev->dev, &dev_attr_power_dpm_state);
Alex Deucher70d01a52013-07-02 18:38:02 -04001348 device_remove_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
Alex Deucherda321c82013-04-12 13:55:22 -04001349 /* XXX backwards compat */
1350 device_remove_file(rdev->dev, &dev_attr_power_profile);
1351 device_remove_file(rdev->dev, &dev_attr_power_method);
1352 }
1353 radeon_dpm_fini(rdev);
1354
1355 if (rdev->pm.power_state)
1356 kfree(rdev->pm.power_state);
Alex Deucherda321c82013-04-12 13:55:22 -04001357}
1358
1359void radeon_pm_fini(struct radeon_device *rdev)
1360{
1361 if (rdev->pm.pm_method == PM_METHOD_DPM)
1362 radeon_pm_fini_dpm(rdev);
1363 else
1364 radeon_pm_fini_old(rdev);
1365}
1366
1367static void radeon_pm_compute_clocks_old(struct radeon_device *rdev)
Rafał Miłeckic913e232009-12-22 23:02:16 +01001368{
1369 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -04001370 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001371 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001372
Alex Deucherce8f5372010-05-07 15:10:16 -04001373 if (rdev->pm.num_power_states < 2)
1374 return;
1375
Rafał Miłeckic913e232009-12-22 23:02:16 +01001376 mutex_lock(&rdev->pm.mutex);
1377
1378 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -04001379 rdev->pm.active_crtc_count = 0;
1380 list_for_each_entry(crtc,
1381 &ddev->mode_config.crtc_list, head) {
1382 radeon_crtc = to_radeon_crtc(crtc);
1383 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +01001384 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -04001385 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001386 }
1387 }
1388
Alex Deucherce8f5372010-05-07 15:10:16 -04001389 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
1390 radeon_pm_update_profile(rdev);
1391 radeon_pm_set_clocks(rdev);
1392 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
1393 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
1394 if (rdev->pm.active_crtc_count > 1) {
1395 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
1396 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Alex Deucherd7311172010-05-03 01:13:14 -04001397
Alex Deucherce8f5372010-05-07 15:10:16 -04001398 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
1399 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
1400 radeon_pm_get_dynpm_state(rdev);
1401 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001402
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001403 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001404 }
1405 } else if (rdev->pm.active_crtc_count == 1) {
1406 /* TODO: Increase clocks if needed for current mode */
Rafał Miłeckic913e232009-12-22 23:02:16 +01001407
Alex Deucherce8f5372010-05-07 15:10:16 -04001408 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
1409 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
1410 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
1411 radeon_pm_get_dynpm_state(rdev);
1412 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001413
Tejun Heo32c87fc2011-01-03 14:49:32 +01001414 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1415 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deucherce8f5372010-05-07 15:10:16 -04001416 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
1417 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +01001418 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1419 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001420 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001421 }
1422 } else { /* count == 0 */
1423 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
1424 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001425
Alex Deucherce8f5372010-05-07 15:10:16 -04001426 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
1427 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
1428 radeon_pm_get_dynpm_state(rdev);
1429 radeon_pm_set_clocks(rdev);
1430 }
1431 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001432 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001433 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +01001434
1435 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001436}
1437
Alex Deucherda321c82013-04-12 13:55:22 -04001438static void radeon_pm_compute_clocks_dpm(struct radeon_device *rdev)
1439{
1440 struct drm_device *ddev = rdev->ddev;
1441 struct drm_crtc *crtc;
1442 struct radeon_crtc *radeon_crtc;
1443
1444 mutex_lock(&rdev->pm.mutex);
1445
Alex Deucher5ca302f2012-11-30 10:56:57 -05001446 /* update active crtc counts */
Alex Deucherda321c82013-04-12 13:55:22 -04001447 rdev->pm.dpm.new_active_crtcs = 0;
1448 rdev->pm.dpm.new_active_crtc_count = 0;
1449 list_for_each_entry(crtc,
1450 &ddev->mode_config.crtc_list, head) {
1451 radeon_crtc = to_radeon_crtc(crtc);
1452 if (crtc->enabled) {
1453 rdev->pm.dpm.new_active_crtcs |= (1 << radeon_crtc->crtc_id);
1454 rdev->pm.dpm.new_active_crtc_count++;
1455 }
1456 }
1457
Alex Deucher5ca302f2012-11-30 10:56:57 -05001458 /* update battery/ac status */
1459 if (power_supply_is_system_supplied() > 0)
1460 rdev->pm.dpm.ac_power = true;
1461 else
1462 rdev->pm.dpm.ac_power = false;
1463
Alex Deucherda321c82013-04-12 13:55:22 -04001464 radeon_dpm_change_power_state_locked(rdev);
1465
1466 mutex_unlock(&rdev->pm.mutex);
Alex Deucher8a227552013-06-21 15:12:57 -04001467
Alex Deucherda321c82013-04-12 13:55:22 -04001468}
1469
1470void radeon_pm_compute_clocks(struct radeon_device *rdev)
1471{
1472 if (rdev->pm.pm_method == PM_METHOD_DPM)
1473 radeon_pm_compute_clocks_dpm(rdev);
1474 else
1475 radeon_pm_compute_clocks_old(rdev);
1476}
1477
Alex Deucherce8f5372010-05-07 15:10:16 -04001478static bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +10001479{
Mario Kleiner75fa0b02010-10-05 19:57:37 -04001480 int crtc, vpos, hpos, vbl_status;
Dave Airlief7352612010-02-18 15:58:36 +10001481 bool in_vbl = true;
1482
Mario Kleiner75fa0b02010-10-05 19:57:37 -04001483 /* Iterate over all active crtc's. All crtc's must be in vblank,
1484 * otherwise return in_vbl == false.
1485 */
1486 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
1487 if (rdev->pm.active_crtcs & (1 << crtc)) {
Mario Kleinerd47abc52013-10-30 05:13:07 +01001488 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos, NULL, NULL);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001489 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
1490 !(vbl_status & DRM_SCANOUTPOS_INVBL))
Dave Airlief7352612010-02-18 15:58:36 +10001491 in_vbl = false;
1492 }
1493 }
Matthew Garrettf81f2022010-04-28 12:13:06 -04001494
1495 return in_vbl;
1496}
1497
Alex Deucherce8f5372010-05-07 15:10:16 -04001498static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
Matthew Garrettf81f2022010-04-28 12:13:06 -04001499{
1500 u32 stat_crtc = 0;
1501 bool in_vbl = radeon_pm_in_vbl(rdev);
1502
Dave Airlief7352612010-02-18 15:58:36 +10001503 if (in_vbl == false)
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001504 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
Alex Deucherbae6b5622010-04-22 13:38:05 -04001505 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +10001506 return in_vbl;
1507}
Rafał Miłeckic913e232009-12-22 23:02:16 +01001508
Alex Deucherce8f5372010-05-07 15:10:16 -04001509static void radeon_dynpm_idle_work_handler(struct work_struct *work)
Rafał Miłeckic913e232009-12-22 23:02:16 +01001510{
1511 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -04001512 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001513 rdev = container_of(work, struct radeon_device,
Alex Deucherce8f5372010-05-07 15:10:16 -04001514 pm.dynpm_idle_work.work);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001515
Matthew Garrettd9932a32010-04-26 16:02:26 -04001516 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001517 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -04001518 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +01001519 int not_processed = 0;
Alex Deucher74652802011-08-25 13:39:48 -04001520 int i;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001521
Alex Deucher74652802011-08-25 13:39:48 -04001522 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
Alex Deucher0ec06122012-06-14 15:54:57 -04001523 struct radeon_ring *ring = &rdev->ring[i];
1524
1525 if (ring->ready) {
1526 not_processed += radeon_fence_count_emitted(rdev, i);
1527 if (not_processed >= 3)
1528 break;
1529 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001530 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001531
1532 if (not_processed >= 3) { /* should upclock */
Alex Deucherce8f5372010-05-07 15:10:16 -04001533 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
1534 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1535 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
1536 rdev->pm.dynpm_can_upclock) {
1537 rdev->pm.dynpm_planned_action =
1538 DYNPM_ACTION_UPCLOCK;
1539 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +01001540 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
1541 }
1542 } else if (not_processed == 0) { /* should downclock */
Alex Deucherce8f5372010-05-07 15:10:16 -04001543 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
1544 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1545 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
1546 rdev->pm.dynpm_can_downclock) {
1547 rdev->pm.dynpm_planned_action =
1548 DYNPM_ACTION_DOWNCLOCK;
1549 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +01001550 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
1551 }
1552 }
1553
Alex Deucherd7311172010-05-03 01:13:14 -04001554 /* Note, radeon_pm_set_clocks is called with static_switch set
1555 * to false since we want to wait for vbl to avoid flicker.
1556 */
Alex Deucherce8f5372010-05-07 15:10:16 -04001557 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
1558 jiffies > rdev->pm.dynpm_action_timeout) {
1559 radeon_pm_get_dynpm_state(rdev);
1560 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001561 }
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +00001562
Tejun Heo32c87fc2011-01-03 14:49:32 +01001563 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1564 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafał Miłeckic913e232009-12-22 23:02:16 +01001565 }
1566 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -04001567 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001568}
1569
Rafał Miłecki74338742009-11-03 00:53:02 +01001570/*
1571 * Debugfs info
1572 */
1573#if defined(CONFIG_DEBUG_FS)
1574
1575static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
1576{
1577 struct drm_info_node *node = (struct drm_info_node *) m->private;
1578 struct drm_device *dev = node->minor->dev;
1579 struct radeon_device *rdev = dev->dev_private;
1580
Alex Deucher1316b792013-06-28 09:28:39 -04001581 if (rdev->pm.dpm_enabled) {
1582 mutex_lock(&rdev->pm.mutex);
1583 if (rdev->asic->dpm.debugfs_print_current_performance_level)
1584 radeon_dpm_debugfs_print_current_performance_level(rdev, m);
1585 else
Alex Deucher71375922013-07-02 09:11:39 -04001586 seq_printf(m, "Debugfs support not implemented for this asic\n");
Alex Deucher1316b792013-06-28 09:28:39 -04001587 mutex_unlock(&rdev->pm.mutex);
1588 } else {
1589 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
1590 /* radeon_get_engine_clock is not reliable on APUs so just print the current clock */
1591 if ((rdev->family >= CHIP_PALM) && (rdev->flags & RADEON_IS_IGP))
1592 seq_printf(m, "current engine clock: %u0 kHz\n", rdev->pm.current_sclk);
1593 else
1594 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
1595 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
1596 if (rdev->asic->pm.get_memory_clock)
1597 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
1598 if (rdev->pm.current_vddc)
1599 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
1600 if (rdev->asic->pm.get_pcie_lanes)
1601 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
1602 }
Rafał Miłecki74338742009-11-03 00:53:02 +01001603
1604 return 0;
1605}
1606
1607static struct drm_info_list radeon_pm_info_list[] = {
1608 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
1609};
1610#endif
1611
Rafał Miłeckic913e232009-12-22 23:02:16 +01001612static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +01001613{
1614#if defined(CONFIG_DEBUG_FS)
1615 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
1616#else
1617 return 0;
1618#endif
1619}