blob: 66b04af1694956f0dbd3bc4958b9742a282da023 [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
Alex Deucher7ae764b2013-02-11 08:44:48 -0500172 * mclk and vddci.
Alex Deucher27810fb2012-10-01 19:25:11 -0400173 */
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 Deucherda321c82013-04-12 13:55:22 -0400391 (pm == PM_METHOD_DYNPM) ? "dynpm" :
392 (pm == PM_METHOD_PROFILE) ? "profile" : "dpm");
Alex Deuchera4248162010-04-24 14:50:23 -0400393}
394
Alex Deucherce8f5372010-05-07 15:10:16 -0400395static ssize_t radeon_set_pm_method(struct device *dev,
396 struct device_attribute *attr,
397 const char *buf,
398 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400399{
400 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
401 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400402
Alex Deucherda321c82013-04-12 13:55:22 -0400403 /* we don't support the legacy modes with dpm */
404 if (rdev->pm.pm_method == PM_METHOD_DPM) {
405 count = -EINVAL;
406 goto fail;
407 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400408
409 if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
Alex Deuchera4248162010-04-24 14:50:23 -0400410 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400411 rdev->pm.pm_method = PM_METHOD_DYNPM;
412 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
413 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
Alex Deuchera4248162010-04-24 14:50:23 -0400414 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400415 } else if (strncmp("profile", buf, strlen("profile")) == 0) {
416 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400417 /* disable dynpm */
418 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
419 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000420 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherce8f5372010-05-07 15:10:16 -0400421 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100422 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucherce8f5372010-05-07 15:10:16 -0400423 } else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000424 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400425 goto fail;
426 }
427 radeon_pm_compute_clocks(rdev);
428fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400429 return count;
430}
431
Alex Deucherda321c82013-04-12 13:55:22 -0400432static ssize_t radeon_get_dpm_state(struct device *dev,
433 struct device_attribute *attr,
434 char *buf)
435{
436 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
437 struct radeon_device *rdev = ddev->dev_private;
438 enum radeon_pm_state_type pm = rdev->pm.dpm.user_state;
439
440 return snprintf(buf, PAGE_SIZE, "%s\n",
441 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
442 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
443}
444
445static ssize_t radeon_set_dpm_state(struct device *dev,
446 struct device_attribute *attr,
447 const char *buf,
448 size_t count)
449{
450 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
451 struct radeon_device *rdev = ddev->dev_private;
452
453 mutex_lock(&rdev->pm.mutex);
454 if (strncmp("battery", buf, strlen("battery")) == 0)
455 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BATTERY;
456 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
457 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BALANCED;
458 else if (strncmp("performance", buf, strlen("performance")) == 0)
459 rdev->pm.dpm.user_state = POWER_STATE_TYPE_PERFORMANCE;
460 else {
461 mutex_unlock(&rdev->pm.mutex);
462 count = -EINVAL;
463 goto fail;
464 }
465 mutex_unlock(&rdev->pm.mutex);
466 radeon_pm_compute_clocks(rdev);
467fail:
468 return count;
469}
470
Alex Deucher70d01a52013-07-02 18:38:02 -0400471static ssize_t radeon_get_dpm_forced_performance_level(struct device *dev,
472 struct device_attribute *attr,
473 char *buf)
474{
475 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
476 struct radeon_device *rdev = ddev->dev_private;
477 enum radeon_dpm_forced_level level = rdev->pm.dpm.forced_level;
478
479 return snprintf(buf, PAGE_SIZE, "%s\n",
480 (level == RADEON_DPM_FORCED_LEVEL_AUTO) ? "auto" :
481 (level == RADEON_DPM_FORCED_LEVEL_LOW) ? "low" : "high");
482}
483
484static ssize_t radeon_set_dpm_forced_performance_level(struct device *dev,
485 struct device_attribute *attr,
486 const char *buf,
487 size_t count)
488{
489 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
490 struct radeon_device *rdev = ddev->dev_private;
491 enum radeon_dpm_forced_level level;
492 int ret = 0;
493
494 mutex_lock(&rdev->pm.mutex);
495 if (strncmp("low", buf, strlen("low")) == 0) {
496 level = RADEON_DPM_FORCED_LEVEL_LOW;
497 } else if (strncmp("high", buf, strlen("high")) == 0) {
498 level = RADEON_DPM_FORCED_LEVEL_HIGH;
499 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
500 level = RADEON_DPM_FORCED_LEVEL_AUTO;
501 } else {
502 mutex_unlock(&rdev->pm.mutex);
503 count = -EINVAL;
504 goto fail;
505 }
506 if (rdev->asic->dpm.force_performance_level) {
507 ret = radeon_dpm_force_performance_level(rdev, level);
508 if (ret)
509 count = -EINVAL;
510 }
511 mutex_unlock(&rdev->pm.mutex);
512fail:
513 return count;
514}
515
Alex Deucherce8f5372010-05-07 15:10:16 -0400516static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
517static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
Alex Deucherda321c82013-04-12 13:55:22 -0400518static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, radeon_get_dpm_state, radeon_set_dpm_state);
Alex Deucher70d01a52013-07-02 18:38:02 -0400519static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
520 radeon_get_dpm_forced_performance_level,
521 radeon_set_dpm_forced_performance_level);
Alex Deuchera4248162010-04-24 14:50:23 -0400522
Alex Deucher21a81222010-07-02 12:58:16 -0400523static ssize_t radeon_hwmon_show_temp(struct device *dev,
524 struct device_attribute *attr,
525 char *buf)
526{
527 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
528 struct radeon_device *rdev = ddev->dev_private;
Alex Deucher20d391d2011-02-01 16:12:34 -0500529 int temp;
Alex Deucher21a81222010-07-02 12:58:16 -0400530
Alex Deucher6bd1c382013-06-21 14:38:03 -0400531 if (rdev->asic->pm.get_temperature)
532 temp = radeon_get_temperature(rdev);
533 else
Alex Deucher21a81222010-07-02 12:58:16 -0400534 temp = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400535
536 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
537}
538
539static ssize_t radeon_hwmon_show_name(struct device *dev,
540 struct device_attribute *attr,
541 char *buf)
542{
543 return sprintf(buf, "radeon\n");
544}
545
546static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
547static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);
548
549static struct attribute *hwmon_attributes[] = {
550 &sensor_dev_attr_temp1_input.dev_attr.attr,
551 &sensor_dev_attr_name.dev_attr.attr,
552 NULL
553};
554
555static const struct attribute_group hwmon_attrgroup = {
556 .attrs = hwmon_attributes,
557};
558
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200559static int radeon_hwmon_init(struct radeon_device *rdev)
Alex Deucher21a81222010-07-02 12:58:16 -0400560{
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200561 int err = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400562
563 rdev->pm.int_hwmon_dev = NULL;
564
565 switch (rdev->pm.int_thermal_type) {
566 case THERMAL_TYPE_RV6XX:
567 case THERMAL_TYPE_RV770:
568 case THERMAL_TYPE_EVERGREEN:
Alex Deucher457558e2011-05-25 17:49:54 -0400569 case THERMAL_TYPE_NI:
Alex Deuchere33df252010-11-22 17:56:32 -0500570 case THERMAL_TYPE_SUMO:
Alex Deucher1bd47d22012-03-20 17:18:10 -0400571 case THERMAL_TYPE_SI:
Alex Deucher286d9cc2013-06-21 15:50:47 -0400572 case THERMAL_TYPE_CI:
573 case THERMAL_TYPE_KV:
Alex Deucher6bd1c382013-06-21 14:38:03 -0400574 if (rdev->asic->pm.get_temperature == NULL)
Alex Deucher5d7486c2012-03-20 17:18:29 -0400575 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400576 rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200577 if (IS_ERR(rdev->pm.int_hwmon_dev)) {
578 err = PTR_ERR(rdev->pm.int_hwmon_dev);
579 dev_err(rdev->dev,
580 "Unable to register hwmon device: %d\n", err);
581 break;
582 }
Alex Deucher21a81222010-07-02 12:58:16 -0400583 dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
584 err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
585 &hwmon_attrgroup);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200586 if (err) {
587 dev_err(rdev->dev,
588 "Unable to create hwmon sysfs file: %d\n", err);
589 hwmon_device_unregister(rdev->dev);
590 }
Alex Deucher21a81222010-07-02 12:58:16 -0400591 break;
592 default:
593 break;
594 }
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200595
596 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400597}
598
599static void radeon_hwmon_fini(struct radeon_device *rdev)
600{
601 if (rdev->pm.int_hwmon_dev) {
602 sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
603 hwmon_device_unregister(rdev->pm.int_hwmon_dev);
604 }
605}
606
Alex Deucherda321c82013-04-12 13:55:22 -0400607static void radeon_dpm_thermal_work_handler(struct work_struct *work)
608{
609 struct radeon_device *rdev =
610 container_of(work, struct radeon_device,
611 pm.dpm.thermal.work);
612 /* switch to the thermal state */
613 enum radeon_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
614
615 if (!rdev->pm.dpm_enabled)
616 return;
617
618 if (rdev->asic->pm.get_temperature) {
619 int temp = radeon_get_temperature(rdev);
620
621 if (temp < rdev->pm.dpm.thermal.min_temp)
622 /* switch back the user state */
623 dpm_state = rdev->pm.dpm.user_state;
624 } else {
625 if (rdev->pm.dpm.thermal.high_to_low)
626 /* switch back the user state */
627 dpm_state = rdev->pm.dpm.user_state;
628 }
Alex Deucher60320342013-07-24 14:59:48 -0400629 mutex_lock(&rdev->pm.mutex);
630 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
631 rdev->pm.dpm.thermal_active = true;
632 else
633 rdev->pm.dpm.thermal_active = false;
634 rdev->pm.dpm.state = dpm_state;
635 mutex_unlock(&rdev->pm.mutex);
636
637 radeon_pm_compute_clocks(rdev);
Alex Deucherda321c82013-04-12 13:55:22 -0400638}
639
640static struct radeon_ps *radeon_dpm_pick_power_state(struct radeon_device *rdev,
641 enum radeon_pm_state_type dpm_state)
642{
643 int i;
644 struct radeon_ps *ps;
645 u32 ui_class;
Alex Deucher48783062013-07-08 11:35:06 -0400646 bool single_display = (rdev->pm.dpm.new_active_crtc_count < 2) ?
647 true : false;
648
649 /* check if the vblank period is too short to adjust the mclk */
650 if (single_display && rdev->asic->dpm.vblank_too_short) {
651 if (radeon_dpm_vblank_too_short(rdev))
652 single_display = false;
653 }
Alex Deucherda321c82013-04-12 13:55:22 -0400654
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400655 /* certain older asics have a separare 3D performance state,
656 * so try that first if the user selected performance
657 */
658 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
659 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
Alex Deucherda321c82013-04-12 13:55:22 -0400660 /* balanced states don't exist at the moment */
661 if (dpm_state == POWER_STATE_TYPE_BALANCED)
662 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
663
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400664restart_search:
Alex Deucherda321c82013-04-12 13:55:22 -0400665 /* Pick the best power state based on current conditions */
666 for (i = 0; i < rdev->pm.dpm.num_ps; i++) {
667 ps = &rdev->pm.dpm.ps[i];
668 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
669 switch (dpm_state) {
670 /* user states */
671 case POWER_STATE_TYPE_BATTERY:
672 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
673 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400674 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400675 return ps;
676 } else
677 return ps;
678 }
679 break;
680 case POWER_STATE_TYPE_BALANCED:
681 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
682 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400683 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400684 return ps;
685 } else
686 return ps;
687 }
688 break;
689 case POWER_STATE_TYPE_PERFORMANCE:
690 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
691 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
Alex Deucher48783062013-07-08 11:35:06 -0400692 if (single_display)
Alex Deucherda321c82013-04-12 13:55:22 -0400693 return ps;
694 } else
695 return ps;
696 }
697 break;
698 /* internal states */
699 case POWER_STATE_TYPE_INTERNAL_UVD:
Alex Deucherd4d32782013-06-11 17:55:39 -0400700 if (rdev->pm.dpm.uvd_ps)
701 return rdev->pm.dpm.uvd_ps;
702 else
703 break;
Alex Deucherda321c82013-04-12 13:55:22 -0400704 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
705 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
706 return ps;
707 break;
708 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
709 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
710 return ps;
711 break;
712 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
713 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
714 return ps;
715 break;
716 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
717 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
718 return ps;
719 break;
720 case POWER_STATE_TYPE_INTERNAL_BOOT:
721 return rdev->pm.dpm.boot_ps;
722 case POWER_STATE_TYPE_INTERNAL_THERMAL:
723 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
724 return ps;
725 break;
726 case POWER_STATE_TYPE_INTERNAL_ACPI:
727 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
728 return ps;
729 break;
730 case POWER_STATE_TYPE_INTERNAL_ULV:
731 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
732 return ps;
733 break;
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400734 case POWER_STATE_TYPE_INTERNAL_3DPERF:
735 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
736 return ps;
737 break;
Alex Deucherda321c82013-04-12 13:55:22 -0400738 default:
739 break;
740 }
741 }
742 /* use a fallback state if we didn't match */
743 switch (dpm_state) {
744 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
Alex Deucherce3537d2013-07-24 12:12:49 -0400745 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
746 goto restart_search;
Alex Deucherda321c82013-04-12 13:55:22 -0400747 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
748 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
749 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
Alex Deucherd4d32782013-06-11 17:55:39 -0400750 if (rdev->pm.dpm.uvd_ps) {
751 return rdev->pm.dpm.uvd_ps;
752 } else {
753 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
754 goto restart_search;
755 }
Alex Deucherda321c82013-04-12 13:55:22 -0400756 case POWER_STATE_TYPE_INTERNAL_THERMAL:
757 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
758 goto restart_search;
759 case POWER_STATE_TYPE_INTERNAL_ACPI:
760 dpm_state = POWER_STATE_TYPE_BATTERY;
761 goto restart_search;
762 case POWER_STATE_TYPE_BATTERY:
Alex Deucheredcaa5b2013-07-05 11:48:31 -0400763 case POWER_STATE_TYPE_BALANCED:
764 case POWER_STATE_TYPE_INTERNAL_3DPERF:
Alex Deucherda321c82013-04-12 13:55:22 -0400765 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
766 goto restart_search;
767 default:
768 break;
769 }
770
771 return NULL;
772}
773
774static void radeon_dpm_change_power_state_locked(struct radeon_device *rdev)
775{
776 int i;
777 struct radeon_ps *ps;
778 enum radeon_pm_state_type dpm_state;
Alex Deucher84dd1922013-01-16 12:52:04 -0500779 int ret;
Alex Deucherda321c82013-04-12 13:55:22 -0400780
781 /* if dpm init failed */
782 if (!rdev->pm.dpm_enabled)
783 return;
784
785 if (rdev->pm.dpm.user_state != rdev->pm.dpm.state) {
786 /* add other state override checks here */
Alex Deucher8a227552013-06-21 15:12:57 -0400787 if ((!rdev->pm.dpm.thermal_active) &&
788 (!rdev->pm.dpm.uvd_active))
Alex Deucherda321c82013-04-12 13:55:22 -0400789 rdev->pm.dpm.state = rdev->pm.dpm.user_state;
790 }
791 dpm_state = rdev->pm.dpm.state;
792
793 ps = radeon_dpm_pick_power_state(rdev, dpm_state);
794 if (ps)
Alex Deucher89c9bc52013-01-16 14:40:26 -0500795 rdev->pm.dpm.requested_ps = ps;
Alex Deucherda321c82013-04-12 13:55:22 -0400796 else
797 return;
798
Alex Deucherd22b7e42012-11-29 19:27:56 -0500799 /* no need to reprogram if nothing changed unless we are on BTC+ */
Alex Deucherda321c82013-04-12 13:55:22 -0400800 if (rdev->pm.dpm.current_ps == rdev->pm.dpm.requested_ps) {
Alex Deucherd22b7e42012-11-29 19:27:56 -0500801 if ((rdev->family < CHIP_BARTS) || (rdev->flags & RADEON_IS_IGP)) {
802 /* for pre-BTC and APUs if the num crtcs changed but state is the same,
803 * all we need to do is update the display configuration.
804 */
805 if (rdev->pm.dpm.new_active_crtcs != rdev->pm.dpm.current_active_crtcs) {
806 /* update display watermarks based on new power state */
807 radeon_bandwidth_update(rdev);
808 /* update displays */
809 radeon_dpm_display_configuration_changed(rdev);
810 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
811 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
812 }
813 return;
814 } else {
815 /* for BTC+ if the num crtcs hasn't changed and state is the same,
816 * nothing to do, if the num crtcs is > 1 and state is the same,
817 * update display configuration.
818 */
819 if (rdev->pm.dpm.new_active_crtcs ==
820 rdev->pm.dpm.current_active_crtcs) {
821 return;
822 } else {
823 if ((rdev->pm.dpm.current_active_crtc_count > 1) &&
824 (rdev->pm.dpm.new_active_crtc_count > 1)) {
825 /* update display watermarks based on new power state */
826 radeon_bandwidth_update(rdev);
827 /* update displays */
828 radeon_dpm_display_configuration_changed(rdev);
829 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
830 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
831 return;
832 }
833 }
Alex Deucherda321c82013-04-12 13:55:22 -0400834 }
Alex Deucherda321c82013-04-12 13:55:22 -0400835 }
836
837 printk("switching from power state:\n");
838 radeon_dpm_print_power_state(rdev, rdev->pm.dpm.current_ps);
839 printk("switching to power state:\n");
840 radeon_dpm_print_power_state(rdev, rdev->pm.dpm.requested_ps);
841
842 mutex_lock(&rdev->ddev->struct_mutex);
843 down_write(&rdev->pm.mclk_lock);
844 mutex_lock(&rdev->ring_lock);
845
Alex Deucher89c9bc52013-01-16 14:40:26 -0500846 ret = radeon_dpm_pre_set_power_state(rdev);
847 if (ret)
848 goto done;
Alex Deucher84dd1922013-01-16 12:52:04 -0500849
Alex Deucherda321c82013-04-12 13:55:22 -0400850 /* update display watermarks based on new power state */
851 radeon_bandwidth_update(rdev);
852 /* update displays */
853 radeon_dpm_display_configuration_changed(rdev);
854
855 rdev->pm.dpm.current_active_crtcs = rdev->pm.dpm.new_active_crtcs;
856 rdev->pm.dpm.current_active_crtc_count = rdev->pm.dpm.new_active_crtc_count;
857
858 /* wait for the rings to drain */
859 for (i = 0; i < RADEON_NUM_RINGS; i++) {
860 struct radeon_ring *ring = &rdev->ring[i];
861 if (ring->ready)
862 radeon_fence_wait_empty_locked(rdev, i);
863 }
864
865 /* program the new power state */
866 radeon_dpm_set_power_state(rdev);
867
868 /* update current power state */
869 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps;
870
Alex Deucher89c9bc52013-01-16 14:40:26 -0500871 radeon_dpm_post_set_power_state(rdev);
Alex Deucher84dd1922013-01-16 12:52:04 -0500872
Alex Deucher60320342013-07-24 14:59:48 -0400873 /* force low perf level for thermal */
874 if (rdev->pm.dpm.thermal_active &&
875 rdev->asic->dpm.force_performance_level) {
876 radeon_dpm_force_performance_level(rdev, RADEON_DPM_FORCED_LEVEL_LOW);
877 }
878
Alex Deucher84dd1922013-01-16 12:52:04 -0500879done:
Alex Deucherda321c82013-04-12 13:55:22 -0400880 mutex_unlock(&rdev->ring_lock);
881 up_write(&rdev->pm.mclk_lock);
882 mutex_unlock(&rdev->ddev->struct_mutex);
883}
884
Alex Deucherce3537d2013-07-24 12:12:49 -0400885void radeon_dpm_enable_uvd(struct radeon_device *rdev, bool enable)
886{
887 enum radeon_pm_state_type dpm_state;
888
889 if (enable) {
890 mutex_lock(&rdev->pm.mutex);
891 rdev->pm.dpm.uvd_active = true;
892 if ((rdev->pm.dpm.sd == 1) && (rdev->pm.dpm.hd == 0))
893 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_SD;
894 else if ((rdev->pm.dpm.sd == 2) && (rdev->pm.dpm.hd == 0))
895 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
896 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 1))
897 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
898 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 2))
899 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD2;
900 else
901 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD;
902 rdev->pm.dpm.state = dpm_state;
903 mutex_unlock(&rdev->pm.mutex);
904 } else {
905 mutex_lock(&rdev->pm.mutex);
906 rdev->pm.dpm.uvd_active = false;
907 mutex_unlock(&rdev->pm.mutex);
908 }
909
910 radeon_pm_compute_clocks(rdev);
911}
912
Alex Deucherda321c82013-04-12 13:55:22 -0400913static void radeon_pm_suspend_old(struct radeon_device *rdev)
Alex Deucher56278a82009-12-28 13:58:44 -0500914{
Alex Deucherce8f5372010-05-07 15:10:16 -0400915 mutex_lock(&rdev->pm.mutex);
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000916 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000917 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
918 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000919 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400920 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100921
922 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher56278a82009-12-28 13:58:44 -0500923}
924
Alex Deucherda321c82013-04-12 13:55:22 -0400925static void radeon_pm_suspend_dpm(struct radeon_device *rdev)
926{
927 mutex_lock(&rdev->pm.mutex);
928 /* disable dpm */
929 radeon_dpm_disable(rdev);
930 /* reset the power state */
931 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
932 rdev->pm.dpm_enabled = false;
933 mutex_unlock(&rdev->pm.mutex);
934}
935
936void radeon_pm_suspend(struct radeon_device *rdev)
937{
938 if (rdev->pm.pm_method == PM_METHOD_DPM)
939 radeon_pm_suspend_dpm(rdev);
940 else
941 radeon_pm_suspend_old(rdev);
942}
943
944static void radeon_pm_resume_old(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100945{
Alex Deuchered18a362011-01-06 21:19:32 -0500946 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400947 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucherc6cf7772013-07-05 13:14:30 -0400948 (rdev->family <= CHIP_HAINAN) &&
Alex Deucher2e3b3b12012-09-14 10:59:26 -0400949 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -0500950 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400951 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
952 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher2feea492011-04-12 14:49:24 -0400953 if (rdev->pm.default_vddci)
954 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
955 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -0500956 if (rdev->pm.default_sclk)
957 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
958 if (rdev->pm.default_mclk)
959 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
960 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400961 /* asic init will reset the default power state */
962 mutex_lock(&rdev->pm.mutex);
963 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
964 rdev->pm.current_clock_mode_index = 0;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500965 rdev->pm.current_sclk = rdev->pm.default_sclk;
966 rdev->pm.current_mclk = rdev->pm.default_mclk;
Alex Deucher4d601732010-06-07 18:15:18 -0400967 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 -0400968 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 +0000969 if (rdev->pm.pm_method == PM_METHOD_DYNPM
970 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
971 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100972 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
973 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000974 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400975 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400976 radeon_pm_compute_clocks(rdev);
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100977}
978
Alex Deucherda321c82013-04-12 13:55:22 -0400979static void radeon_pm_resume_dpm(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +0100980{
Dave Airlie26481fb2010-05-18 19:00:14 +1000981 int ret;
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200982
Alex Deucherda321c82013-04-12 13:55:22 -0400983 /* asic init will reset to the boot state */
984 mutex_lock(&rdev->pm.mutex);
985 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
986 radeon_dpm_setup_asic(rdev);
987 ret = radeon_dpm_enable(rdev);
988 mutex_unlock(&rdev->pm.mutex);
989 if (ret) {
990 DRM_ERROR("radeon: dpm resume failed\n");
991 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucherc6cf7772013-07-05 13:14:30 -0400992 (rdev->family <= CHIP_HAINAN) &&
Alex Deucherda321c82013-04-12 13:55:22 -0400993 rdev->mc_fw) {
994 if (rdev->pm.default_vddc)
995 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
996 SET_VOLTAGE_TYPE_ASIC_VDDC);
997 if (rdev->pm.default_vddci)
998 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
999 SET_VOLTAGE_TYPE_ASIC_VDDCI);
1000 if (rdev->pm.default_sclk)
1001 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1002 if (rdev->pm.default_mclk)
1003 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1004 }
1005 } else {
1006 rdev->pm.dpm_enabled = true;
1007 radeon_pm_compute_clocks(rdev);
1008 }
1009}
1010
1011void radeon_pm_resume(struct radeon_device *rdev)
1012{
1013 if (rdev->pm.pm_method == PM_METHOD_DPM)
1014 radeon_pm_resume_dpm(rdev);
1015 else
1016 radeon_pm_resume_old(rdev);
1017}
1018
1019static int radeon_pm_init_old(struct radeon_device *rdev)
1020{
1021 int ret;
1022
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001023 rdev->pm.profile = PM_PROFILE_DEFAULT;
Alex Deucherce8f5372010-05-07 15:10:16 -04001024 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
1025 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1026 rdev->pm.dynpm_can_upclock = true;
1027 rdev->pm.dynpm_can_downclock = true;
Alex Deucher9ace9f72011-01-06 21:19:26 -05001028 rdev->pm.default_sclk = rdev->clock.default_sclk;
1029 rdev->pm.default_mclk = rdev->clock.default_mclk;
Alex Deucherf8ed8b42010-06-07 17:49:51 -04001030 rdev->pm.current_sclk = rdev->clock.default_sclk;
1031 rdev->pm.current_mclk = rdev->clock.default_mclk;
Alex Deucher21a81222010-07-02 12:58:16 -04001032 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001033
Alex Deucher56278a82009-12-28 13:58:44 -05001034 if (rdev->bios) {
1035 if (rdev->is_atom_bios)
1036 radeon_atombios_get_power_modes(rdev);
1037 else
1038 radeon_combios_get_power_modes(rdev);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -04001039 radeon_pm_print_states(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -04001040 radeon_pm_init_profile(rdev);
Alex Deuchered18a362011-01-06 21:19:32 -05001041 /* set up the default clocks if the MC ucode is loaded */
Alex Deucher2e3b3b12012-09-14 10:59:26 -04001042 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucherc6cf7772013-07-05 13:14:30 -04001043 (rdev->family <= CHIP_HAINAN) &&
Alex Deucher2e3b3b12012-09-14 10:59:26 -04001044 rdev->mc_fw) {
Alex Deuchered18a362011-01-06 21:19:32 -05001045 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -04001046 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
1047 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher4639dd22011-07-25 18:50:08 -04001048 if (rdev->pm.default_vddci)
1049 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1050 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -05001051 if (rdev->pm.default_sclk)
1052 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1053 if (rdev->pm.default_mclk)
1054 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1055 }
Alex Deucher56278a82009-12-28 13:58:44 -05001056 }
1057
Alex Deucher21a81222010-07-02 12:58:16 -04001058 /* set up the internal thermal sensor if applicable */
Dan Carpenter0d18abe2010-08-09 21:59:42 +02001059 ret = radeon_hwmon_init(rdev);
1060 if (ret)
1061 return ret;
Tejun Heo32c87fc2011-01-03 14:49:32 +01001062
1063 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
1064
Alex Deucherce8f5372010-05-07 15:10:16 -04001065 if (rdev->pm.num_power_states > 1) {
Alex Deucherce8f5372010-05-07 15:10:16 -04001066 /* where's the best place to put these? */
Dave Airlie26481fb2010-05-18 19:00:14 +10001067 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
1068 if (ret)
1069 DRM_ERROR("failed to create device file for power profile\n");
1070 ret = device_create_file(rdev->dev, &dev_attr_power_method);
1071 if (ret)
1072 DRM_ERROR("failed to create device file for power method\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001073
Alex Deucherce8f5372010-05-07 15:10:16 -04001074 if (radeon_debugfs_pm_init(rdev)) {
1075 DRM_ERROR("Failed to register debugfs file for PM!\n");
1076 }
1077
1078 DRM_INFO("radeon: power management initialized\n");
Rafał Miłecki74338742009-11-03 00:53:02 +01001079 }
1080
1081 return 0;
1082}
1083
Alex Deucherda321c82013-04-12 13:55:22 -04001084static void radeon_dpm_print_power_states(struct radeon_device *rdev)
1085{
1086 int i;
1087
1088 for (i = 0; i < rdev->pm.dpm.num_ps; i++) {
1089 printk("== power state %d ==\n", i);
1090 radeon_dpm_print_power_state(rdev, &rdev->pm.dpm.ps[i]);
1091 }
1092}
1093
1094static int radeon_pm_init_dpm(struct radeon_device *rdev)
1095{
1096 int ret;
1097
1098 /* default to performance state */
Alex Deucheredcaa5b2013-07-05 11:48:31 -04001099 rdev->pm.dpm.state = POWER_STATE_TYPE_BALANCED;
1100 rdev->pm.dpm.user_state = POWER_STATE_TYPE_BALANCED;
Alex Deucherda321c82013-04-12 13:55:22 -04001101 rdev->pm.default_sclk = rdev->clock.default_sclk;
1102 rdev->pm.default_mclk = rdev->clock.default_mclk;
1103 rdev->pm.current_sclk = rdev->clock.default_sclk;
1104 rdev->pm.current_mclk = rdev->clock.default_mclk;
1105 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
1106
1107 if (rdev->bios && rdev->is_atom_bios)
1108 radeon_atombios_get_power_modes(rdev);
1109 else
1110 return -EINVAL;
1111
1112 /* set up the internal thermal sensor if applicable */
1113 ret = radeon_hwmon_init(rdev);
1114 if (ret)
1115 return ret;
1116
1117 INIT_WORK(&rdev->pm.dpm.thermal.work, radeon_dpm_thermal_work_handler);
1118 mutex_lock(&rdev->pm.mutex);
1119 radeon_dpm_init(rdev);
1120 rdev->pm.dpm.current_ps = rdev->pm.dpm.requested_ps = rdev->pm.dpm.boot_ps;
1121 radeon_dpm_print_power_states(rdev);
1122 radeon_dpm_setup_asic(rdev);
1123 ret = radeon_dpm_enable(rdev);
1124 mutex_unlock(&rdev->pm.mutex);
1125 if (ret) {
1126 rdev->pm.dpm_enabled = false;
1127 if ((rdev->family >= CHIP_BARTS) &&
Alex Deucherc6cf7772013-07-05 13:14:30 -04001128 (rdev->family <= CHIP_HAINAN) &&
Alex Deucherda321c82013-04-12 13:55:22 -04001129 rdev->mc_fw) {
1130 if (rdev->pm.default_vddc)
1131 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
1132 SET_VOLTAGE_TYPE_ASIC_VDDC);
1133 if (rdev->pm.default_vddci)
1134 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
1135 SET_VOLTAGE_TYPE_ASIC_VDDCI);
1136 if (rdev->pm.default_sclk)
1137 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
1138 if (rdev->pm.default_mclk)
1139 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
1140 }
1141 DRM_ERROR("radeon: dpm initialization failed\n");
1142 return ret;
1143 }
1144 rdev->pm.dpm_enabled = true;
1145 radeon_pm_compute_clocks(rdev);
1146
1147 if (rdev->pm.num_power_states > 1) {
1148 ret = device_create_file(rdev->dev, &dev_attr_power_dpm_state);
1149 if (ret)
1150 DRM_ERROR("failed to create device file for dpm state\n");
Alex Deucher70d01a52013-07-02 18:38:02 -04001151 ret = device_create_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
1152 if (ret)
1153 DRM_ERROR("failed to create device file for dpm state\n");
Alex Deucherda321c82013-04-12 13:55:22 -04001154 /* XXX: these are noops for dpm but are here for backwards compat */
1155 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
1156 if (ret)
1157 DRM_ERROR("failed to create device file for power profile\n");
1158 ret = device_create_file(rdev->dev, &dev_attr_power_method);
1159 if (ret)
1160 DRM_ERROR("failed to create device file for power method\n");
Alex Deucher1316b792013-06-28 09:28:39 -04001161
1162 if (radeon_debugfs_pm_init(rdev)) {
1163 DRM_ERROR("Failed to register debugfs file for dpm!\n");
1164 }
1165
Alex Deucherda321c82013-04-12 13:55:22 -04001166 DRM_INFO("radeon: dpm initialized\n");
1167 }
1168
1169 return 0;
1170}
1171
1172int radeon_pm_init(struct radeon_device *rdev)
1173{
1174 /* enable dpm on rv6xx+ */
1175 switch (rdev->family) {
Alex Deucher4a6369e2013-04-12 14:04:10 -04001176 case CHIP_RV610:
1177 case CHIP_RV630:
1178 case CHIP_RV620:
1179 case CHIP_RV635:
1180 case CHIP_RV670:
Alex Deucher9d670062013-04-12 13:59:22 -04001181 case CHIP_RS780:
1182 case CHIP_RS880:
Alex Deucher66229b22013-06-26 00:11:19 -04001183 case CHIP_RV770:
1184 case CHIP_RV730:
1185 case CHIP_RV710:
1186 case CHIP_RV740:
Alex Deucherdc50ba72013-06-26 00:33:35 -04001187 case CHIP_CEDAR:
1188 case CHIP_REDWOOD:
1189 case CHIP_JUNIPER:
1190 case CHIP_CYPRESS:
1191 case CHIP_HEMLOCK:
Alex Deucher80ea2c12013-04-12 14:56:21 -04001192 case CHIP_PALM:
1193 case CHIP_SUMO:
1194 case CHIP_SUMO2:
Alex Deucher6596afd2013-06-26 00:15:24 -04001195 case CHIP_BARTS:
1196 case CHIP_TURKS:
1197 case CHIP_CAICOS:
Alex Deucher69e0b572013-04-12 16:42:42 -04001198 case CHIP_CAYMAN:
Alex Deucherd70229f2013-04-12 16:40:41 -04001199 case CHIP_ARUBA:
Alex Deuchera9e61412013-06-25 17:56:16 -04001200 case CHIP_TAHITI:
1201 case CHIP_PITCAIRN:
1202 case CHIP_VERDE:
1203 case CHIP_OLAND:
1204 case CHIP_HAINAN:
Alex Deuchercc8dbbb2013-08-14 01:03:41 -04001205 case CHIP_BONAIRE:
Alex Deucher41a524a2013-08-14 01:01:40 -04001206 case CHIP_KABINI:
1207 case CHIP_KAVERI:
Alex Deucher8a53fa22013-08-07 16:09:08 -04001208 /* DPM requires the RLC, RV770+ dGPU requires SMC */
Alex Deucher761bfb92013-08-06 13:34:00 -04001209 if (!rdev->rlc_fw)
1210 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucher8a53fa22013-08-07 16:09:08 -04001211 else if ((rdev->family >= CHIP_RV770) &&
1212 (!(rdev->flags & RADEON_IS_IGP)) &&
1213 (!rdev->smc_fw))
1214 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucher761bfb92013-08-06 13:34:00 -04001215 else if (radeon_dpm == 1)
Alex Deucher9d670062013-04-12 13:59:22 -04001216 rdev->pm.pm_method = PM_METHOD_DPM;
1217 else
1218 rdev->pm.pm_method = PM_METHOD_PROFILE;
1219 break;
Alex Deucherda321c82013-04-12 13:55:22 -04001220 default:
1221 /* default to profile method */
1222 rdev->pm.pm_method = PM_METHOD_PROFILE;
1223 break;
1224 }
1225
1226 if (rdev->pm.pm_method == PM_METHOD_DPM)
1227 return radeon_pm_init_dpm(rdev);
1228 else
1229 return radeon_pm_init_old(rdev);
1230}
1231
1232static void radeon_pm_fini_old(struct radeon_device *rdev)
Alex Deucher29fb52c2010-03-11 10:01:17 -05001233{
Alex Deucherce8f5372010-05-07 15:10:16 -04001234 if (rdev->pm.num_power_states > 1) {
Alex Deuchera4248162010-04-24 14:50:23 -04001235 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -04001236 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
1237 rdev->pm.profile = PM_PROFILE_DEFAULT;
1238 radeon_pm_update_profile(rdev);
1239 radeon_pm_set_clocks(rdev);
1240 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -04001241 /* reset default clocks */
1242 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
1243 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
1244 radeon_pm_set_clocks(rdev);
1245 }
Alex Deuchera4248162010-04-24 14:50:23 -04001246 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +01001247
1248 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher58e21df2010-03-22 13:31:08 -04001249
Alex Deucherce8f5372010-05-07 15:10:16 -04001250 device_remove_file(rdev->dev, &dev_attr_power_profile);
1251 device_remove_file(rdev->dev, &dev_attr_power_method);
Alex Deucherce8f5372010-05-07 15:10:16 -04001252 }
Alex Deuchera4248162010-04-24 14:50:23 -04001253
Alex Deucher0975b162011-02-02 18:42:03 -05001254 if (rdev->pm.power_state)
1255 kfree(rdev->pm.power_state);
1256
Alex Deucher21a81222010-07-02 12:58:16 -04001257 radeon_hwmon_fini(rdev);
Alex Deucher29fb52c2010-03-11 10:01:17 -05001258}
1259
Alex Deucherda321c82013-04-12 13:55:22 -04001260static void radeon_pm_fini_dpm(struct radeon_device *rdev)
1261{
1262 if (rdev->pm.num_power_states > 1) {
1263 mutex_lock(&rdev->pm.mutex);
1264 radeon_dpm_disable(rdev);
1265 mutex_unlock(&rdev->pm.mutex);
1266
1267 device_remove_file(rdev->dev, &dev_attr_power_dpm_state);
Alex Deucher70d01a52013-07-02 18:38:02 -04001268 device_remove_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
Alex Deucherda321c82013-04-12 13:55:22 -04001269 /* XXX backwards compat */
1270 device_remove_file(rdev->dev, &dev_attr_power_profile);
1271 device_remove_file(rdev->dev, &dev_attr_power_method);
1272 }
1273 radeon_dpm_fini(rdev);
1274
1275 if (rdev->pm.power_state)
1276 kfree(rdev->pm.power_state);
1277
1278 radeon_hwmon_fini(rdev);
1279}
1280
1281void radeon_pm_fini(struct radeon_device *rdev)
1282{
1283 if (rdev->pm.pm_method == PM_METHOD_DPM)
1284 radeon_pm_fini_dpm(rdev);
1285 else
1286 radeon_pm_fini_old(rdev);
1287}
1288
1289static void radeon_pm_compute_clocks_old(struct radeon_device *rdev)
Rafał Miłeckic913e232009-12-22 23:02:16 +01001290{
1291 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -04001292 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001293 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001294
Alex Deucherce8f5372010-05-07 15:10:16 -04001295 if (rdev->pm.num_power_states < 2)
1296 return;
1297
Rafał Miłeckic913e232009-12-22 23:02:16 +01001298 mutex_lock(&rdev->pm.mutex);
1299
1300 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -04001301 rdev->pm.active_crtc_count = 0;
1302 list_for_each_entry(crtc,
1303 &ddev->mode_config.crtc_list, head) {
1304 radeon_crtc = to_radeon_crtc(crtc);
1305 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +01001306 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -04001307 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001308 }
1309 }
1310
Alex Deucherce8f5372010-05-07 15:10:16 -04001311 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
1312 radeon_pm_update_profile(rdev);
1313 radeon_pm_set_clocks(rdev);
1314 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
1315 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
1316 if (rdev->pm.active_crtc_count > 1) {
1317 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
1318 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Alex Deucherd7311172010-05-03 01:13:14 -04001319
Alex Deucherce8f5372010-05-07 15:10:16 -04001320 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
1321 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
1322 radeon_pm_get_dynpm_state(rdev);
1323 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001324
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001325 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001326 }
1327 } else if (rdev->pm.active_crtc_count == 1) {
1328 /* TODO: Increase clocks if needed for current mode */
Rafał Miłeckic913e232009-12-22 23:02:16 +01001329
Alex Deucherce8f5372010-05-07 15:10:16 -04001330 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
1331 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
1332 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
1333 radeon_pm_get_dynpm_state(rdev);
1334 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001335
Tejun Heo32c87fc2011-01-03 14:49:32 +01001336 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1337 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deucherce8f5372010-05-07 15:10:16 -04001338 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
1339 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +01001340 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1341 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001342 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -04001343 }
1344 } else { /* count == 0 */
1345 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
1346 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001347
Alex Deucherce8f5372010-05-07 15:10:16 -04001348 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
1349 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
1350 radeon_pm_get_dynpm_state(rdev);
1351 radeon_pm_set_clocks(rdev);
1352 }
1353 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001354 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001355 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +01001356
1357 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001358}
1359
Alex Deucherda321c82013-04-12 13:55:22 -04001360static void radeon_pm_compute_clocks_dpm(struct radeon_device *rdev)
1361{
1362 struct drm_device *ddev = rdev->ddev;
1363 struct drm_crtc *crtc;
1364 struct radeon_crtc *radeon_crtc;
1365
1366 mutex_lock(&rdev->pm.mutex);
1367
Alex Deucher5ca302f2012-11-30 10:56:57 -05001368 /* update active crtc counts */
Alex Deucherda321c82013-04-12 13:55:22 -04001369 rdev->pm.dpm.new_active_crtcs = 0;
1370 rdev->pm.dpm.new_active_crtc_count = 0;
1371 list_for_each_entry(crtc,
1372 &ddev->mode_config.crtc_list, head) {
1373 radeon_crtc = to_radeon_crtc(crtc);
1374 if (crtc->enabled) {
1375 rdev->pm.dpm.new_active_crtcs |= (1 << radeon_crtc->crtc_id);
1376 rdev->pm.dpm.new_active_crtc_count++;
1377 }
1378 }
1379
Alex Deucher5ca302f2012-11-30 10:56:57 -05001380 /* update battery/ac status */
1381 if (power_supply_is_system_supplied() > 0)
1382 rdev->pm.dpm.ac_power = true;
1383 else
1384 rdev->pm.dpm.ac_power = false;
1385
Alex Deucherda321c82013-04-12 13:55:22 -04001386 radeon_dpm_change_power_state_locked(rdev);
1387
1388 mutex_unlock(&rdev->pm.mutex);
Alex Deucher8a227552013-06-21 15:12:57 -04001389
Alex Deucherda321c82013-04-12 13:55:22 -04001390}
1391
1392void radeon_pm_compute_clocks(struct radeon_device *rdev)
1393{
1394 if (rdev->pm.pm_method == PM_METHOD_DPM)
1395 radeon_pm_compute_clocks_dpm(rdev);
1396 else
1397 radeon_pm_compute_clocks_old(rdev);
1398}
1399
Alex Deucherce8f5372010-05-07 15:10:16 -04001400static bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +10001401{
Mario Kleiner75fa0b02010-10-05 19:57:37 -04001402 int crtc, vpos, hpos, vbl_status;
Dave Airlief7352612010-02-18 15:58:36 +10001403 bool in_vbl = true;
1404
Mario Kleiner75fa0b02010-10-05 19:57:37 -04001405 /* Iterate over all active crtc's. All crtc's must be in vblank,
1406 * otherwise return in_vbl == false.
1407 */
1408 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
1409 if (rdev->pm.active_crtcs & (1 << crtc)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +02001410 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
1411 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
1412 !(vbl_status & DRM_SCANOUTPOS_INVBL))
Dave Airlief7352612010-02-18 15:58:36 +10001413 in_vbl = false;
1414 }
1415 }
Matthew Garrettf81f2022010-04-28 12:13:06 -04001416
1417 return in_vbl;
1418}
1419
Alex Deucherce8f5372010-05-07 15:10:16 -04001420static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
Matthew Garrettf81f2022010-04-28 12:13:06 -04001421{
1422 u32 stat_crtc = 0;
1423 bool in_vbl = radeon_pm_in_vbl(rdev);
1424
Dave Airlief7352612010-02-18 15:58:36 +10001425 if (in_vbl == false)
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001426 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
Alex Deucherbae6b5622010-04-22 13:38:05 -04001427 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +10001428 return in_vbl;
1429}
Rafał Miłeckic913e232009-12-22 23:02:16 +01001430
Alex Deucherce8f5372010-05-07 15:10:16 -04001431static void radeon_dynpm_idle_work_handler(struct work_struct *work)
Rafał Miłeckic913e232009-12-22 23:02:16 +01001432{
1433 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -04001434 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001435 rdev = container_of(work, struct radeon_device,
Alex Deucherce8f5372010-05-07 15:10:16 -04001436 pm.dynpm_idle_work.work);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001437
Matthew Garrettd9932a32010-04-26 16:02:26 -04001438 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001439 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -04001440 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +01001441 int not_processed = 0;
Alex Deucher74652802011-08-25 13:39:48 -04001442 int i;
Rafał Miłeckic913e232009-12-22 23:02:16 +01001443
Alex Deucher74652802011-08-25 13:39:48 -04001444 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
Alex Deucher0ec06122012-06-14 15:54:57 -04001445 struct radeon_ring *ring = &rdev->ring[i];
1446
1447 if (ring->ready) {
1448 not_processed += radeon_fence_count_emitted(rdev, i);
1449 if (not_processed >= 3)
1450 break;
1451 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001452 }
Rafał Miłeckic913e232009-12-22 23:02:16 +01001453
1454 if (not_processed >= 3) { /* should upclock */
Alex Deucherce8f5372010-05-07 15:10:16 -04001455 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
1456 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1457 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
1458 rdev->pm.dynpm_can_upclock) {
1459 rdev->pm.dynpm_planned_action =
1460 DYNPM_ACTION_UPCLOCK;
1461 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +01001462 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
1463 }
1464 } else if (not_processed == 0) { /* should downclock */
Alex Deucherce8f5372010-05-07 15:10:16 -04001465 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
1466 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
1467 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
1468 rdev->pm.dynpm_can_downclock) {
1469 rdev->pm.dynpm_planned_action =
1470 DYNPM_ACTION_DOWNCLOCK;
1471 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +01001472 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
1473 }
1474 }
1475
Alex Deucherd7311172010-05-03 01:13:14 -04001476 /* Note, radeon_pm_set_clocks is called with static_switch set
1477 * to false since we want to wait for vbl to avoid flicker.
1478 */
Alex Deucherce8f5372010-05-07 15:10:16 -04001479 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
1480 jiffies > rdev->pm.dynpm_action_timeout) {
1481 radeon_pm_get_dynpm_state(rdev);
1482 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001483 }
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +00001484
Tejun Heo32c87fc2011-01-03 14:49:32 +01001485 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
1486 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafał Miłeckic913e232009-12-22 23:02:16 +01001487 }
1488 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -04001489 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +01001490}
1491
Rafał Miłecki74338742009-11-03 00:53:02 +01001492/*
1493 * Debugfs info
1494 */
1495#if defined(CONFIG_DEBUG_FS)
1496
1497static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
1498{
1499 struct drm_info_node *node = (struct drm_info_node *) m->private;
1500 struct drm_device *dev = node->minor->dev;
1501 struct radeon_device *rdev = dev->dev_private;
1502
Alex Deucher1316b792013-06-28 09:28:39 -04001503 if (rdev->pm.dpm_enabled) {
1504 mutex_lock(&rdev->pm.mutex);
1505 if (rdev->asic->dpm.debugfs_print_current_performance_level)
1506 radeon_dpm_debugfs_print_current_performance_level(rdev, m);
1507 else
Alex Deucher71375922013-07-02 09:11:39 -04001508 seq_printf(m, "Debugfs support not implemented for this asic\n");
Alex Deucher1316b792013-06-28 09:28:39 -04001509 mutex_unlock(&rdev->pm.mutex);
1510 } else {
1511 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
1512 /* radeon_get_engine_clock is not reliable on APUs so just print the current clock */
1513 if ((rdev->family >= CHIP_PALM) && (rdev->flags & RADEON_IS_IGP))
1514 seq_printf(m, "current engine clock: %u0 kHz\n", rdev->pm.current_sclk);
1515 else
1516 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
1517 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
1518 if (rdev->asic->pm.get_memory_clock)
1519 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
1520 if (rdev->pm.current_vddc)
1521 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
1522 if (rdev->asic->pm.get_pcie_lanes)
1523 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
1524 }
Rafał Miłecki74338742009-11-03 00:53:02 +01001525
1526 return 0;
1527}
1528
1529static struct drm_info_list radeon_pm_info_list[] = {
1530 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
1531};
1532#endif
1533
Rafał Miłeckic913e232009-12-22 23:02:16 +01001534static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +01001535{
1536#if defined(CONFIG_DEBUG_FS)
1537 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
1538#else
1539 return 0;
1540#endif
1541}