Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Advanced Micro Devices, Inc. |
| 3 | * Copyright 2008 Red Hat Inc. |
| 4 | * Copyright 2009 Jerome Glisse. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 22 | * OTHER DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: Dave Airlie |
| 25 | * Alex Deucher |
| 26 | * Jerome Glisse |
| 27 | */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 29 | #include <linux/seq_file.h> |
| 30 | #include <linux/firmware.h> |
| 31 | #include <linux/platform_device.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 32 | #include "drmP.h" |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 33 | #include "radeon_drm.h" |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 34 | #include "radeon.h" |
Daniel Vetter | e699037 | 2010-03-11 21:19:17 +0000 | [diff] [blame] | 35 | #include "radeon_asic.h" |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 36 | #include "radeon_mode.h" |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 37 | #include "r600d.h" |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 38 | #include "atom.h" |
Jerome Glisse | d39c3b8 | 2009-09-28 18:34:43 +0200 | [diff] [blame] | 39 | #include "avivod.h" |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 40 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 41 | #define PFP_UCODE_SIZE 576 |
| 42 | #define PM4_UCODE_SIZE 1792 |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 43 | #define RLC_UCODE_SIZE 768 |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 44 | #define R700_PFP_UCODE_SIZE 848 |
| 45 | #define R700_PM4_UCODE_SIZE 1360 |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 46 | #define R700_RLC_UCODE_SIZE 1024 |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 47 | #define EVERGREEN_PFP_UCODE_SIZE 1120 |
| 48 | #define EVERGREEN_PM4_UCODE_SIZE 1376 |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 49 | #define EVERGREEN_RLC_UCODE_SIZE 768 |
Alex Deucher | 1272780 | 2011-03-02 20:07:32 -0500 | [diff] [blame] | 50 | #define CAYMAN_RLC_UCODE_SIZE 1024 |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 51 | |
| 52 | /* Firmware Names */ |
| 53 | MODULE_FIRMWARE("radeon/R600_pfp.bin"); |
| 54 | MODULE_FIRMWARE("radeon/R600_me.bin"); |
| 55 | MODULE_FIRMWARE("radeon/RV610_pfp.bin"); |
| 56 | MODULE_FIRMWARE("radeon/RV610_me.bin"); |
| 57 | MODULE_FIRMWARE("radeon/RV630_pfp.bin"); |
| 58 | MODULE_FIRMWARE("radeon/RV630_me.bin"); |
| 59 | MODULE_FIRMWARE("radeon/RV620_pfp.bin"); |
| 60 | MODULE_FIRMWARE("radeon/RV620_me.bin"); |
| 61 | MODULE_FIRMWARE("radeon/RV635_pfp.bin"); |
| 62 | MODULE_FIRMWARE("radeon/RV635_me.bin"); |
| 63 | MODULE_FIRMWARE("radeon/RV670_pfp.bin"); |
| 64 | MODULE_FIRMWARE("radeon/RV670_me.bin"); |
| 65 | MODULE_FIRMWARE("radeon/RS780_pfp.bin"); |
| 66 | MODULE_FIRMWARE("radeon/RS780_me.bin"); |
| 67 | MODULE_FIRMWARE("radeon/RV770_pfp.bin"); |
| 68 | MODULE_FIRMWARE("radeon/RV770_me.bin"); |
| 69 | MODULE_FIRMWARE("radeon/RV730_pfp.bin"); |
| 70 | MODULE_FIRMWARE("radeon/RV730_me.bin"); |
| 71 | MODULE_FIRMWARE("radeon/RV710_pfp.bin"); |
| 72 | MODULE_FIRMWARE("radeon/RV710_me.bin"); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 73 | MODULE_FIRMWARE("radeon/R600_rlc.bin"); |
| 74 | MODULE_FIRMWARE("radeon/R700_rlc.bin"); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 75 | MODULE_FIRMWARE("radeon/CEDAR_pfp.bin"); |
| 76 | MODULE_FIRMWARE("radeon/CEDAR_me.bin"); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 77 | MODULE_FIRMWARE("radeon/CEDAR_rlc.bin"); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 78 | MODULE_FIRMWARE("radeon/REDWOOD_pfp.bin"); |
| 79 | MODULE_FIRMWARE("radeon/REDWOOD_me.bin"); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 80 | MODULE_FIRMWARE("radeon/REDWOOD_rlc.bin"); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 81 | MODULE_FIRMWARE("radeon/JUNIPER_pfp.bin"); |
| 82 | MODULE_FIRMWARE("radeon/JUNIPER_me.bin"); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 83 | MODULE_FIRMWARE("radeon/JUNIPER_rlc.bin"); |
Dave Airlie | a743374 | 2010-04-09 15:31:09 +1000 | [diff] [blame] | 84 | MODULE_FIRMWARE("radeon/CYPRESS_pfp.bin"); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 85 | MODULE_FIRMWARE("radeon/CYPRESS_me.bin"); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 86 | MODULE_FIRMWARE("radeon/CYPRESS_rlc.bin"); |
Alex Deucher | 439bd6c | 2010-11-22 17:56:31 -0500 | [diff] [blame] | 87 | MODULE_FIRMWARE("radeon/PALM_pfp.bin"); |
| 88 | MODULE_FIRMWARE("radeon/PALM_me.bin"); |
| 89 | MODULE_FIRMWARE("radeon/SUMO_rlc.bin"); |
Alex Deucher | d5c5a72 | 2011-05-31 15:42:48 -0400 | [diff] [blame] | 90 | MODULE_FIRMWARE("radeon/SUMO_pfp.bin"); |
| 91 | MODULE_FIRMWARE("radeon/SUMO_me.bin"); |
| 92 | MODULE_FIRMWARE("radeon/SUMO2_pfp.bin"); |
| 93 | MODULE_FIRMWARE("radeon/SUMO2_me.bin"); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 94 | |
| 95 | int r600_debugfs_mc_info_init(struct radeon_device *rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 96 | |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 97 | /* r600,rv610,rv630,rv620,rv635,rv670 */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 98 | int r600_mc_wait_for_idle(struct radeon_device *rdev); |
| 99 | void r600_gpu_init(struct radeon_device *rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 100 | void r600_fini(struct radeon_device *rdev); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 101 | void r600_irq_disable(struct radeon_device *rdev); |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 102 | static void r600_pcie_gen2_enable(struct radeon_device *rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 103 | |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 104 | /* get temperature in millidegrees */ |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 105 | int rv6xx_get_temp(struct radeon_device *rdev) |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 106 | { |
| 107 | u32 temp = (RREG32(CG_THERMAL_STATUS) & ASIC_T_MASK) >> |
| 108 | ASIC_T_SHIFT; |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 109 | int actual_temp = temp & 0xff; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 110 | |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 111 | if (temp & 0x100) |
| 112 | actual_temp -= 256; |
| 113 | |
| 114 | return actual_temp * 1000; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 115 | } |
| 116 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 117 | void r600_pm_get_dynpm_state(struct radeon_device *rdev) |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 118 | { |
| 119 | int i; |
| 120 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 121 | rdev->pm.dynpm_can_upclock = true; |
| 122 | rdev->pm.dynpm_can_downclock = true; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 123 | |
| 124 | /* power state array is low to high, default is first */ |
| 125 | if ((rdev->flags & RADEON_IS_IGP) || (rdev->family == CHIP_R600)) { |
| 126 | int min_power_state_index = 0; |
| 127 | |
| 128 | if (rdev->pm.num_power_states > 2) |
| 129 | min_power_state_index = 1; |
| 130 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 131 | switch (rdev->pm.dynpm_planned_action) { |
| 132 | case DYNPM_ACTION_MINIMUM: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 133 | rdev->pm.requested_power_state_index = min_power_state_index; |
| 134 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 135 | rdev->pm.dynpm_can_downclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 136 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 137 | case DYNPM_ACTION_DOWNCLOCK: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 138 | if (rdev->pm.current_power_state_index == min_power_state_index) { |
| 139 | rdev->pm.requested_power_state_index = rdev->pm.current_power_state_index; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 140 | rdev->pm.dynpm_can_downclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 141 | } else { |
| 142 | if (rdev->pm.active_crtc_count > 1) { |
| 143 | for (i = 0; i < rdev->pm.num_power_states; i++) { |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 144 | if (rdev->pm.power_state[i].flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY) |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 145 | continue; |
| 146 | else if (i >= rdev->pm.current_power_state_index) { |
| 147 | rdev->pm.requested_power_state_index = |
| 148 | rdev->pm.current_power_state_index; |
| 149 | break; |
| 150 | } else { |
| 151 | rdev->pm.requested_power_state_index = i; |
| 152 | break; |
| 153 | } |
| 154 | } |
Alex Deucher | 773c3fa | 2010-06-25 16:21:27 -0400 | [diff] [blame] | 155 | } else { |
| 156 | if (rdev->pm.current_power_state_index == 0) |
| 157 | rdev->pm.requested_power_state_index = |
| 158 | rdev->pm.num_power_states - 1; |
| 159 | else |
| 160 | rdev->pm.requested_power_state_index = |
| 161 | rdev->pm.current_power_state_index - 1; |
| 162 | } |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 163 | } |
| 164 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 165 | /* don't use the power state if crtcs are active and no display flag is set */ |
| 166 | if ((rdev->pm.active_crtc_count > 0) && |
| 167 | (rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 168 | clock_info[rdev->pm.requested_clock_mode_index].flags & |
| 169 | RADEON_PM_MODE_NO_DISPLAY)) { |
| 170 | rdev->pm.requested_power_state_index++; |
| 171 | } |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 172 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 173 | case DYNPM_ACTION_UPCLOCK: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 174 | if (rdev->pm.current_power_state_index == (rdev->pm.num_power_states - 1)) { |
| 175 | rdev->pm.requested_power_state_index = rdev->pm.current_power_state_index; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 176 | rdev->pm.dynpm_can_upclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 177 | } else { |
| 178 | if (rdev->pm.active_crtc_count > 1) { |
| 179 | for (i = (rdev->pm.num_power_states - 1); i >= 0; i--) { |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 180 | if (rdev->pm.power_state[i].flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY) |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 181 | continue; |
| 182 | else if (i <= rdev->pm.current_power_state_index) { |
| 183 | rdev->pm.requested_power_state_index = |
| 184 | rdev->pm.current_power_state_index; |
| 185 | break; |
| 186 | } else { |
| 187 | rdev->pm.requested_power_state_index = i; |
| 188 | break; |
| 189 | } |
| 190 | } |
| 191 | } else |
| 192 | rdev->pm.requested_power_state_index = |
| 193 | rdev->pm.current_power_state_index + 1; |
| 194 | } |
| 195 | rdev->pm.requested_clock_mode_index = 0; |
| 196 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 197 | case DYNPM_ACTION_DEFAULT: |
Alex Deucher | 58e21df | 2010-03-22 13:31:08 -0400 | [diff] [blame] | 198 | rdev->pm.requested_power_state_index = rdev->pm.default_power_state_index; |
| 199 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 200 | rdev->pm.dynpm_can_upclock = false; |
Alex Deucher | 58e21df | 2010-03-22 13:31:08 -0400 | [diff] [blame] | 201 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 202 | case DYNPM_ACTION_NONE: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 203 | default: |
| 204 | DRM_ERROR("Requested mode for not defined action\n"); |
| 205 | return; |
| 206 | } |
| 207 | } else { |
| 208 | /* XXX select a power state based on AC/DC, single/dualhead, etc. */ |
| 209 | /* for now just select the first power state and switch between clock modes */ |
| 210 | /* power state array is low to high, default is first (0) */ |
| 211 | if (rdev->pm.active_crtc_count > 1) { |
| 212 | rdev->pm.requested_power_state_index = -1; |
| 213 | /* start at 1 as we don't want the default mode */ |
| 214 | for (i = 1; i < rdev->pm.num_power_states; i++) { |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 215 | if (rdev->pm.power_state[i].flags & RADEON_PM_STATE_SINGLE_DISPLAY_ONLY) |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 216 | continue; |
| 217 | else if ((rdev->pm.power_state[i].type == POWER_STATE_TYPE_PERFORMANCE) || |
| 218 | (rdev->pm.power_state[i].type == POWER_STATE_TYPE_BATTERY)) { |
| 219 | rdev->pm.requested_power_state_index = i; |
| 220 | break; |
| 221 | } |
| 222 | } |
| 223 | /* if nothing selected, grab the default state. */ |
| 224 | if (rdev->pm.requested_power_state_index == -1) |
| 225 | rdev->pm.requested_power_state_index = 0; |
| 226 | } else |
| 227 | rdev->pm.requested_power_state_index = 1; |
| 228 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 229 | switch (rdev->pm.dynpm_planned_action) { |
| 230 | case DYNPM_ACTION_MINIMUM: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 231 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 232 | rdev->pm.dynpm_can_downclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 233 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 234 | case DYNPM_ACTION_DOWNCLOCK: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 235 | if (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index) { |
| 236 | if (rdev->pm.current_clock_mode_index == 0) { |
| 237 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 238 | rdev->pm.dynpm_can_downclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 239 | } else |
| 240 | rdev->pm.requested_clock_mode_index = |
| 241 | rdev->pm.current_clock_mode_index - 1; |
| 242 | } else { |
| 243 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 244 | rdev->pm.dynpm_can_downclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 245 | } |
Alex Deucher | d731117 | 2010-05-03 01:13:14 -0400 | [diff] [blame] | 246 | /* don't use the power state if crtcs are active and no display flag is set */ |
| 247 | if ((rdev->pm.active_crtc_count > 0) && |
| 248 | (rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 249 | clock_info[rdev->pm.requested_clock_mode_index].flags & |
| 250 | RADEON_PM_MODE_NO_DISPLAY)) { |
| 251 | rdev->pm.requested_clock_mode_index++; |
| 252 | } |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 253 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 254 | case DYNPM_ACTION_UPCLOCK: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 255 | if (rdev->pm.requested_power_state_index == rdev->pm.current_power_state_index) { |
| 256 | if (rdev->pm.current_clock_mode_index == |
| 257 | (rdev->pm.power_state[rdev->pm.requested_power_state_index].num_clock_modes - 1)) { |
| 258 | rdev->pm.requested_clock_mode_index = rdev->pm.current_clock_mode_index; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 259 | rdev->pm.dynpm_can_upclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 260 | } else |
| 261 | rdev->pm.requested_clock_mode_index = |
| 262 | rdev->pm.current_clock_mode_index + 1; |
| 263 | } else { |
| 264 | rdev->pm.requested_clock_mode_index = |
| 265 | rdev->pm.power_state[rdev->pm.requested_power_state_index].num_clock_modes - 1; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 266 | rdev->pm.dynpm_can_upclock = false; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 267 | } |
| 268 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 269 | case DYNPM_ACTION_DEFAULT: |
Alex Deucher | 58e21df | 2010-03-22 13:31:08 -0400 | [diff] [blame] | 270 | rdev->pm.requested_power_state_index = rdev->pm.default_power_state_index; |
| 271 | rdev->pm.requested_clock_mode_index = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 272 | rdev->pm.dynpm_can_upclock = false; |
Alex Deucher | 58e21df | 2010-03-22 13:31:08 -0400 | [diff] [blame] | 273 | break; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 274 | case DYNPM_ACTION_NONE: |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 275 | default: |
| 276 | DRM_ERROR("Requested mode for not defined action\n"); |
| 277 | return; |
| 278 | } |
| 279 | } |
| 280 | |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 281 | DRM_DEBUG_DRIVER("Requested: e: %d m: %d p: %d\n", |
Alex Deucher | ce8a3eb | 2010-05-07 16:58:27 -0400 | [diff] [blame] | 282 | rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 283 | clock_info[rdev->pm.requested_clock_mode_index].sclk, |
| 284 | rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 285 | clock_info[rdev->pm.requested_clock_mode_index].mclk, |
| 286 | rdev->pm.power_state[rdev->pm.requested_power_state_index]. |
| 287 | pcie_lanes); |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 288 | } |
| 289 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 290 | static int r600_pm_get_type_index(struct radeon_device *rdev, |
| 291 | enum radeon_pm_state_type ps_type, |
| 292 | int instance) |
Alex Deucher | bae6b562 | 2010-04-22 13:38:05 -0400 | [diff] [blame] | 293 | { |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 294 | int i; |
| 295 | int found_instance = -1; |
Alex Deucher | a48b9b4 | 2010-04-22 14:03:55 -0400 | [diff] [blame] | 296 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 297 | for (i = 0; i < rdev->pm.num_power_states; i++) { |
| 298 | if (rdev->pm.power_state[i].type == ps_type) { |
| 299 | found_instance++; |
| 300 | if (found_instance == instance) |
| 301 | return i; |
Alex Deucher | a424816 | 2010-04-24 14:50:23 -0400 | [diff] [blame] | 302 | } |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 303 | } |
| 304 | /* return default if no match */ |
| 305 | return rdev->pm.default_power_state_index; |
| 306 | } |
Alex Deucher | bae6b562 | 2010-04-22 13:38:05 -0400 | [diff] [blame] | 307 | |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 308 | void rs780_pm_init_profile(struct radeon_device *rdev) |
| 309 | { |
| 310 | if (rdev->pm.num_power_states == 2) { |
| 311 | /* default */ |
| 312 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 313 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 314 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
| 315 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; |
| 316 | /* low sh */ |
| 317 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 0; |
| 318 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 0; |
| 319 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
| 320 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 321 | /* mid sh */ |
| 322 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 0; |
| 323 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 0; |
| 324 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 325 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 326 | /* high sh */ |
| 327 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = 0; |
| 328 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = 1; |
| 329 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
| 330 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 0; |
| 331 | /* low mh */ |
| 332 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = 0; |
| 333 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = 0; |
| 334 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
| 335 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 336 | /* mid mh */ |
| 337 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = 0; |
| 338 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = 0; |
| 339 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 340 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 341 | /* high mh */ |
| 342 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = 0; |
| 343 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = 1; |
| 344 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
| 345 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 0; |
| 346 | } else if (rdev->pm.num_power_states == 3) { |
| 347 | /* default */ |
| 348 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 349 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 350 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
| 351 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; |
| 352 | /* low sh */ |
| 353 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 1; |
| 354 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 1; |
| 355 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
| 356 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 357 | /* mid sh */ |
| 358 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 1; |
| 359 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 1; |
| 360 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 361 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 362 | /* high sh */ |
| 363 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = 1; |
| 364 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = 2; |
| 365 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
| 366 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 0; |
| 367 | /* low mh */ |
| 368 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = 1; |
| 369 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = 1; |
| 370 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
| 371 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 372 | /* mid mh */ |
| 373 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = 1; |
| 374 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = 1; |
| 375 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 376 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 377 | /* high mh */ |
| 378 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = 1; |
| 379 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = 2; |
| 380 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
| 381 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 0; |
| 382 | } else { |
| 383 | /* default */ |
| 384 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 385 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 386 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
| 387 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; |
| 388 | /* low sh */ |
| 389 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 2; |
| 390 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 2; |
| 391 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
| 392 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 393 | /* mid sh */ |
| 394 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 2; |
| 395 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 2; |
| 396 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 397 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 398 | /* high sh */ |
| 399 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = 2; |
| 400 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = 3; |
| 401 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
| 402 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 0; |
| 403 | /* low mh */ |
| 404 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = 2; |
| 405 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = 0; |
| 406 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
| 407 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 408 | /* mid mh */ |
| 409 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = 2; |
| 410 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = 0; |
| 411 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 412 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 413 | /* high mh */ |
| 414 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = 2; |
| 415 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = 3; |
| 416 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
| 417 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 0; |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | void r600_pm_init_profile(struct radeon_device *rdev) |
| 422 | { |
| 423 | if (rdev->family == CHIP_R600) { |
| 424 | /* XXX */ |
| 425 | /* default */ |
| 426 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 427 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 428 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 429 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 430 | /* low sh */ |
| 431 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 432 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 433 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 434 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 435 | /* mid sh */ |
| 436 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 437 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 438 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 439 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 440 | /* high sh */ |
| 441 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 442 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 443 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 444 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 445 | /* low mh */ |
| 446 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 447 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 448 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 449 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 450 | /* mid mh */ |
| 451 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 452 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 453 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 454 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 455 | /* high mh */ |
| 456 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 457 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 458 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 459 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 460 | } else { |
| 461 | if (rdev->pm.num_power_states < 4) { |
| 462 | /* default */ |
| 463 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 464 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 465 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
| 466 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 2; |
| 467 | /* low sh */ |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 468 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 1; |
| 469 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 1; |
| 470 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 471 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
| 472 | /* mid sh */ |
| 473 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 1; |
| 474 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 1; |
| 475 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 476 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 1; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 477 | /* high sh */ |
| 478 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = 1; |
| 479 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = 1; |
| 480 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
| 481 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 2; |
| 482 | /* low mh */ |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 483 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = 2; |
| 484 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = 2; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 485 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 486 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
| 487 | /* low mh */ |
| 488 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = 2; |
| 489 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = 2; |
| 490 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 491 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 1; |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 492 | /* high mh */ |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 493 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = 2; |
| 494 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = 2; |
| 495 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
| 496 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 2; |
| 497 | } else { |
| 498 | /* default */ |
| 499 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; |
| 500 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; |
| 501 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; |
| 502 | rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 2; |
| 503 | /* low sh */ |
| 504 | if (rdev->flags & RADEON_IS_MOBILITY) { |
| 505 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = |
| 506 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 0); |
| 507 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = |
| 508 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 0); |
| 509 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 510 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 511 | } else { |
| 512 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = |
| 513 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 514 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = |
| 515 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 516 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 517 | rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; |
| 518 | } |
| 519 | /* mid sh */ |
| 520 | if (rdev->flags & RADEON_IS_MOBILITY) { |
| 521 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = |
| 522 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 0); |
| 523 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = |
| 524 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 0); |
| 525 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 526 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 1; |
| 527 | } else { |
| 528 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = |
| 529 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 530 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = |
| 531 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 532 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0; |
| 533 | rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 1; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 534 | } |
| 535 | /* high sh */ |
| 536 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = |
| 537 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 538 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = |
| 539 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 0); |
| 540 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0; |
| 541 | rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 2; |
| 542 | /* low mh */ |
| 543 | if (rdev->flags & RADEON_IS_MOBILITY) { |
| 544 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = |
| 545 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 1); |
| 546 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = |
| 547 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 1); |
| 548 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 549 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 550 | } else { |
| 551 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = |
| 552 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
| 553 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = |
| 554 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
| 555 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0; |
Alex Deucher | c9e75b2 | 2010-06-02 17:56:01 -0400 | [diff] [blame] | 556 | rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0; |
| 557 | } |
| 558 | /* mid mh */ |
| 559 | if (rdev->flags & RADEON_IS_MOBILITY) { |
| 560 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = |
| 561 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 1); |
| 562 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = |
| 563 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_BATTERY, 1); |
| 564 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 565 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 1; |
| 566 | } else { |
| 567 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = |
| 568 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
| 569 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = |
| 570 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
| 571 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0; |
| 572 | rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 1; |
Alex Deucher | 4bff517 | 2010-05-17 19:41:26 -0400 | [diff] [blame] | 573 | } |
| 574 | /* high mh */ |
| 575 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = |
| 576 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
| 577 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = |
| 578 | r600_pm_get_type_index(rdev, POWER_STATE_TYPE_PERFORMANCE, 1); |
Alex Deucher | ce8f537 | 2010-05-07 15:10:16 -0400 | [diff] [blame] | 579 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0; |
| 580 | rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 2; |
| 581 | } |
| 582 | } |
Alex Deucher | bae6b562 | 2010-04-22 13:38:05 -0400 | [diff] [blame] | 583 | } |
| 584 | |
Alex Deucher | 49e02b7 | 2010-04-23 17:57:27 -0400 | [diff] [blame] | 585 | void r600_pm_misc(struct radeon_device *rdev) |
| 586 | { |
Rafał Miłecki | a081a9d | 2010-06-07 18:20:25 -0400 | [diff] [blame] | 587 | int req_ps_idx = rdev->pm.requested_power_state_index; |
| 588 | int req_cm_idx = rdev->pm.requested_clock_mode_index; |
| 589 | struct radeon_power_state *ps = &rdev->pm.power_state[req_ps_idx]; |
| 590 | struct radeon_voltage *voltage = &ps->clock_info[req_cm_idx].voltage; |
Alex Deucher | 7ac9aa5 | 2010-05-27 19:25:54 -0400 | [diff] [blame] | 591 | |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 592 | if ((voltage->type == VOLTAGE_SW) && voltage->voltage) { |
| 593 | if (voltage->voltage != rdev->pm.current_vddc) { |
Alex Deucher | 8a83ec5 | 2011-04-12 14:49:23 -0400 | [diff] [blame] | 594 | radeon_atom_set_voltage(rdev, voltage->voltage, SET_VOLTAGE_TYPE_ASIC_VDDC); |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 595 | rdev->pm.current_vddc = voltage->voltage; |
Dave Airlie | d9fdaaf | 2010-08-02 10:42:55 +1000 | [diff] [blame] | 596 | DRM_DEBUG_DRIVER("Setting: v: %d\n", voltage->voltage); |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 597 | } |
| 598 | } |
Alex Deucher | 49e02b7 | 2010-04-23 17:57:27 -0400 | [diff] [blame] | 599 | } |
| 600 | |
Alex Deucher | def9ba9 | 2010-04-22 12:39:58 -0400 | [diff] [blame] | 601 | bool r600_gui_idle(struct radeon_device *rdev) |
| 602 | { |
| 603 | if (RREG32(GRBM_STATUS) & GUI_ACTIVE) |
| 604 | return false; |
| 605 | else |
| 606 | return true; |
| 607 | } |
| 608 | |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 609 | /* hpd for digital panel detect/disconnect */ |
| 610 | bool r600_hpd_sense(struct radeon_device *rdev, enum radeon_hpd_id hpd) |
| 611 | { |
| 612 | bool connected = false; |
| 613 | |
| 614 | if (ASIC_IS_DCE3(rdev)) { |
| 615 | switch (hpd) { |
| 616 | case RADEON_HPD_1: |
| 617 | if (RREG32(DC_HPD1_INT_STATUS) & DC_HPDx_SENSE) |
| 618 | connected = true; |
| 619 | break; |
| 620 | case RADEON_HPD_2: |
| 621 | if (RREG32(DC_HPD2_INT_STATUS) & DC_HPDx_SENSE) |
| 622 | connected = true; |
| 623 | break; |
| 624 | case RADEON_HPD_3: |
| 625 | if (RREG32(DC_HPD3_INT_STATUS) & DC_HPDx_SENSE) |
| 626 | connected = true; |
| 627 | break; |
| 628 | case RADEON_HPD_4: |
| 629 | if (RREG32(DC_HPD4_INT_STATUS) & DC_HPDx_SENSE) |
| 630 | connected = true; |
| 631 | break; |
| 632 | /* DCE 3.2 */ |
| 633 | case RADEON_HPD_5: |
| 634 | if (RREG32(DC_HPD5_INT_STATUS) & DC_HPDx_SENSE) |
| 635 | connected = true; |
| 636 | break; |
| 637 | case RADEON_HPD_6: |
| 638 | if (RREG32(DC_HPD6_INT_STATUS) & DC_HPDx_SENSE) |
| 639 | connected = true; |
| 640 | break; |
| 641 | default: |
| 642 | break; |
| 643 | } |
| 644 | } else { |
| 645 | switch (hpd) { |
| 646 | case RADEON_HPD_1: |
| 647 | if (RREG32(DC_HOT_PLUG_DETECT1_INT_STATUS) & DC_HOT_PLUG_DETECTx_SENSE) |
| 648 | connected = true; |
| 649 | break; |
| 650 | case RADEON_HPD_2: |
| 651 | if (RREG32(DC_HOT_PLUG_DETECT2_INT_STATUS) & DC_HOT_PLUG_DETECTx_SENSE) |
| 652 | connected = true; |
| 653 | break; |
| 654 | case RADEON_HPD_3: |
| 655 | if (RREG32(DC_HOT_PLUG_DETECT3_INT_STATUS) & DC_HOT_PLUG_DETECTx_SENSE) |
| 656 | connected = true; |
| 657 | break; |
| 658 | default: |
| 659 | break; |
| 660 | } |
| 661 | } |
| 662 | return connected; |
| 663 | } |
| 664 | |
| 665 | void r600_hpd_set_polarity(struct radeon_device *rdev, |
Alex Deucher | 429770b | 2009-12-04 15:26:55 -0500 | [diff] [blame] | 666 | enum radeon_hpd_id hpd) |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 667 | { |
| 668 | u32 tmp; |
| 669 | bool connected = r600_hpd_sense(rdev, hpd); |
| 670 | |
| 671 | if (ASIC_IS_DCE3(rdev)) { |
| 672 | switch (hpd) { |
| 673 | case RADEON_HPD_1: |
| 674 | tmp = RREG32(DC_HPD1_INT_CONTROL); |
| 675 | if (connected) |
| 676 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 677 | else |
| 678 | tmp |= DC_HPDx_INT_POLARITY; |
| 679 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 680 | break; |
| 681 | case RADEON_HPD_2: |
| 682 | tmp = RREG32(DC_HPD2_INT_CONTROL); |
| 683 | if (connected) |
| 684 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 685 | else |
| 686 | tmp |= DC_HPDx_INT_POLARITY; |
| 687 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 688 | break; |
| 689 | case RADEON_HPD_3: |
| 690 | tmp = RREG32(DC_HPD3_INT_CONTROL); |
| 691 | if (connected) |
| 692 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 693 | else |
| 694 | tmp |= DC_HPDx_INT_POLARITY; |
| 695 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 696 | break; |
| 697 | case RADEON_HPD_4: |
| 698 | tmp = RREG32(DC_HPD4_INT_CONTROL); |
| 699 | if (connected) |
| 700 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 701 | else |
| 702 | tmp |= DC_HPDx_INT_POLARITY; |
| 703 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 704 | break; |
| 705 | case RADEON_HPD_5: |
| 706 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 707 | if (connected) |
| 708 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 709 | else |
| 710 | tmp |= DC_HPDx_INT_POLARITY; |
| 711 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
| 712 | break; |
| 713 | /* DCE 3.2 */ |
| 714 | case RADEON_HPD_6: |
| 715 | tmp = RREG32(DC_HPD6_INT_CONTROL); |
| 716 | if (connected) |
| 717 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 718 | else |
| 719 | tmp |= DC_HPDx_INT_POLARITY; |
| 720 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
| 721 | break; |
| 722 | default: |
| 723 | break; |
| 724 | } |
| 725 | } else { |
| 726 | switch (hpd) { |
| 727 | case RADEON_HPD_1: |
| 728 | tmp = RREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL); |
| 729 | if (connected) |
| 730 | tmp &= ~DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 731 | else |
| 732 | tmp |= DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 733 | WREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL, tmp); |
| 734 | break; |
| 735 | case RADEON_HPD_2: |
| 736 | tmp = RREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL); |
| 737 | if (connected) |
| 738 | tmp &= ~DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 739 | else |
| 740 | tmp |= DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 741 | WREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL, tmp); |
| 742 | break; |
| 743 | case RADEON_HPD_3: |
| 744 | tmp = RREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL); |
| 745 | if (connected) |
| 746 | tmp &= ~DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 747 | else |
| 748 | tmp |= DC_HOT_PLUG_DETECTx_INT_POLARITY; |
| 749 | WREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL, tmp); |
| 750 | break; |
| 751 | default: |
| 752 | break; |
| 753 | } |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | void r600_hpd_init(struct radeon_device *rdev) |
| 758 | { |
| 759 | struct drm_device *dev = rdev->ddev; |
| 760 | struct drm_connector *connector; |
| 761 | |
| 762 | if (ASIC_IS_DCE3(rdev)) { |
| 763 | u32 tmp = DC_HPDx_CONNECTION_TIMER(0x9c4) | DC_HPDx_RX_INT_TIMER(0xfa); |
| 764 | if (ASIC_IS_DCE32(rdev)) |
| 765 | tmp |= DC_HPDx_EN; |
| 766 | |
| 767 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 768 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 769 | switch (radeon_connector->hpd.hpd) { |
| 770 | case RADEON_HPD_1: |
| 771 | WREG32(DC_HPD1_CONTROL, tmp); |
| 772 | rdev->irq.hpd[0] = true; |
| 773 | break; |
| 774 | case RADEON_HPD_2: |
| 775 | WREG32(DC_HPD2_CONTROL, tmp); |
| 776 | rdev->irq.hpd[1] = true; |
| 777 | break; |
| 778 | case RADEON_HPD_3: |
| 779 | WREG32(DC_HPD3_CONTROL, tmp); |
| 780 | rdev->irq.hpd[2] = true; |
| 781 | break; |
| 782 | case RADEON_HPD_4: |
| 783 | WREG32(DC_HPD4_CONTROL, tmp); |
| 784 | rdev->irq.hpd[3] = true; |
| 785 | break; |
| 786 | /* DCE 3.2 */ |
| 787 | case RADEON_HPD_5: |
| 788 | WREG32(DC_HPD5_CONTROL, tmp); |
| 789 | rdev->irq.hpd[4] = true; |
| 790 | break; |
| 791 | case RADEON_HPD_6: |
| 792 | WREG32(DC_HPD6_CONTROL, tmp); |
| 793 | rdev->irq.hpd[5] = true; |
| 794 | break; |
| 795 | default: |
| 796 | break; |
| 797 | } |
| 798 | } |
| 799 | } else { |
| 800 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 801 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 802 | switch (radeon_connector->hpd.hpd) { |
| 803 | case RADEON_HPD_1: |
| 804 | WREG32(DC_HOT_PLUG_DETECT1_CONTROL, DC_HOT_PLUG_DETECTx_EN); |
| 805 | rdev->irq.hpd[0] = true; |
| 806 | break; |
| 807 | case RADEON_HPD_2: |
| 808 | WREG32(DC_HOT_PLUG_DETECT2_CONTROL, DC_HOT_PLUG_DETECTx_EN); |
| 809 | rdev->irq.hpd[1] = true; |
| 810 | break; |
| 811 | case RADEON_HPD_3: |
| 812 | WREG32(DC_HOT_PLUG_DETECT3_CONTROL, DC_HOT_PLUG_DETECTx_EN); |
| 813 | rdev->irq.hpd[2] = true; |
| 814 | break; |
| 815 | default: |
| 816 | break; |
| 817 | } |
| 818 | } |
| 819 | } |
Jerome Glisse | 003e69f | 2010-01-07 15:39:14 +0100 | [diff] [blame] | 820 | if (rdev->irq.installed) |
| 821 | r600_irq_set(rdev); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | void r600_hpd_fini(struct radeon_device *rdev) |
| 825 | { |
| 826 | struct drm_device *dev = rdev->ddev; |
| 827 | struct drm_connector *connector; |
| 828 | |
| 829 | if (ASIC_IS_DCE3(rdev)) { |
| 830 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 831 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 832 | switch (radeon_connector->hpd.hpd) { |
| 833 | case RADEON_HPD_1: |
| 834 | WREG32(DC_HPD1_CONTROL, 0); |
| 835 | rdev->irq.hpd[0] = false; |
| 836 | break; |
| 837 | case RADEON_HPD_2: |
| 838 | WREG32(DC_HPD2_CONTROL, 0); |
| 839 | rdev->irq.hpd[1] = false; |
| 840 | break; |
| 841 | case RADEON_HPD_3: |
| 842 | WREG32(DC_HPD3_CONTROL, 0); |
| 843 | rdev->irq.hpd[2] = false; |
| 844 | break; |
| 845 | case RADEON_HPD_4: |
| 846 | WREG32(DC_HPD4_CONTROL, 0); |
| 847 | rdev->irq.hpd[3] = false; |
| 848 | break; |
| 849 | /* DCE 3.2 */ |
| 850 | case RADEON_HPD_5: |
| 851 | WREG32(DC_HPD5_CONTROL, 0); |
| 852 | rdev->irq.hpd[4] = false; |
| 853 | break; |
| 854 | case RADEON_HPD_6: |
| 855 | WREG32(DC_HPD6_CONTROL, 0); |
| 856 | rdev->irq.hpd[5] = false; |
| 857 | break; |
| 858 | default: |
| 859 | break; |
| 860 | } |
| 861 | } |
| 862 | } else { |
| 863 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 864 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 865 | switch (radeon_connector->hpd.hpd) { |
| 866 | case RADEON_HPD_1: |
| 867 | WREG32(DC_HOT_PLUG_DETECT1_CONTROL, 0); |
| 868 | rdev->irq.hpd[0] = false; |
| 869 | break; |
| 870 | case RADEON_HPD_2: |
| 871 | WREG32(DC_HOT_PLUG_DETECT2_CONTROL, 0); |
| 872 | rdev->irq.hpd[1] = false; |
| 873 | break; |
| 874 | case RADEON_HPD_3: |
| 875 | WREG32(DC_HOT_PLUG_DETECT3_CONTROL, 0); |
| 876 | rdev->irq.hpd[2] = false; |
| 877 | break; |
| 878 | default: |
| 879 | break; |
| 880 | } |
| 881 | } |
| 882 | } |
| 883 | } |
| 884 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 885 | /* |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 886 | * R600 PCIE GART |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 887 | */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 888 | void r600_pcie_gart_tlb_flush(struct radeon_device *rdev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 889 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 890 | unsigned i; |
| 891 | u32 tmp; |
| 892 | |
Dave Airlie | 2e98f10 | 2010-02-15 15:54:45 +1000 | [diff] [blame] | 893 | /* flush hdp cache so updates hit vram */ |
Alex Deucher | f3886f8 | 2010-12-08 10:05:34 -0500 | [diff] [blame] | 894 | if ((rdev->family >= CHIP_RV770) && (rdev->family <= CHIP_RV740) && |
| 895 | !(rdev->flags & RADEON_IS_AGP)) { |
Alex Deucher | 812d046 | 2010-07-26 18:51:53 -0400 | [diff] [blame] | 896 | void __iomem *ptr = (void *)rdev->gart.table.vram.ptr; |
| 897 | u32 tmp; |
| 898 | |
| 899 | /* r7xx hw bug. write to HDP_DEBUG1 followed by fb read |
| 900 | * rather than write to HDP_REG_COHERENCY_FLUSH_CNTL |
Alex Deucher | f3886f8 | 2010-12-08 10:05:34 -0500 | [diff] [blame] | 901 | * This seems to cause problems on some AGP cards. Just use the old |
| 902 | * method for them. |
Alex Deucher | 812d046 | 2010-07-26 18:51:53 -0400 | [diff] [blame] | 903 | */ |
| 904 | WREG32(HDP_DEBUG1, 0); |
| 905 | tmp = readl((void __iomem *)ptr); |
| 906 | } else |
| 907 | WREG32(R_005480_HDP_MEM_COHERENCY_FLUSH_CNTL, 0x1); |
Dave Airlie | 2e98f10 | 2010-02-15 15:54:45 +1000 | [diff] [blame] | 908 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 909 | WREG32(VM_CONTEXT0_INVALIDATION_LOW_ADDR, rdev->mc.gtt_start >> 12); |
| 910 | WREG32(VM_CONTEXT0_INVALIDATION_HIGH_ADDR, (rdev->mc.gtt_end - 1) >> 12); |
| 911 | WREG32(VM_CONTEXT0_REQUEST_RESPONSE, REQUEST_TYPE(1)); |
| 912 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 913 | /* read MC_STATUS */ |
| 914 | tmp = RREG32(VM_CONTEXT0_REQUEST_RESPONSE); |
| 915 | tmp = (tmp & RESPONSE_TYPE_MASK) >> RESPONSE_TYPE_SHIFT; |
| 916 | if (tmp == 2) { |
| 917 | printk(KERN_WARNING "[drm] r600 flush TLB failed\n"); |
| 918 | return; |
| 919 | } |
| 920 | if (tmp) { |
| 921 | return; |
| 922 | } |
| 923 | udelay(1); |
| 924 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 925 | } |
| 926 | |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 927 | int r600_pcie_gart_init(struct radeon_device *rdev) |
| 928 | { |
| 929 | int r; |
| 930 | |
| 931 | if (rdev->gart.table.vram.robj) { |
Joe Perches | fce7d61 | 2010-10-30 21:08:30 +0000 | [diff] [blame] | 932 | WARN(1, "R600 PCIE GART already initialized\n"); |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 933 | return 0; |
| 934 | } |
| 935 | /* Initialize common gart structure */ |
| 936 | r = radeon_gart_init(rdev); |
| 937 | if (r) |
| 938 | return r; |
| 939 | rdev->gart.table_size = rdev->gart.num_gpu_pages * 8; |
| 940 | return radeon_gart_table_vram_alloc(rdev); |
| 941 | } |
| 942 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 943 | int r600_pcie_gart_enable(struct radeon_device *rdev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 944 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 945 | u32 tmp; |
| 946 | int r, i; |
| 947 | |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 948 | if (rdev->gart.table.vram.robj == NULL) { |
| 949 | dev_err(rdev->dev, "No VRAM object for PCIE GART.\n"); |
| 950 | return -EINVAL; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 951 | } |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 952 | r = radeon_gart_table_vram_pin(rdev); |
| 953 | if (r) |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 954 | return r; |
Dave Airlie | 8256856 | 2010-02-05 16:00:07 +1000 | [diff] [blame] | 955 | radeon_gart_restore(rdev); |
Dave Airlie | bc1a631 | 2009-09-15 11:07:52 +1000 | [diff] [blame] | 956 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 957 | /* Setup L2 cache */ |
| 958 | WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING | |
| 959 | ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE | |
| 960 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 961 | WREG32(VM_L2_CNTL2, 0); |
| 962 | WREG32(VM_L2_CNTL3, BANK_SELECT_0(0) | BANK_SELECT_1(1)); |
| 963 | /* Setup TLB control */ |
| 964 | tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING | |
| 965 | SYSTEM_ACCESS_MODE_NOT_IN_SYS | |
| 966 | EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5) | |
| 967 | ENABLE_WAIT_L2_QUERY; |
| 968 | WREG32(MC_VM_L1_TLB_MCB_RD_SYS_CNTL, tmp); |
| 969 | WREG32(MC_VM_L1_TLB_MCB_WR_SYS_CNTL, tmp); |
| 970 | WREG32(MC_VM_L1_TLB_MCB_RD_HDP_CNTL, tmp | ENABLE_L1_STRICT_ORDERING); |
| 971 | WREG32(MC_VM_L1_TLB_MCB_WR_HDP_CNTL, tmp); |
| 972 | WREG32(MC_VM_L1_TLB_MCD_RD_A_CNTL, tmp); |
| 973 | WREG32(MC_VM_L1_TLB_MCD_WR_A_CNTL, tmp); |
| 974 | WREG32(MC_VM_L1_TLB_MCD_RD_B_CNTL, tmp); |
| 975 | WREG32(MC_VM_L1_TLB_MCD_WR_B_CNTL, tmp); |
| 976 | WREG32(MC_VM_L1_TLB_MCB_RD_GFX_CNTL, tmp); |
| 977 | WREG32(MC_VM_L1_TLB_MCB_WR_GFX_CNTL, tmp); |
| 978 | WREG32(MC_VM_L1_TLB_MCB_RD_PDMA_CNTL, tmp); |
| 979 | WREG32(MC_VM_L1_TLB_MCB_WR_PDMA_CNTL, tmp); |
| 980 | WREG32(MC_VM_L1_TLB_MCB_RD_SEM_CNTL, tmp | ENABLE_SEMAPHORE_MODE); |
| 981 | WREG32(MC_VM_L1_TLB_MCB_WR_SEM_CNTL, tmp | ENABLE_SEMAPHORE_MODE); |
| 982 | WREG32(VM_CONTEXT0_PAGE_TABLE_START_ADDR, rdev->mc.gtt_start >> 12); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 983 | WREG32(VM_CONTEXT0_PAGE_TABLE_END_ADDR, rdev->mc.gtt_end >> 12); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 984 | WREG32(VM_CONTEXT0_PAGE_TABLE_BASE_ADDR, rdev->gart.table_addr >> 12); |
| 985 | WREG32(VM_CONTEXT0_CNTL, ENABLE_CONTEXT | PAGE_TABLE_DEPTH(0) | |
| 986 | RANGE_PROTECTION_FAULT_ENABLE_DEFAULT); |
| 987 | WREG32(VM_CONTEXT0_PROTECTION_FAULT_DEFAULT_ADDR, |
| 988 | (u32)(rdev->dummy_page.addr >> 12)); |
| 989 | for (i = 1; i < 7; i++) |
| 990 | WREG32(VM_CONTEXT0_CNTL + (i * 4), 0); |
| 991 | |
| 992 | r600_pcie_gart_tlb_flush(rdev); |
| 993 | rdev->gart.ready = true; |
| 994 | return 0; |
| 995 | } |
| 996 | |
| 997 | void r600_pcie_gart_disable(struct radeon_device *rdev) |
| 998 | { |
| 999 | u32 tmp; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1000 | int i, r; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1001 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1002 | /* Disable all tables */ |
| 1003 | for (i = 0; i < 7; i++) |
| 1004 | WREG32(VM_CONTEXT0_CNTL + (i * 4), 0); |
| 1005 | |
| 1006 | /* Disable L2 cache */ |
| 1007 | WREG32(VM_L2_CNTL, ENABLE_L2_FRAGMENT_PROCESSING | |
| 1008 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 1009 | WREG32(VM_L2_CNTL3, BANK_SELECT_0(0) | BANK_SELECT_1(1)); |
| 1010 | /* Setup L1 TLB control */ |
| 1011 | tmp = EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5) | |
| 1012 | ENABLE_WAIT_L2_QUERY; |
| 1013 | WREG32(MC_VM_L1_TLB_MCD_RD_A_CNTL, tmp); |
| 1014 | WREG32(MC_VM_L1_TLB_MCD_WR_A_CNTL, tmp); |
| 1015 | WREG32(MC_VM_L1_TLB_MCD_RD_B_CNTL, tmp); |
| 1016 | WREG32(MC_VM_L1_TLB_MCD_WR_B_CNTL, tmp); |
| 1017 | WREG32(MC_VM_L1_TLB_MCB_RD_GFX_CNTL, tmp); |
| 1018 | WREG32(MC_VM_L1_TLB_MCB_WR_GFX_CNTL, tmp); |
| 1019 | WREG32(MC_VM_L1_TLB_MCB_RD_PDMA_CNTL, tmp); |
| 1020 | WREG32(MC_VM_L1_TLB_MCB_WR_PDMA_CNTL, tmp); |
| 1021 | WREG32(MC_VM_L1_TLB_MCB_RD_SEM_CNTL, tmp); |
| 1022 | WREG32(MC_VM_L1_TLB_MCB_WR_SEM_CNTL, tmp); |
| 1023 | WREG32(MC_VM_L1_TLB_MCB_RD_SYS_CNTL, tmp); |
| 1024 | WREG32(MC_VM_L1_TLB_MCB_WR_SYS_CNTL, tmp); |
| 1025 | WREG32(MC_VM_L1_TLB_MCB_RD_HDP_CNTL, tmp); |
| 1026 | WREG32(MC_VM_L1_TLB_MCB_WR_HDP_CNTL, tmp); |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 1027 | if (rdev->gart.table.vram.robj) { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 1028 | r = radeon_bo_reserve(rdev->gart.table.vram.robj, false); |
| 1029 | if (likely(r == 0)) { |
| 1030 | radeon_bo_kunmap(rdev->gart.table.vram.robj); |
| 1031 | radeon_bo_unpin(rdev->gart.table.vram.robj); |
| 1032 | radeon_bo_unreserve(rdev->gart.table.vram.robj); |
| 1033 | } |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | void r600_pcie_gart_fini(struct radeon_device *rdev) |
| 1038 | { |
Jerome Glisse | f927456 | 2010-03-17 14:44:29 +0000 | [diff] [blame] | 1039 | radeon_gart_fini(rdev); |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 1040 | r600_pcie_gart_disable(rdev); |
| 1041 | radeon_gart_table_vram_free(rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1042 | } |
| 1043 | |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1044 | void r600_agp_enable(struct radeon_device *rdev) |
| 1045 | { |
| 1046 | u32 tmp; |
| 1047 | int i; |
| 1048 | |
| 1049 | /* Setup L2 cache */ |
| 1050 | WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING | |
| 1051 | ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE | |
| 1052 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 1053 | WREG32(VM_L2_CNTL2, 0); |
| 1054 | WREG32(VM_L2_CNTL3, BANK_SELECT_0(0) | BANK_SELECT_1(1)); |
| 1055 | /* Setup TLB control */ |
| 1056 | tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING | |
| 1057 | SYSTEM_ACCESS_MODE_NOT_IN_SYS | |
| 1058 | EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5) | |
| 1059 | ENABLE_WAIT_L2_QUERY; |
| 1060 | WREG32(MC_VM_L1_TLB_MCB_RD_SYS_CNTL, tmp); |
| 1061 | WREG32(MC_VM_L1_TLB_MCB_WR_SYS_CNTL, tmp); |
| 1062 | WREG32(MC_VM_L1_TLB_MCB_RD_HDP_CNTL, tmp | ENABLE_L1_STRICT_ORDERING); |
| 1063 | WREG32(MC_VM_L1_TLB_MCB_WR_HDP_CNTL, tmp); |
| 1064 | WREG32(MC_VM_L1_TLB_MCD_RD_A_CNTL, tmp); |
| 1065 | WREG32(MC_VM_L1_TLB_MCD_WR_A_CNTL, tmp); |
| 1066 | WREG32(MC_VM_L1_TLB_MCD_RD_B_CNTL, tmp); |
| 1067 | WREG32(MC_VM_L1_TLB_MCD_WR_B_CNTL, tmp); |
| 1068 | WREG32(MC_VM_L1_TLB_MCB_RD_GFX_CNTL, tmp); |
| 1069 | WREG32(MC_VM_L1_TLB_MCB_WR_GFX_CNTL, tmp); |
| 1070 | WREG32(MC_VM_L1_TLB_MCB_RD_PDMA_CNTL, tmp); |
| 1071 | WREG32(MC_VM_L1_TLB_MCB_WR_PDMA_CNTL, tmp); |
| 1072 | WREG32(MC_VM_L1_TLB_MCB_RD_SEM_CNTL, tmp | ENABLE_SEMAPHORE_MODE); |
| 1073 | WREG32(MC_VM_L1_TLB_MCB_WR_SEM_CNTL, tmp | ENABLE_SEMAPHORE_MODE); |
| 1074 | for (i = 0; i < 7; i++) |
| 1075 | WREG32(VM_CONTEXT0_CNTL + (i * 4), 0); |
| 1076 | } |
| 1077 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1078 | int r600_mc_wait_for_idle(struct radeon_device *rdev) |
| 1079 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1080 | unsigned i; |
| 1081 | u32 tmp; |
| 1082 | |
| 1083 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 1084 | /* read MC_STATUS */ |
| 1085 | tmp = RREG32(R_000E50_SRBM_STATUS) & 0x3F00; |
| 1086 | if (!tmp) |
| 1087 | return 0; |
| 1088 | udelay(1); |
| 1089 | } |
| 1090 | return -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1091 | } |
| 1092 | |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1093 | static void r600_mc_program(struct radeon_device *rdev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1094 | { |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1095 | struct rv515_mc_save save; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1096 | u32 tmp; |
| 1097 | int i, j; |
| 1098 | |
| 1099 | /* Initialize HDP */ |
| 1100 | for (i = 0, j = 0; i < 32; i++, j += 0x18) { |
| 1101 | WREG32((0x2c14 + j), 0x00000000); |
| 1102 | WREG32((0x2c18 + j), 0x00000000); |
| 1103 | WREG32((0x2c1c + j), 0x00000000); |
| 1104 | WREG32((0x2c20 + j), 0x00000000); |
| 1105 | WREG32((0x2c24 + j), 0x00000000); |
| 1106 | } |
| 1107 | WREG32(HDP_REG_COHERENCY_FLUSH_CNTL, 0); |
| 1108 | |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1109 | rv515_mc_stop(rdev, &save); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1110 | if (r600_mc_wait_for_idle(rdev)) { |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1111 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1112 | } |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1113 | /* Lockout access through VGA aperture (doesn't exist before R600) */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1114 | WREG32(VGA_HDP_CONTROL, VGA_MEMORY_DISABLE); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1115 | /* Update configuration */ |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1116 | if (rdev->flags & RADEON_IS_AGP) { |
| 1117 | if (rdev->mc.vram_start < rdev->mc.gtt_start) { |
| 1118 | /* VRAM before AGP */ |
| 1119 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 1120 | rdev->mc.vram_start >> 12); |
| 1121 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, |
| 1122 | rdev->mc.gtt_end >> 12); |
| 1123 | } else { |
| 1124 | /* VRAM after AGP */ |
| 1125 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 1126 | rdev->mc.gtt_start >> 12); |
| 1127 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, |
| 1128 | rdev->mc.vram_end >> 12); |
| 1129 | } |
| 1130 | } else { |
| 1131 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, rdev->mc.vram_start >> 12); |
| 1132 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, rdev->mc.vram_end >> 12); |
| 1133 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1134 | WREG32(MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR, 0); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1135 | tmp = ((rdev->mc.vram_end >> 24) & 0xFFFF) << 16; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1136 | tmp |= ((rdev->mc.vram_start >> 24) & 0xFFFF); |
| 1137 | WREG32(MC_VM_FB_LOCATION, tmp); |
| 1138 | WREG32(HDP_NONSURFACE_BASE, (rdev->mc.vram_start >> 8)); |
| 1139 | WREG32(HDP_NONSURFACE_INFO, (2 << 7)); |
Jerome Glisse | 46fcd2b | 2010-06-03 19:34:48 +0200 | [diff] [blame] | 1140 | WREG32(HDP_NONSURFACE_SIZE, 0x3FFFFFFF); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1141 | if (rdev->flags & RADEON_IS_AGP) { |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1142 | WREG32(MC_VM_AGP_TOP, rdev->mc.gtt_end >> 22); |
| 1143 | WREG32(MC_VM_AGP_BOT, rdev->mc.gtt_start >> 22); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1144 | WREG32(MC_VM_AGP_BASE, rdev->mc.agp_base >> 22); |
| 1145 | } else { |
| 1146 | WREG32(MC_VM_AGP_BASE, 0); |
| 1147 | WREG32(MC_VM_AGP_TOP, 0x0FFFFFFF); |
| 1148 | WREG32(MC_VM_AGP_BOT, 0x0FFFFFFF); |
| 1149 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1150 | if (r600_mc_wait_for_idle(rdev)) { |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1151 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1152 | } |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1153 | rv515_mc_resume(rdev, &save); |
Dave Airlie | 698443d | 2009-09-18 14:16:38 +1000 | [diff] [blame] | 1154 | /* we need to own VRAM, so turn off the VGA renderer here |
| 1155 | * to stop it overwriting our objects */ |
Jerome Glisse | d39c3b8 | 2009-09-28 18:34:43 +0200 | [diff] [blame] | 1156 | rv515_vga_render_disable(rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1157 | } |
| 1158 | |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 1159 | /** |
| 1160 | * r600_vram_gtt_location - try to find VRAM & GTT location |
| 1161 | * @rdev: radeon device structure holding all necessary informations |
| 1162 | * @mc: memory controller structure holding memory informations |
| 1163 | * |
| 1164 | * Function will place try to place VRAM at same place as in CPU (PCI) |
| 1165 | * address space as some GPU seems to have issue when we reprogram at |
| 1166 | * different address space. |
| 1167 | * |
| 1168 | * If there is not enough space to fit the unvisible VRAM after the |
| 1169 | * aperture then we limit the VRAM size to the aperture. |
| 1170 | * |
| 1171 | * If we are using AGP then place VRAM adjacent to AGP aperture are we need |
| 1172 | * them to be in one from GPU point of view so that we can program GPU to |
| 1173 | * catch access outside them (weird GPU policy see ??). |
| 1174 | * |
| 1175 | * This function will never fails, worst case are limiting VRAM or GTT. |
| 1176 | * |
| 1177 | * Note: GTT start, end, size should be initialized before calling this |
| 1178 | * function on AGP platform. |
| 1179 | */ |
Alex Deucher | 0ef0c1f | 2010-11-22 17:56:26 -0500 | [diff] [blame] | 1180 | static void r600_vram_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc) |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 1181 | { |
| 1182 | u64 size_bf, size_af; |
| 1183 | |
| 1184 | if (mc->mc_vram_size > 0xE0000000) { |
| 1185 | /* leave room for at least 512M GTT */ |
| 1186 | dev_warn(rdev->dev, "limiting VRAM\n"); |
| 1187 | mc->real_vram_size = 0xE0000000; |
| 1188 | mc->mc_vram_size = 0xE0000000; |
| 1189 | } |
| 1190 | if (rdev->flags & RADEON_IS_AGP) { |
| 1191 | size_bf = mc->gtt_start; |
| 1192 | size_af = 0xFFFFFFFF - mc->gtt_end + 1; |
| 1193 | if (size_bf > size_af) { |
| 1194 | if (mc->mc_vram_size > size_bf) { |
| 1195 | dev_warn(rdev->dev, "limiting VRAM\n"); |
| 1196 | mc->real_vram_size = size_bf; |
| 1197 | mc->mc_vram_size = size_bf; |
| 1198 | } |
| 1199 | mc->vram_start = mc->gtt_start - mc->mc_vram_size; |
| 1200 | } else { |
| 1201 | if (mc->mc_vram_size > size_af) { |
| 1202 | dev_warn(rdev->dev, "limiting VRAM\n"); |
| 1203 | mc->real_vram_size = size_af; |
| 1204 | mc->mc_vram_size = size_af; |
| 1205 | } |
| 1206 | mc->vram_start = mc->gtt_end; |
| 1207 | } |
| 1208 | mc->vram_end = mc->vram_start + mc->mc_vram_size - 1; |
| 1209 | dev_info(rdev->dev, "VRAM: %lluM 0x%08llX - 0x%08llX (%lluM used)\n", |
| 1210 | mc->mc_vram_size >> 20, mc->vram_start, |
| 1211 | mc->vram_end, mc->real_vram_size >> 20); |
| 1212 | } else { |
| 1213 | u64 base = 0; |
Alex Deucher | 8961d52 | 2010-12-03 14:37:22 -0500 | [diff] [blame] | 1214 | if (rdev->flags & RADEON_IS_IGP) { |
| 1215 | base = RREG32(MC_VM_FB_LOCATION) & 0xFFFF; |
| 1216 | base <<= 24; |
| 1217 | } |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 1218 | radeon_vram_location(rdev, &rdev->mc, base); |
Alex Deucher | 8d369bb | 2010-07-15 10:51:10 -0400 | [diff] [blame] | 1219 | rdev->mc.gtt_base_align = 0; |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 1220 | radeon_gtt_location(rdev, mc); |
| 1221 | } |
| 1222 | } |
| 1223 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1224 | int r600_mc_init(struct radeon_device *rdev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1225 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1226 | u32 tmp; |
Alex Deucher | 5885b7a | 2009-10-19 17:23:33 -0400 | [diff] [blame] | 1227 | int chansize, numchan; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1228 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1229 | /* Get VRAM informations */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1230 | rdev->mc.vram_is_ddr = true; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1231 | tmp = RREG32(RAMCFG); |
| 1232 | if (tmp & CHANSIZE_OVERRIDE) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1233 | chansize = 16; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1234 | } else if (tmp & CHANSIZE_MASK) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1235 | chansize = 64; |
| 1236 | } else { |
| 1237 | chansize = 32; |
| 1238 | } |
Alex Deucher | 5885b7a | 2009-10-19 17:23:33 -0400 | [diff] [blame] | 1239 | tmp = RREG32(CHMAP); |
| 1240 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { |
| 1241 | case 0: |
| 1242 | default: |
| 1243 | numchan = 1; |
| 1244 | break; |
| 1245 | case 1: |
| 1246 | numchan = 2; |
| 1247 | break; |
| 1248 | case 2: |
| 1249 | numchan = 4; |
| 1250 | break; |
| 1251 | case 3: |
| 1252 | numchan = 8; |
| 1253 | break; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1254 | } |
Alex Deucher | 5885b7a | 2009-10-19 17:23:33 -0400 | [diff] [blame] | 1255 | rdev->mc.vram_width = numchan * chansize; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1256 | /* Could aper size report 0 ? */ |
Jordan Crouse | 01d73a6 | 2010-05-27 13:40:24 -0600 | [diff] [blame] | 1257 | rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0); |
| 1258 | rdev->mc.aper_size = pci_resource_len(rdev->pdev, 0); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1259 | /* Setup GPU memory space */ |
| 1260 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE); |
| 1261 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE); |
Jerome Glisse | 51e5fcd | 2010-02-19 14:33:54 +0000 | [diff] [blame] | 1262 | rdev->mc.visible_vram_size = rdev->mc.aper_size; |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 1263 | r600_vram_gtt_location(rdev, &rdev->mc); |
Alex Deucher | f47299c | 2010-03-16 20:54:38 -0400 | [diff] [blame] | 1264 | |
Alex Deucher | f892034 | 2010-06-30 12:02:03 -0400 | [diff] [blame] | 1265 | if (rdev->flags & RADEON_IS_IGP) { |
| 1266 | rs690_pm_info(rdev); |
Alex Deucher | 06b6476 | 2010-01-05 11:27:29 -0500 | [diff] [blame] | 1267 | rdev->mc.igp_sideport_enabled = radeon_atombios_sideport_present(rdev); |
Alex Deucher | f892034 | 2010-06-30 12:02:03 -0400 | [diff] [blame] | 1268 | } |
Alex Deucher | f47299c | 2010-03-16 20:54:38 -0400 | [diff] [blame] | 1269 | radeon_update_bandwidth_info(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1270 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1271 | } |
| 1272 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1273 | /* We doesn't check that the GPU really needs a reset we simply do the |
| 1274 | * reset, it's up to the caller to determine if the GPU needs one. We |
| 1275 | * might add an helper function to check that. |
| 1276 | */ |
| 1277 | int r600_gpu_soft_reset(struct radeon_device *rdev) |
| 1278 | { |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1279 | struct rv515_mc_save save; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1280 | u32 grbm_busy_mask = S_008010_VC_BUSY(1) | S_008010_VGT_BUSY_NO_DMA(1) | |
| 1281 | S_008010_VGT_BUSY(1) | S_008010_TA03_BUSY(1) | |
| 1282 | S_008010_TC_BUSY(1) | S_008010_SX_BUSY(1) | |
| 1283 | S_008010_SH_BUSY(1) | S_008010_SPI03_BUSY(1) | |
| 1284 | S_008010_SMX_BUSY(1) | S_008010_SC_BUSY(1) | |
| 1285 | S_008010_PA_BUSY(1) | S_008010_DB03_BUSY(1) | |
| 1286 | S_008010_CR_BUSY(1) | S_008010_CB03_BUSY(1) | |
| 1287 | S_008010_GUI_ACTIVE(1); |
| 1288 | u32 grbm2_busy_mask = S_008014_SPI0_BUSY(1) | S_008014_SPI1_BUSY(1) | |
| 1289 | S_008014_SPI2_BUSY(1) | S_008014_SPI3_BUSY(1) | |
| 1290 | S_008014_TA0_BUSY(1) | S_008014_TA1_BUSY(1) | |
| 1291 | S_008014_TA2_BUSY(1) | S_008014_TA3_BUSY(1) | |
| 1292 | S_008014_DB0_BUSY(1) | S_008014_DB1_BUSY(1) | |
| 1293 | S_008014_DB2_BUSY(1) | S_008014_DB3_BUSY(1) | |
| 1294 | S_008014_CB0_BUSY(1) | S_008014_CB1_BUSY(1) | |
| 1295 | S_008014_CB2_BUSY(1) | S_008014_CB3_BUSY(1); |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1296 | u32 tmp; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1297 | |
Alex Deucher | 8d96fe9 | 2011-01-21 15:38:22 +0000 | [diff] [blame] | 1298 | if (!(RREG32(GRBM_STATUS) & GUI_ACTIVE)) |
| 1299 | return 0; |
| 1300 | |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1301 | dev_info(rdev->dev, "GPU softreset \n"); |
| 1302 | dev_info(rdev->dev, " R_008010_GRBM_STATUS=0x%08X\n", |
| 1303 | RREG32(R_008010_GRBM_STATUS)); |
| 1304 | dev_info(rdev->dev, " R_008014_GRBM_STATUS2=0x%08X\n", |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1305 | RREG32(R_008014_GRBM_STATUS2)); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1306 | dev_info(rdev->dev, " R_000E50_SRBM_STATUS=0x%08X\n", |
| 1307 | RREG32(R_000E50_SRBM_STATUS)); |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1308 | rv515_mc_stop(rdev, &save); |
| 1309 | if (r600_mc_wait_for_idle(rdev)) { |
| 1310 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 1311 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1312 | /* Disable CP parsing/prefetching */ |
Jerome Glisse | 90aca4d | 2010-03-09 14:45:12 +0000 | [diff] [blame] | 1313 | WREG32(R_0086D8_CP_ME_CNTL, S_0086D8_CP_ME_HALT(1)); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1314 | /* Check if any of the rendering block is busy and reset it */ |
| 1315 | if ((RREG32(R_008010_GRBM_STATUS) & grbm_busy_mask) || |
| 1316 | (RREG32(R_008014_GRBM_STATUS2) & grbm2_busy_mask)) { |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1317 | tmp = S_008020_SOFT_RESET_CR(1) | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1318 | S_008020_SOFT_RESET_DB(1) | |
| 1319 | S_008020_SOFT_RESET_CB(1) | |
| 1320 | S_008020_SOFT_RESET_PA(1) | |
| 1321 | S_008020_SOFT_RESET_SC(1) | |
| 1322 | S_008020_SOFT_RESET_SMX(1) | |
| 1323 | S_008020_SOFT_RESET_SPI(1) | |
| 1324 | S_008020_SOFT_RESET_SX(1) | |
| 1325 | S_008020_SOFT_RESET_SH(1) | |
| 1326 | S_008020_SOFT_RESET_TC(1) | |
| 1327 | S_008020_SOFT_RESET_TA(1) | |
| 1328 | S_008020_SOFT_RESET_VC(1) | |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1329 | S_008020_SOFT_RESET_VGT(1); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1330 | dev_info(rdev->dev, " R_008020_GRBM_SOFT_RESET=0x%08X\n", tmp); |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1331 | WREG32(R_008020_GRBM_SOFT_RESET, tmp); |
Jerome Glisse | 90aca4d | 2010-03-09 14:45:12 +0000 | [diff] [blame] | 1332 | RREG32(R_008020_GRBM_SOFT_RESET); |
| 1333 | mdelay(15); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1334 | WREG32(R_008020_GRBM_SOFT_RESET, 0); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1335 | } |
| 1336 | /* Reset CP (we always reset CP) */ |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1337 | tmp = S_008020_SOFT_RESET_CP(1); |
| 1338 | dev_info(rdev->dev, "R_008020_GRBM_SOFT_RESET=0x%08X\n", tmp); |
| 1339 | WREG32(R_008020_GRBM_SOFT_RESET, tmp); |
Jerome Glisse | 90aca4d | 2010-03-09 14:45:12 +0000 | [diff] [blame] | 1340 | RREG32(R_008020_GRBM_SOFT_RESET); |
| 1341 | mdelay(15); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1342 | WREG32(R_008020_GRBM_SOFT_RESET, 0); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1343 | /* Wait a little for things to settle down */ |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1344 | mdelay(1); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 1345 | dev_info(rdev->dev, " R_008010_GRBM_STATUS=0x%08X\n", |
| 1346 | RREG32(R_008010_GRBM_STATUS)); |
| 1347 | dev_info(rdev->dev, " R_008014_GRBM_STATUS2=0x%08X\n", |
| 1348 | RREG32(R_008014_GRBM_STATUS2)); |
| 1349 | dev_info(rdev->dev, " R_000E50_SRBM_STATUS=0x%08X\n", |
| 1350 | RREG32(R_000E50_SRBM_STATUS)); |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 1351 | rv515_mc_resume(rdev, &save); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1352 | return 0; |
| 1353 | } |
| 1354 | |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1355 | bool r600_gpu_is_lockup(struct radeon_device *rdev) |
| 1356 | { |
| 1357 | u32 srbm_status; |
| 1358 | u32 grbm_status; |
| 1359 | u32 grbm_status2; |
Alex Deucher | e29ff72 | 2010-12-21 16:05:38 -0500 | [diff] [blame] | 1360 | struct r100_gpu_lockup *lockup; |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1361 | int r; |
| 1362 | |
Alex Deucher | e29ff72 | 2010-12-21 16:05:38 -0500 | [diff] [blame] | 1363 | if (rdev->family >= CHIP_RV770) |
| 1364 | lockup = &rdev->config.rv770.lockup; |
| 1365 | else |
| 1366 | lockup = &rdev->config.r600.lockup; |
| 1367 | |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1368 | srbm_status = RREG32(R_000E50_SRBM_STATUS); |
| 1369 | grbm_status = RREG32(R_008010_GRBM_STATUS); |
| 1370 | grbm_status2 = RREG32(R_008014_GRBM_STATUS2); |
| 1371 | if (!G_008010_GUI_ACTIVE(grbm_status)) { |
Alex Deucher | e29ff72 | 2010-12-21 16:05:38 -0500 | [diff] [blame] | 1372 | r100_gpu_lockup_update(lockup, &rdev->cp); |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1373 | return false; |
| 1374 | } |
| 1375 | /* force CP activities */ |
| 1376 | r = radeon_ring_lock(rdev, 2); |
| 1377 | if (!r) { |
| 1378 | /* PACKET2 NOP */ |
| 1379 | radeon_ring_write(rdev, 0x80000000); |
| 1380 | radeon_ring_write(rdev, 0x80000000); |
| 1381 | radeon_ring_unlock_commit(rdev); |
| 1382 | } |
| 1383 | rdev->cp.rptr = RREG32(R600_CP_RB_RPTR); |
Alex Deucher | e29ff72 | 2010-12-21 16:05:38 -0500 | [diff] [blame] | 1384 | return r100_gpu_cp_is_lockup(rdev, lockup, &rdev->cp); |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
Jerome Glisse | a2d07b7 | 2010-03-09 14:45:11 +0000 | [diff] [blame] | 1387 | int r600_asic_reset(struct radeon_device *rdev) |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1388 | { |
| 1389 | return r600_gpu_soft_reset(rdev); |
| 1390 | } |
| 1391 | |
| 1392 | static u32 r600_get_tile_pipe_to_backend_map(u32 num_tile_pipes, |
| 1393 | u32 num_backends, |
| 1394 | u32 backend_disable_mask) |
| 1395 | { |
| 1396 | u32 backend_map = 0; |
| 1397 | u32 enabled_backends_mask; |
| 1398 | u32 enabled_backends_count; |
| 1399 | u32 cur_pipe; |
| 1400 | u32 swizzle_pipe[R6XX_MAX_PIPES]; |
| 1401 | u32 cur_backend; |
| 1402 | u32 i; |
| 1403 | |
| 1404 | if (num_tile_pipes > R6XX_MAX_PIPES) |
| 1405 | num_tile_pipes = R6XX_MAX_PIPES; |
| 1406 | if (num_tile_pipes < 1) |
| 1407 | num_tile_pipes = 1; |
| 1408 | if (num_backends > R6XX_MAX_BACKENDS) |
| 1409 | num_backends = R6XX_MAX_BACKENDS; |
| 1410 | if (num_backends < 1) |
| 1411 | num_backends = 1; |
| 1412 | |
| 1413 | enabled_backends_mask = 0; |
| 1414 | enabled_backends_count = 0; |
| 1415 | for (i = 0; i < R6XX_MAX_BACKENDS; ++i) { |
| 1416 | if (((backend_disable_mask >> i) & 1) == 0) { |
| 1417 | enabled_backends_mask |= (1 << i); |
| 1418 | ++enabled_backends_count; |
| 1419 | } |
| 1420 | if (enabled_backends_count == num_backends) |
| 1421 | break; |
| 1422 | } |
| 1423 | |
| 1424 | if (enabled_backends_count == 0) { |
| 1425 | enabled_backends_mask = 1; |
| 1426 | enabled_backends_count = 1; |
| 1427 | } |
| 1428 | |
| 1429 | if (enabled_backends_count != num_backends) |
| 1430 | num_backends = enabled_backends_count; |
| 1431 | |
| 1432 | memset((uint8_t *)&swizzle_pipe[0], 0, sizeof(u32) * R6XX_MAX_PIPES); |
| 1433 | switch (num_tile_pipes) { |
| 1434 | case 1: |
| 1435 | swizzle_pipe[0] = 0; |
| 1436 | break; |
| 1437 | case 2: |
| 1438 | swizzle_pipe[0] = 0; |
| 1439 | swizzle_pipe[1] = 1; |
| 1440 | break; |
| 1441 | case 3: |
| 1442 | swizzle_pipe[0] = 0; |
| 1443 | swizzle_pipe[1] = 1; |
| 1444 | swizzle_pipe[2] = 2; |
| 1445 | break; |
| 1446 | case 4: |
| 1447 | swizzle_pipe[0] = 0; |
| 1448 | swizzle_pipe[1] = 1; |
| 1449 | swizzle_pipe[2] = 2; |
| 1450 | swizzle_pipe[3] = 3; |
| 1451 | break; |
| 1452 | case 5: |
| 1453 | swizzle_pipe[0] = 0; |
| 1454 | swizzle_pipe[1] = 1; |
| 1455 | swizzle_pipe[2] = 2; |
| 1456 | swizzle_pipe[3] = 3; |
| 1457 | swizzle_pipe[4] = 4; |
| 1458 | break; |
| 1459 | case 6: |
| 1460 | swizzle_pipe[0] = 0; |
| 1461 | swizzle_pipe[1] = 2; |
| 1462 | swizzle_pipe[2] = 4; |
| 1463 | swizzle_pipe[3] = 5; |
| 1464 | swizzle_pipe[4] = 1; |
| 1465 | swizzle_pipe[5] = 3; |
| 1466 | break; |
| 1467 | case 7: |
| 1468 | swizzle_pipe[0] = 0; |
| 1469 | swizzle_pipe[1] = 2; |
| 1470 | swizzle_pipe[2] = 4; |
| 1471 | swizzle_pipe[3] = 6; |
| 1472 | swizzle_pipe[4] = 1; |
| 1473 | swizzle_pipe[5] = 3; |
| 1474 | swizzle_pipe[6] = 5; |
| 1475 | break; |
| 1476 | case 8: |
| 1477 | swizzle_pipe[0] = 0; |
| 1478 | swizzle_pipe[1] = 2; |
| 1479 | swizzle_pipe[2] = 4; |
| 1480 | swizzle_pipe[3] = 6; |
| 1481 | swizzle_pipe[4] = 1; |
| 1482 | swizzle_pipe[5] = 3; |
| 1483 | swizzle_pipe[6] = 5; |
| 1484 | swizzle_pipe[7] = 7; |
| 1485 | break; |
| 1486 | } |
| 1487 | |
| 1488 | cur_backend = 0; |
| 1489 | for (cur_pipe = 0; cur_pipe < num_tile_pipes; ++cur_pipe) { |
| 1490 | while (((1 << cur_backend) & enabled_backends_mask) == 0) |
| 1491 | cur_backend = (cur_backend + 1) % R6XX_MAX_BACKENDS; |
| 1492 | |
| 1493 | backend_map |= (u32)(((cur_backend & 3) << (swizzle_pipe[cur_pipe] * 2))); |
| 1494 | |
| 1495 | cur_backend = (cur_backend + 1) % R6XX_MAX_BACKENDS; |
| 1496 | } |
| 1497 | |
| 1498 | return backend_map; |
| 1499 | } |
| 1500 | |
| 1501 | int r600_count_pipe_bits(uint32_t val) |
| 1502 | { |
| 1503 | int i, ret = 0; |
| 1504 | |
| 1505 | for (i = 0; i < 32; i++) { |
| 1506 | ret += val & 1; |
| 1507 | val >>= 1; |
| 1508 | } |
| 1509 | return ret; |
| 1510 | } |
| 1511 | |
| 1512 | void r600_gpu_init(struct radeon_device *rdev) |
| 1513 | { |
| 1514 | u32 tiling_config; |
| 1515 | u32 ramcfg; |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1516 | u32 backend_map; |
| 1517 | u32 cc_rb_backend_disable; |
| 1518 | u32 cc_gc_shader_pipe_config; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1519 | u32 tmp; |
| 1520 | int i, j; |
| 1521 | u32 sq_config; |
| 1522 | u32 sq_gpr_resource_mgmt_1 = 0; |
| 1523 | u32 sq_gpr_resource_mgmt_2 = 0; |
| 1524 | u32 sq_thread_resource_mgmt = 0; |
| 1525 | u32 sq_stack_resource_mgmt_1 = 0; |
| 1526 | u32 sq_stack_resource_mgmt_2 = 0; |
| 1527 | |
| 1528 | /* FIXME: implement */ |
| 1529 | switch (rdev->family) { |
| 1530 | case CHIP_R600: |
| 1531 | rdev->config.r600.max_pipes = 4; |
| 1532 | rdev->config.r600.max_tile_pipes = 8; |
| 1533 | rdev->config.r600.max_simds = 4; |
| 1534 | rdev->config.r600.max_backends = 4; |
| 1535 | rdev->config.r600.max_gprs = 256; |
| 1536 | rdev->config.r600.max_threads = 192; |
| 1537 | rdev->config.r600.max_stack_entries = 256; |
| 1538 | rdev->config.r600.max_hw_contexts = 8; |
| 1539 | rdev->config.r600.max_gs_threads = 16; |
| 1540 | rdev->config.r600.sx_max_export_size = 128; |
| 1541 | rdev->config.r600.sx_max_export_pos_size = 16; |
| 1542 | rdev->config.r600.sx_max_export_smx_size = 128; |
| 1543 | rdev->config.r600.sq_num_cf_insts = 2; |
| 1544 | break; |
| 1545 | case CHIP_RV630: |
| 1546 | case CHIP_RV635: |
| 1547 | rdev->config.r600.max_pipes = 2; |
| 1548 | rdev->config.r600.max_tile_pipes = 2; |
| 1549 | rdev->config.r600.max_simds = 3; |
| 1550 | rdev->config.r600.max_backends = 1; |
| 1551 | rdev->config.r600.max_gprs = 128; |
| 1552 | rdev->config.r600.max_threads = 192; |
| 1553 | rdev->config.r600.max_stack_entries = 128; |
| 1554 | rdev->config.r600.max_hw_contexts = 8; |
| 1555 | rdev->config.r600.max_gs_threads = 4; |
| 1556 | rdev->config.r600.sx_max_export_size = 128; |
| 1557 | rdev->config.r600.sx_max_export_pos_size = 16; |
| 1558 | rdev->config.r600.sx_max_export_smx_size = 128; |
| 1559 | rdev->config.r600.sq_num_cf_insts = 2; |
| 1560 | break; |
| 1561 | case CHIP_RV610: |
| 1562 | case CHIP_RV620: |
| 1563 | case CHIP_RS780: |
| 1564 | case CHIP_RS880: |
| 1565 | rdev->config.r600.max_pipes = 1; |
| 1566 | rdev->config.r600.max_tile_pipes = 1; |
| 1567 | rdev->config.r600.max_simds = 2; |
| 1568 | rdev->config.r600.max_backends = 1; |
| 1569 | rdev->config.r600.max_gprs = 128; |
| 1570 | rdev->config.r600.max_threads = 192; |
| 1571 | rdev->config.r600.max_stack_entries = 128; |
| 1572 | rdev->config.r600.max_hw_contexts = 4; |
| 1573 | rdev->config.r600.max_gs_threads = 4; |
| 1574 | rdev->config.r600.sx_max_export_size = 128; |
| 1575 | rdev->config.r600.sx_max_export_pos_size = 16; |
| 1576 | rdev->config.r600.sx_max_export_smx_size = 128; |
| 1577 | rdev->config.r600.sq_num_cf_insts = 1; |
| 1578 | break; |
| 1579 | case CHIP_RV670: |
| 1580 | rdev->config.r600.max_pipes = 4; |
| 1581 | rdev->config.r600.max_tile_pipes = 4; |
| 1582 | rdev->config.r600.max_simds = 4; |
| 1583 | rdev->config.r600.max_backends = 4; |
| 1584 | rdev->config.r600.max_gprs = 192; |
| 1585 | rdev->config.r600.max_threads = 192; |
| 1586 | rdev->config.r600.max_stack_entries = 256; |
| 1587 | rdev->config.r600.max_hw_contexts = 8; |
| 1588 | rdev->config.r600.max_gs_threads = 16; |
| 1589 | rdev->config.r600.sx_max_export_size = 128; |
| 1590 | rdev->config.r600.sx_max_export_pos_size = 16; |
| 1591 | rdev->config.r600.sx_max_export_smx_size = 128; |
| 1592 | rdev->config.r600.sq_num_cf_insts = 2; |
| 1593 | break; |
| 1594 | default: |
| 1595 | break; |
| 1596 | } |
| 1597 | |
| 1598 | /* Initialize HDP */ |
| 1599 | for (i = 0, j = 0; i < 32; i++, j += 0x18) { |
| 1600 | WREG32((0x2c14 + j), 0x00000000); |
| 1601 | WREG32((0x2c18 + j), 0x00000000); |
| 1602 | WREG32((0x2c1c + j), 0x00000000); |
| 1603 | WREG32((0x2c20 + j), 0x00000000); |
| 1604 | WREG32((0x2c24 + j), 0x00000000); |
| 1605 | } |
| 1606 | |
| 1607 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); |
| 1608 | |
| 1609 | /* Setup tiling */ |
| 1610 | tiling_config = 0; |
| 1611 | ramcfg = RREG32(RAMCFG); |
| 1612 | switch (rdev->config.r600.max_tile_pipes) { |
| 1613 | case 1: |
| 1614 | tiling_config |= PIPE_TILING(0); |
| 1615 | break; |
| 1616 | case 2: |
| 1617 | tiling_config |= PIPE_TILING(1); |
| 1618 | break; |
| 1619 | case 4: |
| 1620 | tiling_config |= PIPE_TILING(2); |
| 1621 | break; |
| 1622 | case 8: |
| 1623 | tiling_config |= PIPE_TILING(3); |
| 1624 | break; |
| 1625 | default: |
| 1626 | break; |
| 1627 | } |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1628 | rdev->config.r600.tiling_npipes = rdev->config.r600.max_tile_pipes; |
Jerome Glisse | 961fb59 | 2010-02-10 22:30:05 +0000 | [diff] [blame] | 1629 | rdev->config.r600.tiling_nbanks = 4 << ((ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1630 | tiling_config |= BANK_TILING((ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT); |
Alex Deucher | 881fe6c | 2010-10-18 23:54:56 -0400 | [diff] [blame] | 1631 | tiling_config |= GROUP_SIZE((ramcfg & BURSTLENGTH_MASK) >> BURSTLENGTH_SHIFT); |
| 1632 | if ((ramcfg & BURSTLENGTH_MASK) >> BURSTLENGTH_SHIFT) |
| 1633 | rdev->config.r600.tiling_group_size = 512; |
| 1634 | else |
| 1635 | rdev->config.r600.tiling_group_size = 256; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1636 | tmp = (ramcfg & NOOFROWS_MASK) >> NOOFROWS_SHIFT; |
| 1637 | if (tmp > 3) { |
| 1638 | tiling_config |= ROW_TILING(3); |
| 1639 | tiling_config |= SAMPLE_SPLIT(3); |
| 1640 | } else { |
| 1641 | tiling_config |= ROW_TILING(tmp); |
| 1642 | tiling_config |= SAMPLE_SPLIT(tmp); |
| 1643 | } |
| 1644 | tiling_config |= BANK_SWAPS(1); |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1645 | |
| 1646 | cc_rb_backend_disable = RREG32(CC_RB_BACKEND_DISABLE) & 0x00ff0000; |
| 1647 | cc_rb_backend_disable |= |
| 1648 | BACKEND_DISABLE((R6XX_MAX_BACKENDS_MASK << rdev->config.r600.max_backends) & R6XX_MAX_BACKENDS_MASK); |
| 1649 | |
| 1650 | cc_gc_shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG) & 0xffffff00; |
| 1651 | cc_gc_shader_pipe_config |= |
| 1652 | INACTIVE_QD_PIPES((R6XX_MAX_PIPES_MASK << rdev->config.r600.max_pipes) & R6XX_MAX_PIPES_MASK); |
| 1653 | cc_gc_shader_pipe_config |= |
| 1654 | INACTIVE_SIMDS((R6XX_MAX_SIMDS_MASK << rdev->config.r600.max_simds) & R6XX_MAX_SIMDS_MASK); |
| 1655 | |
| 1656 | backend_map = r600_get_tile_pipe_to_backend_map(rdev->config.r600.max_tile_pipes, |
| 1657 | (R6XX_MAX_BACKENDS - |
| 1658 | r600_count_pipe_bits((cc_rb_backend_disable & |
| 1659 | R6XX_MAX_BACKENDS_MASK) >> 16)), |
| 1660 | (cc_rb_backend_disable >> 16)); |
Alex Deucher | e7aeeba | 2010-06-04 13:10:12 -0400 | [diff] [blame] | 1661 | rdev->config.r600.tile_config = tiling_config; |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1662 | tiling_config |= BACKEND_MAP(backend_map); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1663 | WREG32(GB_TILING_CONFIG, tiling_config); |
| 1664 | WREG32(DCP_TILING_CONFIG, tiling_config & 0xffff); |
| 1665 | WREG32(HDP_TILING_CONFIG, tiling_config & 0xffff); |
| 1666 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1667 | /* Setup pipes */ |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1668 | WREG32(CC_RB_BACKEND_DISABLE, cc_rb_backend_disable); |
| 1669 | WREG32(CC_GC_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); |
Alex Deucher | f867c60d | 2010-03-05 14:50:37 -0500 | [diff] [blame] | 1670 | WREG32(GC_USER_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1671 | |
Alex Deucher | d03f5d5 | 2010-02-19 16:22:31 -0500 | [diff] [blame] | 1672 | tmp = R6XX_MAX_PIPES - r600_count_pipe_bits((cc_gc_shader_pipe_config & INACTIVE_QD_PIPES_MASK) >> 8); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1673 | WREG32(VGT_OUT_DEALLOC_CNTL, (tmp * 4) & DEALLOC_DIST_MASK); |
| 1674 | WREG32(VGT_VERTEX_REUSE_BLOCK_CNTL, ((tmp * 4) - 2) & VTX_REUSE_DEPTH_MASK); |
| 1675 | |
| 1676 | /* Setup some CP states */ |
| 1677 | WREG32(CP_QUEUE_THRESHOLDS, (ROQ_IB1_START(0x16) | ROQ_IB2_START(0x2b))); |
| 1678 | WREG32(CP_MEQ_THRESHOLDS, (MEQ_END(0x40) | ROQ_END(0x40))); |
| 1679 | |
| 1680 | WREG32(TA_CNTL_AUX, (DISABLE_CUBE_ANISO | SYNC_GRADIENT | |
| 1681 | SYNC_WALKER | SYNC_ALIGNER)); |
| 1682 | /* Setup various GPU states */ |
| 1683 | if (rdev->family == CHIP_RV670) |
| 1684 | WREG32(ARB_GDEC_RD_CNTL, 0x00000021); |
| 1685 | |
| 1686 | tmp = RREG32(SX_DEBUG_1); |
| 1687 | tmp |= SMX_EVENT_RELEASE; |
| 1688 | if ((rdev->family > CHIP_R600)) |
| 1689 | tmp |= ENABLE_NEW_SMX_ADDRESS; |
| 1690 | WREG32(SX_DEBUG_1, tmp); |
| 1691 | |
| 1692 | if (((rdev->family) == CHIP_R600) || |
| 1693 | ((rdev->family) == CHIP_RV630) || |
| 1694 | ((rdev->family) == CHIP_RV610) || |
| 1695 | ((rdev->family) == CHIP_RV620) || |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1696 | ((rdev->family) == CHIP_RS780) || |
| 1697 | ((rdev->family) == CHIP_RS880)) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1698 | WREG32(DB_DEBUG, PREZ_MUST_WAIT_FOR_POSTZ_DONE); |
| 1699 | } else { |
| 1700 | WREG32(DB_DEBUG, 0); |
| 1701 | } |
| 1702 | WREG32(DB_WATERMARKS, (DEPTH_FREE(4) | DEPTH_CACHELINE_FREE(16) | |
| 1703 | DEPTH_FLUSH(16) | DEPTH_PENDING_FREE(4))); |
| 1704 | |
| 1705 | WREG32(PA_SC_MULTI_CHIP_CNTL, 0); |
| 1706 | WREG32(VGT_NUM_INSTANCES, 0); |
| 1707 | |
| 1708 | WREG32(SPI_CONFIG_CNTL, GPR_WRITE_PRIORITY(0)); |
| 1709 | WREG32(SPI_CONFIG_CNTL_1, VTX_DONE_DELAY(0)); |
| 1710 | |
| 1711 | tmp = RREG32(SQ_MS_FIFO_SIZES); |
| 1712 | if (((rdev->family) == CHIP_RV610) || |
| 1713 | ((rdev->family) == CHIP_RV620) || |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1714 | ((rdev->family) == CHIP_RS780) || |
| 1715 | ((rdev->family) == CHIP_RS880)) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1716 | tmp = (CACHE_FIFO_SIZE(0xa) | |
| 1717 | FETCH_FIFO_HIWATER(0xa) | |
| 1718 | DONE_FIFO_HIWATER(0xe0) | |
| 1719 | ALU_UPDATE_FIFO_HIWATER(0x8)); |
| 1720 | } else if (((rdev->family) == CHIP_R600) || |
| 1721 | ((rdev->family) == CHIP_RV630)) { |
| 1722 | tmp &= ~DONE_FIFO_HIWATER(0xff); |
| 1723 | tmp |= DONE_FIFO_HIWATER(0x4); |
| 1724 | } |
| 1725 | WREG32(SQ_MS_FIFO_SIZES, tmp); |
| 1726 | |
| 1727 | /* SQ_CONFIG, SQ_GPR_RESOURCE_MGMT, SQ_THREAD_RESOURCE_MGMT, SQ_STACK_RESOURCE_MGMT |
| 1728 | * should be adjusted as needed by the 2D/3D drivers. This just sets default values |
| 1729 | */ |
| 1730 | sq_config = RREG32(SQ_CONFIG); |
| 1731 | sq_config &= ~(PS_PRIO(3) | |
| 1732 | VS_PRIO(3) | |
| 1733 | GS_PRIO(3) | |
| 1734 | ES_PRIO(3)); |
| 1735 | sq_config |= (DX9_CONSTS | |
| 1736 | VC_ENABLE | |
| 1737 | PS_PRIO(0) | |
| 1738 | VS_PRIO(1) | |
| 1739 | GS_PRIO(2) | |
| 1740 | ES_PRIO(3)); |
| 1741 | |
| 1742 | if ((rdev->family) == CHIP_R600) { |
| 1743 | sq_gpr_resource_mgmt_1 = (NUM_PS_GPRS(124) | |
| 1744 | NUM_VS_GPRS(124) | |
| 1745 | NUM_CLAUSE_TEMP_GPRS(4)); |
| 1746 | sq_gpr_resource_mgmt_2 = (NUM_GS_GPRS(0) | |
| 1747 | NUM_ES_GPRS(0)); |
| 1748 | sq_thread_resource_mgmt = (NUM_PS_THREADS(136) | |
| 1749 | NUM_VS_THREADS(48) | |
| 1750 | NUM_GS_THREADS(4) | |
| 1751 | NUM_ES_THREADS(4)); |
| 1752 | sq_stack_resource_mgmt_1 = (NUM_PS_STACK_ENTRIES(128) | |
| 1753 | NUM_VS_STACK_ENTRIES(128)); |
| 1754 | sq_stack_resource_mgmt_2 = (NUM_GS_STACK_ENTRIES(0) | |
| 1755 | NUM_ES_STACK_ENTRIES(0)); |
| 1756 | } else if (((rdev->family) == CHIP_RV610) || |
| 1757 | ((rdev->family) == CHIP_RV620) || |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1758 | ((rdev->family) == CHIP_RS780) || |
| 1759 | ((rdev->family) == CHIP_RS880)) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1760 | /* no vertex cache */ |
| 1761 | sq_config &= ~VC_ENABLE; |
| 1762 | |
| 1763 | sq_gpr_resource_mgmt_1 = (NUM_PS_GPRS(44) | |
| 1764 | NUM_VS_GPRS(44) | |
| 1765 | NUM_CLAUSE_TEMP_GPRS(2)); |
| 1766 | sq_gpr_resource_mgmt_2 = (NUM_GS_GPRS(17) | |
| 1767 | NUM_ES_GPRS(17)); |
| 1768 | sq_thread_resource_mgmt = (NUM_PS_THREADS(79) | |
| 1769 | NUM_VS_THREADS(78) | |
| 1770 | NUM_GS_THREADS(4) | |
| 1771 | NUM_ES_THREADS(31)); |
| 1772 | sq_stack_resource_mgmt_1 = (NUM_PS_STACK_ENTRIES(40) | |
| 1773 | NUM_VS_STACK_ENTRIES(40)); |
| 1774 | sq_stack_resource_mgmt_2 = (NUM_GS_STACK_ENTRIES(32) | |
| 1775 | NUM_ES_STACK_ENTRIES(16)); |
| 1776 | } else if (((rdev->family) == CHIP_RV630) || |
| 1777 | ((rdev->family) == CHIP_RV635)) { |
| 1778 | sq_gpr_resource_mgmt_1 = (NUM_PS_GPRS(44) | |
| 1779 | NUM_VS_GPRS(44) | |
| 1780 | NUM_CLAUSE_TEMP_GPRS(2)); |
| 1781 | sq_gpr_resource_mgmt_2 = (NUM_GS_GPRS(18) | |
| 1782 | NUM_ES_GPRS(18)); |
| 1783 | sq_thread_resource_mgmt = (NUM_PS_THREADS(79) | |
| 1784 | NUM_VS_THREADS(78) | |
| 1785 | NUM_GS_THREADS(4) | |
| 1786 | NUM_ES_THREADS(31)); |
| 1787 | sq_stack_resource_mgmt_1 = (NUM_PS_STACK_ENTRIES(40) | |
| 1788 | NUM_VS_STACK_ENTRIES(40)); |
| 1789 | sq_stack_resource_mgmt_2 = (NUM_GS_STACK_ENTRIES(32) | |
| 1790 | NUM_ES_STACK_ENTRIES(16)); |
| 1791 | } else if ((rdev->family) == CHIP_RV670) { |
| 1792 | sq_gpr_resource_mgmt_1 = (NUM_PS_GPRS(44) | |
| 1793 | NUM_VS_GPRS(44) | |
| 1794 | NUM_CLAUSE_TEMP_GPRS(2)); |
| 1795 | sq_gpr_resource_mgmt_2 = (NUM_GS_GPRS(17) | |
| 1796 | NUM_ES_GPRS(17)); |
| 1797 | sq_thread_resource_mgmt = (NUM_PS_THREADS(79) | |
| 1798 | NUM_VS_THREADS(78) | |
| 1799 | NUM_GS_THREADS(4) | |
| 1800 | NUM_ES_THREADS(31)); |
| 1801 | sq_stack_resource_mgmt_1 = (NUM_PS_STACK_ENTRIES(64) | |
| 1802 | NUM_VS_STACK_ENTRIES(64)); |
| 1803 | sq_stack_resource_mgmt_2 = (NUM_GS_STACK_ENTRIES(64) | |
| 1804 | NUM_ES_STACK_ENTRIES(64)); |
| 1805 | } |
| 1806 | |
| 1807 | WREG32(SQ_CONFIG, sq_config); |
| 1808 | WREG32(SQ_GPR_RESOURCE_MGMT_1, sq_gpr_resource_mgmt_1); |
| 1809 | WREG32(SQ_GPR_RESOURCE_MGMT_2, sq_gpr_resource_mgmt_2); |
| 1810 | WREG32(SQ_THREAD_RESOURCE_MGMT, sq_thread_resource_mgmt); |
| 1811 | WREG32(SQ_STACK_RESOURCE_MGMT_1, sq_stack_resource_mgmt_1); |
| 1812 | WREG32(SQ_STACK_RESOURCE_MGMT_2, sq_stack_resource_mgmt_2); |
| 1813 | |
| 1814 | if (((rdev->family) == CHIP_RV610) || |
| 1815 | ((rdev->family) == CHIP_RV620) || |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1816 | ((rdev->family) == CHIP_RS780) || |
| 1817 | ((rdev->family) == CHIP_RS880)) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1818 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(TC_ONLY)); |
| 1819 | } else { |
| 1820 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(VC_AND_TC)); |
| 1821 | } |
| 1822 | |
| 1823 | /* More default values. 2D/3D driver should adjust as needed */ |
| 1824 | WREG32(PA_SC_AA_SAMPLE_LOCS_2S, (S0_X(0xc) | S0_Y(0x4) | |
| 1825 | S1_X(0x4) | S1_Y(0xc))); |
| 1826 | WREG32(PA_SC_AA_SAMPLE_LOCS_4S, (S0_X(0xe) | S0_Y(0xe) | |
| 1827 | S1_X(0x2) | S1_Y(0x2) | |
| 1828 | S2_X(0xa) | S2_Y(0x6) | |
| 1829 | S3_X(0x6) | S3_Y(0xa))); |
| 1830 | WREG32(PA_SC_AA_SAMPLE_LOCS_8S_WD0, (S0_X(0xe) | S0_Y(0xb) | |
| 1831 | S1_X(0x4) | S1_Y(0xc) | |
| 1832 | S2_X(0x1) | S2_Y(0x6) | |
| 1833 | S3_X(0xa) | S3_Y(0xe))); |
| 1834 | WREG32(PA_SC_AA_SAMPLE_LOCS_8S_WD1, (S4_X(0x6) | S4_Y(0x1) | |
| 1835 | S5_X(0x0) | S5_Y(0x0) | |
| 1836 | S6_X(0xb) | S6_Y(0x4) | |
| 1837 | S7_X(0x7) | S7_Y(0x8))); |
| 1838 | |
| 1839 | WREG32(VGT_STRMOUT_EN, 0); |
| 1840 | tmp = rdev->config.r600.max_pipes * 16; |
| 1841 | switch (rdev->family) { |
| 1842 | case CHIP_RV610: |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1843 | case CHIP_RV620: |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1844 | case CHIP_RS780: |
| 1845 | case CHIP_RS880: |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1846 | tmp += 32; |
| 1847 | break; |
| 1848 | case CHIP_RV670: |
| 1849 | tmp += 128; |
| 1850 | break; |
| 1851 | default: |
| 1852 | break; |
| 1853 | } |
| 1854 | if (tmp > 256) { |
| 1855 | tmp = 256; |
| 1856 | } |
| 1857 | WREG32(VGT_ES_PER_GS, 128); |
| 1858 | WREG32(VGT_GS_PER_ES, tmp); |
| 1859 | WREG32(VGT_GS_PER_VS, 2); |
| 1860 | WREG32(VGT_GS_VERTEX_REUSE, 16); |
| 1861 | |
| 1862 | /* more default values. 2D/3D driver should adjust as needed */ |
| 1863 | WREG32(PA_SC_LINE_STIPPLE_STATE, 0); |
| 1864 | WREG32(VGT_STRMOUT_EN, 0); |
| 1865 | WREG32(SX_MISC, 0); |
| 1866 | WREG32(PA_SC_MODE_CNTL, 0); |
| 1867 | WREG32(PA_SC_AA_CONFIG, 0); |
| 1868 | WREG32(PA_SC_LINE_STIPPLE, 0); |
| 1869 | WREG32(SPI_INPUT_Z, 0); |
| 1870 | WREG32(SPI_PS_IN_CONTROL_0, NUM_INTERP(2)); |
| 1871 | WREG32(CB_COLOR7_FRAG, 0); |
| 1872 | |
| 1873 | /* Clear render buffer base addresses */ |
| 1874 | WREG32(CB_COLOR0_BASE, 0); |
| 1875 | WREG32(CB_COLOR1_BASE, 0); |
| 1876 | WREG32(CB_COLOR2_BASE, 0); |
| 1877 | WREG32(CB_COLOR3_BASE, 0); |
| 1878 | WREG32(CB_COLOR4_BASE, 0); |
| 1879 | WREG32(CB_COLOR5_BASE, 0); |
| 1880 | WREG32(CB_COLOR6_BASE, 0); |
| 1881 | WREG32(CB_COLOR7_BASE, 0); |
| 1882 | WREG32(CB_COLOR7_FRAG, 0); |
| 1883 | |
| 1884 | switch (rdev->family) { |
| 1885 | case CHIP_RV610: |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1886 | case CHIP_RV620: |
Alex Deucher | ee59f2b | 2009-11-05 13:11:46 -0500 | [diff] [blame] | 1887 | case CHIP_RS780: |
| 1888 | case CHIP_RS880: |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1889 | tmp = TC_L2_SIZE(8); |
| 1890 | break; |
| 1891 | case CHIP_RV630: |
| 1892 | case CHIP_RV635: |
| 1893 | tmp = TC_L2_SIZE(4); |
| 1894 | break; |
| 1895 | case CHIP_R600: |
| 1896 | tmp = TC_L2_SIZE(0) | L2_DISABLE_LATE_HIT; |
| 1897 | break; |
| 1898 | default: |
| 1899 | tmp = TC_L2_SIZE(0); |
| 1900 | break; |
| 1901 | } |
| 1902 | WREG32(TC_CNTL, tmp); |
| 1903 | |
| 1904 | tmp = RREG32(HDP_HOST_PATH_CNTL); |
| 1905 | WREG32(HDP_HOST_PATH_CNTL, tmp); |
| 1906 | |
| 1907 | tmp = RREG32(ARB_POP); |
| 1908 | tmp |= ENABLE_TC128; |
| 1909 | WREG32(ARB_POP, tmp); |
| 1910 | |
| 1911 | WREG32(PA_SC_MULTI_CHIP_CNTL, 0); |
| 1912 | WREG32(PA_CL_ENHANCE, (CLIP_VTX_REORDER_ENA | |
| 1913 | NUM_CLIP_SEQ(3))); |
| 1914 | WREG32(PA_SC_ENHANCE, FORCE_EOV_MAX_CLK_CNT(4095)); |
| 1915 | } |
| 1916 | |
| 1917 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1918 | /* |
| 1919 | * Indirect registers accessor |
| 1920 | */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1921 | u32 r600_pciep_rreg(struct radeon_device *rdev, u32 reg) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1922 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1923 | u32 r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1924 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1925 | WREG32(PCIE_PORT_INDEX, ((reg) & 0xff)); |
| 1926 | (void)RREG32(PCIE_PORT_INDEX); |
| 1927 | r = RREG32(PCIE_PORT_DATA); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1928 | return r; |
| 1929 | } |
| 1930 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1931 | void r600_pciep_wreg(struct radeon_device *rdev, u32 reg, u32 v) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1932 | { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1933 | WREG32(PCIE_PORT_INDEX, ((reg) & 0xff)); |
| 1934 | (void)RREG32(PCIE_PORT_INDEX); |
| 1935 | WREG32(PCIE_PORT_DATA, (v)); |
| 1936 | (void)RREG32(PCIE_PORT_DATA); |
| 1937 | } |
| 1938 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1939 | /* |
| 1940 | * CP & Ring |
| 1941 | */ |
| 1942 | void r600_cp_stop(struct radeon_device *rdev) |
| 1943 | { |
Dave Airlie | 5359533 | 2011-03-14 09:47:24 +1000 | [diff] [blame] | 1944 | radeon_ttm_set_active_vram_size(rdev, rdev->mc.visible_vram_size); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1945 | WREG32(R_0086D8_CP_ME_CNTL, S_0086D8_CP_ME_HALT(1)); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 1946 | WREG32(SCRATCH_UMSK, 0); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1947 | } |
| 1948 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 1949 | int r600_init_microcode(struct radeon_device *rdev) |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1950 | { |
| 1951 | struct platform_device *pdev; |
| 1952 | const char *chip_name; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 1953 | const char *rlc_chip_name; |
| 1954 | size_t pfp_req_size, me_req_size, rlc_req_size; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1955 | char fw_name[30]; |
| 1956 | int err; |
| 1957 | |
| 1958 | DRM_DEBUG("\n"); |
| 1959 | |
| 1960 | pdev = platform_device_register_simple("radeon_cp", 0, NULL, 0); |
| 1961 | err = IS_ERR(pdev); |
| 1962 | if (err) { |
| 1963 | printk(KERN_ERR "radeon_cp: Failed to register firmware\n"); |
| 1964 | return -EINVAL; |
| 1965 | } |
| 1966 | |
| 1967 | switch (rdev->family) { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 1968 | case CHIP_R600: |
| 1969 | chip_name = "R600"; |
| 1970 | rlc_chip_name = "R600"; |
| 1971 | break; |
| 1972 | case CHIP_RV610: |
| 1973 | chip_name = "RV610"; |
| 1974 | rlc_chip_name = "R600"; |
| 1975 | break; |
| 1976 | case CHIP_RV630: |
| 1977 | chip_name = "RV630"; |
| 1978 | rlc_chip_name = "R600"; |
| 1979 | break; |
| 1980 | case CHIP_RV620: |
| 1981 | chip_name = "RV620"; |
| 1982 | rlc_chip_name = "R600"; |
| 1983 | break; |
| 1984 | case CHIP_RV635: |
| 1985 | chip_name = "RV635"; |
| 1986 | rlc_chip_name = "R600"; |
| 1987 | break; |
| 1988 | case CHIP_RV670: |
| 1989 | chip_name = "RV670"; |
| 1990 | rlc_chip_name = "R600"; |
| 1991 | break; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 1992 | case CHIP_RS780: |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 1993 | case CHIP_RS880: |
| 1994 | chip_name = "RS780"; |
| 1995 | rlc_chip_name = "R600"; |
| 1996 | break; |
| 1997 | case CHIP_RV770: |
| 1998 | chip_name = "RV770"; |
| 1999 | rlc_chip_name = "R700"; |
| 2000 | break; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2001 | case CHIP_RV730: |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2002 | case CHIP_RV740: |
| 2003 | chip_name = "RV730"; |
| 2004 | rlc_chip_name = "R700"; |
| 2005 | break; |
| 2006 | case CHIP_RV710: |
| 2007 | chip_name = "RV710"; |
| 2008 | rlc_chip_name = "R700"; |
| 2009 | break; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2010 | case CHIP_CEDAR: |
| 2011 | chip_name = "CEDAR"; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2012 | rlc_chip_name = "CEDAR"; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2013 | break; |
| 2014 | case CHIP_REDWOOD: |
| 2015 | chip_name = "REDWOOD"; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2016 | rlc_chip_name = "REDWOOD"; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2017 | break; |
| 2018 | case CHIP_JUNIPER: |
| 2019 | chip_name = "JUNIPER"; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2020 | rlc_chip_name = "JUNIPER"; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2021 | break; |
| 2022 | case CHIP_CYPRESS: |
| 2023 | case CHIP_HEMLOCK: |
| 2024 | chip_name = "CYPRESS"; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2025 | rlc_chip_name = "CYPRESS"; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2026 | break; |
Alex Deucher | 439bd6c | 2010-11-22 17:56:31 -0500 | [diff] [blame] | 2027 | case CHIP_PALM: |
| 2028 | chip_name = "PALM"; |
| 2029 | rlc_chip_name = "SUMO"; |
| 2030 | break; |
Alex Deucher | d5c5a72 | 2011-05-31 15:42:48 -0400 | [diff] [blame] | 2031 | case CHIP_SUMO: |
| 2032 | chip_name = "SUMO"; |
| 2033 | rlc_chip_name = "SUMO"; |
| 2034 | break; |
| 2035 | case CHIP_SUMO2: |
| 2036 | chip_name = "SUMO2"; |
| 2037 | rlc_chip_name = "SUMO"; |
| 2038 | break; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2039 | default: BUG(); |
| 2040 | } |
| 2041 | |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2042 | if (rdev->family >= CHIP_CEDAR) { |
| 2043 | pfp_req_size = EVERGREEN_PFP_UCODE_SIZE * 4; |
| 2044 | me_req_size = EVERGREEN_PM4_UCODE_SIZE * 4; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2045 | rlc_req_size = EVERGREEN_RLC_UCODE_SIZE * 4; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2046 | } else if (rdev->family >= CHIP_RV770) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2047 | pfp_req_size = R700_PFP_UCODE_SIZE * 4; |
| 2048 | me_req_size = R700_PM4_UCODE_SIZE * 4; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2049 | rlc_req_size = R700_RLC_UCODE_SIZE * 4; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2050 | } else { |
| 2051 | pfp_req_size = PFP_UCODE_SIZE * 4; |
| 2052 | me_req_size = PM4_UCODE_SIZE * 12; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2053 | rlc_req_size = RLC_UCODE_SIZE * 4; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2054 | } |
| 2055 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2056 | DRM_INFO("Loading %s Microcode\n", chip_name); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2057 | |
| 2058 | snprintf(fw_name, sizeof(fw_name), "radeon/%s_pfp.bin", chip_name); |
| 2059 | err = request_firmware(&rdev->pfp_fw, fw_name, &pdev->dev); |
| 2060 | if (err) |
| 2061 | goto out; |
| 2062 | if (rdev->pfp_fw->size != pfp_req_size) { |
| 2063 | printk(KERN_ERR |
| 2064 | "r600_cp: Bogus length %zu in firmware \"%s\"\n", |
| 2065 | rdev->pfp_fw->size, fw_name); |
| 2066 | err = -EINVAL; |
| 2067 | goto out; |
| 2068 | } |
| 2069 | |
| 2070 | snprintf(fw_name, sizeof(fw_name), "radeon/%s_me.bin", chip_name); |
| 2071 | err = request_firmware(&rdev->me_fw, fw_name, &pdev->dev); |
| 2072 | if (err) |
| 2073 | goto out; |
| 2074 | if (rdev->me_fw->size != me_req_size) { |
| 2075 | printk(KERN_ERR |
| 2076 | "r600_cp: Bogus length %zu in firmware \"%s\"\n", |
| 2077 | rdev->me_fw->size, fw_name); |
| 2078 | err = -EINVAL; |
| 2079 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2080 | |
| 2081 | snprintf(fw_name, sizeof(fw_name), "radeon/%s_rlc.bin", rlc_chip_name); |
| 2082 | err = request_firmware(&rdev->rlc_fw, fw_name, &pdev->dev); |
| 2083 | if (err) |
| 2084 | goto out; |
| 2085 | if (rdev->rlc_fw->size != rlc_req_size) { |
| 2086 | printk(KERN_ERR |
| 2087 | "r600_rlc: Bogus length %zu in firmware \"%s\"\n", |
| 2088 | rdev->rlc_fw->size, fw_name); |
| 2089 | err = -EINVAL; |
| 2090 | } |
| 2091 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2092 | out: |
| 2093 | platform_device_unregister(pdev); |
| 2094 | |
| 2095 | if (err) { |
| 2096 | if (err != -EINVAL) |
| 2097 | printk(KERN_ERR |
| 2098 | "r600_cp: Failed to load firmware \"%s\"\n", |
| 2099 | fw_name); |
| 2100 | release_firmware(rdev->pfp_fw); |
| 2101 | rdev->pfp_fw = NULL; |
| 2102 | release_firmware(rdev->me_fw); |
| 2103 | rdev->me_fw = NULL; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2104 | release_firmware(rdev->rlc_fw); |
| 2105 | rdev->rlc_fw = NULL; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2106 | } |
| 2107 | return err; |
| 2108 | } |
| 2109 | |
| 2110 | static int r600_cp_load_microcode(struct radeon_device *rdev) |
| 2111 | { |
| 2112 | const __be32 *fw_data; |
| 2113 | int i; |
| 2114 | |
| 2115 | if (!rdev->me_fw || !rdev->pfp_fw) |
| 2116 | return -EINVAL; |
| 2117 | |
| 2118 | r600_cp_stop(rdev); |
| 2119 | |
Cédric Cano | 4eace7f | 2011-02-11 19:45:38 -0500 | [diff] [blame] | 2120 | WREG32(CP_RB_CNTL, |
| 2121 | #ifdef __BIG_ENDIAN |
| 2122 | BUF_SWAP_32BIT | |
| 2123 | #endif |
| 2124 | RB_NO_UPDATE | RB_BLKSZ(15) | RB_BUFSZ(3)); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2125 | |
| 2126 | /* Reset cp */ |
| 2127 | WREG32(GRBM_SOFT_RESET, SOFT_RESET_CP); |
| 2128 | RREG32(GRBM_SOFT_RESET); |
| 2129 | mdelay(15); |
| 2130 | WREG32(GRBM_SOFT_RESET, 0); |
| 2131 | |
| 2132 | WREG32(CP_ME_RAM_WADDR, 0); |
| 2133 | |
| 2134 | fw_data = (const __be32 *)rdev->me_fw->data; |
| 2135 | WREG32(CP_ME_RAM_WADDR, 0); |
| 2136 | for (i = 0; i < PM4_UCODE_SIZE * 3; i++) |
| 2137 | WREG32(CP_ME_RAM_DATA, |
| 2138 | be32_to_cpup(fw_data++)); |
| 2139 | |
| 2140 | fw_data = (const __be32 *)rdev->pfp_fw->data; |
| 2141 | WREG32(CP_PFP_UCODE_ADDR, 0); |
| 2142 | for (i = 0; i < PFP_UCODE_SIZE; i++) |
| 2143 | WREG32(CP_PFP_UCODE_DATA, |
| 2144 | be32_to_cpup(fw_data++)); |
| 2145 | |
| 2146 | WREG32(CP_PFP_UCODE_ADDR, 0); |
| 2147 | WREG32(CP_ME_RAM_WADDR, 0); |
| 2148 | WREG32(CP_ME_RAM_RADDR, 0); |
| 2149 | return 0; |
| 2150 | } |
| 2151 | |
| 2152 | int r600_cp_start(struct radeon_device *rdev) |
| 2153 | { |
| 2154 | int r; |
| 2155 | uint32_t cp_me; |
| 2156 | |
| 2157 | r = radeon_ring_lock(rdev, 7); |
| 2158 | if (r) { |
| 2159 | DRM_ERROR("radeon: cp failed to lock ring (%d).\n", r); |
| 2160 | return r; |
| 2161 | } |
| 2162 | radeon_ring_write(rdev, PACKET3(PACKET3_ME_INITIALIZE, 5)); |
| 2163 | radeon_ring_write(rdev, 0x1); |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 2164 | if (rdev->family >= CHIP_RV770) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2165 | radeon_ring_write(rdev, 0x0); |
| 2166 | radeon_ring_write(rdev, rdev->config.rv770.max_hw_contexts - 1); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2167 | } else { |
| 2168 | radeon_ring_write(rdev, 0x3); |
| 2169 | radeon_ring_write(rdev, rdev->config.r600.max_hw_contexts - 1); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2170 | } |
| 2171 | radeon_ring_write(rdev, PACKET3_ME_INITIALIZE_DEVICE_ID(1)); |
| 2172 | radeon_ring_write(rdev, 0); |
| 2173 | radeon_ring_write(rdev, 0); |
| 2174 | radeon_ring_unlock_commit(rdev); |
| 2175 | |
| 2176 | cp_me = 0xff; |
| 2177 | WREG32(R_0086D8_CP_ME_CNTL, cp_me); |
| 2178 | return 0; |
| 2179 | } |
| 2180 | |
| 2181 | int r600_cp_resume(struct radeon_device *rdev) |
| 2182 | { |
| 2183 | u32 tmp; |
| 2184 | u32 rb_bufsz; |
| 2185 | int r; |
| 2186 | |
| 2187 | /* Reset cp */ |
| 2188 | WREG32(GRBM_SOFT_RESET, SOFT_RESET_CP); |
| 2189 | RREG32(GRBM_SOFT_RESET); |
| 2190 | mdelay(15); |
| 2191 | WREG32(GRBM_SOFT_RESET, 0); |
| 2192 | |
| 2193 | /* Set ring buffer size */ |
| 2194 | rb_bufsz = drm_order(rdev->cp.ring_size / 8); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2195 | tmp = (drm_order(RADEON_GPU_PAGE_SIZE/8) << 8) | rb_bufsz; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2196 | #ifdef __BIG_ENDIAN |
Alex Deucher | d6f2893 | 2009-11-02 16:01:27 -0500 | [diff] [blame] | 2197 | tmp |= BUF_SWAP_32BIT; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2198 | #endif |
Alex Deucher | d6f2893 | 2009-11-02 16:01:27 -0500 | [diff] [blame] | 2199 | WREG32(CP_RB_CNTL, tmp); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2200 | WREG32(CP_SEM_WAIT_TIMER, 0x4); |
| 2201 | |
| 2202 | /* Set the write pointer delay */ |
| 2203 | WREG32(CP_RB_WPTR_DELAY, 0); |
| 2204 | |
| 2205 | /* Initialize the ring buffer's read and write pointers */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2206 | WREG32(CP_RB_CNTL, tmp | RB_RPTR_WR_ENA); |
| 2207 | WREG32(CP_RB_RPTR_WR, 0); |
| 2208 | WREG32(CP_RB_WPTR, 0); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2209 | |
| 2210 | /* set the wb address whether it's enabled or not */ |
Cédric Cano | 4eace7f | 2011-02-11 19:45:38 -0500 | [diff] [blame] | 2211 | WREG32(CP_RB_RPTR_ADDR, |
| 2212 | #ifdef __BIG_ENDIAN |
| 2213 | RB_RPTR_SWAP(2) | |
| 2214 | #endif |
| 2215 | ((rdev->wb.gpu_addr + RADEON_WB_CP_RPTR_OFFSET) & 0xFFFFFFFC)); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2216 | WREG32(CP_RB_RPTR_ADDR_HI, upper_32_bits(rdev->wb.gpu_addr + RADEON_WB_CP_RPTR_OFFSET) & 0xFF); |
| 2217 | WREG32(SCRATCH_ADDR, ((rdev->wb.gpu_addr + RADEON_WB_SCRATCH_OFFSET) >> 8) & 0xFFFFFFFF); |
| 2218 | |
| 2219 | if (rdev->wb.enabled) |
| 2220 | WREG32(SCRATCH_UMSK, 0xff); |
| 2221 | else { |
| 2222 | tmp |= RB_NO_UPDATE; |
| 2223 | WREG32(SCRATCH_UMSK, 0); |
| 2224 | } |
| 2225 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2226 | mdelay(1); |
| 2227 | WREG32(CP_RB_CNTL, tmp); |
| 2228 | |
| 2229 | WREG32(CP_RB_BASE, rdev->cp.gpu_addr >> 8); |
| 2230 | WREG32(CP_DEBUG, (1 << 27) | (1 << 28)); |
| 2231 | |
| 2232 | rdev->cp.rptr = RREG32(CP_RB_RPTR); |
| 2233 | rdev->cp.wptr = RREG32(CP_RB_WPTR); |
| 2234 | |
| 2235 | r600_cp_start(rdev); |
| 2236 | rdev->cp.ready = true; |
| 2237 | r = radeon_ring_test(rdev); |
| 2238 | if (r) { |
| 2239 | rdev->cp.ready = false; |
| 2240 | return r; |
| 2241 | } |
| 2242 | return 0; |
| 2243 | } |
| 2244 | |
| 2245 | void r600_cp_commit(struct radeon_device *rdev) |
| 2246 | { |
| 2247 | WREG32(CP_RB_WPTR, rdev->cp.wptr); |
| 2248 | (void)RREG32(CP_RB_WPTR); |
| 2249 | } |
| 2250 | |
| 2251 | void r600_ring_init(struct radeon_device *rdev, unsigned ring_size) |
| 2252 | { |
| 2253 | u32 rb_bufsz; |
| 2254 | |
| 2255 | /* Align ring size */ |
| 2256 | rb_bufsz = drm_order(ring_size / 8); |
| 2257 | ring_size = (1 << (rb_bufsz + 1)) * 4; |
| 2258 | rdev->cp.ring_size = ring_size; |
| 2259 | rdev->cp.align_mask = 16 - 1; |
| 2260 | } |
| 2261 | |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2262 | void r600_cp_fini(struct radeon_device *rdev) |
| 2263 | { |
| 2264 | r600_cp_stop(rdev); |
| 2265 | radeon_ring_fini(rdev); |
| 2266 | } |
| 2267 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2268 | |
| 2269 | /* |
| 2270 | * GPU scratch registers helpers function. |
| 2271 | */ |
| 2272 | void r600_scratch_init(struct radeon_device *rdev) |
| 2273 | { |
| 2274 | int i; |
| 2275 | |
| 2276 | rdev->scratch.num_reg = 7; |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2277 | rdev->scratch.reg_base = SCRATCH_REG0; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2278 | for (i = 0; i < rdev->scratch.num_reg; i++) { |
| 2279 | rdev->scratch.free[i] = true; |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2280 | rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | int r600_ring_test(struct radeon_device *rdev) |
| 2285 | { |
| 2286 | uint32_t scratch; |
| 2287 | uint32_t tmp = 0; |
| 2288 | unsigned i; |
| 2289 | int r; |
| 2290 | |
| 2291 | r = radeon_scratch_get(rdev, &scratch); |
| 2292 | if (r) { |
| 2293 | DRM_ERROR("radeon: cp failed to get scratch reg (%d).\n", r); |
| 2294 | return r; |
| 2295 | } |
| 2296 | WREG32(scratch, 0xCAFEDEAD); |
| 2297 | r = radeon_ring_lock(rdev, 3); |
| 2298 | if (r) { |
| 2299 | DRM_ERROR("radeon: cp failed to lock ring (%d).\n", r); |
| 2300 | radeon_scratch_free(rdev, scratch); |
| 2301 | return r; |
| 2302 | } |
| 2303 | radeon_ring_write(rdev, PACKET3(PACKET3_SET_CONFIG_REG, 1)); |
| 2304 | radeon_ring_write(rdev, ((scratch - PACKET3_SET_CONFIG_REG_OFFSET) >> 2)); |
| 2305 | radeon_ring_write(rdev, 0xDEADBEEF); |
| 2306 | radeon_ring_unlock_commit(rdev); |
| 2307 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 2308 | tmp = RREG32(scratch); |
| 2309 | if (tmp == 0xDEADBEEF) |
| 2310 | break; |
| 2311 | DRM_UDELAY(1); |
| 2312 | } |
| 2313 | if (i < rdev->usec_timeout) { |
| 2314 | DRM_INFO("ring test succeeded in %d usecs\n", i); |
| 2315 | } else { |
| 2316 | DRM_ERROR("radeon: ring test failed (scratch(0x%04X)=0x%08X)\n", |
| 2317 | scratch, tmp); |
| 2318 | r = -EINVAL; |
| 2319 | } |
| 2320 | radeon_scratch_free(rdev, scratch); |
| 2321 | return r; |
| 2322 | } |
| 2323 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2324 | void r600_fence_ring_emit(struct radeon_device *rdev, |
| 2325 | struct radeon_fence *fence) |
| 2326 | { |
Alex Deucher | d0f8a85 | 2010-09-04 05:04:34 -0400 | [diff] [blame] | 2327 | if (rdev->wb.use_event) { |
| 2328 | u64 addr = rdev->wb.gpu_addr + R600_WB_EVENT_OFFSET + |
| 2329 | (u64)(rdev->fence_drv.scratch_reg - rdev->scratch.reg_base); |
| 2330 | /* EVENT_WRITE_EOP - flush caches, send int */ |
| 2331 | radeon_ring_write(rdev, PACKET3(PACKET3_EVENT_WRITE_EOP, 4)); |
| 2332 | radeon_ring_write(rdev, EVENT_TYPE(CACHE_FLUSH_AND_INV_EVENT_TS) | EVENT_INDEX(5)); |
| 2333 | radeon_ring_write(rdev, addr & 0xffffffff); |
| 2334 | radeon_ring_write(rdev, (upper_32_bits(addr) & 0xff) | DATA_SEL(1) | INT_SEL(2)); |
| 2335 | radeon_ring_write(rdev, fence->seq); |
| 2336 | radeon_ring_write(rdev, 0); |
| 2337 | } else { |
| 2338 | radeon_ring_write(rdev, PACKET3(PACKET3_EVENT_WRITE, 0)); |
| 2339 | radeon_ring_write(rdev, EVENT_TYPE(CACHE_FLUSH_AND_INV_EVENT) | EVENT_INDEX(0)); |
| 2340 | /* wait for 3D idle clean */ |
| 2341 | radeon_ring_write(rdev, PACKET3(PACKET3_SET_CONFIG_REG, 1)); |
| 2342 | radeon_ring_write(rdev, (WAIT_UNTIL - PACKET3_SET_CONFIG_REG_OFFSET) >> 2); |
| 2343 | radeon_ring_write(rdev, WAIT_3D_IDLE_bit | WAIT_3D_IDLECLEAN_bit); |
| 2344 | /* Emit fence sequence & fire IRQ */ |
| 2345 | radeon_ring_write(rdev, PACKET3(PACKET3_SET_CONFIG_REG, 1)); |
| 2346 | radeon_ring_write(rdev, ((rdev->fence_drv.scratch_reg - PACKET3_SET_CONFIG_REG_OFFSET) >> 2)); |
| 2347 | radeon_ring_write(rdev, fence->seq); |
| 2348 | /* CP_INTERRUPT packet 3 no longer exists, use packet 0 */ |
| 2349 | radeon_ring_write(rdev, PACKET0(CP_INT_STATUS, 0)); |
| 2350 | radeon_ring_write(rdev, RB_INT_STAT); |
| 2351 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2352 | } |
| 2353 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2354 | int r600_copy_blit(struct radeon_device *rdev, |
| 2355 | uint64_t src_offset, uint64_t dst_offset, |
| 2356 | unsigned num_pages, struct radeon_fence *fence) |
| 2357 | { |
Jerome Glisse | ff82f05 | 2010-01-22 15:19:00 +0100 | [diff] [blame] | 2358 | int r; |
| 2359 | |
| 2360 | mutex_lock(&rdev->r600_blit.mutex); |
| 2361 | rdev->r600_blit.vb_ib = NULL; |
| 2362 | r = r600_blit_prepare_copy(rdev, num_pages * RADEON_GPU_PAGE_SIZE); |
| 2363 | if (r) { |
| 2364 | if (rdev->r600_blit.vb_ib) |
| 2365 | radeon_ib_free(rdev, &rdev->r600_blit.vb_ib); |
| 2366 | mutex_unlock(&rdev->r600_blit.mutex); |
| 2367 | return r; |
| 2368 | } |
Matt Turner | a77f171 | 2009-10-14 00:34:41 -0400 | [diff] [blame] | 2369 | r600_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * RADEON_GPU_PAGE_SIZE); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2370 | r600_blit_done_copy(rdev, fence); |
Jerome Glisse | ff82f05 | 2010-01-22 15:19:00 +0100 | [diff] [blame] | 2371 | mutex_unlock(&rdev->r600_blit.mutex); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2372 | return 0; |
| 2373 | } |
| 2374 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2375 | int r600_set_surface_reg(struct radeon_device *rdev, int reg, |
| 2376 | uint32_t tiling_flags, uint32_t pitch, |
| 2377 | uint32_t offset, uint32_t obj_size) |
| 2378 | { |
| 2379 | /* FIXME: implement */ |
| 2380 | return 0; |
| 2381 | } |
| 2382 | |
| 2383 | void r600_clear_surface_reg(struct radeon_device *rdev, int reg) |
| 2384 | { |
| 2385 | /* FIXME: implement */ |
| 2386 | } |
| 2387 | |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2388 | int r600_startup(struct radeon_device *rdev) |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2389 | { |
| 2390 | int r; |
| 2391 | |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 2392 | /* enable pcie gen2 link */ |
| 2393 | r600_pcie_gen2_enable(rdev); |
| 2394 | |
Alex Deucher | 779720a | 2009-12-09 19:31:44 -0500 | [diff] [blame] | 2395 | if (!rdev->me_fw || !rdev->pfp_fw || !rdev->rlc_fw) { |
| 2396 | r = r600_init_microcode(rdev); |
| 2397 | if (r) { |
| 2398 | DRM_ERROR("Failed to load firmware!\n"); |
| 2399 | return r; |
| 2400 | } |
| 2401 | } |
| 2402 | |
Jerome Glisse | a3c1945 | 2009-10-01 18:02:13 +0200 | [diff] [blame] | 2403 | r600_mc_program(rdev); |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 2404 | if (rdev->flags & RADEON_IS_AGP) { |
| 2405 | r600_agp_enable(rdev); |
| 2406 | } else { |
| 2407 | r = r600_pcie_gart_enable(rdev); |
| 2408 | if (r) |
| 2409 | return r; |
| 2410 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2411 | r600_gpu_init(rdev); |
Jerome Glisse | c38c7b6 | 2010-02-04 17:27:27 +0100 | [diff] [blame] | 2412 | r = r600_blit_init(rdev); |
| 2413 | if (r) { |
| 2414 | r600_blit_fini(rdev); |
| 2415 | rdev->asic->copy = NULL; |
| 2416 | dev_warn(rdev->dev, "failed blitter (%d) falling back to memcpy\n", r); |
| 2417 | } |
Alex Deucher | b70d6bb | 2010-08-06 21:36:58 -0400 | [diff] [blame] | 2418 | |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2419 | /* allocate wb buffer */ |
| 2420 | r = radeon_wb_init(rdev); |
| 2421 | if (r) |
| 2422 | return r; |
| 2423 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2424 | /* Enable IRQ */ |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2425 | r = r600_irq_init(rdev); |
| 2426 | if (r) { |
| 2427 | DRM_ERROR("radeon: IH init failed (%d).\n", r); |
| 2428 | radeon_irq_kms_fini(rdev); |
| 2429 | return r; |
| 2430 | } |
| 2431 | r600_irq_set(rdev); |
| 2432 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2433 | r = radeon_ring_init(rdev, rdev->cp.ring_size); |
| 2434 | if (r) |
| 2435 | return r; |
| 2436 | r = r600_cp_load_microcode(rdev); |
| 2437 | if (r) |
| 2438 | return r; |
| 2439 | r = r600_cp_resume(rdev); |
| 2440 | if (r) |
| 2441 | return r; |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2442 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2443 | return 0; |
| 2444 | } |
| 2445 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 2446 | void r600_vga_set_state(struct radeon_device *rdev, bool state) |
| 2447 | { |
| 2448 | uint32_t temp; |
| 2449 | |
| 2450 | temp = RREG32(CONFIG_CNTL); |
| 2451 | if (state == false) { |
| 2452 | temp &= ~(1<<0); |
| 2453 | temp |= (1<<1); |
| 2454 | } else { |
| 2455 | temp &= ~(1<<1); |
| 2456 | } |
| 2457 | WREG32(CONFIG_CNTL, temp); |
| 2458 | } |
| 2459 | |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2460 | int r600_resume(struct radeon_device *rdev) |
| 2461 | { |
| 2462 | int r; |
| 2463 | |
Jerome Glisse | 1a029b7 | 2009-10-06 19:04:30 +0200 | [diff] [blame] | 2464 | /* Do not reset GPU before posting, on r600 hw unlike on r500 hw, |
| 2465 | * posting will perform necessary task to bring back GPU into good |
| 2466 | * shape. |
| 2467 | */ |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2468 | /* post card */ |
Jerome Glisse | e7d40b9 | 2009-10-01 18:02:15 +0200 | [diff] [blame] | 2469 | atom_asic_init(rdev->mode_info.atom_context); |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2470 | |
| 2471 | r = r600_startup(rdev); |
| 2472 | if (r) { |
| 2473 | DRM_ERROR("r600 startup failed on resume\n"); |
| 2474 | return r; |
| 2475 | } |
| 2476 | |
Jerome Glisse | 62a8ea3 | 2009-10-01 18:02:11 +0200 | [diff] [blame] | 2477 | r = r600_ib_test(rdev); |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2478 | if (r) { |
Paul Bolle | ec4f2ac | 2011-01-28 23:32:04 +0100 | [diff] [blame] | 2479 | DRM_ERROR("radeon: failed testing IB (%d).\n", r); |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2480 | return r; |
| 2481 | } |
Rafał Miłecki | 38fd2c6 | 2010-01-28 18:16:30 +0100 | [diff] [blame] | 2482 | |
| 2483 | r = r600_audio_init(rdev); |
| 2484 | if (r) { |
| 2485 | DRM_ERROR("radeon: audio resume failed\n"); |
| 2486 | return r; |
| 2487 | } |
| 2488 | |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2489 | return r; |
| 2490 | } |
| 2491 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2492 | int r600_suspend(struct radeon_device *rdev) |
| 2493 | { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2494 | int r; |
| 2495 | |
Rafał Miłecki | 38fd2c6 | 2010-01-28 18:16:30 +0100 | [diff] [blame] | 2496 | r600_audio_fini(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2497 | /* FIXME: we should wait for ring to be empty */ |
| 2498 | r600_cp_stop(rdev); |
Dave Airlie | bc1a631 | 2009-09-15 11:07:52 +1000 | [diff] [blame] | 2499 | rdev->cp.ready = false; |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 2500 | r600_irq_suspend(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2501 | radeon_wb_disable(rdev); |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 2502 | r600_pcie_gart_disable(rdev); |
Dave Airlie | bc1a631 | 2009-09-15 11:07:52 +1000 | [diff] [blame] | 2503 | /* unpin shaders bo */ |
Jerome Glisse | 30d2d9a | 2010-01-13 10:29:27 +0100 | [diff] [blame] | 2504 | if (rdev->r600_blit.shader_obj) { |
| 2505 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); |
| 2506 | if (!r) { |
| 2507 | radeon_bo_unpin(rdev->r600_blit.shader_obj); |
| 2508 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); |
| 2509 | } |
| 2510 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2511 | return 0; |
| 2512 | } |
| 2513 | |
| 2514 | /* Plan is to move initialization in that function and use |
| 2515 | * helper function so that radeon_device_init pretty much |
| 2516 | * do nothing more than calling asic specific function. This |
| 2517 | * should also allow to remove a bunch of callback function |
| 2518 | * like vram_info. |
| 2519 | */ |
| 2520 | int r600_init(struct radeon_device *rdev) |
| 2521 | { |
| 2522 | int r; |
| 2523 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2524 | if (r600_debugfs_mc_info_init(rdev)) { |
| 2525 | DRM_ERROR("Failed to register debugfs file for mc !\n"); |
| 2526 | } |
| 2527 | /* This don't do much */ |
| 2528 | r = radeon_gem_init(rdev); |
| 2529 | if (r) |
| 2530 | return r; |
| 2531 | /* Read BIOS */ |
| 2532 | if (!radeon_get_bios(rdev)) { |
| 2533 | if (ASIC_IS_AVIVO(rdev)) |
| 2534 | return -EINVAL; |
| 2535 | } |
| 2536 | /* Must be an ATOMBIOS */ |
Jerome Glisse | e7d40b9 | 2009-10-01 18:02:15 +0200 | [diff] [blame] | 2537 | if (!rdev->is_atom_bios) { |
| 2538 | dev_err(rdev->dev, "Expecting atombios for R600 GPU\n"); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2539 | return -EINVAL; |
Jerome Glisse | e7d40b9 | 2009-10-01 18:02:15 +0200 | [diff] [blame] | 2540 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2541 | r = radeon_atombios_init(rdev); |
| 2542 | if (r) |
| 2543 | return r; |
| 2544 | /* Post card if necessary */ |
Alex Deucher | fd909c3 | 2011-01-11 18:08:59 -0500 | [diff] [blame] | 2545 | if (!radeon_card_posted(rdev)) { |
Dave Airlie | 72542d7 | 2009-12-01 14:06:31 +1000 | [diff] [blame] | 2546 | if (!rdev->bios) { |
| 2547 | dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n"); |
| 2548 | return -EINVAL; |
| 2549 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2550 | DRM_INFO("GPU not posted. posting now...\n"); |
| 2551 | atom_asic_init(rdev->mode_info.atom_context); |
| 2552 | } |
| 2553 | /* Initialize scratch registers */ |
| 2554 | r600_scratch_init(rdev); |
| 2555 | /* Initialize surface registers */ |
| 2556 | radeon_surface_init(rdev); |
Rafał Miłecki | 7433874 | 2009-11-03 00:53:02 +0100 | [diff] [blame] | 2557 | /* Initialize clocks */ |
Michel Dänzer | 5e6dde7 | 2009-09-17 09:42:28 +0200 | [diff] [blame] | 2558 | radeon_get_clock_info(rdev->ddev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2559 | /* Fence driver */ |
| 2560 | r = radeon_fence_driver_init(rdev); |
| 2561 | if (r) |
| 2562 | return r; |
Jerome Glisse | 700a0cc | 2010-01-13 15:16:38 +0100 | [diff] [blame] | 2563 | if (rdev->flags & RADEON_IS_AGP) { |
| 2564 | r = radeon_agp_init(rdev); |
| 2565 | if (r) |
| 2566 | radeon_agp_disable(rdev); |
| 2567 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2568 | r = r600_mc_init(rdev); |
Jerome Glisse | b574f25 | 2009-10-06 19:04:29 +0200 | [diff] [blame] | 2569 | if (r) |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2570 | return r; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2571 | /* Memory manager */ |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2572 | r = radeon_bo_init(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2573 | if (r) |
| 2574 | return r; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2575 | |
| 2576 | r = radeon_irq_kms_init(rdev); |
| 2577 | if (r) |
| 2578 | return r; |
| 2579 | |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2580 | rdev->cp.ring_obj = NULL; |
| 2581 | r600_ring_init(rdev, 1024 * 1024); |
| 2582 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2583 | rdev->ih.ring_obj = NULL; |
| 2584 | r600_ih_ring_init(rdev, 64 * 1024); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2585 | |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 2586 | r = r600_pcie_gart_init(rdev); |
| 2587 | if (r) |
| 2588 | return r; |
| 2589 | |
Alex Deucher | 779720a | 2009-12-09 19:31:44 -0500 | [diff] [blame] | 2590 | rdev->accel_working = true; |
Dave Airlie | fc30b8e | 2009-09-18 15:19:37 +1000 | [diff] [blame] | 2591 | r = r600_startup(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2592 | if (r) { |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2593 | dev_err(rdev->dev, "disabling GPU acceleration\n"); |
| 2594 | r600_cp_fini(rdev); |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2595 | r600_irq_fini(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2596 | radeon_wb_fini(rdev); |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2597 | radeon_irq_kms_fini(rdev); |
Jerome Glisse | 75c8129 | 2009-10-01 18:02:14 +0200 | [diff] [blame] | 2598 | r600_pcie_gart_fini(rdev); |
Jerome Glisse | 733289c | 2009-09-16 15:24:21 +0200 | [diff] [blame] | 2599 | rdev->accel_working = false; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2600 | } |
Jerome Glisse | 733289c | 2009-09-16 15:24:21 +0200 | [diff] [blame] | 2601 | if (rdev->accel_working) { |
| 2602 | r = radeon_ib_pool_init(rdev); |
| 2603 | if (r) { |
Jerome Glisse | db96380 | 2010-01-17 21:21:56 +0100 | [diff] [blame] | 2604 | dev_err(rdev->dev, "IB initialization failed (%d).\n", r); |
Jerome Glisse | 733289c | 2009-09-16 15:24:21 +0200 | [diff] [blame] | 2605 | rdev->accel_working = false; |
Jerome Glisse | db96380 | 2010-01-17 21:21:56 +0100 | [diff] [blame] | 2606 | } else { |
| 2607 | r = r600_ib_test(rdev); |
| 2608 | if (r) { |
| 2609 | dev_err(rdev->dev, "IB test failed (%d).\n", r); |
| 2610 | rdev->accel_working = false; |
| 2611 | } |
Jerome Glisse | 733289c | 2009-09-16 15:24:21 +0200 | [diff] [blame] | 2612 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2613 | } |
Christian Koenig | dafc3bd | 2009-10-11 23:49:13 +0200 | [diff] [blame] | 2614 | |
| 2615 | r = r600_audio_init(rdev); |
| 2616 | if (r) |
| 2617 | return r; /* TODO error handling */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2618 | return 0; |
| 2619 | } |
| 2620 | |
| 2621 | void r600_fini(struct radeon_device *rdev) |
| 2622 | { |
Christian Koenig | dafc3bd | 2009-10-11 23:49:13 +0200 | [diff] [blame] | 2623 | r600_audio_fini(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2624 | r600_blit_fini(rdev); |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2625 | r600_cp_fini(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2626 | r600_irq_fini(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2627 | radeon_wb_fini(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2628 | radeon_irq_kms_fini(rdev); |
Jerome Glisse | 4aac047 | 2009-09-14 18:29:49 +0200 | [diff] [blame] | 2629 | r600_pcie_gart_fini(rdev); |
Jerome Glisse | 655efd3 | 2010-02-02 11:51:45 +0100 | [diff] [blame] | 2630 | radeon_agp_fini(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2631 | radeon_gem_fini(rdev); |
| 2632 | radeon_fence_driver_fini(rdev); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2633 | radeon_bo_fini(rdev); |
Jerome Glisse | e7d40b9 | 2009-10-01 18:02:15 +0200 | [diff] [blame] | 2634 | radeon_atombios_fini(rdev); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2635 | kfree(rdev->bios); |
| 2636 | rdev->bios = NULL; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2637 | } |
| 2638 | |
| 2639 | |
| 2640 | /* |
| 2641 | * CS stuff |
| 2642 | */ |
| 2643 | void r600_ring_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib) |
| 2644 | { |
| 2645 | /* FIXME: implement */ |
| 2646 | radeon_ring_write(rdev, PACKET3(PACKET3_INDIRECT_BUFFER, 2)); |
Cédric Cano | 4eace7f | 2011-02-11 19:45:38 -0500 | [diff] [blame] | 2647 | radeon_ring_write(rdev, |
| 2648 | #ifdef __BIG_ENDIAN |
| 2649 | (2 << 0) | |
| 2650 | #endif |
| 2651 | (ib->gpu_addr & 0xFFFFFFFC)); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2652 | radeon_ring_write(rdev, upper_32_bits(ib->gpu_addr) & 0xFF); |
| 2653 | radeon_ring_write(rdev, ib->length_dw); |
| 2654 | } |
| 2655 | |
| 2656 | int r600_ib_test(struct radeon_device *rdev) |
| 2657 | { |
| 2658 | struct radeon_ib *ib; |
| 2659 | uint32_t scratch; |
| 2660 | uint32_t tmp = 0; |
| 2661 | unsigned i; |
| 2662 | int r; |
| 2663 | |
| 2664 | r = radeon_scratch_get(rdev, &scratch); |
| 2665 | if (r) { |
| 2666 | DRM_ERROR("radeon: failed to get scratch reg (%d).\n", r); |
| 2667 | return r; |
| 2668 | } |
| 2669 | WREG32(scratch, 0xCAFEDEAD); |
| 2670 | r = radeon_ib_get(rdev, &ib); |
| 2671 | if (r) { |
| 2672 | DRM_ERROR("radeon: failed to get ib (%d).\n", r); |
| 2673 | return r; |
| 2674 | } |
| 2675 | ib->ptr[0] = PACKET3(PACKET3_SET_CONFIG_REG, 1); |
| 2676 | ib->ptr[1] = ((scratch - PACKET3_SET_CONFIG_REG_OFFSET) >> 2); |
| 2677 | ib->ptr[2] = 0xDEADBEEF; |
| 2678 | ib->ptr[3] = PACKET2(0); |
| 2679 | ib->ptr[4] = PACKET2(0); |
| 2680 | ib->ptr[5] = PACKET2(0); |
| 2681 | ib->ptr[6] = PACKET2(0); |
| 2682 | ib->ptr[7] = PACKET2(0); |
| 2683 | ib->ptr[8] = PACKET2(0); |
| 2684 | ib->ptr[9] = PACKET2(0); |
| 2685 | ib->ptr[10] = PACKET2(0); |
| 2686 | ib->ptr[11] = PACKET2(0); |
| 2687 | ib->ptr[12] = PACKET2(0); |
| 2688 | ib->ptr[13] = PACKET2(0); |
| 2689 | ib->ptr[14] = PACKET2(0); |
| 2690 | ib->ptr[15] = PACKET2(0); |
| 2691 | ib->length_dw = 16; |
| 2692 | r = radeon_ib_schedule(rdev, ib); |
| 2693 | if (r) { |
| 2694 | radeon_scratch_free(rdev, scratch); |
| 2695 | radeon_ib_free(rdev, &ib); |
| 2696 | DRM_ERROR("radeon: failed to schedule ib (%d).\n", r); |
| 2697 | return r; |
| 2698 | } |
| 2699 | r = radeon_fence_wait(ib->fence, false); |
| 2700 | if (r) { |
| 2701 | DRM_ERROR("radeon: fence wait failed (%d).\n", r); |
| 2702 | return r; |
| 2703 | } |
| 2704 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 2705 | tmp = RREG32(scratch); |
| 2706 | if (tmp == 0xDEADBEEF) |
| 2707 | break; |
| 2708 | DRM_UDELAY(1); |
| 2709 | } |
| 2710 | if (i < rdev->usec_timeout) { |
| 2711 | DRM_INFO("ib test succeeded in %u usecs\n", i); |
| 2712 | } else { |
Daniel J Blueman | 4417d7f | 2010-09-22 17:57:19 +0100 | [diff] [blame] | 2713 | DRM_ERROR("radeon: ib test failed (scratch(0x%04X)=0x%08X)\n", |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2714 | scratch, tmp); |
| 2715 | r = -EINVAL; |
| 2716 | } |
| 2717 | radeon_scratch_free(rdev, scratch); |
| 2718 | radeon_ib_free(rdev, &ib); |
| 2719 | return r; |
| 2720 | } |
| 2721 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2722 | /* |
| 2723 | * Interrupts |
| 2724 | * |
| 2725 | * Interrupts use a ring buffer on r6xx/r7xx hardware. It works pretty |
| 2726 | * the same as the CP ring buffer, but in reverse. Rather than the CPU |
| 2727 | * writing to the ring and the GPU consuming, the GPU writes to the ring |
| 2728 | * and host consumes. As the host irq handler processes interrupts, it |
| 2729 | * increments the rptr. When the rptr catches up with the wptr, all the |
| 2730 | * current interrupts have been processed. |
| 2731 | */ |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2732 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2733 | void r600_ih_ring_init(struct radeon_device *rdev, unsigned ring_size) |
| 2734 | { |
| 2735 | u32 rb_bufsz; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 2736 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2737 | /* Align ring size */ |
| 2738 | rb_bufsz = drm_order(ring_size / 4); |
| 2739 | ring_size = (1 << rb_bufsz) * 4; |
| 2740 | rdev->ih.ring_size = ring_size; |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 2741 | rdev->ih.ptr_mask = rdev->ih.ring_size - 1; |
| 2742 | rdev->ih.rptr = 0; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2743 | } |
| 2744 | |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 2745 | static int r600_ih_ring_alloc(struct radeon_device *rdev) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2746 | { |
| 2747 | int r; |
| 2748 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2749 | /* Allocate ring buffer */ |
| 2750 | if (rdev->ih.ring_obj == NULL) { |
Daniel Vetter | 441921d | 2011-02-18 17:59:16 +0100 | [diff] [blame] | 2751 | r = radeon_bo_create(rdev, rdev->ih.ring_size, |
Alex Deucher | 268b251 | 2010-11-17 19:00:26 -0500 | [diff] [blame] | 2752 | PAGE_SIZE, true, |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2753 | RADEON_GEM_DOMAIN_GTT, |
| 2754 | &rdev->ih.ring_obj); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2755 | if (r) { |
| 2756 | DRM_ERROR("radeon: failed to create ih ring buffer (%d).\n", r); |
| 2757 | return r; |
| 2758 | } |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2759 | r = radeon_bo_reserve(rdev->ih.ring_obj, false); |
| 2760 | if (unlikely(r != 0)) |
| 2761 | return r; |
| 2762 | r = radeon_bo_pin(rdev->ih.ring_obj, |
| 2763 | RADEON_GEM_DOMAIN_GTT, |
| 2764 | &rdev->ih.gpu_addr); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2765 | if (r) { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2766 | radeon_bo_unreserve(rdev->ih.ring_obj); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2767 | DRM_ERROR("radeon: failed to pin ih ring buffer (%d).\n", r); |
| 2768 | return r; |
| 2769 | } |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2770 | r = radeon_bo_kmap(rdev->ih.ring_obj, |
| 2771 | (void **)&rdev->ih.ring); |
| 2772 | radeon_bo_unreserve(rdev->ih.ring_obj); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2773 | if (r) { |
| 2774 | DRM_ERROR("radeon: failed to map ih ring buffer (%d).\n", r); |
| 2775 | return r; |
| 2776 | } |
| 2777 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2778 | return 0; |
| 2779 | } |
| 2780 | |
| 2781 | static void r600_ih_ring_fini(struct radeon_device *rdev) |
| 2782 | { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2783 | int r; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2784 | if (rdev->ih.ring_obj) { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 2785 | r = radeon_bo_reserve(rdev->ih.ring_obj, false); |
| 2786 | if (likely(r == 0)) { |
| 2787 | radeon_bo_kunmap(rdev->ih.ring_obj); |
| 2788 | radeon_bo_unpin(rdev->ih.ring_obj); |
| 2789 | radeon_bo_unreserve(rdev->ih.ring_obj); |
| 2790 | } |
| 2791 | radeon_bo_unref(&rdev->ih.ring_obj); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2792 | rdev->ih.ring = NULL; |
| 2793 | rdev->ih.ring_obj = NULL; |
| 2794 | } |
| 2795 | } |
| 2796 | |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2797 | void r600_rlc_stop(struct radeon_device *rdev) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2798 | { |
| 2799 | |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2800 | if ((rdev->family >= CHIP_RV770) && |
| 2801 | (rdev->family <= CHIP_RV740)) { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2802 | /* r7xx asics need to soft reset RLC before halting */ |
| 2803 | WREG32(SRBM_SOFT_RESET, SOFT_RESET_RLC); |
| 2804 | RREG32(SRBM_SOFT_RESET); |
| 2805 | udelay(15000); |
| 2806 | WREG32(SRBM_SOFT_RESET, 0); |
| 2807 | RREG32(SRBM_SOFT_RESET); |
| 2808 | } |
| 2809 | |
| 2810 | WREG32(RLC_CNTL, 0); |
| 2811 | } |
| 2812 | |
| 2813 | static void r600_rlc_start(struct radeon_device *rdev) |
| 2814 | { |
| 2815 | WREG32(RLC_CNTL, RLC_ENABLE); |
| 2816 | } |
| 2817 | |
| 2818 | static int r600_rlc_init(struct radeon_device *rdev) |
| 2819 | { |
| 2820 | u32 i; |
| 2821 | const __be32 *fw_data; |
| 2822 | |
| 2823 | if (!rdev->rlc_fw) |
| 2824 | return -EINVAL; |
| 2825 | |
| 2826 | r600_rlc_stop(rdev); |
| 2827 | |
| 2828 | WREG32(RLC_HB_BASE, 0); |
| 2829 | WREG32(RLC_HB_CNTL, 0); |
| 2830 | WREG32(RLC_HB_RPTR, 0); |
| 2831 | WREG32(RLC_HB_WPTR, 0); |
Alex Deucher | 1272780 | 2011-03-02 20:07:32 -0500 | [diff] [blame] | 2832 | if (rdev->family <= CHIP_CAICOS) { |
| 2833 | WREG32(RLC_HB_WPTR_LSB_ADDR, 0); |
| 2834 | WREG32(RLC_HB_WPTR_MSB_ADDR, 0); |
| 2835 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2836 | WREG32(RLC_MC_CNTL, 0); |
| 2837 | WREG32(RLC_UCODE_CNTL, 0); |
| 2838 | |
| 2839 | fw_data = (const __be32 *)rdev->rlc_fw->data; |
Alex Deucher | 1272780 | 2011-03-02 20:07:32 -0500 | [diff] [blame] | 2840 | if (rdev->family >= CHIP_CAYMAN) { |
| 2841 | for (i = 0; i < CAYMAN_RLC_UCODE_SIZE; i++) { |
| 2842 | WREG32(RLC_UCODE_ADDR, i); |
| 2843 | WREG32(RLC_UCODE_DATA, be32_to_cpup(fw_data++)); |
| 2844 | } |
| 2845 | } else if (rdev->family >= CHIP_CEDAR) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2846 | for (i = 0; i < EVERGREEN_RLC_UCODE_SIZE; i++) { |
| 2847 | WREG32(RLC_UCODE_ADDR, i); |
| 2848 | WREG32(RLC_UCODE_DATA, be32_to_cpup(fw_data++)); |
| 2849 | } |
| 2850 | } else if (rdev->family >= CHIP_RV770) { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2851 | for (i = 0; i < R700_RLC_UCODE_SIZE; i++) { |
| 2852 | WREG32(RLC_UCODE_ADDR, i); |
| 2853 | WREG32(RLC_UCODE_DATA, be32_to_cpup(fw_data++)); |
| 2854 | } |
| 2855 | } else { |
| 2856 | for (i = 0; i < RLC_UCODE_SIZE; i++) { |
| 2857 | WREG32(RLC_UCODE_ADDR, i); |
| 2858 | WREG32(RLC_UCODE_DATA, be32_to_cpup(fw_data++)); |
| 2859 | } |
| 2860 | } |
| 2861 | WREG32(RLC_UCODE_ADDR, 0); |
| 2862 | |
| 2863 | r600_rlc_start(rdev); |
| 2864 | |
| 2865 | return 0; |
| 2866 | } |
| 2867 | |
| 2868 | static void r600_enable_interrupts(struct radeon_device *rdev) |
| 2869 | { |
| 2870 | u32 ih_cntl = RREG32(IH_CNTL); |
| 2871 | u32 ih_rb_cntl = RREG32(IH_RB_CNTL); |
| 2872 | |
| 2873 | ih_cntl |= ENABLE_INTR; |
| 2874 | ih_rb_cntl |= IH_RB_ENABLE; |
| 2875 | WREG32(IH_CNTL, ih_cntl); |
| 2876 | WREG32(IH_RB_CNTL, ih_rb_cntl); |
| 2877 | rdev->ih.enabled = true; |
| 2878 | } |
| 2879 | |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2880 | void r600_disable_interrupts(struct radeon_device *rdev) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2881 | { |
| 2882 | u32 ih_rb_cntl = RREG32(IH_RB_CNTL); |
| 2883 | u32 ih_cntl = RREG32(IH_CNTL); |
| 2884 | |
| 2885 | ih_rb_cntl &= ~IH_RB_ENABLE; |
| 2886 | ih_cntl &= ~ENABLE_INTR; |
| 2887 | WREG32(IH_RB_CNTL, ih_rb_cntl); |
| 2888 | WREG32(IH_CNTL, ih_cntl); |
| 2889 | /* set rptr, wptr to 0 */ |
| 2890 | WREG32(IH_RB_RPTR, 0); |
| 2891 | WREG32(IH_RB_WPTR, 0); |
| 2892 | rdev->ih.enabled = false; |
| 2893 | rdev->ih.wptr = 0; |
| 2894 | rdev->ih.rptr = 0; |
| 2895 | } |
| 2896 | |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2897 | static void r600_disable_interrupt_state(struct radeon_device *rdev) |
| 2898 | { |
| 2899 | u32 tmp; |
| 2900 | |
Alex Deucher | 3555e53 | 2010-10-08 12:09:12 -0400 | [diff] [blame] | 2901 | WREG32(CP_INT_CNTL, CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2902 | WREG32(GRBM_INT_CNTL, 0); |
| 2903 | WREG32(DxMODE_INT_MASK, 0); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2904 | WREG32(D1GRPH_INTERRUPT_CONTROL, 0); |
| 2905 | WREG32(D2GRPH_INTERRUPT_CONTROL, 0); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2906 | if (ASIC_IS_DCE3(rdev)) { |
| 2907 | WREG32(DCE3_DACA_AUTODETECT_INT_CONTROL, 0); |
| 2908 | WREG32(DCE3_DACB_AUTODETECT_INT_CONTROL, 0); |
| 2909 | tmp = RREG32(DC_HPD1_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2910 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 2911 | tmp = RREG32(DC_HPD2_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2912 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 2913 | tmp = RREG32(DC_HPD3_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2914 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 2915 | tmp = RREG32(DC_HPD4_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2916 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 2917 | if (ASIC_IS_DCE32(rdev)) { |
| 2918 | tmp = RREG32(DC_HPD5_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
Alex Deucher | 5898b1f | 2010-03-24 13:57:29 -0400 | [diff] [blame] | 2919 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2920 | tmp = RREG32(DC_HPD6_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
Alex Deucher | 5898b1f | 2010-03-24 13:57:29 -0400 | [diff] [blame] | 2921 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2922 | } |
| 2923 | } else { |
| 2924 | WREG32(DACA_AUTODETECT_INT_CONTROL, 0); |
| 2925 | WREG32(DACB_AUTODETECT_INT_CONTROL, 0); |
| 2926 | tmp = RREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL) & DC_HOT_PLUG_DETECTx_INT_POLARITY; |
Alex Deucher | 5898b1f | 2010-03-24 13:57:29 -0400 | [diff] [blame] | 2927 | WREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL, tmp); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2928 | tmp = RREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL) & DC_HOT_PLUG_DETECTx_INT_POLARITY; |
Alex Deucher | 5898b1f | 2010-03-24 13:57:29 -0400 | [diff] [blame] | 2929 | WREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL, tmp); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2930 | tmp = RREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL) & DC_HOT_PLUG_DETECTx_INT_POLARITY; |
Alex Deucher | 5898b1f | 2010-03-24 13:57:29 -0400 | [diff] [blame] | 2931 | WREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL, tmp); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 2932 | } |
| 2933 | } |
| 2934 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2935 | int r600_irq_init(struct radeon_device *rdev) |
| 2936 | { |
| 2937 | int ret = 0; |
| 2938 | int rb_bufsz; |
| 2939 | u32 interrupt_cntl, ih_cntl, ih_rb_cntl; |
| 2940 | |
| 2941 | /* allocate ring */ |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 2942 | ret = r600_ih_ring_alloc(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2943 | if (ret) |
| 2944 | return ret; |
| 2945 | |
| 2946 | /* disable irqs */ |
| 2947 | r600_disable_interrupts(rdev); |
| 2948 | |
| 2949 | /* init rlc */ |
| 2950 | ret = r600_rlc_init(rdev); |
| 2951 | if (ret) { |
| 2952 | r600_ih_ring_fini(rdev); |
| 2953 | return ret; |
| 2954 | } |
| 2955 | |
| 2956 | /* setup interrupt control */ |
| 2957 | /* set dummy read address to ring address */ |
| 2958 | WREG32(INTERRUPT_CNTL2, rdev->ih.gpu_addr >> 8); |
| 2959 | interrupt_cntl = RREG32(INTERRUPT_CNTL); |
| 2960 | /* IH_DUMMY_RD_OVERRIDE=0 - dummy read disabled with msi, enabled without msi |
| 2961 | * IH_DUMMY_RD_OVERRIDE=1 - dummy read controlled by IH_DUMMY_RD_EN |
| 2962 | */ |
| 2963 | interrupt_cntl &= ~IH_DUMMY_RD_OVERRIDE; |
| 2964 | /* IH_REQ_NONSNOOP_EN=1 if ring is in non-cacheable memory, e.g., vram */ |
| 2965 | interrupt_cntl &= ~IH_REQ_NONSNOOP_EN; |
| 2966 | WREG32(INTERRUPT_CNTL, interrupt_cntl); |
| 2967 | |
| 2968 | WREG32(IH_RB_BASE, rdev->ih.gpu_addr >> 8); |
| 2969 | rb_bufsz = drm_order(rdev->ih.ring_size / 4); |
| 2970 | |
| 2971 | ih_rb_cntl = (IH_WPTR_OVERFLOW_ENABLE | |
| 2972 | IH_WPTR_OVERFLOW_CLEAR | |
| 2973 | (rb_bufsz << 1)); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2974 | |
| 2975 | if (rdev->wb.enabled) |
| 2976 | ih_rb_cntl |= IH_WPTR_WRITEBACK_ENABLE; |
| 2977 | |
| 2978 | /* set the writeback address whether it's enabled or not */ |
| 2979 | WREG32(IH_RB_WPTR_ADDR_LO, (rdev->wb.gpu_addr + R600_WB_IH_WPTR_OFFSET) & 0xFFFFFFFC); |
| 2980 | WREG32(IH_RB_WPTR_ADDR_HI, upper_32_bits(rdev->wb.gpu_addr + R600_WB_IH_WPTR_OFFSET) & 0xFF); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 2981 | |
| 2982 | WREG32(IH_RB_CNTL, ih_rb_cntl); |
| 2983 | |
| 2984 | /* set rptr, wptr to 0 */ |
| 2985 | WREG32(IH_RB_RPTR, 0); |
| 2986 | WREG32(IH_RB_WPTR, 0); |
| 2987 | |
| 2988 | /* Default settings for IH_CNTL (disabled at first) */ |
| 2989 | ih_cntl = MC_WRREQ_CREDIT(0x10) | MC_WR_CLEAN_CNT(0x10); |
| 2990 | /* RPTR_REARM only works if msi's are enabled */ |
| 2991 | if (rdev->msi_enabled) |
| 2992 | ih_cntl |= RPTR_REARM; |
| 2993 | |
| 2994 | #ifdef __BIG_ENDIAN |
| 2995 | ih_cntl |= IH_MC_SWAP(IH_MC_SWAP_32BIT); |
| 2996 | #endif |
| 2997 | WREG32(IH_CNTL, ih_cntl); |
| 2998 | |
| 2999 | /* force the active interrupt state to all disabled */ |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 3000 | if (rdev->family >= CHIP_CEDAR) |
| 3001 | evergreen_disable_interrupt_state(rdev); |
| 3002 | else |
| 3003 | r600_disable_interrupt_state(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3004 | |
| 3005 | /* enable irqs */ |
| 3006 | r600_enable_interrupts(rdev); |
| 3007 | |
| 3008 | return ret; |
| 3009 | } |
| 3010 | |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 3011 | void r600_irq_suspend(struct radeon_device *rdev) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3012 | { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 3013 | r600_irq_disable(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3014 | r600_rlc_stop(rdev); |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 3015 | } |
| 3016 | |
| 3017 | void r600_irq_fini(struct radeon_device *rdev) |
| 3018 | { |
| 3019 | r600_irq_suspend(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3020 | r600_ih_ring_fini(rdev); |
| 3021 | } |
| 3022 | |
| 3023 | int r600_irq_set(struct radeon_device *rdev) |
| 3024 | { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3025 | u32 cp_int_cntl = CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE; |
| 3026 | u32 mode_int = 0; |
| 3027 | u32 hpd1, hpd2, hpd3, hpd4 = 0, hpd5 = 0, hpd6 = 0; |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 3028 | u32 grbm_int_cntl = 0; |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3029 | u32 hdmi1, hdmi2; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3030 | u32 d1grph = 0, d2grph = 0; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3031 | |
Jerome Glisse | 003e69f | 2010-01-07 15:39:14 +0100 | [diff] [blame] | 3032 | if (!rdev->irq.installed) { |
Joe Perches | fce7d61 | 2010-10-30 21:08:30 +0000 | [diff] [blame] | 3033 | WARN(1, "Can't enable IRQ/MSI because no handler is installed\n"); |
Jerome Glisse | 003e69f | 2010-01-07 15:39:14 +0100 | [diff] [blame] | 3034 | return -EINVAL; |
| 3035 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3036 | /* don't enable anything if the ih is disabled */ |
Jerome Glisse | 79c2bbc | 2010-01-15 14:44:38 +0100 | [diff] [blame] | 3037 | if (!rdev->ih.enabled) { |
| 3038 | r600_disable_interrupts(rdev); |
| 3039 | /* force the active interrupt state to all disabled */ |
| 3040 | r600_disable_interrupt_state(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3041 | return 0; |
Jerome Glisse | 79c2bbc | 2010-01-15 14:44:38 +0100 | [diff] [blame] | 3042 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3043 | |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3044 | hdmi1 = RREG32(R600_HDMI_BLOCK1 + R600_HDMI_CNTL) & ~R600_HDMI_INT_EN; |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3045 | if (ASIC_IS_DCE3(rdev)) { |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3046 | hdmi2 = RREG32(R600_HDMI_BLOCK3 + R600_HDMI_CNTL) & ~R600_HDMI_INT_EN; |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3047 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3048 | hpd2 = RREG32(DC_HPD2_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3049 | hpd3 = RREG32(DC_HPD3_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3050 | hpd4 = RREG32(DC_HPD4_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3051 | if (ASIC_IS_DCE32(rdev)) { |
| 3052 | hpd5 = RREG32(DC_HPD5_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3053 | hpd6 = RREG32(DC_HPD6_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3054 | } |
| 3055 | } else { |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3056 | hdmi2 = RREG32(R600_HDMI_BLOCK2 + R600_HDMI_CNTL) & ~R600_HDMI_INT_EN; |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3057 | hpd1 = RREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3058 | hpd2 = RREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3059 | hpd3 = RREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 3060 | } |
| 3061 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3062 | if (rdev->irq.sw_int) { |
| 3063 | DRM_DEBUG("r600_irq_set: sw int\n"); |
| 3064 | cp_int_cntl |= RB_INT_ENABLE; |
Alex Deucher | d0f8a85 | 2010-09-04 05:04:34 -0400 | [diff] [blame] | 3065 | cp_int_cntl |= TIME_STAMP_INT_ENABLE; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3066 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3067 | if (rdev->irq.crtc_vblank_int[0] || |
| 3068 | rdev->irq.pflip[0]) { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3069 | DRM_DEBUG("r600_irq_set: vblank 0\n"); |
| 3070 | mode_int |= D1MODE_VBLANK_INT_MASK; |
| 3071 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3072 | if (rdev->irq.crtc_vblank_int[1] || |
| 3073 | rdev->irq.pflip[1]) { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3074 | DRM_DEBUG("r600_irq_set: vblank 1\n"); |
| 3075 | mode_int |= D2MODE_VBLANK_INT_MASK; |
| 3076 | } |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3077 | if (rdev->irq.hpd[0]) { |
| 3078 | DRM_DEBUG("r600_irq_set: hpd 1\n"); |
| 3079 | hpd1 |= DC_HPDx_INT_EN; |
| 3080 | } |
| 3081 | if (rdev->irq.hpd[1]) { |
| 3082 | DRM_DEBUG("r600_irq_set: hpd 2\n"); |
| 3083 | hpd2 |= DC_HPDx_INT_EN; |
| 3084 | } |
| 3085 | if (rdev->irq.hpd[2]) { |
| 3086 | DRM_DEBUG("r600_irq_set: hpd 3\n"); |
| 3087 | hpd3 |= DC_HPDx_INT_EN; |
| 3088 | } |
| 3089 | if (rdev->irq.hpd[3]) { |
| 3090 | DRM_DEBUG("r600_irq_set: hpd 4\n"); |
| 3091 | hpd4 |= DC_HPDx_INT_EN; |
| 3092 | } |
| 3093 | if (rdev->irq.hpd[4]) { |
| 3094 | DRM_DEBUG("r600_irq_set: hpd 5\n"); |
| 3095 | hpd5 |= DC_HPDx_INT_EN; |
| 3096 | } |
| 3097 | if (rdev->irq.hpd[5]) { |
| 3098 | DRM_DEBUG("r600_irq_set: hpd 6\n"); |
| 3099 | hpd6 |= DC_HPDx_INT_EN; |
| 3100 | } |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3101 | if (rdev->irq.hdmi[0]) { |
| 3102 | DRM_DEBUG("r600_irq_set: hdmi 1\n"); |
| 3103 | hdmi1 |= R600_HDMI_INT_EN; |
| 3104 | } |
| 3105 | if (rdev->irq.hdmi[1]) { |
| 3106 | DRM_DEBUG("r600_irq_set: hdmi 2\n"); |
| 3107 | hdmi2 |= R600_HDMI_INT_EN; |
| 3108 | } |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 3109 | if (rdev->irq.gui_idle) { |
| 3110 | DRM_DEBUG("gui idle\n"); |
| 3111 | grbm_int_cntl |= GUI_IDLE_INT_ENABLE; |
| 3112 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3113 | |
| 3114 | WREG32(CP_INT_CNTL, cp_int_cntl); |
| 3115 | WREG32(DxMODE_INT_MASK, mode_int); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3116 | WREG32(D1GRPH_INTERRUPT_CONTROL, d1grph); |
| 3117 | WREG32(D2GRPH_INTERRUPT_CONTROL, d2grph); |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 3118 | WREG32(GRBM_INT_CNTL, grbm_int_cntl); |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3119 | WREG32(R600_HDMI_BLOCK1 + R600_HDMI_CNTL, hdmi1); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3120 | if (ASIC_IS_DCE3(rdev)) { |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3121 | WREG32(R600_HDMI_BLOCK3 + R600_HDMI_CNTL, hdmi2); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3122 | WREG32(DC_HPD1_INT_CONTROL, hpd1); |
| 3123 | WREG32(DC_HPD2_INT_CONTROL, hpd2); |
| 3124 | WREG32(DC_HPD3_INT_CONTROL, hpd3); |
| 3125 | WREG32(DC_HPD4_INT_CONTROL, hpd4); |
| 3126 | if (ASIC_IS_DCE32(rdev)) { |
| 3127 | WREG32(DC_HPD5_INT_CONTROL, hpd5); |
| 3128 | WREG32(DC_HPD6_INT_CONTROL, hpd6); |
| 3129 | } |
| 3130 | } else { |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3131 | WREG32(R600_HDMI_BLOCK2 + R600_HDMI_CNTL, hdmi2); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3132 | WREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL, hpd1); |
| 3133 | WREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL, hpd2); |
| 3134 | WREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL, hpd3); |
| 3135 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3136 | |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3140 | static inline void r600_irq_ack(struct radeon_device *rdev) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3141 | { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3142 | u32 tmp; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3143 | |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3144 | if (ASIC_IS_DCE3(rdev)) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3145 | rdev->irq.stat_regs.r600.disp_int = RREG32(DCE3_DISP_INTERRUPT_STATUS); |
| 3146 | rdev->irq.stat_regs.r600.disp_int_cont = RREG32(DCE3_DISP_INTERRUPT_STATUS_CONTINUE); |
| 3147 | rdev->irq.stat_regs.r600.disp_int_cont2 = RREG32(DCE3_DISP_INTERRUPT_STATUS_CONTINUE2); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3148 | } else { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3149 | rdev->irq.stat_regs.r600.disp_int = RREG32(DISP_INTERRUPT_STATUS); |
| 3150 | rdev->irq.stat_regs.r600.disp_int_cont = RREG32(DISP_INTERRUPT_STATUS_CONTINUE); |
| 3151 | rdev->irq.stat_regs.r600.disp_int_cont2 = 0; |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3152 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3153 | rdev->irq.stat_regs.r600.d1grph_int = RREG32(D1GRPH_INTERRUPT_STATUS); |
| 3154 | rdev->irq.stat_regs.r600.d2grph_int = RREG32(D2GRPH_INTERRUPT_STATUS); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3155 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3156 | if (rdev->irq.stat_regs.r600.d1grph_int & DxGRPH_PFLIP_INT_OCCURRED) |
| 3157 | WREG32(D1GRPH_INTERRUPT_STATUS, DxGRPH_PFLIP_INT_CLEAR); |
| 3158 | if (rdev->irq.stat_regs.r600.d2grph_int & DxGRPH_PFLIP_INT_OCCURRED) |
| 3159 | WREG32(D2GRPH_INTERRUPT_STATUS, DxGRPH_PFLIP_INT_CLEAR); |
| 3160 | if (rdev->irq.stat_regs.r600.disp_int & LB_D1_VBLANK_INTERRUPT) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3161 | WREG32(D1MODE_VBLANK_STATUS, DxMODE_VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3162 | if (rdev->irq.stat_regs.r600.disp_int & LB_D1_VLINE_INTERRUPT) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3163 | WREG32(D1MODE_VLINE_STATUS, DxMODE_VLINE_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3164 | if (rdev->irq.stat_regs.r600.disp_int & LB_D2_VBLANK_INTERRUPT) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3165 | WREG32(D2MODE_VBLANK_STATUS, DxMODE_VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3166 | if (rdev->irq.stat_regs.r600.disp_int & LB_D2_VLINE_INTERRUPT) |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3167 | WREG32(D2MODE_VLINE_STATUS, DxMODE_VLINE_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3168 | if (rdev->irq.stat_regs.r600.disp_int & DC_HPD1_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3169 | if (ASIC_IS_DCE3(rdev)) { |
| 3170 | tmp = RREG32(DC_HPD1_INT_CONTROL); |
| 3171 | tmp |= DC_HPDx_INT_ACK; |
| 3172 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 3173 | } else { |
| 3174 | tmp = RREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL); |
| 3175 | tmp |= DC_HPDx_INT_ACK; |
| 3176 | WREG32(DC_HOT_PLUG_DETECT1_INT_CONTROL, tmp); |
| 3177 | } |
| 3178 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3179 | if (rdev->irq.stat_regs.r600.disp_int & DC_HPD2_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3180 | if (ASIC_IS_DCE3(rdev)) { |
| 3181 | tmp = RREG32(DC_HPD2_INT_CONTROL); |
| 3182 | tmp |= DC_HPDx_INT_ACK; |
| 3183 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 3184 | } else { |
| 3185 | tmp = RREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL); |
| 3186 | tmp |= DC_HPDx_INT_ACK; |
| 3187 | WREG32(DC_HOT_PLUG_DETECT2_INT_CONTROL, tmp); |
| 3188 | } |
| 3189 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3190 | if (rdev->irq.stat_regs.r600.disp_int_cont & DC_HPD3_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3191 | if (ASIC_IS_DCE3(rdev)) { |
| 3192 | tmp = RREG32(DC_HPD3_INT_CONTROL); |
| 3193 | tmp |= DC_HPDx_INT_ACK; |
| 3194 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 3195 | } else { |
| 3196 | tmp = RREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL); |
| 3197 | tmp |= DC_HPDx_INT_ACK; |
| 3198 | WREG32(DC_HOT_PLUG_DETECT3_INT_CONTROL, tmp); |
| 3199 | } |
| 3200 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3201 | if (rdev->irq.stat_regs.r600.disp_int_cont & DC_HPD4_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3202 | tmp = RREG32(DC_HPD4_INT_CONTROL); |
| 3203 | tmp |= DC_HPDx_INT_ACK; |
| 3204 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 3205 | } |
| 3206 | if (ASIC_IS_DCE32(rdev)) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3207 | if (rdev->irq.stat_regs.r600.disp_int_cont2 & DC_HPD5_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3208 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 3209 | tmp |= DC_HPDx_INT_ACK; |
| 3210 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
| 3211 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3212 | if (rdev->irq.stat_regs.r600.disp_int_cont2 & DC_HPD6_INTERRUPT) { |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3213 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 3214 | tmp |= DC_HPDx_INT_ACK; |
| 3215 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
| 3216 | } |
| 3217 | } |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3218 | if (RREG32(R600_HDMI_BLOCK1 + R600_HDMI_STATUS) & R600_HDMI_INT_PENDING) { |
| 3219 | WREG32_P(R600_HDMI_BLOCK1 + R600_HDMI_CNTL, R600_HDMI_INT_ACK, ~R600_HDMI_INT_ACK); |
| 3220 | } |
| 3221 | if (ASIC_IS_DCE3(rdev)) { |
| 3222 | if (RREG32(R600_HDMI_BLOCK3 + R600_HDMI_STATUS) & R600_HDMI_INT_PENDING) { |
| 3223 | WREG32_P(R600_HDMI_BLOCK3 + R600_HDMI_CNTL, R600_HDMI_INT_ACK, ~R600_HDMI_INT_ACK); |
| 3224 | } |
| 3225 | } else { |
| 3226 | if (RREG32(R600_HDMI_BLOCK2 + R600_HDMI_STATUS) & R600_HDMI_INT_PENDING) { |
| 3227 | WREG32_P(R600_HDMI_BLOCK2 + R600_HDMI_CNTL, R600_HDMI_INT_ACK, ~R600_HDMI_INT_ACK); |
| 3228 | } |
| 3229 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3230 | } |
| 3231 | |
| 3232 | void r600_irq_disable(struct radeon_device *rdev) |
| 3233 | { |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3234 | r600_disable_interrupts(rdev); |
| 3235 | /* Wait and acknowledge irq */ |
| 3236 | mdelay(1); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3237 | r600_irq_ack(rdev); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3238 | r600_disable_interrupt_state(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3239 | } |
| 3240 | |
| 3241 | static inline u32 r600_get_ih_wptr(struct radeon_device *rdev) |
| 3242 | { |
| 3243 | u32 wptr, tmp; |
| 3244 | |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 3245 | if (rdev->wb.enabled) |
Cédric Cano | 204ae24 | 2011-04-19 11:07:13 -0400 | [diff] [blame] | 3246 | wptr = le32_to_cpu(rdev->wb.wb[R600_WB_IH_WPTR_OFFSET/4]); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 3247 | else |
| 3248 | wptr = RREG32(IH_RB_WPTR); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3249 | |
| 3250 | if (wptr & RB_OVERFLOW) { |
Jerome Glisse | 7924e5e | 2010-01-15 14:44:39 +0100 | [diff] [blame] | 3251 | /* When a ring buffer overflow happen start parsing interrupt |
| 3252 | * from the last not overwritten vector (wptr + 16). Hopefully |
| 3253 | * this should allow us to catchup. |
| 3254 | */ |
| 3255 | dev_warn(rdev->dev, "IH ring buffer overflow (0x%08X, %d, %d)\n", |
| 3256 | wptr, rdev->ih.rptr, (wptr + 16) + rdev->ih.ptr_mask); |
| 3257 | rdev->ih.rptr = (wptr + 16) & rdev->ih.ptr_mask; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3258 | tmp = RREG32(IH_RB_CNTL); |
| 3259 | tmp |= IH_WPTR_OVERFLOW_CLEAR; |
| 3260 | WREG32(IH_RB_CNTL, tmp); |
| 3261 | } |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 3262 | return (wptr & rdev->ih.ptr_mask); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3263 | } |
| 3264 | |
| 3265 | /* r600 IV Ring |
| 3266 | * Each IV ring entry is 128 bits: |
| 3267 | * [7:0] - interrupt source id |
| 3268 | * [31:8] - reserved |
| 3269 | * [59:32] - interrupt source data |
| 3270 | * [127:60] - reserved |
| 3271 | * |
| 3272 | * The basic interrupt vector entries |
| 3273 | * are decoded as follows: |
| 3274 | * src_id src_data description |
| 3275 | * 1 0 D1 Vblank |
| 3276 | * 1 1 D1 Vline |
| 3277 | * 5 0 D2 Vblank |
| 3278 | * 5 1 D2 Vline |
| 3279 | * 19 0 FP Hot plug detection A |
| 3280 | * 19 1 FP Hot plug detection B |
| 3281 | * 19 2 DAC A auto-detection |
| 3282 | * 19 3 DAC B auto-detection |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3283 | * 21 4 HDMI block A |
| 3284 | * 21 5 HDMI block B |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3285 | * 176 - CP_INT RB |
| 3286 | * 177 - CP_INT IB1 |
| 3287 | * 178 - CP_INT IB2 |
| 3288 | * 181 - EOP Interrupt |
| 3289 | * 233 - GUI Idle |
| 3290 | * |
| 3291 | * Note, these are based on r600 and may need to be |
| 3292 | * adjusted or added to on newer asics |
| 3293 | */ |
| 3294 | |
| 3295 | int r600_irq_process(struct radeon_device *rdev) |
| 3296 | { |
Dave Airlie | 682f1a5 | 2011-06-18 03:59:51 +0000 | [diff] [blame^] | 3297 | u32 wptr; |
| 3298 | u32 rptr; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3299 | u32 src_id, src_data; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3300 | u32 ring_index; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3301 | unsigned long flags; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3302 | bool queue_hotplug = false; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3303 | |
Dave Airlie | 682f1a5 | 2011-06-18 03:59:51 +0000 | [diff] [blame^] | 3304 | if (!rdev->ih.enabled || rdev->shutdown) |
Jerome Glisse | 79c2bbc | 2010-01-15 14:44:38 +0100 | [diff] [blame] | 3305 | return IRQ_NONE; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3306 | |
Dave Airlie | 682f1a5 | 2011-06-18 03:59:51 +0000 | [diff] [blame^] | 3307 | wptr = r600_get_ih_wptr(rdev); |
| 3308 | rptr = rdev->ih.rptr; |
| 3309 | DRM_DEBUG("r600_irq_process start: rptr %d, wptr %d\n", rptr, wptr); |
| 3310 | |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3311 | spin_lock_irqsave(&rdev->ih.lock, flags); |
| 3312 | |
| 3313 | if (rptr == wptr) { |
| 3314 | spin_unlock_irqrestore(&rdev->ih.lock, flags); |
| 3315 | return IRQ_NONE; |
| 3316 | } |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3317 | |
| 3318 | restart_ih: |
| 3319 | /* display interrupts */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3320 | r600_irq_ack(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3321 | |
| 3322 | rdev->ih.wptr = wptr; |
| 3323 | while (rptr != wptr) { |
| 3324 | /* wptr/rptr are in bytes! */ |
| 3325 | ring_index = rptr / 4; |
Cédric Cano | 4eace7f | 2011-02-11 19:45:38 -0500 | [diff] [blame] | 3326 | src_id = le32_to_cpu(rdev->ih.ring[ring_index]) & 0xff; |
| 3327 | src_data = le32_to_cpu(rdev->ih.ring[ring_index + 1]) & 0xfffffff; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3328 | |
| 3329 | switch (src_id) { |
| 3330 | case 1: /* D1 vblank/vline */ |
| 3331 | switch (src_data) { |
| 3332 | case 0: /* D1 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3333 | if (rdev->irq.stat_regs.r600.disp_int & LB_D1_VBLANK_INTERRUPT) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3334 | if (rdev->irq.crtc_vblank_int[0]) { |
| 3335 | drm_handle_vblank(rdev->ddev, 0); |
| 3336 | rdev->pm.vblank_sync = true; |
| 3337 | wake_up(&rdev->irq.vblank_queue); |
| 3338 | } |
Mario Kleiner | 3e4ea74 | 2010-11-21 10:59:02 -0500 | [diff] [blame] | 3339 | if (rdev->irq.pflip[0]) |
| 3340 | radeon_crtc_handle_flip(rdev, 0); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3341 | rdev->irq.stat_regs.r600.disp_int &= ~LB_D1_VBLANK_INTERRUPT; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3342 | DRM_DEBUG("IH: D1 vblank\n"); |
| 3343 | } |
| 3344 | break; |
| 3345 | case 1: /* D1 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3346 | if (rdev->irq.stat_regs.r600.disp_int & LB_D1_VLINE_INTERRUPT) { |
| 3347 | rdev->irq.stat_regs.r600.disp_int &= ~LB_D1_VLINE_INTERRUPT; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3348 | DRM_DEBUG("IH: D1 vline\n"); |
| 3349 | } |
| 3350 | break; |
| 3351 | default: |
Alex Deucher | b042589 | 2010-01-11 19:47:38 -0500 | [diff] [blame] | 3352 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3353 | break; |
| 3354 | } |
| 3355 | break; |
| 3356 | case 5: /* D2 vblank/vline */ |
| 3357 | switch (src_data) { |
| 3358 | case 0: /* D2 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3359 | if (rdev->irq.stat_regs.r600.disp_int & LB_D2_VBLANK_INTERRUPT) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3360 | if (rdev->irq.crtc_vblank_int[1]) { |
| 3361 | drm_handle_vblank(rdev->ddev, 1); |
| 3362 | rdev->pm.vblank_sync = true; |
| 3363 | wake_up(&rdev->irq.vblank_queue); |
| 3364 | } |
Mario Kleiner | 3e4ea74 | 2010-11-21 10:59:02 -0500 | [diff] [blame] | 3365 | if (rdev->irq.pflip[1]) |
| 3366 | radeon_crtc_handle_flip(rdev, 1); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3367 | rdev->irq.stat_regs.r600.disp_int &= ~LB_D2_VBLANK_INTERRUPT; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3368 | DRM_DEBUG("IH: D2 vblank\n"); |
| 3369 | } |
| 3370 | break; |
| 3371 | case 1: /* D1 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3372 | if (rdev->irq.stat_regs.r600.disp_int & LB_D2_VLINE_INTERRUPT) { |
| 3373 | rdev->irq.stat_regs.r600.disp_int &= ~LB_D2_VLINE_INTERRUPT; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3374 | DRM_DEBUG("IH: D2 vline\n"); |
| 3375 | } |
| 3376 | break; |
| 3377 | default: |
Alex Deucher | b042589 | 2010-01-11 19:47:38 -0500 | [diff] [blame] | 3378 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3379 | break; |
| 3380 | } |
| 3381 | break; |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3382 | case 19: /* HPD/DAC hotplug */ |
| 3383 | switch (src_data) { |
| 3384 | case 0: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3385 | if (rdev->irq.stat_regs.r600.disp_int & DC_HPD1_INTERRUPT) { |
| 3386 | rdev->irq.stat_regs.r600.disp_int &= ~DC_HPD1_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3387 | queue_hotplug = true; |
| 3388 | DRM_DEBUG("IH: HPD1\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3389 | } |
| 3390 | break; |
| 3391 | case 1: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3392 | if (rdev->irq.stat_regs.r600.disp_int & DC_HPD2_INTERRUPT) { |
| 3393 | rdev->irq.stat_regs.r600.disp_int &= ~DC_HPD2_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3394 | queue_hotplug = true; |
| 3395 | DRM_DEBUG("IH: HPD2\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3396 | } |
| 3397 | break; |
| 3398 | case 4: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3399 | if (rdev->irq.stat_regs.r600.disp_int_cont & DC_HPD3_INTERRUPT) { |
| 3400 | rdev->irq.stat_regs.r600.disp_int_cont &= ~DC_HPD3_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3401 | queue_hotplug = true; |
| 3402 | DRM_DEBUG("IH: HPD3\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3403 | } |
| 3404 | break; |
| 3405 | case 5: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3406 | if (rdev->irq.stat_regs.r600.disp_int_cont & DC_HPD4_INTERRUPT) { |
| 3407 | rdev->irq.stat_regs.r600.disp_int_cont &= ~DC_HPD4_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3408 | queue_hotplug = true; |
| 3409 | DRM_DEBUG("IH: HPD4\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3410 | } |
| 3411 | break; |
| 3412 | case 10: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3413 | if (rdev->irq.stat_regs.r600.disp_int_cont2 & DC_HPD5_INTERRUPT) { |
| 3414 | rdev->irq.stat_regs.r600.disp_int_cont2 &= ~DC_HPD5_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3415 | queue_hotplug = true; |
| 3416 | DRM_DEBUG("IH: HPD5\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3417 | } |
| 3418 | break; |
| 3419 | case 12: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 3420 | if (rdev->irq.stat_regs.r600.disp_int_cont2 & DC_HPD6_INTERRUPT) { |
| 3421 | rdev->irq.stat_regs.r600.disp_int_cont2 &= ~DC_HPD6_INTERRUPT; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3422 | queue_hotplug = true; |
| 3423 | DRM_DEBUG("IH: HPD6\n"); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3424 | } |
| 3425 | break; |
| 3426 | default: |
Alex Deucher | b042589 | 2010-01-11 19:47:38 -0500 | [diff] [blame] | 3427 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
Alex Deucher | e0df1ac | 2009-12-04 15:12:21 -0500 | [diff] [blame] | 3428 | break; |
| 3429 | } |
| 3430 | break; |
Christian Koenig | f259493 | 2010-04-10 03:13:16 +0200 | [diff] [blame] | 3431 | case 21: /* HDMI */ |
| 3432 | DRM_DEBUG("IH: HDMI: 0x%x\n", src_data); |
| 3433 | r600_audio_schedule_polling(rdev); |
| 3434 | break; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3435 | case 176: /* CP_INT in ring buffer */ |
| 3436 | case 177: /* CP_INT in IB1 */ |
| 3437 | case 178: /* CP_INT in IB2 */ |
| 3438 | DRM_DEBUG("IH: CP int: 0x%08x\n", src_data); |
| 3439 | radeon_fence_process(rdev); |
| 3440 | break; |
| 3441 | case 181: /* CP EOP event */ |
| 3442 | DRM_DEBUG("IH: CP EOP\n"); |
Alex Deucher | d0f8a85 | 2010-09-04 05:04:34 -0400 | [diff] [blame] | 3443 | radeon_fence_process(rdev); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3444 | break; |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 3445 | case 233: /* GUI IDLE */ |
Ilija Hadzic | 303c805 | 2011-06-07 14:54:48 -0400 | [diff] [blame] | 3446 | DRM_DEBUG("IH: GUI idle\n"); |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 3447 | rdev->pm.gui_idle = true; |
| 3448 | wake_up(&rdev->irq.idle_queue); |
| 3449 | break; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3450 | default: |
Alex Deucher | b042589 | 2010-01-11 19:47:38 -0500 | [diff] [blame] | 3451 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3452 | break; |
| 3453 | } |
| 3454 | |
| 3455 | /* wptr/rptr are in bytes! */ |
Jerome Glisse | 0c45249 | 2010-01-15 14:44:37 +0100 | [diff] [blame] | 3456 | rptr += 16; |
| 3457 | rptr &= rdev->ih.ptr_mask; |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3458 | } |
| 3459 | /* make sure wptr hasn't changed while processing */ |
| 3460 | wptr = r600_get_ih_wptr(rdev); |
| 3461 | if (wptr != rdev->ih.wptr) |
| 3462 | goto restart_ih; |
Alex Deucher | d4877cf | 2009-12-04 16:56:37 -0500 | [diff] [blame] | 3463 | if (queue_hotplug) |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 3464 | schedule_work(&rdev->hotplug_work); |
Alex Deucher | d8f60cf | 2009-12-01 13:43:46 -0500 | [diff] [blame] | 3465 | rdev->ih.rptr = rptr; |
| 3466 | WREG32(IH_RB_RPTR, rdev->ih.rptr); |
| 3467 | spin_unlock_irqrestore(&rdev->ih.lock, flags); |
| 3468 | return IRQ_HANDLED; |
| 3469 | } |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3470 | |
| 3471 | /* |
| 3472 | * Debugfs info |
| 3473 | */ |
| 3474 | #if defined(CONFIG_DEBUG_FS) |
| 3475 | |
| 3476 | static int r600_debugfs_cp_ring_info(struct seq_file *m, void *data) |
| 3477 | { |
| 3478 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 3479 | struct drm_device *dev = node->minor->dev; |
| 3480 | struct radeon_device *rdev = dev->dev_private; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3481 | unsigned count, i, j; |
| 3482 | |
| 3483 | radeon_ring_free_size(rdev); |
Rafał Miłecki | d684076 | 2009-11-10 22:26:21 +0100 | [diff] [blame] | 3484 | count = (rdev->cp.ring_size / 4) - rdev->cp.ring_free_dw; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3485 | seq_printf(m, "CP_STAT 0x%08x\n", RREG32(CP_STAT)); |
Rafał Miłecki | d684076 | 2009-11-10 22:26:21 +0100 | [diff] [blame] | 3486 | seq_printf(m, "CP_RB_WPTR 0x%08x\n", RREG32(CP_RB_WPTR)); |
| 3487 | seq_printf(m, "CP_RB_RPTR 0x%08x\n", RREG32(CP_RB_RPTR)); |
| 3488 | seq_printf(m, "driver's copy of the CP_RB_WPTR 0x%08x\n", rdev->cp.wptr); |
| 3489 | seq_printf(m, "driver's copy of the CP_RB_RPTR 0x%08x\n", rdev->cp.rptr); |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3490 | seq_printf(m, "%u free dwords in ring\n", rdev->cp.ring_free_dw); |
| 3491 | seq_printf(m, "%u dwords in ring\n", count); |
Rafał Miłecki | d684076 | 2009-11-10 22:26:21 +0100 | [diff] [blame] | 3492 | i = rdev->cp.rptr; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3493 | for (j = 0; j <= count; j++) { |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3494 | seq_printf(m, "r[%04d]=0x%08x\n", i, rdev->cp.ring[i]); |
Rafał Miłecki | d684076 | 2009-11-10 22:26:21 +0100 | [diff] [blame] | 3495 | i = (i + 1) & rdev->cp.ptr_mask; |
Jerome Glisse | 3ce0a23 | 2009-09-08 10:10:24 +1000 | [diff] [blame] | 3496 | } |
| 3497 | return 0; |
| 3498 | } |
| 3499 | |
| 3500 | static int r600_debugfs_mc_info(struct seq_file *m, void *data) |
| 3501 | { |
| 3502 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 3503 | struct drm_device *dev = node->minor->dev; |
| 3504 | struct radeon_device *rdev = dev->dev_private; |
| 3505 | |
| 3506 | DREG32_SYS(m, rdev, R_000E50_SRBM_STATUS); |
| 3507 | DREG32_SYS(m, rdev, VM_L2_STATUS); |
| 3508 | return 0; |
| 3509 | } |
| 3510 | |
| 3511 | static struct drm_info_list r600_mc_info_list[] = { |
| 3512 | {"r600_mc_info", r600_debugfs_mc_info, 0, NULL}, |
| 3513 | {"r600_ring_info", r600_debugfs_cp_ring_info, 0, NULL}, |
| 3514 | }; |
| 3515 | #endif |
| 3516 | |
| 3517 | int r600_debugfs_mc_info_init(struct radeon_device *rdev) |
| 3518 | { |
| 3519 | #if defined(CONFIG_DEBUG_FS) |
| 3520 | return radeon_debugfs_add_files(rdev, r600_mc_info_list, ARRAY_SIZE(r600_mc_info_list)); |
| 3521 | #else |
| 3522 | return 0; |
| 3523 | #endif |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 3524 | } |
Jerome Glisse | 062b389 | 2010-02-04 20:36:39 +0100 | [diff] [blame] | 3525 | |
| 3526 | /** |
| 3527 | * r600_ioctl_wait_idle - flush host path cache on wait idle ioctl |
| 3528 | * rdev: radeon device structure |
| 3529 | * bo: buffer object struct which userspace is waiting for idle |
| 3530 | * |
| 3531 | * Some R6XX/R7XX doesn't seems to take into account HDP flush performed |
| 3532 | * through ring buffer, this leads to corruption in rendering, see |
| 3533 | * http://bugzilla.kernel.org/show_bug.cgi?id=15186 to avoid this we |
| 3534 | * directly perform HDP flush by writing register through MMIO. |
| 3535 | */ |
| 3536 | void r600_ioctl_wait_idle(struct radeon_device *rdev, struct radeon_bo *bo) |
| 3537 | { |
Alex Deucher | 812d046 | 2010-07-26 18:51:53 -0400 | [diff] [blame] | 3538 | /* r7xx hw bug. write to HDP_DEBUG1 followed by fb read |
Alex Deucher | f3886f8 | 2010-12-08 10:05:34 -0500 | [diff] [blame] | 3539 | * rather than write to HDP_REG_COHERENCY_FLUSH_CNTL. |
| 3540 | * This seems to cause problems on some AGP cards. Just use the old |
| 3541 | * method for them. |
Alex Deucher | 812d046 | 2010-07-26 18:51:53 -0400 | [diff] [blame] | 3542 | */ |
Alex Deucher | e488459 | 2010-09-27 10:57:10 -0400 | [diff] [blame] | 3543 | if ((rdev->family >= CHIP_RV770) && (rdev->family <= CHIP_RV740) && |
Alex Deucher | f3886f8 | 2010-12-08 10:05:34 -0500 | [diff] [blame] | 3544 | rdev->vram_scratch.ptr && !(rdev->flags & RADEON_IS_AGP)) { |
Alex Deucher | 87cbf8f | 2010-08-27 13:59:54 -0400 | [diff] [blame] | 3545 | void __iomem *ptr = (void *)rdev->vram_scratch.ptr; |
Alex Deucher | 812d046 | 2010-07-26 18:51:53 -0400 | [diff] [blame] | 3546 | u32 tmp; |
| 3547 | |
| 3548 | WREG32(HDP_DEBUG1, 0); |
| 3549 | tmp = readl((void __iomem *)ptr); |
| 3550 | } else |
| 3551 | WREG32(R_005480_HDP_MEM_COHERENCY_FLUSH_CNTL, 0x1); |
Jerome Glisse | 062b389 | 2010-02-04 20:36:39 +0100 | [diff] [blame] | 3552 | } |
Alex Deucher | 3313e3d | 2011-01-06 18:49:34 -0500 | [diff] [blame] | 3553 | |
| 3554 | void r600_set_pcie_lanes(struct radeon_device *rdev, int lanes) |
| 3555 | { |
| 3556 | u32 link_width_cntl, mask, target_reg; |
| 3557 | |
| 3558 | if (rdev->flags & RADEON_IS_IGP) |
| 3559 | return; |
| 3560 | |
| 3561 | if (!(rdev->flags & RADEON_IS_PCIE)) |
| 3562 | return; |
| 3563 | |
| 3564 | /* x2 cards have a special sequence */ |
| 3565 | if (ASIC_IS_X2(rdev)) |
| 3566 | return; |
| 3567 | |
| 3568 | /* FIXME wait for idle */ |
| 3569 | |
| 3570 | switch (lanes) { |
| 3571 | case 0: |
| 3572 | mask = RADEON_PCIE_LC_LINK_WIDTH_X0; |
| 3573 | break; |
| 3574 | case 1: |
| 3575 | mask = RADEON_PCIE_LC_LINK_WIDTH_X1; |
| 3576 | break; |
| 3577 | case 2: |
| 3578 | mask = RADEON_PCIE_LC_LINK_WIDTH_X2; |
| 3579 | break; |
| 3580 | case 4: |
| 3581 | mask = RADEON_PCIE_LC_LINK_WIDTH_X4; |
| 3582 | break; |
| 3583 | case 8: |
| 3584 | mask = RADEON_PCIE_LC_LINK_WIDTH_X8; |
| 3585 | break; |
| 3586 | case 12: |
| 3587 | mask = RADEON_PCIE_LC_LINK_WIDTH_X12; |
| 3588 | break; |
| 3589 | case 16: |
| 3590 | default: |
| 3591 | mask = RADEON_PCIE_LC_LINK_WIDTH_X16; |
| 3592 | break; |
| 3593 | } |
| 3594 | |
| 3595 | link_width_cntl = RREG32_PCIE_P(RADEON_PCIE_LC_LINK_WIDTH_CNTL); |
| 3596 | |
| 3597 | if ((link_width_cntl & RADEON_PCIE_LC_LINK_WIDTH_RD_MASK) == |
| 3598 | (mask << RADEON_PCIE_LC_LINK_WIDTH_RD_SHIFT)) |
| 3599 | return; |
| 3600 | |
| 3601 | if (link_width_cntl & R600_PCIE_LC_UPCONFIGURE_DIS) |
| 3602 | return; |
| 3603 | |
| 3604 | link_width_cntl &= ~(RADEON_PCIE_LC_LINK_WIDTH_MASK | |
| 3605 | RADEON_PCIE_LC_RECONFIG_NOW | |
| 3606 | R600_PCIE_LC_RENEGOTIATE_EN | |
| 3607 | R600_PCIE_LC_RECONFIG_ARC_MISSING_ESCAPE); |
| 3608 | link_width_cntl |= mask; |
| 3609 | |
| 3610 | WREG32_PCIE_P(RADEON_PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3611 | |
| 3612 | /* some northbridges can renegotiate the link rather than requiring |
| 3613 | * a complete re-config. |
| 3614 | * e.g., AMD 780/790 northbridges (pci ids: 0x5956, 0x5957, 0x5958, etc.) |
| 3615 | */ |
| 3616 | if (link_width_cntl & R600_PCIE_LC_RENEGOTIATION_SUPPORT) |
| 3617 | link_width_cntl |= R600_PCIE_LC_RENEGOTIATE_EN | R600_PCIE_LC_UPCONFIGURE_SUPPORT; |
| 3618 | else |
| 3619 | link_width_cntl |= R600_PCIE_LC_RECONFIG_ARC_MISSING_ESCAPE; |
| 3620 | |
| 3621 | WREG32_PCIE_P(RADEON_PCIE_LC_LINK_WIDTH_CNTL, (link_width_cntl | |
| 3622 | RADEON_PCIE_LC_RECONFIG_NOW)); |
| 3623 | |
| 3624 | if (rdev->family >= CHIP_RV770) |
| 3625 | target_reg = R700_TARGET_AND_CURRENT_PROFILE_INDEX; |
| 3626 | else |
| 3627 | target_reg = R600_TARGET_AND_CURRENT_PROFILE_INDEX; |
| 3628 | |
| 3629 | /* wait for lane set to complete */ |
| 3630 | link_width_cntl = RREG32(target_reg); |
| 3631 | while (link_width_cntl == 0xffffffff) |
| 3632 | link_width_cntl = RREG32(target_reg); |
| 3633 | |
| 3634 | } |
| 3635 | |
| 3636 | int r600_get_pcie_lanes(struct radeon_device *rdev) |
| 3637 | { |
| 3638 | u32 link_width_cntl; |
| 3639 | |
| 3640 | if (rdev->flags & RADEON_IS_IGP) |
| 3641 | return 0; |
| 3642 | |
| 3643 | if (!(rdev->flags & RADEON_IS_PCIE)) |
| 3644 | return 0; |
| 3645 | |
| 3646 | /* x2 cards have a special sequence */ |
| 3647 | if (ASIC_IS_X2(rdev)) |
| 3648 | return 0; |
| 3649 | |
| 3650 | /* FIXME wait for idle */ |
| 3651 | |
| 3652 | link_width_cntl = RREG32_PCIE_P(RADEON_PCIE_LC_LINK_WIDTH_CNTL); |
| 3653 | |
| 3654 | switch ((link_width_cntl & RADEON_PCIE_LC_LINK_WIDTH_RD_MASK) >> RADEON_PCIE_LC_LINK_WIDTH_RD_SHIFT) { |
| 3655 | case RADEON_PCIE_LC_LINK_WIDTH_X0: |
| 3656 | return 0; |
| 3657 | case RADEON_PCIE_LC_LINK_WIDTH_X1: |
| 3658 | return 1; |
| 3659 | case RADEON_PCIE_LC_LINK_WIDTH_X2: |
| 3660 | return 2; |
| 3661 | case RADEON_PCIE_LC_LINK_WIDTH_X4: |
| 3662 | return 4; |
| 3663 | case RADEON_PCIE_LC_LINK_WIDTH_X8: |
| 3664 | return 8; |
| 3665 | case RADEON_PCIE_LC_LINK_WIDTH_X16: |
| 3666 | default: |
| 3667 | return 16; |
| 3668 | } |
| 3669 | } |
| 3670 | |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 3671 | static void r600_pcie_gen2_enable(struct radeon_device *rdev) |
| 3672 | { |
| 3673 | u32 link_width_cntl, lanes, speed_cntl, training_cntl, tmp; |
| 3674 | u16 link_cntl2; |
| 3675 | |
Alex Deucher | d42dd57 | 2011-01-12 20:05:11 -0500 | [diff] [blame] | 3676 | if (radeon_pcie_gen2 == 0) |
| 3677 | return; |
| 3678 | |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 3679 | if (rdev->flags & RADEON_IS_IGP) |
| 3680 | return; |
| 3681 | |
| 3682 | if (!(rdev->flags & RADEON_IS_PCIE)) |
| 3683 | return; |
| 3684 | |
| 3685 | /* x2 cards have a special sequence */ |
| 3686 | if (ASIC_IS_X2(rdev)) |
| 3687 | return; |
| 3688 | |
| 3689 | /* only RV6xx+ chips are supported */ |
| 3690 | if (rdev->family <= CHIP_R600) |
| 3691 | return; |
| 3692 | |
| 3693 | /* 55 nm r6xx asics */ |
| 3694 | if ((rdev->family == CHIP_RV670) || |
| 3695 | (rdev->family == CHIP_RV620) || |
| 3696 | (rdev->family == CHIP_RV635)) { |
| 3697 | /* advertise upconfig capability */ |
| 3698 | link_width_cntl = RREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL); |
| 3699 | link_width_cntl &= ~LC_UPCONFIGURE_DIS; |
| 3700 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3701 | link_width_cntl = RREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL); |
| 3702 | if (link_width_cntl & LC_RENEGOTIATION_SUPPORT) { |
| 3703 | lanes = (link_width_cntl & LC_LINK_WIDTH_RD_MASK) >> LC_LINK_WIDTH_RD_SHIFT; |
| 3704 | link_width_cntl &= ~(LC_LINK_WIDTH_MASK | |
| 3705 | LC_RECONFIG_ARC_MISSING_ESCAPE); |
| 3706 | link_width_cntl |= lanes | LC_RECONFIG_NOW | LC_RENEGOTIATE_EN; |
| 3707 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3708 | } else { |
| 3709 | link_width_cntl |= LC_UPCONFIGURE_DIS; |
| 3710 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3711 | } |
| 3712 | } |
| 3713 | |
| 3714 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3715 | if ((speed_cntl & LC_OTHER_SIDE_EVER_SENT_GEN2) && |
| 3716 | (speed_cntl & LC_OTHER_SIDE_SUPPORTS_GEN2)) { |
| 3717 | |
| 3718 | /* 55 nm r6xx asics */ |
| 3719 | if ((rdev->family == CHIP_RV670) || |
| 3720 | (rdev->family == CHIP_RV620) || |
| 3721 | (rdev->family == CHIP_RV635)) { |
| 3722 | WREG32(MM_CFGREGS_CNTL, 0x8); |
| 3723 | link_cntl2 = RREG32(0x4088); |
| 3724 | WREG32(MM_CFGREGS_CNTL, 0); |
| 3725 | /* not supported yet */ |
| 3726 | if (link_cntl2 & SELECTABLE_DEEMPHASIS) |
| 3727 | return; |
| 3728 | } |
| 3729 | |
| 3730 | speed_cntl &= ~LC_SPEED_CHANGE_ATTEMPTS_ALLOWED_MASK; |
| 3731 | speed_cntl |= (0x3 << LC_SPEED_CHANGE_ATTEMPTS_ALLOWED_SHIFT); |
| 3732 | speed_cntl &= ~LC_VOLTAGE_TIMER_SEL_MASK; |
| 3733 | speed_cntl &= ~LC_FORCE_DIS_HW_SPEED_CHANGE; |
| 3734 | speed_cntl |= LC_FORCE_EN_HW_SPEED_CHANGE; |
| 3735 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3736 | |
| 3737 | tmp = RREG32(0x541c); |
| 3738 | WREG32(0x541c, tmp | 0x8); |
| 3739 | WREG32(MM_CFGREGS_CNTL, MM_WR_TO_CFG_EN); |
| 3740 | link_cntl2 = RREG16(0x4088); |
| 3741 | link_cntl2 &= ~TARGET_LINK_SPEED_MASK; |
| 3742 | link_cntl2 |= 0x2; |
| 3743 | WREG16(0x4088, link_cntl2); |
| 3744 | WREG32(MM_CFGREGS_CNTL, 0); |
| 3745 | |
| 3746 | if ((rdev->family == CHIP_RV670) || |
| 3747 | (rdev->family == CHIP_RV620) || |
| 3748 | (rdev->family == CHIP_RV635)) { |
| 3749 | training_cntl = RREG32_PCIE_P(PCIE_LC_TRAINING_CNTL); |
| 3750 | training_cntl &= ~LC_POINT_7_PLUS_EN; |
| 3751 | WREG32_PCIE_P(PCIE_LC_TRAINING_CNTL, training_cntl); |
| 3752 | } else { |
| 3753 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3754 | speed_cntl &= ~LC_TARGET_LINK_SPEED_OVERRIDE_EN; |
| 3755 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3756 | } |
| 3757 | |
| 3758 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3759 | speed_cntl |= LC_GEN2_EN_STRAP; |
| 3760 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3761 | |
| 3762 | } else { |
| 3763 | link_width_cntl = RREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL); |
| 3764 | /* XXX: only disable it if gen1 bridge vendor == 0x111d or 0x1106 */ |
| 3765 | if (1) |
| 3766 | link_width_cntl |= LC_UPCONFIGURE_DIS; |
| 3767 | else |
| 3768 | link_width_cntl &= ~LC_UPCONFIGURE_DIS; |
| 3769 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3770 | } |
| 3771 | } |