Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 1 | /* |
| 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 Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 21 | * Alex Deucher <alexdeucher@gmail.com> |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 22 | */ |
| 23 | #include "drmP.h" |
| 24 | #include "radeon.h" |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 25 | #include "avivod.h" |
Alex Deucher | 8a83ec5 | 2011-04-12 14:49:23 -0400 | [diff] [blame] | 26 | #include "atom.h" |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 27 | #ifdef CONFIG_ACPI |
| 28 | #include <linux/acpi.h> |
| 29 | #endif |
| 30 | #include <linux/power_supply.h> |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 31 | #include <linux/hwmon.h> |
| 32 | #include <linux/hwmon-sysfs.h> |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 33 | |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 34 | #define RADEON_IDLE_LOOP_MS 100 |
| 35 | #define RADEON_RECLOCK_DELAY_MS 200 |
Rafał Miłecki | 73a6d3f | 2010-01-08 00:22:47 +0100 | [diff] [blame] | 36 | #define RADEON_WAIT_VBLANK_TIMEOUT 200 |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 37 | |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 38 | static const char *radeon_pm_state_type_name[5] = { |
| 39 | "Default", |
| 40 | "Powersave", |
| 41 | "Battery", |
| 42 | "Balanced", |
| 43 | "Performance", |
| 44 | }; |
| 45 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 46 | static void radeon_dynpm_idle_work_handler(struct work_struct *work); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 47 | static int radeon_debugfs_pm_init(struct radeon_device *rdev); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 48 | static bool radeon_pm_in_vbl(struct radeon_device *rdev); |
| 49 | static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish); |
| 50 | static void radeon_pm_update_profile(struct radeon_device *rdev); |
| 51 | static void radeon_pm_set_clocks(struct radeon_device *rdev); |
| 52 | |
| 53 | #define ACPI_AC_CLASS "ac_adapter" |
| 54 | |
Alex Deucher | a4c9e2e | 2011-11-04 10:09:41 -0400 | [diff] [blame] | 55 | int 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 Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 73 | #ifdef CONFIG_ACPI |
| 74 | static 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 Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 83 | DRM_DEBUG_DRIVER("pm: AC\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 84 | else |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 85 | DRM_DEBUG_DRIVER("pm: DC\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 86 | |
| 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 | |
| 101 | static 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 Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 115 | rdev->pm.profile_index = PM_PROFILE_MID_MH_IDX; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 116 | else |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 117 | rdev->pm.profile_index = PM_PROFILE_MID_SH_IDX; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 118 | } |
| 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 Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 126 | 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 Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 132 | 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łecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 152 | |
Matthew Garrett | 5876dd2 | 2010-04-26 15:52:20 -0400 | [diff] [blame] | 153 | static 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 Garrett | 5876dd2 | 2010-04-26 15:52:20 -0400 | [diff] [blame] | 164 | } |
| 165 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 166 | static 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 | |
| 176 | static void radeon_set_power_state(struct radeon_device *rdev) |
| 177 | { |
| 178 | u32 sclk, mclk; |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 179 | bool misc_after = false; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 180 | |
| 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 Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 188 | if (sclk > rdev->pm.default_sclk) |
| 189 | sclk = rdev->pm.default_sclk; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 190 | |
| 191 | mclk = rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 192 | clock_info[rdev->pm.requested_clock_mode_index].mclk; |
Alex Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 193 | if (mclk > rdev->pm.default_mclk) |
| 194 | mclk = rdev->pm.default_mclk; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 195 | |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 196 | /* 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 Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 201 | |
| 202 | if (rdev->pm.pm_method == PM_METHOD_DYNPM) { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 203 | if (!radeon_pm_in_vbl(rdev)) |
| 204 | return; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 205 | } |
| 206 | |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 207 | 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 Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 219 | DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk); |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | /* set memory clock */ |
Alex Deucher | 798bcf7 | 2012-02-23 17:53:48 -0500 | [diff] [blame] | 223 | if (rdev->asic->pm.set_memory_clock && (mclk != rdev->pm.current_mclk)) { |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 224 | 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 Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 228 | DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk); |
Alex Deucher | 9264587 | 2010-05-27 17:01:41 -0400 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | if (misc_after) |
| 232 | /* voltage, pcie lanes, etc.*/ |
| 233 | radeon_pm_misc(rdev); |
| 234 | |
| 235 | radeon_pm_finish(rdev); |
| 236 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 237 | 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 Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 240 | DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static void radeon_pm_set_clocks(struct radeon_device *rdev) |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 244 | { |
Matthew Garrett | 2aba631 | 2010-04-26 15:45:23 -0400 | [diff] [blame] | 245 | int i; |
| 246 | |
Alex Deucher | 4e186b2 | 2010-08-13 10:53:35 -0400 | [diff] [blame] | 247 | /* 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 Garrett | 612e06c | 2010-04-27 17:16:58 -0400 | [diff] [blame] | 252 | mutex_lock(&rdev->ddev->struct_mutex); |
Christian König | db7fce3 | 2012-05-11 14:57:18 +0200 | [diff] [blame] | 253 | down_write(&rdev->pm.mclk_lock); |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 254 | mutex_lock(&rdev->ring_lock); |
Alex Deucher | 4f3218c | 2010-04-29 16:14:02 -0400 | [diff] [blame] | 255 | |
| 256 | /* gui idle int has issues on older chips it seems */ |
| 257 | if (rdev->family >= CHIP_R600) { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 258 | if (rdev->irq.installed) { |
Christian Koenig | fb98257 | 2012-05-17 01:33:30 +0200 | [diff] [blame] | 259 | /* wait for GPU to become idle */ |
| 260 | radeon_irq_kms_wait_gui_idle(rdev); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 261 | } |
Matthew Garrett | 01434b4 | 2010-04-30 15:48:23 -0400 | [diff] [blame] | 262 | } else { |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 263 | struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX]; |
| 264 | if (ring->ready) { |
Christian König | 8a47cc9 | 2012-05-09 15:34:48 +0200 | [diff] [blame] | 265 | radeon_fence_wait_empty_locked(rdev, RADEON_RING_TYPE_GFX_INDEX); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 266 | } |
Alex Deucher | 4f3218c | 2010-04-29 16:14:02 -0400 | [diff] [blame] | 267 | } |
Matthew Garrett | 5876dd2 | 2010-04-26 15:52:20 -0400 | [diff] [blame] | 268 | radeon_unmap_vram_bos(rdev); |
| 269 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 270 | if (rdev->irq.installed) { |
Matthew Garrett | 2aba631 | 2010-04-26 15:45:23 -0400 | [diff] [blame] | 271 | for (i = 0; i < rdev->num_crtc; i++) { |
| 272 | if (rdev->pm.active_crtcs & (1 << i)) { |
| 273 | rdev->pm.req_vblank |= (1 << i); |
| 274 | drm_vblank_get(rdev->ddev, i); |
| 275 | } |
| 276 | } |
| 277 | } |
Alex Deucher | 539d241 | 2010-04-29 00:22:43 -0400 | [diff] [blame] | 278 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 279 | radeon_set_power_state(rdev); |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 280 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 281 | if (rdev->irq.installed) { |
Matthew Garrett | 2aba631 | 2010-04-26 15:45:23 -0400 | [diff] [blame] | 282 | for (i = 0; i < rdev->num_crtc; i++) { |
| 283 | if (rdev->pm.req_vblank & (1 << i)) { |
| 284 | rdev->pm.req_vblank &= ~(1 << i); |
| 285 | drm_vblank_put(rdev->ddev, i); |
| 286 | } |
| 287 | } |
| 288 | } |
Matthew Garrett | 5876dd2 | 2010-04-26 15:52:20 -0400 | [diff] [blame] | 289 | |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 290 | /* update display watermarks based on new power state */ |
| 291 | radeon_update_bandwidth_info(rdev); |
| 292 | if (rdev->pm.active_crtc_count) |
| 293 | radeon_bandwidth_update(rdev); |
| 294 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 295 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE; |
Matthew Garrett | 2aba631 | 2010-04-26 15:45:23 -0400 | [diff] [blame] | 296 | |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 297 | mutex_unlock(&rdev->ring_lock); |
Christian König | db7fce3 | 2012-05-11 14:57:18 +0200 | [diff] [blame] | 298 | up_write(&rdev->pm.mclk_lock); |
Matthew Garrett | 612e06c | 2010-04-27 17:16:58 -0400 | [diff] [blame] | 299 | mutex_unlock(&rdev->ddev->struct_mutex); |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 300 | } |
| 301 | |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 302 | static void radeon_pm_print_states(struct radeon_device *rdev) |
| 303 | { |
| 304 | int i, j; |
| 305 | struct radeon_power_state *power_state; |
| 306 | struct radeon_pm_clock_info *clock_info; |
| 307 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 308 | DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev->pm.num_power_states); |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 309 | for (i = 0; i < rdev->pm.num_power_states; i++) { |
| 310 | power_state = &rdev->pm.power_state[i]; |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 311 | DRM_DEBUG_DRIVER("State %d: %s\n", i, |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 312 | radeon_pm_state_type_name[power_state->type]); |
| 313 | if (i == rdev->pm.default_power_state_index) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 314 | DRM_DEBUG_DRIVER("\tDefault"); |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 315 | if ((rdev->flags & RADEON_IS_PCIE) && !(rdev->flags & RADEON_IS_IGP)) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 316 | DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state->pcie_lanes); |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 317 | if (power_state->flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 318 | DRM_DEBUG_DRIVER("\tSingle display only\n"); |
| 319 | DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state->num_clock_modes); |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 320 | for (j = 0; j < power_state->num_clock_modes; j++) { |
| 321 | clock_info = &(power_state->clock_info[j]); |
| 322 | if (rdev->flags & RADEON_IS_IGP) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 323 | DRM_DEBUG_DRIVER("\t\t%d e: %d%s\n", |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 324 | j, |
| 325 | clock_info->sclk * 10, |
| 326 | clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : ""); |
| 327 | else |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 328 | DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d%s\n", |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 329 | j, |
| 330 | clock_info->sclk * 10, |
| 331 | clock_info->mclk * 10, |
| 332 | clock_info->voltage.voltage, |
| 333 | clock_info->flags & RADEON_PM_MODE_NO_DISPLAY ? "\tNo display only" : ""); |
| 334 | } |
| 335 | } |
| 336 | } |
| 337 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 338 | static ssize_t radeon_get_pm_profile(struct device *dev, |
| 339 | struct device_attribute *attr, |
| 340 | char *buf) |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 341 | { |
| 342 | struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev)); |
| 343 | struct radeon_device *rdev = ddev->dev_private; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 344 | int cp = rdev->pm.profile; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 345 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 346 | return snprintf(buf, PAGE_SIZE, "%s\n", |
| 347 | (cp == PM_PROFILE_AUTO) ? "auto" : |
| 348 | (cp == PM_PROFILE_LOW) ? "low" : |
Daniel J Blueman | 12e27be | 2010-07-28 12:25:58 +0100 | [diff] [blame] | 349 | (cp == PM_PROFILE_MID) ? "mid" : |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 350 | (cp == PM_PROFILE_HIGH) ? "high" : "default"); |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 351 | } |
| 352 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 353 | static ssize_t radeon_set_pm_profile(struct device *dev, |
| 354 | struct device_attribute *attr, |
| 355 | const char *buf, |
| 356 | size_t count) |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 357 | { |
| 358 | struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev)); |
| 359 | struct radeon_device *rdev = ddev->dev_private; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 360 | |
| 361 | mutex_lock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 362 | if (rdev->pm.pm_method == PM_METHOD_PROFILE) { |
| 363 | if (strncmp("default", buf, strlen("default")) == 0) |
| 364 | rdev->pm.profile = PM_PROFILE_DEFAULT; |
| 365 | else if (strncmp("auto", buf, strlen("auto")) == 0) |
| 366 | rdev->pm.profile = PM_PROFILE_AUTO; |
| 367 | else if (strncmp("low", buf, strlen("low")) == 0) |
| 368 | rdev->pm.profile = PM_PROFILE_LOW; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 369 | else if (strncmp("mid", buf, strlen("mid")) == 0) |
| 370 | rdev->pm.profile = PM_PROFILE_MID; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 371 | else if (strncmp("high", buf, strlen("high")) == 0) |
| 372 | rdev->pm.profile = PM_PROFILE_HIGH; |
| 373 | else { |
Thomas Renninger | 1783e4b | 2011-03-23 15:14:09 +0000 | [diff] [blame] | 374 | count = -EINVAL; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 375 | goto fail; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 376 | } |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 377 | radeon_pm_update_profile(rdev); |
| 378 | radeon_pm_set_clocks(rdev); |
Thomas Renninger | 1783e4b | 2011-03-23 15:14:09 +0000 | [diff] [blame] | 379 | } else |
| 380 | count = -EINVAL; |
| 381 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 382 | fail: |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 383 | mutex_unlock(&rdev->pm.mutex); |
| 384 | |
| 385 | return count; |
| 386 | } |
| 387 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 388 | static ssize_t radeon_get_pm_method(struct device *dev, |
| 389 | struct device_attribute *attr, |
| 390 | char *buf) |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 391 | { |
| 392 | struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev)); |
| 393 | struct radeon_device *rdev = ddev->dev_private; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 394 | int pm = rdev->pm.pm_method; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 395 | |
| 396 | return snprintf(buf, PAGE_SIZE, "%s\n", |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 397 | (pm == PM_METHOD_DYNPM) ? "dynpm" : "profile"); |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 398 | } |
| 399 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 400 | static ssize_t radeon_set_pm_method(struct device *dev, |
| 401 | struct device_attribute *attr, |
| 402 | const char *buf, |
| 403 | size_t count) |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 404 | { |
| 405 | struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev)); |
| 406 | struct radeon_device *rdev = ddev->dev_private; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 407 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 408 | |
| 409 | if (strncmp("dynpm", buf, strlen("dynpm")) == 0) { |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 410 | mutex_lock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 411 | 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 Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 414 | mutex_unlock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 415 | } else if (strncmp("profile", buf, strlen("profile")) == 0) { |
| 416 | mutex_lock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 417 | /* disable dynpm */ |
| 418 | rdev->pm.dynpm_state = DYNPM_STATE_DISABLED; |
| 419 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE; |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 420 | rdev->pm.pm_method = PM_METHOD_PROFILE; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 421 | mutex_unlock(&rdev->pm.mutex); |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 422 | cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 423 | } else { |
Thomas Renninger | 1783e4b | 2011-03-23 15:14:09 +0000 | [diff] [blame] | 424 | count = -EINVAL; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 425 | goto fail; |
| 426 | } |
| 427 | radeon_pm_compute_clocks(rdev); |
| 428 | fail: |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 429 | return count; |
| 430 | } |
| 431 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 432 | static DEVICE_ATTR(power_profile, S_IRUGO | S_IWUSR, radeon_get_pm_profile, radeon_set_pm_profile); |
| 433 | static DEVICE_ATTR(power_method, S_IRUGO | S_IWUSR, radeon_get_pm_method, radeon_set_pm_method); |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 434 | |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 435 | static ssize_t radeon_hwmon_show_temp(struct device *dev, |
| 436 | struct device_attribute *attr, |
| 437 | char *buf) |
| 438 | { |
| 439 | struct drm_device *ddev = pci_get_drvdata(to_pci_dev(dev)); |
| 440 | struct radeon_device *rdev = ddev->dev_private; |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 441 | int temp; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 442 | |
| 443 | switch (rdev->pm.int_thermal_type) { |
| 444 | case THERMAL_TYPE_RV6XX: |
| 445 | temp = rv6xx_get_temp(rdev); |
| 446 | break; |
| 447 | case THERMAL_TYPE_RV770: |
| 448 | temp = rv770_get_temp(rdev); |
| 449 | break; |
| 450 | case THERMAL_TYPE_EVERGREEN: |
Alex Deucher | 4fddba1 | 2011-01-06 21:19:22 -0500 | [diff] [blame] | 451 | case THERMAL_TYPE_NI: |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 452 | temp = evergreen_get_temp(rdev); |
| 453 | break; |
Alex Deucher | e33df25 | 2010-11-22 17:56:32 -0500 | [diff] [blame] | 454 | case THERMAL_TYPE_SUMO: |
| 455 | temp = sumo_get_temp(rdev); |
| 456 | break; |
Alex Deucher | 1bd47d2 | 2012-03-20 17:18:10 -0400 | [diff] [blame] | 457 | case THERMAL_TYPE_SI: |
| 458 | temp = si_get_temp(rdev); |
| 459 | break; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 460 | default: |
| 461 | temp = 0; |
| 462 | break; |
| 463 | } |
| 464 | |
| 465 | return snprintf(buf, PAGE_SIZE, "%d\n", temp); |
| 466 | } |
| 467 | |
| 468 | static ssize_t radeon_hwmon_show_name(struct device *dev, |
| 469 | struct device_attribute *attr, |
| 470 | char *buf) |
| 471 | { |
| 472 | return sprintf(buf, "radeon\n"); |
| 473 | } |
| 474 | |
| 475 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, radeon_hwmon_show_temp, NULL, 0); |
| 476 | static SENSOR_DEVICE_ATTR(name, S_IRUGO, radeon_hwmon_show_name, NULL, 0); |
| 477 | |
| 478 | static struct attribute *hwmon_attributes[] = { |
| 479 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 480 | &sensor_dev_attr_name.dev_attr.attr, |
| 481 | NULL |
| 482 | }; |
| 483 | |
| 484 | static const struct attribute_group hwmon_attrgroup = { |
| 485 | .attrs = hwmon_attributes, |
| 486 | }; |
| 487 | |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 488 | static int radeon_hwmon_init(struct radeon_device *rdev) |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 489 | { |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 490 | int err = 0; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 491 | |
| 492 | rdev->pm.int_hwmon_dev = NULL; |
| 493 | |
| 494 | switch (rdev->pm.int_thermal_type) { |
| 495 | case THERMAL_TYPE_RV6XX: |
| 496 | case THERMAL_TYPE_RV770: |
| 497 | case THERMAL_TYPE_EVERGREEN: |
Alex Deucher | 457558e | 2011-05-25 17:49:54 -0400 | [diff] [blame] | 498 | case THERMAL_TYPE_NI: |
Alex Deucher | e33df25 | 2010-11-22 17:56:32 -0500 | [diff] [blame] | 499 | case THERMAL_TYPE_SUMO: |
Alex Deucher | 1bd47d2 | 2012-03-20 17:18:10 -0400 | [diff] [blame] | 500 | case THERMAL_TYPE_SI: |
Alex Deucher | 5d7486c | 2012-03-20 17:18:29 -0400 | [diff] [blame] | 501 | /* No support for TN yet */ |
| 502 | if (rdev->family == CHIP_ARUBA) |
| 503 | return err; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 504 | rdev->pm.int_hwmon_dev = hwmon_device_register(rdev->dev); |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 505 | if (IS_ERR(rdev->pm.int_hwmon_dev)) { |
| 506 | err = PTR_ERR(rdev->pm.int_hwmon_dev); |
| 507 | dev_err(rdev->dev, |
| 508 | "Unable to register hwmon device: %d\n", err); |
| 509 | break; |
| 510 | } |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 511 | dev_set_drvdata(rdev->pm.int_hwmon_dev, rdev->ddev); |
| 512 | err = sysfs_create_group(&rdev->pm.int_hwmon_dev->kobj, |
| 513 | &hwmon_attrgroup); |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 514 | if (err) { |
| 515 | dev_err(rdev->dev, |
| 516 | "Unable to create hwmon sysfs file: %d\n", err); |
| 517 | hwmon_device_unregister(rdev->dev); |
| 518 | } |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 519 | break; |
| 520 | default: |
| 521 | break; |
| 522 | } |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 523 | |
| 524 | return err; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | static void radeon_hwmon_fini(struct radeon_device *rdev) |
| 528 | { |
| 529 | if (rdev->pm.int_hwmon_dev) { |
| 530 | sysfs_remove_group(&rdev->pm.int_hwmon_dev->kobj, &hwmon_attrgroup); |
| 531 | hwmon_device_unregister(rdev->pm.int_hwmon_dev); |
| 532 | } |
| 533 | } |
| 534 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 535 | void radeon_pm_suspend(struct radeon_device *rdev) |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 536 | { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 537 | mutex_lock(&rdev->pm.mutex); |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 538 | if (rdev->pm.pm_method == PM_METHOD_DYNPM) { |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 539 | if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) |
| 540 | rdev->pm.dynpm_state = DYNPM_STATE_SUSPENDED; |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 541 | } |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 542 | mutex_unlock(&rdev->pm.mutex); |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 543 | |
| 544 | cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work); |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 545 | } |
| 546 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 547 | void radeon_pm_resume(struct radeon_device *rdev) |
Rafał Miłecki | d0d6cb8 | 2010-03-02 22:06:52 +0100 | [diff] [blame] | 548 | { |
Alex Deucher | ed18a36 | 2011-01-06 21:19:32 -0500 | [diff] [blame] | 549 | /* set up the default clocks if the MC ucode is loaded */ |
| 550 | if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) { |
| 551 | if (rdev->pm.default_vddc) |
Alex Deucher | 8a83ec5 | 2011-04-12 14:49:23 -0400 | [diff] [blame] | 552 | radeon_atom_set_voltage(rdev, rdev->pm.default_vddc, |
| 553 | SET_VOLTAGE_TYPE_ASIC_VDDC); |
Alex Deucher | 2feea49 | 2011-04-12 14:49:24 -0400 | [diff] [blame] | 554 | if (rdev->pm.default_vddci) |
| 555 | radeon_atom_set_voltage(rdev, rdev->pm.default_vddci, |
| 556 | SET_VOLTAGE_TYPE_ASIC_VDDCI); |
Alex Deucher | ed18a36 | 2011-01-06 21:19:32 -0500 | [diff] [blame] | 557 | if (rdev->pm.default_sclk) |
| 558 | radeon_set_engine_clock(rdev, rdev->pm.default_sclk); |
| 559 | if (rdev->pm.default_mclk) |
| 560 | radeon_set_memory_clock(rdev, rdev->pm.default_mclk); |
| 561 | } |
Alex Deucher | f8ed8b4 | 2010-06-07 17:49:51 -0400 | [diff] [blame] | 562 | /* asic init will reset the default power state */ |
| 563 | mutex_lock(&rdev->pm.mutex); |
| 564 | rdev->pm.current_power_state_index = rdev->pm.default_power_state_index; |
| 565 | rdev->pm.current_clock_mode_index = 0; |
Alex Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 566 | rdev->pm.current_sclk = rdev->pm.default_sclk; |
| 567 | rdev->pm.current_mclk = rdev->pm.default_mclk; |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 568 | rdev->pm.current_vddc = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.voltage; |
Alex Deucher | 2feea49 | 2011-04-12 14:49:24 -0400 | [diff] [blame] | 569 | rdev->pm.current_vddci = rdev->pm.power_state[rdev->pm.default_power_state_index].clock_info[0].voltage.vddci; |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 570 | if (rdev->pm.pm_method == PM_METHOD_DYNPM |
| 571 | && rdev->pm.dynpm_state == DYNPM_STATE_SUSPENDED) { |
| 572 | rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE; |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 573 | schedule_delayed_work(&rdev->pm.dynpm_idle_work, |
| 574 | msecs_to_jiffies(RADEON_IDLE_LOOP_MS)); |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 575 | } |
Alex Deucher | f8ed8b4 | 2010-06-07 17:49:51 -0400 | [diff] [blame] | 576 | mutex_unlock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 577 | radeon_pm_compute_clocks(rdev); |
Rafał Miłecki | d0d6cb8 | 2010-03-02 22:06:52 +0100 | [diff] [blame] | 578 | } |
| 579 | |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 580 | int radeon_pm_init(struct radeon_device *rdev) |
| 581 | { |
Dave Airlie | 26481fb | 2010-05-18 19:00:14 +1000 | [diff] [blame] | 582 | int ret; |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 583 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 584 | /* default to profile method */ |
| 585 | rdev->pm.pm_method = PM_METHOD_PROFILE; |
Alex Deucher | f8ed8b4 | 2010-06-07 17:49:51 -0400 | [diff] [blame] | 586 | rdev->pm.profile = PM_PROFILE_DEFAULT; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 587 | rdev->pm.dynpm_state = DYNPM_STATE_DISABLED; |
| 588 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE; |
| 589 | rdev->pm.dynpm_can_upclock = true; |
| 590 | rdev->pm.dynpm_can_downclock = true; |
Alex Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 591 | rdev->pm.default_sclk = rdev->clock.default_sclk; |
| 592 | rdev->pm.default_mclk = rdev->clock.default_mclk; |
Alex Deucher | f8ed8b4 | 2010-06-07 17:49:51 -0400 | [diff] [blame] | 593 | rdev->pm.current_sclk = rdev->clock.default_sclk; |
| 594 | rdev->pm.current_mclk = rdev->clock.default_mclk; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 595 | rdev->pm.int_thermal_type = THERMAL_TYPE_NONE; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 596 | |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 597 | if (rdev->bios) { |
| 598 | if (rdev->is_atom_bios) |
| 599 | radeon_atombios_get_power_modes(rdev); |
| 600 | else |
| 601 | radeon_combios_get_power_modes(rdev); |
Rafał Miłecki | f712d0c | 2010-06-07 18:29:44 -0400 | [diff] [blame] | 602 | radeon_pm_print_states(rdev); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 603 | radeon_pm_init_profile(rdev); |
Alex Deucher | ed18a36 | 2011-01-06 21:19:32 -0500 | [diff] [blame] | 604 | /* set up the default clocks if the MC ucode is loaded */ |
| 605 | if (ASIC_IS_DCE5(rdev) && rdev->mc_fw) { |
| 606 | if (rdev->pm.default_vddc) |
Alex Deucher | 8a83ec5 | 2011-04-12 14:49:23 -0400 | [diff] [blame] | 607 | radeon_atom_set_voltage(rdev, rdev->pm.default_vddc, |
| 608 | SET_VOLTAGE_TYPE_ASIC_VDDC); |
Alex Deucher | 4639dd2 | 2011-07-25 18:50:08 -0400 | [diff] [blame] | 609 | if (rdev->pm.default_vddci) |
| 610 | radeon_atom_set_voltage(rdev, rdev->pm.default_vddci, |
| 611 | SET_VOLTAGE_TYPE_ASIC_VDDCI); |
Alex Deucher | ed18a36 | 2011-01-06 21:19:32 -0500 | [diff] [blame] | 612 | if (rdev->pm.default_sclk) |
| 613 | radeon_set_engine_clock(rdev, rdev->pm.default_sclk); |
| 614 | if (rdev->pm.default_mclk) |
| 615 | radeon_set_memory_clock(rdev, rdev->pm.default_mclk); |
| 616 | } |
Alex Deucher | 56278a8 | 2009-12-28 13:58:44 -0500 | [diff] [blame] | 617 | } |
| 618 | |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 619 | /* set up the internal thermal sensor if applicable */ |
Dan Carpenter | 0d18abe | 2010-08-09 21:59:42 +0200 | [diff] [blame] | 620 | ret = radeon_hwmon_init(rdev); |
| 621 | if (ret) |
| 622 | return ret; |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 623 | |
| 624 | INIT_DELAYED_WORK(&rdev->pm.dynpm_idle_work, radeon_dynpm_idle_work_handler); |
| 625 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 626 | if (rdev->pm.num_power_states > 1) { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 627 | /* where's the best place to put these? */ |
Dave Airlie | 26481fb | 2010-05-18 19:00:14 +1000 | [diff] [blame] | 628 | ret = device_create_file(rdev->dev, &dev_attr_power_profile); |
| 629 | if (ret) |
| 630 | DRM_ERROR("failed to create device file for power profile\n"); |
| 631 | ret = device_create_file(rdev->dev, &dev_attr_power_method); |
| 632 | if (ret) |
| 633 | DRM_ERROR("failed to create device file for power method\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 634 | |
| 635 | #ifdef CONFIG_ACPI |
| 636 | rdev->acpi_nb.notifier_call = radeon_acpi_event; |
| 637 | register_acpi_notifier(&rdev->acpi_nb); |
| 638 | #endif |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 639 | if (radeon_debugfs_pm_init(rdev)) { |
| 640 | DRM_ERROR("Failed to register debugfs file for PM!\n"); |
| 641 | } |
| 642 | |
| 643 | DRM_INFO("radeon: power management initialized\n"); |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 649 | void radeon_pm_fini(struct radeon_device *rdev) |
| 650 | { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 651 | if (rdev->pm.num_power_states > 1) { |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 652 | mutex_lock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 653 | if (rdev->pm.pm_method == PM_METHOD_PROFILE) { |
| 654 | rdev->pm.profile = PM_PROFILE_DEFAULT; |
| 655 | radeon_pm_update_profile(rdev); |
| 656 | radeon_pm_set_clocks(rdev); |
| 657 | } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 658 | /* reset default clocks */ |
| 659 | rdev->pm.dynpm_state = DYNPM_STATE_DISABLED; |
| 660 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT; |
| 661 | radeon_pm_set_clocks(rdev); |
| 662 | } |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 663 | mutex_unlock(&rdev->pm.mutex); |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 664 | |
| 665 | cancel_delayed_work_sync(&rdev->pm.dynpm_idle_work); |
Alex Deucher | 58e21df | 2010-03-22 13:31:08 -0400 | [diff] [blame] | 666 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 667 | device_remove_file(rdev->dev, &dev_attr_power_profile); |
| 668 | device_remove_file(rdev->dev, &dev_attr_power_method); |
| 669 | #ifdef CONFIG_ACPI |
| 670 | unregister_acpi_notifier(&rdev->acpi_nb); |
| 671 | #endif |
| 672 | } |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 673 | |
Alex Deucher | 0975b16 | 2011-02-02 18:42:03 -0500 | [diff] [blame] | 674 | if (rdev->pm.power_state) |
| 675 | kfree(rdev->pm.power_state); |
| 676 | |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 677 | radeon_hwmon_fini(rdev); |
Alex Deucher | 29fb52c | 2010-03-11 10:01:17 -0500 | [diff] [blame] | 678 | } |
| 679 | |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 680 | void radeon_pm_compute_clocks(struct radeon_device *rdev) |
| 681 | { |
| 682 | struct drm_device *ddev = rdev->ddev; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 683 | struct drm_crtc *crtc; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 684 | struct radeon_crtc *radeon_crtc; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 685 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 686 | if (rdev->pm.num_power_states < 2) |
| 687 | return; |
| 688 | |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 689 | mutex_lock(&rdev->pm.mutex); |
| 690 | |
| 691 | rdev->pm.active_crtcs = 0; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 692 | rdev->pm.active_crtc_count = 0; |
| 693 | list_for_each_entry(crtc, |
| 694 | &ddev->mode_config.crtc_list, head) { |
| 695 | radeon_crtc = to_radeon_crtc(crtc); |
| 696 | if (radeon_crtc->enabled) { |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 697 | rdev->pm.active_crtcs |= (1 << radeon_crtc->crtc_id); |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 698 | rdev->pm.active_crtc_count++; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 699 | } |
| 700 | } |
| 701 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 702 | if (rdev->pm.pm_method == PM_METHOD_PROFILE) { |
| 703 | radeon_pm_update_profile(rdev); |
| 704 | radeon_pm_set_clocks(rdev); |
| 705 | } else if (rdev->pm.pm_method == PM_METHOD_DYNPM) { |
| 706 | if (rdev->pm.dynpm_state != DYNPM_STATE_DISABLED) { |
| 707 | if (rdev->pm.active_crtc_count > 1) { |
| 708 | if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) { |
| 709 | cancel_delayed_work(&rdev->pm.dynpm_idle_work); |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 710 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 711 | rdev->pm.dynpm_state = DYNPM_STATE_PAUSED; |
| 712 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_DEFAULT; |
| 713 | radeon_pm_get_dynpm_state(rdev); |
| 714 | radeon_pm_set_clocks(rdev); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 715 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 716 | DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 717 | } |
| 718 | } else if (rdev->pm.active_crtc_count == 1) { |
| 719 | /* TODO: Increase clocks if needed for current mode */ |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 720 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 721 | if (rdev->pm.dynpm_state == DYNPM_STATE_MINIMUM) { |
| 722 | rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE; |
| 723 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_UPCLOCK; |
| 724 | radeon_pm_get_dynpm_state(rdev); |
| 725 | radeon_pm_set_clocks(rdev); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 726 | |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 727 | schedule_delayed_work(&rdev->pm.dynpm_idle_work, |
| 728 | msecs_to_jiffies(RADEON_IDLE_LOOP_MS)); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 729 | } else if (rdev->pm.dynpm_state == DYNPM_STATE_PAUSED) { |
| 730 | rdev->pm.dynpm_state = DYNPM_STATE_ACTIVE; |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 731 | schedule_delayed_work(&rdev->pm.dynpm_idle_work, |
| 732 | msecs_to_jiffies(RADEON_IDLE_LOOP_MS)); |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 733 | DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n"); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 734 | } |
| 735 | } else { /* count == 0 */ |
| 736 | if (rdev->pm.dynpm_state != DYNPM_STATE_MINIMUM) { |
| 737 | cancel_delayed_work(&rdev->pm.dynpm_idle_work); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 738 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 739 | rdev->pm.dynpm_state = DYNPM_STATE_MINIMUM; |
| 740 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_MINIMUM; |
| 741 | radeon_pm_get_dynpm_state(rdev); |
| 742 | radeon_pm_set_clocks(rdev); |
| 743 | } |
| 744 | } |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 745 | } |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 746 | } |
Rafał Miłecki | 73a6d3f | 2010-01-08 00:22:47 +0100 | [diff] [blame] | 747 | |
| 748 | mutex_unlock(&rdev->pm.mutex); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 749 | } |
| 750 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 751 | static bool radeon_pm_in_vbl(struct radeon_device *rdev) |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 752 | { |
Mario Kleiner | 75fa0b0 | 2010-10-05 19:57:37 -0400 | [diff] [blame] | 753 | int crtc, vpos, hpos, vbl_status; |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 754 | bool in_vbl = true; |
| 755 | |
Mario Kleiner | 75fa0b0 | 2010-10-05 19:57:37 -0400 | [diff] [blame] | 756 | /* Iterate over all active crtc's. All crtc's must be in vblank, |
| 757 | * otherwise return in_vbl == false. |
| 758 | */ |
| 759 | for (crtc = 0; (crtc < rdev->num_crtc) && in_vbl; crtc++) { |
| 760 | if (rdev->pm.active_crtcs & (1 << crtc)) { |
Mario Kleiner | f5a8020 | 2010-10-23 04:42:17 +0200 | [diff] [blame] | 761 | vbl_status = radeon_get_crtc_scanoutpos(rdev->ddev, crtc, &vpos, &hpos); |
| 762 | if ((vbl_status & DRM_SCANOUTPOS_VALID) && |
| 763 | !(vbl_status & DRM_SCANOUTPOS_INVBL)) |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 764 | in_vbl = false; |
| 765 | } |
| 766 | } |
Matthew Garrett | f81f202 | 2010-04-28 12:13:06 -0400 | [diff] [blame] | 767 | |
| 768 | return in_vbl; |
| 769 | } |
| 770 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 771 | static bool radeon_pm_debug_check_in_vbl(struct radeon_device *rdev, bool finish) |
Matthew Garrett | f81f202 | 2010-04-28 12:13:06 -0400 | [diff] [blame] | 772 | { |
| 773 | u32 stat_crtc = 0; |
| 774 | bool in_vbl = radeon_pm_in_vbl(rdev); |
| 775 | |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 776 | if (in_vbl == false) |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 777 | DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc, |
Alex Deucher | bae6b562 | 2010-04-22 13:38:05 -0400 | [diff] [blame] | 778 | finish ? "exit" : "entry"); |
Dave Airlie | f735261 | 2010-02-18 15:58:36 +1000 | [diff] [blame] | 779 | return in_vbl; |
| 780 | } |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 781 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 782 | static void radeon_dynpm_idle_work_handler(struct work_struct *work) |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 783 | { |
| 784 | struct radeon_device *rdev; |
Matthew Garrett | d9932a3 | 2010-04-26 16:02:26 -0400 | [diff] [blame] | 785 | int resched; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 786 | rdev = container_of(work, struct radeon_device, |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 787 | pm.dynpm_idle_work.work); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 788 | |
Matthew Garrett | d9932a3 | 2010-04-26 16:02:26 -0400 | [diff] [blame] | 789 | resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 790 | mutex_lock(&rdev->pm.mutex); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 791 | if (rdev->pm.dynpm_state == DYNPM_STATE_ACTIVE) { |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 792 | int not_processed = 0; |
Alex Deucher | 7465280 | 2011-08-25 13:39:48 -0400 | [diff] [blame] | 793 | int i; |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 794 | |
Alex Deucher | 7465280 | 2011-08-25 13:39:48 -0400 | [diff] [blame] | 795 | for (i = 0; i < RADEON_NUM_RINGS; ++i) { |
Alex Deucher | 0ec0612 | 2012-06-14 15:54:57 -0400 | [diff] [blame] | 796 | struct radeon_ring *ring = &rdev->ring[i]; |
| 797 | |
| 798 | if (ring->ready) { |
| 799 | not_processed += radeon_fence_count_emitted(rdev, i); |
| 800 | if (not_processed >= 3) |
| 801 | break; |
| 802 | } |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 803 | } |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 804 | |
| 805 | if (not_processed >= 3) { /* should upclock */ |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 806 | if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_DOWNCLOCK) { |
| 807 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE; |
| 808 | } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE && |
| 809 | rdev->pm.dynpm_can_upclock) { |
| 810 | rdev->pm.dynpm_planned_action = |
| 811 | DYNPM_ACTION_UPCLOCK; |
| 812 | rdev->pm.dynpm_action_timeout = jiffies + |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 813 | msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS); |
| 814 | } |
| 815 | } else if (not_processed == 0) { /* should downclock */ |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 816 | if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_UPCLOCK) { |
| 817 | rdev->pm.dynpm_planned_action = DYNPM_ACTION_NONE; |
| 818 | } else if (rdev->pm.dynpm_planned_action == DYNPM_ACTION_NONE && |
| 819 | rdev->pm.dynpm_can_downclock) { |
| 820 | rdev->pm.dynpm_planned_action = |
| 821 | DYNPM_ACTION_DOWNCLOCK; |
| 822 | rdev->pm.dynpm_action_timeout = jiffies + |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 823 | msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS); |
| 824 | } |
| 825 | } |
| 826 | |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 827 | /* Note, radeon_pm_set_clocks is called with static_switch set |
| 828 | * to false since we want to wait for vbl to avoid flicker. |
| 829 | */ |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 830 | if (rdev->pm.dynpm_planned_action != DYNPM_ACTION_NONE && |
| 831 | jiffies > rdev->pm.dynpm_action_timeout) { |
| 832 | radeon_pm_get_dynpm_state(rdev); |
| 833 | radeon_pm_set_clocks(rdev); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 834 | } |
Rafael J. Wysocki | 3f53eb6 | 2010-06-17 23:02:27 +0000 | [diff] [blame] | 835 | |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 836 | schedule_delayed_work(&rdev->pm.dynpm_idle_work, |
| 837 | msecs_to_jiffies(RADEON_IDLE_LOOP_MS)); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 838 | } |
| 839 | mutex_unlock(&rdev->pm.mutex); |
Matthew Garrett | d9932a3 | 2010-04-26 16:02:26 -0400 | [diff] [blame] | 840 | ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched); |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 841 | } |
| 842 | |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 843 | /* |
| 844 | * Debugfs info |
| 845 | */ |
| 846 | #if defined(CONFIG_DEBUG_FS) |
| 847 | |
| 848 | static int radeon_debugfs_pm_info(struct seq_file *m, void *data) |
| 849 | { |
| 850 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 851 | struct drm_device *dev = node->minor->dev; |
| 852 | struct radeon_device *rdev = dev->dev_private; |
| 853 | |
Alex Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 854 | seq_printf(m, "default engine clock: %u0 kHz\n", rdev->pm.default_sclk); |
Rafał Miłecki | 6234077 | 2009-12-15 21:46:58 +0100 | [diff] [blame] | 855 | seq_printf(m, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev)); |
Alex Deucher | 9ace9f7 | 2011-01-06 21:19:26 -0500 | [diff] [blame] | 856 | seq_printf(m, "default memory clock: %u0 kHz\n", rdev->pm.default_mclk); |
Alex Deucher | 798bcf7 | 2012-02-23 17:53:48 -0500 | [diff] [blame] | 857 | if (rdev->asic->pm.get_memory_clock) |
Rafał Miłecki | 6234077 | 2009-12-15 21:46:58 +0100 | [diff] [blame] | 858 | seq_printf(m, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev)); |
Rafał Miłecki | 0fcbe94 | 2010-06-07 18:25:21 -0400 | [diff] [blame] | 859 | if (rdev->pm.current_vddc) |
| 860 | seq_printf(m, "voltage: %u mV\n", rdev->pm.current_vddc); |
Alex Deucher | 798bcf7 | 2012-02-23 17:53:48 -0500 | [diff] [blame] | 861 | if (rdev->asic->pm.get_pcie_lanes) |
Rafał Miłecki | aa5120d | 2010-02-18 20:24:28 +0000 | [diff] [blame] | 862 | seq_printf(m, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev)); |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 863 | |
| 864 | return 0; |
| 865 | } |
| 866 | |
| 867 | static struct drm_info_list radeon_pm_info_list[] = { |
| 868 | {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL}, |
| 869 | }; |
| 870 | #endif |
| 871 | |
Rafał Miłecki | c913e23 | 2009-12-22 23:02:16 +0100 | [diff] [blame] | 872 | static int radeon_debugfs_pm_init(struct radeon_device *rdev) |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 873 | { |
| 874 | #if defined(CONFIG_DEBUG_FS) |
| 875 | return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list)); |
| 876 | #else |
| 877 | return 0; |
| 878 | #endif |
| 879 | } |