blob: 2c2c901226f41b0ec2e2ad3a5ec16799586ee6fe [file] [log] [blame]
Rafał Miłecki74338742009-11-03 00:53:02 +01001/*
2 * Permission is hereby granted, free of charge, to any person obtaining a
3 * copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation
5 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
8 *
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
16 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
17 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
18 * OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * Authors: Rafał Miłecki <zajec5@gmail.com>
Alex Deucher56278a82009-12-28 13:58:44 -050021 * Alex Deucher <alexdeucher@gmail.com>
Rafał Miłecki74338742009-11-03 00:53:02 +010022 */
23#include "drmP.h"
24#include "radeon.h"
Dave Airlief7352612010-02-18 15:58:36 +100025#include "avivod.h"
Alex Deucher8a83ec52011-04-12 14:49:23 -040026#include "atom.h"
Alex Deucherce8f5372010-05-07 15:10:16 -040027#ifdef CONFIG_ACPI
28#include <linux/acpi.h>
29#endif
30#include <linux/power_supply.h>
Alex Deucher21a81222010-07-02 12:58:16 -040031#include <linux/hwmon.h>
32#include <linux/hwmon-sysfs.h>
Rafał Miłecki74338742009-11-03 00:53:02 +010033
Rafał Miłeckic913e232009-12-22 23:02:16 +010034#define RADEON_IDLE_LOOP_MS 100
35#define RADEON_RECLOCK_DELAY_MS 200
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +010036#define RADEON_WAIT_VBLANK_TIMEOUT 200
Rafał Miłeckic913e232009-12-22 23:02:16 +010037
Rafał Miłeckif712d0c2010-06-07 18:29:44 -040038static const char *radeon_pm_state_type_name[5] = {
39 "Default",
40 "Powersave",
41 "Battery",
42 "Balanced",
43 "Performance",
44};
45
Alex Deucherce8f5372010-05-07 15:10:16 -040046static void radeon_dynpm_idle_work_handler(struct work_struct *work);
Rafał Miłeckic913e232009-12-22 23:02:16 +010047static int radeon_debugfs_pm_init(struct radeon_device *rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -040048static bool radeon_pm_in_vbl(struct radeon_device *rdev);
49static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish);
50static void radeon_pm_update_profile(struct radeon_device *rdev);
51static void radeon_pm_set_clocks(struct radeon_device *rdev);
52
53#define ACPI_AC_CLASS "ac_adapter"
54
Alex Deuchera4c9e2e2011-11-04 10:09:41 -040055int radeon_pm_get_type_index(struct radeon_device *rdev,
56 enum radeon_pm_state_type ps_type,
57 int instance)
58{
59 int i;
60 int found_instance = -1;
61
62 for (i = 0; i < rdev->pm.num_power_states; i++) {
63 if (rdev->pm.power_state[i].type == ps_type) {
64 found_instance++;
65 if (found_instance == instance)
66 return i;
67 }
68 }
69 /* return default if no match */
70 return rdev->pm.default_power_state_index;
71}
72
Alex Deucherce8f5372010-05-07 15:10:16 -040073#ifdef CONFIG_ACPI
74static int radeon_acpi_event(struct notifier_block *nb,
75 unsigned long val,
76 void *data)
77{
78 struct radeon_device *rdev = container_of(nb, struct radeon_device, acpi_nb);
79 struct acpi_bus_event *entry = (struct acpi_bus_event *)data;
80
81 if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0) {
82 if (power_supply_is_system_supplied() > 0)
Dave Airlied9fdaaf2010-08-02 10:42:55 +100083 DRM_DEBUG_DRIVER("pm: AC\n");
Alex Deucherce8f5372010-05-07 15:10:16 -040084 else
Dave Airlied9fdaaf2010-08-02 10:42:55 +100085 DRM_DEBUG_DRIVER("pm: DC\n");
Alex Deucherce8f5372010-05-07 15:10:16 -040086
87 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
88 if (rdev->pm.profile == PM_PROFILE_AUTO) {
89 mutex_lock(&rdev->pm.mutex);
90 radeon_pm_update_profile(rdev);
91 radeon_pm_set_clocks(rdev);
92 mutex_unlock(&rdev->pm.mutex);
93 }
94 }
95 }
96
97 return NOTIFY_OK;
98}
99#endif
100
101static void radeon_pm_update_profile(struct radeon_device *rdev)
102{
103 switch (rdev->pm.profile) {
104 case PM_PROFILE_DEFAULT:
105 rdev->pm.profile_index = PM_PROFILE_DEFAULT_IDX;
106 break;
107 case PM_PROFILE_AUTO:
108 if (power_supply_is_system_supplied() > 0) {
109 if (rdev->pm.active_crtc_count > 1)
110 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
111 else
112 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
113 } else {
114 if (rdev->pm.active_crtc_count > 1)
Alex Deucherc9e75b22010-06-02 17:56:01 -0400115 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -0400116 else
Alex Deucherc9e75b22010-06-02 17:56:01 -0400117 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
Alex Deucherce8f5372010-05-07 15:10:16 -0400118 }
119 break;
120 case PM_PROFILE_LOW:
121 if (rdev->pm.active_crtc_count > 1)
122 rdev->pm.profile_index = PM_PROFILE_LOW_MH_IDX;
123 else
124 rdev->pm.profile_index = PM_PROFILE_LOW_SH_IDX;
125 break;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400126 case PM_PROFILE_MID:
127 if (rdev->pm.active_crtc_count > 1)
128 rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX;
129 else
130 rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX;
131 break;
Alex Deucherce8f5372010-05-07 15:10:16 -0400132 case PM_PROFILE_HIGH:
133 if (rdev->pm.active_crtc_count > 1)
134 rdev->pm.profile_index = PM_PROFILE_HIGH_MH_IDX;
135 else
136 rdev->pm.profile_index = PM_PROFILE_HIGH_SH_IDX;
137 break;
138 }
139
140 if (rdev->pm.active_crtc_count == 0) {
141 rdev->pm.requested_power_state_index =
142 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_ps_idx;
143 rdev->pm.requested_clock_mode_index =
144 rdev->pm.profiles[rdev->pm.profile_index].dpms_off_cm_idx;
145 } else {
146 rdev->pm.requested_power_state_index =
147 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_ps_idx;
148 rdev->pm.requested_clock_mode_index =
149 rdev->pm.profiles[rdev->pm.profile_index].dpms_on_cm_idx;
150 }
151}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100152
Matthew Garrett5876dd22010-04-26 15:52:20 -0400153static void radeon_unmap_vram_bos(struct radeon_device *rdev)
154{
155 struct radeon_bo *bo, *n;
156
157 if (list_empty(&rdev->gem.objects))
158 return;
159
160 list_for_each_entry_safe(bo, n, &rdev->gem.objects, list) {
161 if (bo->tbo.mem.mem_type == TTM_PL_VRAM)
162 ttm_bo_unmap_virtual(&bo->tbo);
163 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400164}
165
Alex Deucherce8f5372010-05-07 15:10:16 -0400166static void radeon_sync_with_vblank(struct radeon_device *rdev)
167{
168 if (rdev->pm.active_crtcs) {
169 rdev->pm.vblank_sync = false;
170 wait_event_timeout(
171 rdev->irq.vblank_queue, rdev->pm.vblank_sync,
172 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT));
173 }
174}
175
176static void radeon_set_power_state(struct radeon_device *rdev)
177{
178 u32 sclk, mclk;
Alex Deucher92645872010-05-27 17:01:41 -0400179 bool misc_after = false;
Alex Deucherce8f5372010-05-07 15:10:16 -0400180
181 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
182 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
183 return;
184
185 if (radeon_gui_idle(rdev)) {
186 sclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
187 clock_info[rdev->pm.requested_clock_mode_index].sclk;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500188 if (sclk > rdev->pm.default_sclk)
189 sclk = rdev->pm.default_sclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400190
191 mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index].
192 clock_info[rdev->pm.requested_clock_mode_index].mclk;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500193 if (mclk > rdev->pm.default_mclk)
194 mclk = rdev->pm.default_mclk;
Alex Deucherce8f5372010-05-07 15:10:16 -0400195
Alex Deucher92645872010-05-27 17:01:41 -0400196 /* upvolt before raising clocks, downvolt after lowering clocks */
197 if (sclk < rdev->pm.current_sclk)
198 misc_after = true;
199
200 radeon_sync_with_vblank(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400201
202 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400203 if (!radeon_pm_in_vbl(rdev))
204 return;
Alex Deucherce8f5372010-05-07 15:10:16 -0400205 }
206
Alex Deucher92645872010-05-27 17:01:41 -0400207 radeon_pm_prepare(rdev);
208
209 if (!misc_after)
210 /* voltage, pcie lanes, etc.*/
211 radeon_pm_misc(rdev);
212
213 /* set engine clock */
214 if (sclk != rdev->pm.current_sclk) {
215 radeon_pm_debug_check_in_vbl(rdev, false);
216 radeon_set_engine_clock(rdev, sclk);
217 radeon_pm_debug_check_in_vbl(rdev, true);
218 rdev->pm.current_sclk = sclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000219 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk);
Alex Deucher92645872010-05-27 17:01:41 -0400220 }
221
222 /* set memory clock */
Alex Deucher798bcf72012-02-23 17:53:48 -0500223 if (rdev->asic->pm.set_memory_clock && (mclk != rdev->pm.current_mclk)) {
Alex Deucher92645872010-05-27 17:01:41 -0400224 radeon_pm_debug_check_in_vbl(rdev, false);
225 radeon_set_memory_clock(rdev, mclk);
226 radeon_pm_debug_check_in_vbl(rdev, true);
227 rdev->pm.current_mclk = mclk;
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000228 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk);
Alex Deucher92645872010-05-27 17:01:41 -0400229 }
230
231 if (misc_after)
232 /* voltage, pcie lanes, etc.*/
233 radeon_pm_misc(rdev);
234
235 radeon_pm_finish(rdev);
236
Alex Deucherce8f5372010-05-07 15:10:16 -0400237 rdev->pm.current_power_state_index = rdev->pm.requested_power_state_index;
238 rdev->pm.current_clock_mode_index = rdev->pm.requested_clock_mode_index;
239 } else
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000240 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400241}
242
243static void radeon_pm_set_clocks(struct radeon_device *rdev)
Alex Deuchera4248162010-04-24 14:50:23 -0400244{
Matthew Garrett2aba6312010-04-26 15:45:23 -0400245 int i;
246
Alex Deucher4e186b22010-08-13 10:53:35 -0400247 /* no need to take locks, etc. if nothing's going to change */
248 if ((rdev->pm.requested_clock_mode_index == rdev->pm.current_clock_mode_index) &&
249 (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index))
250 return;
251
Matthew Garrett612e06c2010-04-27 17:16:58 -0400252 mutex_lock(&rdev->ddev->struct_mutex);
Christian Königdb7fce32012-05-11 14:57:18 +0200253 down_write(&rdev->pm.mclk_lock);
Christian Königd6999bc2012-05-09 15:34:45 +0200254 mutex_lock(&rdev->ring_lock);
Alex Deucher4f3218c2010-04-29 16:14:02 -0400255
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400256 /* wait for the rings to drain */
257 for (i = 0; i < RADEON_NUM_RINGS; i++) {
258 struct radeon_ring *ring = &rdev->ring[i];
259 if (ring->ready)
260 radeon_fence_wait_empty_locked(rdev, i);
Alex Deucher4f3218c2010-04-29 16:14:02 -0400261 }
Alex Deucher95f5a3a2012-08-10 13:12:08 -0400262
Matthew Garrett5876dd22010-04-26 15:52:20 -0400263 radeon_unmap_vram_bos(rdev);
264
Alex Deucherce8f5372010-05-07 15:10:16 -0400265 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400266 for (i = 0; i < rdev->num_crtc; i++) {
267 if (rdev->pm.active_crtcs & (1 << i)) {
268 rdev->pm.req_vblank |= (1 << i);
269 drm_vblank_get(rdev->ddev, i);
270 }
271 }
272 }
Alex Deucher539d2412010-04-29 00:22:43 -0400273
Alex Deucherce8f5372010-05-07 15:10:16 -0400274 radeon_set_power_state(rdev);
Alex Deuchera4248162010-04-24 14:50:23 -0400275
Alex Deucherce8f5372010-05-07 15:10:16 -0400276 if (rdev->irq.installed) {
Matthew Garrett2aba6312010-04-26 15:45:23 -0400277 for (i = 0; i < rdev->num_crtc; i++) {
278 if (rdev->pm.req_vblank & (1 << i)) {
279 rdev->pm.req_vblank &= ~(1 << i);
280 drm_vblank_put(rdev->ddev, i);
281 }
282 }
283 }
Matthew Garrett5876dd22010-04-26 15:52:20 -0400284
Alex Deuchera4248162010-04-24 14:50:23 -0400285 /* update display watermarks based on new power state */
286 radeon_update_bandwidth_info(rdev);
287 if (rdev->pm.active_crtc_count)
288 radeon_bandwidth_update(rdev);
289
Alex Deucherce8f5372010-05-07 15:10:16 -0400290 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Matthew Garrett2aba6312010-04-26 15:45:23 -0400291
Christian Königd6999bc2012-05-09 15:34:45 +0200292 mutex_unlock(&rdev->ring_lock);
Christian Königdb7fce32012-05-11 14:57:18 +0200293 up_write(&rdev->pm.mclk_lock);
Matthew Garrett612e06c2010-04-27 17:16:58 -0400294 mutex_unlock(&rdev->ddev->struct_mutex);
Alex Deuchera4248162010-04-24 14:50:23 -0400295}
296
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400297static void radeon_pm_print_states(struct radeon_device *rdev)
298{
299 int i, j;
300 struct radeon_power_state *power_state;
301 struct radeon_pm_clock_info *clock_info;
302
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000303 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400304 for (i = 0; i < rdev->pm.num_power_states; i++) {
305 power_state = &rdev->pm.power_state[i];
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000306 DRM_DEBUG_DRIVER("State %d: %s\n", i,
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400307 radeon_pm_state_type_name[power_state->type]);
308 if (i == rdev->pm.default_power_state_index)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000309 DRM_DEBUG_DRIVER("\tDefault");
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400310 if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP))
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000311 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400312 if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000313 DRM_DEBUG_DRIVER("\tSingle display only\n");
314 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400315 for (j = 0; j < power_state->num_clock_modes; j++) {
316 clock_info = &(power_state->clock_info[j]);
317 if (rdev->flags & RADEON_IS_IGP)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000318 DRM_DEBUG_DRIVER("\t\t%d e: %d%s\n",
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400319 j,
320 clock_info->sclk * 10,
321 clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
322 else
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000323 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d%s\n",
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400324 j,
325 clock_info->sclk * 10,
326 clock_info->mclk * 10,
327 clock_info->voltage.voltage,
328 clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : "");
329 }
330 }
331}
332
Alex Deucherce8f5372010-05-07 15:10:16 -0400333static ssize_t radeon_get_pm_profile(struct device *dev,
334 struct device_attribute *attr,
335 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400336{
337 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
338 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400339 int cp = rdev->pm.profile;
Alex Deuchera4248162010-04-24 14:50:23 -0400340
Alex Deucherce8f5372010-05-07 15:10:16 -0400341 return snprintf(buf, PAGE_SIZE, "%s\n",
342 (cp == PM_PROFILE_AUTO) ? "auto" :
343 (cp == PM_PROFILE_LOW) ? "low" :
Daniel J Blueman12e27be2010-07-28 12:25:58 +0100344 (cp == PM_PROFILE_MID) ? "mid" :
Alex Deucherce8f5372010-05-07 15:10:16 -0400345 (cp == PM_PROFILE_HIGH) ? "high" : "default");
Alex Deuchera4248162010-04-24 14:50:23 -0400346}
347
Alex Deucherce8f5372010-05-07 15:10:16 -0400348static ssize_t radeon_set_pm_profile(struct device *dev,
349 struct device_attribute *attr,
350 const char *buf,
351 size_t count)
Alex Deuchera4248162010-04-24 14:50:23 -0400352{
353 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
354 struct radeon_device *rdev = ddev->dev_private;
Alex Deuchera4248162010-04-24 14:50:23 -0400355
356 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400357 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
358 if (strncmp("default", buf, strlen("default")) == 0)
359 rdev->pm.profile = PM_PROFILE_DEFAULT;
360 else if (strncmp("auto", buf, strlen("auto")) == 0)
361 rdev->pm.profile = PM_PROFILE_AUTO;
362 else if (strncmp("low", buf, strlen("low")) == 0)
363 rdev->pm.profile = PM_PROFILE_LOW;
Alex Deucherc9e75b22010-06-02 17:56:01 -0400364 else if (strncmp("mid", buf, strlen("mid")) == 0)
365 rdev->pm.profile = PM_PROFILE_MID;
Alex Deucherce8f5372010-05-07 15:10:16 -0400366 else if (strncmp("high", buf, strlen("high")) == 0)
367 rdev->pm.profile = PM_PROFILE_HIGH;
368 else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000369 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400370 goto fail;
Alex Deuchera4248162010-04-24 14:50:23 -0400371 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400372 radeon_pm_update_profile(rdev);
373 radeon_pm_set_clocks(rdev);
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000374 } else
375 count = -EINVAL;
376
Alex Deucherce8f5372010-05-07 15:10:16 -0400377fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400378 mutex_unlock(&rdev->pm.mutex);
379
380 return count;
381}
382
Alex Deucherce8f5372010-05-07 15:10:16 -0400383static ssize_t radeon_get_pm_method(struct device *dev,
384 struct device_attribute *attr,
385 char *buf)
Alex Deuchera4248162010-04-24 14:50:23 -0400386{
387 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
388 struct radeon_device *rdev = ddev->dev_private;
Alex Deucherce8f5372010-05-07 15:10:16 -0400389 int pm = rdev->pm.pm_method;
Alex Deuchera4248162010-04-24 14:50:23 -0400390
391 return snprintf(buf, PAGE_SIZE, "%s\n",
Alex Deucherce8f5372010-05-07 15:10:16 -0400392 (pm == PM_METHOD_DYNPM) ? "dynpm" : "profile");
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 Deucherce8f5372010-05-07 15:10:16 -0400403
404 if (strncmp("dynpm", buf, strlen("dynpm")) == 0) {
Alex Deuchera4248162010-04-24 14:50:23 -0400405 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400406 rdev->pm.pm_method = PM_METHOD_DYNPM;
407 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
408 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
Alex Deuchera4248162010-04-24 14:50:23 -0400409 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400410 } else if (strncmp("profile", buf, strlen("profile")) == 0) {
411 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400412 /* disable dynpm */
413 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
414 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000415 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherce8f5372010-05-07 15:10:16 -0400416 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100417 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucherce8f5372010-05-07 15:10:16 -0400418 } else {
Thomas Renninger1783e4b2011-03-23 15:14:09 +0000419 count = -EINVAL;
Alex Deucherce8f5372010-05-07 15:10:16 -0400420 goto fail;
421 }
422 radeon_pm_compute_clocks(rdev);
423fail:
Alex Deuchera4248162010-04-24 14:50:23 -0400424 return count;
425}
426
Alex Deucherce8f5372010-05-07 15:10:16 -0400427static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile);
428static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method);
Alex Deuchera4248162010-04-24 14:50:23 -0400429
Alex Deucher21a81222010-07-02 12:58:16 -0400430static ssize_t radeon_hwmon_show_temp(struct device *dev,
431 struct device_attribute *attr,
432 char *buf)
433{
434 struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev));
435 struct radeon_device *rdev = ddev->dev_private;
Alex Deucher20d391d2011-02-01 16:12:34 -0500436 int temp;
Alex Deucher21a81222010-07-02 12:58:16 -0400437
438 switch (rdev->pm.int_thermal_type) {
439 case THERMAL_TYPE_RV6XX:
440 temp = rv6xx_get_temp(rdev);
441 break;
442 case THERMAL_TYPE_RV770:
443 temp = rv770_get_temp(rdev);
444 break;
445 case THERMAL_TYPE_EVERGREEN:
Alex Deucher4fddba12011-01-06 21:19:22 -0500446 case THERMAL_TYPE_NI:
Alex Deucher21a81222010-07-02 12:58:16 -0400447 temp = evergreen_get_temp(rdev);
448 break;
Alex Deuchere33df252010-11-22 17:56:32 -0500449 case THERMAL_TYPE_SUMO:
450 temp = sumo_get_temp(rdev);
451 break;
Alex Deucher1bd47d22012-03-20 17:18:10 -0400452 case THERMAL_TYPE_SI:
453 temp = si_get_temp(rdev);
454 break;
Alex Deucher21a81222010-07-02 12:58:16 -0400455 default:
456 temp = 0;
457 break;
458 }
459
460 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
461}
462
463static ssize_t radeon_hwmon_show_name(struct device *dev,
464 struct device_attribute *attr,
465 char *buf)
466{
467 return sprintf(buf, "radeon\n");
468}
469
470static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0);
471static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0);
472
473static struct attribute *hwmon_attributes[] = {
474 &sensor_dev_attr_temp1_input.dev_attr.attr,
475 &sensor_dev_attr_name.dev_attr.attr,
476 NULL
477};
478
479static const struct attribute_group hwmon_attrgroup = {
480 .attrs = hwmon_attributes,
481};
482
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200483static int radeon_hwmon_init(struct radeon_device *rdev)
Alex Deucher21a81222010-07-02 12:58:16 -0400484{
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200485 int err = 0;
Alex Deucher21a81222010-07-02 12:58:16 -0400486
487 rdev->pm.int_hwmon_dev = NULL;
488
489 switch (rdev->pm.int_thermal_type) {
490 case THERMAL_TYPE_RV6XX:
491 case THERMAL_TYPE_RV770:
492 case THERMAL_TYPE_EVERGREEN:
Alex Deucher457558e2011-05-25 17:49:54 -0400493 case THERMAL_TYPE_NI:
Alex Deuchere33df252010-11-22 17:56:32 -0500494 case THERMAL_TYPE_SUMO:
Alex Deucher1bd47d22012-03-20 17:18:10 -0400495 case THERMAL_TYPE_SI:
Alex Deucher5d7486c2012-03-20 17:18:29 -0400496 /* No support for TN yet */
497 if (rdev->family == CHIP_ARUBA)
498 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400499 rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200500 if (IS_ERR(rdev->pm.int_hwmon_dev)) {
501 err = PTR_ERR(rdev->pm.int_hwmon_dev);
502 dev_err(rdev->dev,
503 "Unable to register hwmon device: %d\n", err);
504 break;
505 }
Alex Deucher21a81222010-07-02 12:58:16 -0400506 dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev);
507 err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj,
508 &hwmon_attrgroup);
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200509 if (err) {
510 dev_err(rdev->dev,
511 "Unable to create hwmon sysfs file: %d\n", err);
512 hwmon_device_unregister(rdev->dev);
513 }
Alex Deucher21a81222010-07-02 12:58:16 -0400514 break;
515 default:
516 break;
517 }
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200518
519 return err;
Alex Deucher21a81222010-07-02 12:58:16 -0400520}
521
522static void radeon_hwmon_fini(struct radeon_device *rdev)
523{
524 if (rdev->pm.int_hwmon_dev) {
525 sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup);
526 hwmon_device_unregister(rdev->pm.int_hwmon_dev);
527 }
528}
529
Alex Deucherce8f5372010-05-07 15:10:16 -0400530void radeon_pm_suspend(struct radeon_device *rdev)
Alex Deucher56278a82009-12-28 13:58:44 -0500531{
Alex Deucherce8f5372010-05-07 15:10:16 -0400532 mutex_lock(&rdev->pm.mutex);
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000533 if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000534 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE)
535 rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED;
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000536 }
Alex Deucherce8f5372010-05-07 15:10:16 -0400537 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100538
539 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher56278a82009-12-28 13:58:44 -0500540}
541
Alex Deucherce8f5372010-05-07 15:10:16 -0400542void radeon_pm_resume(struct radeon_device *rdev)
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100543{
Alex Deuchered18a362011-01-06 21:19:32 -0500544 /* set up the default clocks if the MC ucode is loaded */
545 if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
546 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400547 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
548 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher2feea492011-04-12 14:49:24 -0400549 if (rdev->pm.default_vddci)
550 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
551 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -0500552 if (rdev->pm.default_sclk)
553 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
554 if (rdev->pm.default_mclk)
555 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
556 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400557 /* asic init will reset the default power state */
558 mutex_lock(&rdev->pm.mutex);
559 rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
560 rdev->pm.current_clock_mode_index = 0;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500561 rdev->pm.current_sclk = rdev->pm.default_sclk;
562 rdev->pm.current_mclk = rdev->pm.default_mclk;
Alex Deucher4d601732010-06-07 18:15:18 -0400563 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 -0400564 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 +0000565 if (rdev->pm.pm_method == PM_METHOD_DYNPM
566 && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) {
567 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100568 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
569 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000570 }
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400571 mutex_unlock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400572 radeon_pm_compute_clocks(rdev);
Rafał Miłeckid0d6cb82010-03-02 22:06:52 +0100573}
574
Rafał Miłecki74338742009-11-03 00:53:02 +0100575int radeon_pm_init(struct radeon_device *rdev)
576{
Dave Airlie26481fb2010-05-18 19:00:14 +1000577 int ret;
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200578
Alex Deucherce8f5372010-05-07 15:10:16 -0400579 /* default to profile method */
580 rdev->pm.pm_method = PM_METHOD_PROFILE;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400581 rdev->pm.profile = PM_PROFILE_DEFAULT;
Alex Deucherce8f5372010-05-07 15:10:16 -0400582 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
583 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
584 rdev->pm.dynpm_can_upclock = true;
585 rdev->pm.dynpm_can_downclock = true;
Alex Deucher9ace9f72011-01-06 21:19:26 -0500586 rdev->pm.default_sclk = rdev->clock.default_sclk;
587 rdev->pm.default_mclk = rdev->clock.default_mclk;
Alex Deucherf8ed8b42010-06-07 17:49:51 -0400588 rdev->pm.current_sclk = rdev->clock.default_sclk;
589 rdev->pm.current_mclk = rdev->clock.default_mclk;
Alex Deucher21a81222010-07-02 12:58:16 -0400590 rdev->pm.int_thermal_type = THERMAL_TYPE_NONE;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100591
Alex Deucher56278a82009-12-28 13:58:44 -0500592 if (rdev->bios) {
593 if (rdev->is_atom_bios)
594 radeon_atombios_get_power_modes(rdev);
595 else
596 radeon_combios_get_power_modes(rdev);
Rafał Miłeckif712d0c2010-06-07 18:29:44 -0400597 radeon_pm_print_states(rdev);
Alex Deucherce8f5372010-05-07 15:10:16 -0400598 radeon_pm_init_profile(rdev);
Alex Deuchered18a362011-01-06 21:19:32 -0500599 /* set up the default clocks if the MC ucode is loaded */
600 if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) {
601 if (rdev->pm.default_vddc)
Alex Deucher8a83ec52011-04-12 14:49:23 -0400602 radeon_atom_set_voltage(rdev, rdev->pm.default_vddc,
603 SET_VOLTAGE_TYPE_ASIC_VDDC);
Alex Deucher4639dd22011-07-25 18:50:08 -0400604 if (rdev->pm.default_vddci)
605 radeon_atom_set_voltage(rdev, rdev->pm.default_vddci,
606 SET_VOLTAGE_TYPE_ASIC_VDDCI);
Alex Deuchered18a362011-01-06 21:19:32 -0500607 if (rdev->pm.default_sclk)
608 radeon_set_engine_clock(rdev, rdev->pm.default_sclk);
609 if (rdev->pm.default_mclk)
610 radeon_set_memory_clock(rdev, rdev->pm.default_mclk);
611 }
Alex Deucher56278a82009-12-28 13:58:44 -0500612 }
613
Alex Deucher21a81222010-07-02 12:58:16 -0400614 /* set up the internal thermal sensor if applicable */
Dan Carpenter0d18abe2010-08-09 21:59:42 +0200615 ret = radeon_hwmon_init(rdev);
616 if (ret)
617 return ret;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100618
619 INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler);
620
Alex Deucherce8f5372010-05-07 15:10:16 -0400621 if (rdev->pm.num_power_states > 1) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400622 /* where's the best place to put these? */
Dave Airlie26481fb2010-05-18 19:00:14 +1000623 ret = device_create_file(rdev->dev, &dev_attr_power_profile);
624 if (ret)
625 DRM_ERROR("failed to create device file for power profile\n");
626 ret = device_create_file(rdev->dev, &dev_attr_power_method);
627 if (ret)
628 DRM_ERROR("failed to create device file for power method\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400629
630#ifdef CONFIG_ACPI
631 rdev->acpi_nb.notifier_call = radeon_acpi_event;
632 register_acpi_notifier(&rdev->acpi_nb);
633#endif
Alex Deucherce8f5372010-05-07 15:10:16 -0400634 if (radeon_debugfs_pm_init(rdev)) {
635 DRM_ERROR("Failed to register debugfs file for PM!\n");
636 }
637
638 DRM_INFO("radeon: power management initialized\n");
Rafał Miłecki74338742009-11-03 00:53:02 +0100639 }
640
641 return 0;
642}
643
Alex Deucher29fb52c2010-03-11 10:01:17 -0500644void radeon_pm_fini(struct radeon_device *rdev)
645{
Alex Deucherce8f5372010-05-07 15:10:16 -0400646 if (rdev->pm.num_power_states > 1) {
Alex Deuchera4248162010-04-24 14:50:23 -0400647 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400648 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
649 rdev->pm.profile = PM_PROFILE_DEFAULT;
650 radeon_pm_update_profile(rdev);
651 radeon_pm_set_clocks(rdev);
652 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
Alex Deucherce8f5372010-05-07 15:10:16 -0400653 /* reset default clocks */
654 rdev->pm.dynpm_state = DYNPM_STATE_DISABLED;
655 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
656 radeon_pm_set_clocks(rdev);
657 }
Alex Deuchera4248162010-04-24 14:50:23 -0400658 mutex_unlock(&rdev->pm.mutex);
Tejun Heo32c87fc2011-01-03 14:49:32 +0100659
660 cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work);
Alex Deucher58e21df2010-03-22 13:31:08 -0400661
Alex Deucherce8f5372010-05-07 15:10:16 -0400662 device_remove_file(rdev->dev, &dev_attr_power_profile);
663 device_remove_file(rdev->dev, &dev_attr_power_method);
664#ifdef CONFIG_ACPI
665 unregister_acpi_notifier(&rdev->acpi_nb);
666#endif
667 }
Alex Deuchera4248162010-04-24 14:50:23 -0400668
Alex Deucher0975b162011-02-02 18:42:03 -0500669 if (rdev->pm.power_state)
670 kfree(rdev->pm.power_state);
671
Alex Deucher21a81222010-07-02 12:58:16 -0400672 radeon_hwmon_fini(rdev);
Alex Deucher29fb52c2010-03-11 10:01:17 -0500673}
674
Rafał Miłeckic913e232009-12-22 23:02:16 +0100675void radeon_pm_compute_clocks(struct radeon_device *rdev)
676{
677 struct drm_device *ddev = rdev->ddev;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400678 struct drm_crtc *crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100679 struct radeon_crtc *radeon_crtc;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100680
Alex Deucherce8f5372010-05-07 15:10:16 -0400681 if (rdev->pm.num_power_states < 2)
682 return;
683
Rafał Miłeckic913e232009-12-22 23:02:16 +0100684 mutex_lock(&rdev->pm.mutex);
685
686 rdev->pm.active_crtcs = 0;
Alex Deuchera48b9b42010-04-22 14:03:55 -0400687 rdev->pm.active_crtc_count = 0;
688 list_for_each_entry(crtc,
689 &ddev->mode_config.crtc_list, head) {
690 radeon_crtc = to_radeon_crtc(crtc);
691 if (radeon_crtc->enabled) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100692 rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400693 rdev->pm.active_crtc_count++;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100694 }
695 }
696
Alex Deucherce8f5372010-05-07 15:10:16 -0400697 if (rdev->pm.pm_method == PM_METHOD_PROFILE) {
698 radeon_pm_update_profile(rdev);
699 radeon_pm_set_clocks(rdev);
700 } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) {
701 if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) {
702 if (rdev->pm.active_crtc_count > 1) {
703 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
704 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Alex Deucherd7311172010-05-03 01:13:14 -0400705
Alex Deucherce8f5372010-05-07 15:10:16 -0400706 rdev->pm.dynpm_state = DYNPM_STATE_PAUSED;
707 rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT;
708 radeon_pm_get_dynpm_state(rdev);
709 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100710
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000711 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400712 }
713 } else if (rdev->pm.active_crtc_count == 1) {
714 /* TODO: Increase clocks if needed for current mode */
Rafał Miłeckic913e232009-12-22 23:02:16 +0100715
Alex Deucherce8f5372010-05-07 15:10:16 -0400716 if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) {
717 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
718 rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK;
719 radeon_pm_get_dynpm_state(rdev);
720 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100721
Tejun Heo32c87fc2011-01-03 14:49:32 +0100722 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
723 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Alex Deucherce8f5372010-05-07 15:10:16 -0400724 } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) {
725 rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE;
Tejun Heo32c87fc2011-01-03 14:49:32 +0100726 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
727 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000728 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
Alex Deucherce8f5372010-05-07 15:10:16 -0400729 }
730 } else { /* count == 0 */
731 if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) {
732 cancel_delayed_work(&rdev->pm.dynpm_idle_work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100733
Alex Deucherce8f5372010-05-07 15:10:16 -0400734 rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM;
735 rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM;
736 radeon_pm_get_dynpm_state(rdev);
737 radeon_pm_set_clocks(rdev);
738 }
739 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100740 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100741 }
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100742
743 mutex_unlock(&rdev->pm.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100744}
745
Alex Deucherce8f5372010-05-07 15:10:16 -0400746static bool radeon_pm_in_vbl(struct radeon_device *rdev)
Dave Airlief7352612010-02-18 15:58:36 +1000747{
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400748 int crtc, vpos, hpos, vbl_status;
Dave Airlief7352612010-02-18 15:58:36 +1000749 bool in_vbl = true;
750
Mario Kleiner75fa0b02010-10-05 19:57:37 -0400751 /* Iterate over all active crtc's. All crtc's must be in vblank,
752 * otherwise return in_vbl == false.
753 */
754 for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) {
755 if (rdev->pm.active_crtcs & (1 << crtc)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +0200756 vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos);
757 if ((vbl_status & DRM_SCANOUTPOS_VALID) &&
758 !(vbl_status & DRM_SCANOUTPOS_INVBL))
Dave Airlief7352612010-02-18 15:58:36 +1000759 in_vbl = false;
760 }
761 }
Matthew Garrettf81f2022010-04-28 12:13:06 -0400762
763 return in_vbl;
764}
765
Alex Deucherce8f5372010-05-07 15:10:16 -0400766static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish)
Matthew Garrettf81f2022010-04-28 12:13:06 -0400767{
768 u32 stat_crtc = 0;
769 bool in_vbl = radeon_pm_in_vbl(rdev);
770
Dave Airlief7352612010-02-18 15:58:36 +1000771 if (in_vbl == false)
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000772 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc,
Alex Deucherbae6b5622010-04-22 13:38:05 -0400773 finish ? "exit" : "entry");
Dave Airlief7352612010-02-18 15:58:36 +1000774 return in_vbl;
775}
Rafał Miłeckic913e232009-12-22 23:02:16 +0100776
Alex Deucherce8f5372010-05-07 15:10:16 -0400777static void radeon_dynpm_idle_work_handler(struct work_struct *work)
Rafał Miłeckic913e232009-12-22 23:02:16 +0100778{
779 struct radeon_device *rdev;
Matthew Garrettd9932a32010-04-26 16:02:26 -0400780 int resched;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100781 rdev = container_of(work, struct radeon_device,
Alex Deucherce8f5372010-05-07 15:10:16 -0400782 pm.dynpm_idle_work.work);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100783
Matthew Garrettd9932a32010-04-26 16:02:26 -0400784 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100785 mutex_lock(&rdev->pm.mutex);
Alex Deucherce8f5372010-05-07 15:10:16 -0400786 if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) {
Rafał Miłeckic913e232009-12-22 23:02:16 +0100787 int not_processed = 0;
Alex Deucher74652802011-08-25 13:39:48 -0400788 int i;
Rafał Miłeckic913e232009-12-22 23:02:16 +0100789
Alex Deucher74652802011-08-25 13:39:48 -0400790 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
Alex Deucher0ec06122012-06-14 15:54:57 -0400791 struct radeon_ring *ring = &rdev->ring[i];
792
793 if (ring->ready) {
794 not_processed += radeon_fence_count_emitted(rdev, i);
795 if (not_processed >= 3)
796 break;
797 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100798 }
Rafał Miłeckic913e232009-12-22 23:02:16 +0100799
800 if (not_processed >= 3) { /* should upclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400801 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) {
802 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
803 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
804 rdev->pm.dynpm_can_upclock) {
805 rdev->pm.dynpm_planned_action =
806 DYNPM_ACTION_UPCLOCK;
807 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100808 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
809 }
810 } else if (not_processed == 0) { /* should downclock */
Alex Deucherce8f5372010-05-07 15:10:16 -0400811 if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) {
812 rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE;
813 } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE &&
814 rdev->pm.dynpm_can_downclock) {
815 rdev->pm.dynpm_planned_action =
816 DYNPM_ACTION_DOWNCLOCK;
817 rdev->pm.dynpm_action_timeout = jiffies +
Rafał Miłeckic913e232009-12-22 23:02:16 +0100818 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS);
819 }
820 }
821
Alex Deucherd7311172010-05-03 01:13:14 -0400822 /* Note, radeon_pm_set_clocks is called with static_switch set
823 * to false since we want to wait for vbl to avoid flicker.
824 */
Alex Deucherce8f5372010-05-07 15:10:16 -0400825 if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE &&
826 jiffies > rdev->pm.dynpm_action_timeout) {
827 radeon_pm_get_dynpm_state(rdev);
828 radeon_pm_set_clocks(rdev);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100829 }
Rafael J. Wysocki3f53eb62010-06-17 23:02:27 +0000830
Tejun Heo32c87fc2011-01-03 14:49:32 +0100831 schedule_delayed_work(&rdev->pm.dynpm_idle_work,
832 msecs_to_jiffies(RADEON_IDLE_LOOP_MS));
Rafał Miłeckic913e232009-12-22 23:02:16 +0100833 }
834 mutex_unlock(&rdev->pm.mutex);
Matthew Garrettd9932a32010-04-26 16:02:26 -0400835 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100836}
837
Rafał Miłecki74338742009-11-03 00:53:02 +0100838/*
839 * Debugfs info
840 */
841#if defined(CONFIG_DEBUG_FS)
842
843static int radeon_debugfs_pm_info(struct seq_file *m, void *data)
844{
845 struct drm_info_node *node = (struct drm_info_node *) m->private;
846 struct drm_device *dev = node->minor->dev;
847 struct radeon_device *rdev = dev->dev_private;
848
Alex Deucher9ace9f72011-01-06 21:19:26 -0500849 seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk);
Rafał Miłecki62340772009-12-15 21:46:58 +0100850 seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev));
Alex Deucher9ace9f72011-01-06 21:19:26 -0500851 seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk);
Alex Deucher798bcf72012-02-23 17:53:48 -0500852 if (rdev->asic->pm.get_memory_clock)
Rafał Miłecki62340772009-12-15 21:46:58 +0100853 seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev));
Rafał Miłecki0fcbe942010-06-07 18:25:21 -0400854 if (rdev->pm.current_vddc)
855 seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc);
Alex Deucher798bcf72012-02-23 17:53:48 -0500856 if (rdev->asic->pm.get_pcie_lanes)
Rafał Miłeckiaa5120d2010-02-18 20:24:28 +0000857 seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev));
Rafał Miłecki74338742009-11-03 00:53:02 +0100858
859 return 0;
860}
861
862static struct drm_info_list radeon_pm_info_list[] = {
863 {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL},
864};
865#endif
866
Rafał Miłeckic913e232009-12-22 23:02:16 +0100867static int radeon_debugfs_pm_init(struct radeon_device *rdev)
Rafał Miłecki74338742009-11-03 00:53:02 +0100868{
869#if defined(CONFIG_DEBUG_FS)
870 return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list));
871#else
872 return 0;
873#endif
874}