Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010 Advanced Micro Devices, Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Alex Deucher |
| 23 | */ |
| 24 | #include <linux/firmware.h> |
| 25 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 27 | #include "drmP.h" |
| 28 | #include "radeon.h" |
Daniel Vetter | e699037 | 2010-03-11 21:19:17 +0000 | [diff] [blame] | 29 | #include "radeon_asic.h" |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 30 | #include "radeon_drm.h" |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 31 | #include "evergreend.h" |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 32 | #include "atom.h" |
| 33 | #include "avivod.h" |
| 34 | #include "evergreen_reg.h" |
Alex Deucher | 2281a37 | 2010-10-21 13:31:38 -0400 | [diff] [blame] | 35 | #include "evergreen_blit_shaders.h" |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 36 | |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 37 | #define EVERGREEN_PFP_UCODE_SIZE 1120 |
| 38 | #define EVERGREEN_PM4_UCODE_SIZE 1376 |
| 39 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 40 | static void evergreen_gpu_init(struct radeon_device *rdev); |
| 41 | void evergreen_fini(struct radeon_device *rdev); |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 42 | static void evergreen_pcie_gen2_enable(struct radeon_device *rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 43 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 44 | void evergreen_pre_page_flip(struct radeon_device *rdev, int crtc) |
| 45 | { |
| 46 | struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc]; |
| 47 | u32 tmp; |
| 48 | |
| 49 | /* make sure flip is at vb rather than hb */ |
| 50 | tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset); |
| 51 | tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN; |
| 52 | WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp); |
| 53 | |
| 54 | /* set pageflip to happen anywhere in vblank interval */ |
| 55 | WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0); |
| 56 | |
| 57 | /* enable the pflip int */ |
| 58 | radeon_irq_kms_pflip_irq_get(rdev, crtc); |
| 59 | } |
| 60 | |
| 61 | void evergreen_post_page_flip(struct radeon_device *rdev, int crtc) |
| 62 | { |
| 63 | /* disable the pflip int */ |
| 64 | radeon_irq_kms_pflip_irq_put(rdev, crtc); |
| 65 | } |
| 66 | |
| 67 | u32 evergreen_page_flip(struct radeon_device *rdev, int crtc_id, u64 crtc_base) |
| 68 | { |
| 69 | struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id]; |
| 70 | u32 tmp = RREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset); |
| 71 | |
| 72 | /* Lock the graphics update lock */ |
| 73 | tmp |= EVERGREEN_GRPH_UPDATE_LOCK; |
| 74 | WREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset, tmp); |
| 75 | |
| 76 | /* update the scanout addresses */ |
| 77 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 78 | upper_32_bits(crtc_base)); |
| 79 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 80 | (u32)crtc_base); |
| 81 | |
| 82 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, |
| 83 | upper_32_bits(crtc_base)); |
| 84 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 85 | (u32)crtc_base); |
| 86 | |
| 87 | /* Wait for update_pending to go high. */ |
| 88 | while (!(RREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset) & EVERGREEN_GRPH_SURFACE_UPDATE_PENDING)); |
| 89 | DRM_DEBUG("Update pending now high. Unlocking vupdate_lock.\n"); |
| 90 | |
| 91 | /* Unlock the lock, so double-buffering can take place inside vblank */ |
| 92 | tmp &= ~EVERGREEN_GRPH_UPDATE_LOCK; |
| 93 | WREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset, tmp); |
| 94 | |
| 95 | /* Return current update_pending status: */ |
| 96 | return RREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset) & EVERGREEN_GRPH_SURFACE_UPDATE_PENDING; |
| 97 | } |
| 98 | |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 99 | /* get temperature in millidegrees */ |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 100 | int evergreen_get_temp(struct radeon_device *rdev) |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 101 | { |
| 102 | u32 temp = (RREG32(CG_MULT_THERMAL_STATUS) & ASIC_T_MASK) >> |
| 103 | ASIC_T_SHIFT; |
| 104 | u32 actual_temp = 0; |
| 105 | |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 106 | if (temp & 0x400) |
| 107 | actual_temp = -256; |
| 108 | else if (temp & 0x200) |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 109 | actual_temp = 255; |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 110 | else if (temp & 0x100) { |
| 111 | actual_temp = temp & 0x1ff; |
| 112 | actual_temp |= ~0x1ff; |
| 113 | } else |
| 114 | actual_temp = temp & 0xff; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 115 | |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 116 | return (actual_temp * 1000) / 2; |
Alex Deucher | 21a8122 | 2010-07-02 12:58:16 -0400 | [diff] [blame] | 117 | } |
| 118 | |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 119 | int sumo_get_temp(struct radeon_device *rdev) |
Alex Deucher | e33df25 | 2010-11-22 17:56:32 -0500 | [diff] [blame] | 120 | { |
| 121 | u32 temp = RREG32(CG_THERMAL_STATUS) & 0xff; |
Alex Deucher | 20d391d | 2011-02-01 16:12:34 -0500 | [diff] [blame] | 122 | int actual_temp = temp - 49; |
Alex Deucher | e33df25 | 2010-11-22 17:56:32 -0500 | [diff] [blame] | 123 | |
| 124 | return actual_temp * 1000; |
| 125 | } |
| 126 | |
Alex Deucher | 49e02b7 | 2010-04-23 17:57:27 -0400 | [diff] [blame] | 127 | void evergreen_pm_misc(struct radeon_device *rdev) |
| 128 | { |
Rafał Miłecki | a081a9d | 2010-06-07 18:20:25 -0400 | [diff] [blame] | 129 | int req_ps_idx = rdev->pm.requested_power_state_index; |
| 130 | int req_cm_idx = rdev->pm.requested_clock_mode_index; |
| 131 | struct radeon_power_state *ps = &rdev->pm.power_state[req_ps_idx]; |
| 132 | struct radeon_voltage *voltage = &ps->clock_info[req_cm_idx].voltage; |
Alex Deucher | 49e02b7 | 2010-04-23 17:57:27 -0400 | [diff] [blame] | 133 | |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 134 | if ((voltage->type == VOLTAGE_SW) && voltage->voltage) { |
| 135 | if (voltage->voltage != rdev->pm.current_vddc) { |
| 136 | radeon_atom_set_voltage(rdev, voltage->voltage); |
| 137 | rdev->pm.current_vddc = voltage->voltage; |
Rafał Miłecki | 0fcbe94 | 2010-06-07 18:25:21 -0400 | [diff] [blame] | 138 | DRM_DEBUG("Setting: v: %d\n", voltage->voltage); |
Alex Deucher | 4d60173 | 2010-06-07 18:15:18 -0400 | [diff] [blame] | 139 | } |
| 140 | } |
Alex Deucher | 49e02b7 | 2010-04-23 17:57:27 -0400 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | void evergreen_pm_prepare(struct radeon_device *rdev) |
| 144 | { |
| 145 | struct drm_device *ddev = rdev->ddev; |
| 146 | struct drm_crtc *crtc; |
| 147 | struct radeon_crtc *radeon_crtc; |
| 148 | u32 tmp; |
| 149 | |
| 150 | /* disable any active CRTCs */ |
| 151 | list_for_each_entry(crtc, &ddev->mode_config.crtc_list, head) { |
| 152 | radeon_crtc = to_radeon_crtc(crtc); |
| 153 | if (radeon_crtc->enabled) { |
| 154 | tmp = RREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset); |
| 155 | tmp |= EVERGREEN_CRTC_DISP_READ_REQUEST_DISABLE; |
| 156 | WREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset, tmp); |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | void evergreen_pm_finish(struct radeon_device *rdev) |
| 162 | { |
| 163 | struct drm_device *ddev = rdev->ddev; |
| 164 | struct drm_crtc *crtc; |
| 165 | struct radeon_crtc *radeon_crtc; |
| 166 | u32 tmp; |
| 167 | |
| 168 | /* enable any active CRTCs */ |
| 169 | list_for_each_entry(crtc, &ddev->mode_config.crtc_list, head) { |
| 170 | radeon_crtc = to_radeon_crtc(crtc); |
| 171 | if (radeon_crtc->enabled) { |
| 172 | tmp = RREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset); |
| 173 | tmp &= ~EVERGREEN_CRTC_DISP_READ_REQUEST_DISABLE; |
| 174 | WREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset, tmp); |
| 175 | } |
| 176 | } |
| 177 | } |
| 178 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 179 | bool evergreen_hpd_sense(struct radeon_device *rdev, enum radeon_hpd_id hpd) |
| 180 | { |
| 181 | bool connected = false; |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 182 | |
| 183 | switch (hpd) { |
| 184 | case RADEON_HPD_1: |
| 185 | if (RREG32(DC_HPD1_INT_STATUS) & DC_HPDx_SENSE) |
| 186 | connected = true; |
| 187 | break; |
| 188 | case RADEON_HPD_2: |
| 189 | if (RREG32(DC_HPD2_INT_STATUS) & DC_HPDx_SENSE) |
| 190 | connected = true; |
| 191 | break; |
| 192 | case RADEON_HPD_3: |
| 193 | if (RREG32(DC_HPD3_INT_STATUS) & DC_HPDx_SENSE) |
| 194 | connected = true; |
| 195 | break; |
| 196 | case RADEON_HPD_4: |
| 197 | if (RREG32(DC_HPD4_INT_STATUS) & DC_HPDx_SENSE) |
| 198 | connected = true; |
| 199 | break; |
| 200 | case RADEON_HPD_5: |
| 201 | if (RREG32(DC_HPD5_INT_STATUS) & DC_HPDx_SENSE) |
| 202 | connected = true; |
| 203 | break; |
| 204 | case RADEON_HPD_6: |
| 205 | if (RREG32(DC_HPD6_INT_STATUS) & DC_HPDx_SENSE) |
| 206 | connected = true; |
| 207 | break; |
| 208 | default: |
| 209 | break; |
| 210 | } |
| 211 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 212 | return connected; |
| 213 | } |
| 214 | |
| 215 | void evergreen_hpd_set_polarity(struct radeon_device *rdev, |
| 216 | enum radeon_hpd_id hpd) |
| 217 | { |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 218 | u32 tmp; |
| 219 | bool connected = evergreen_hpd_sense(rdev, hpd); |
| 220 | |
| 221 | switch (hpd) { |
| 222 | case RADEON_HPD_1: |
| 223 | tmp = RREG32(DC_HPD1_INT_CONTROL); |
| 224 | if (connected) |
| 225 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 226 | else |
| 227 | tmp |= DC_HPDx_INT_POLARITY; |
| 228 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 229 | break; |
| 230 | case RADEON_HPD_2: |
| 231 | tmp = RREG32(DC_HPD2_INT_CONTROL); |
| 232 | if (connected) |
| 233 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 234 | else |
| 235 | tmp |= DC_HPDx_INT_POLARITY; |
| 236 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 237 | break; |
| 238 | case RADEON_HPD_3: |
| 239 | tmp = RREG32(DC_HPD3_INT_CONTROL); |
| 240 | if (connected) |
| 241 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 242 | else |
| 243 | tmp |= DC_HPDx_INT_POLARITY; |
| 244 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 245 | break; |
| 246 | case RADEON_HPD_4: |
| 247 | tmp = RREG32(DC_HPD4_INT_CONTROL); |
| 248 | if (connected) |
| 249 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 250 | else |
| 251 | tmp |= DC_HPDx_INT_POLARITY; |
| 252 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 253 | break; |
| 254 | case RADEON_HPD_5: |
| 255 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 256 | if (connected) |
| 257 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 258 | else |
| 259 | tmp |= DC_HPDx_INT_POLARITY; |
| 260 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
| 261 | break; |
| 262 | case RADEON_HPD_6: |
| 263 | tmp = RREG32(DC_HPD6_INT_CONTROL); |
| 264 | if (connected) |
| 265 | tmp &= ~DC_HPDx_INT_POLARITY; |
| 266 | else |
| 267 | tmp |= DC_HPDx_INT_POLARITY; |
| 268 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
| 269 | break; |
| 270 | default: |
| 271 | break; |
| 272 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | void evergreen_hpd_init(struct radeon_device *rdev) |
| 276 | { |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 277 | struct drm_device *dev = rdev->ddev; |
| 278 | struct drm_connector *connector; |
| 279 | u32 tmp = DC_HPDx_CONNECTION_TIMER(0x9c4) | |
| 280 | DC_HPDx_RX_INT_TIMER(0xfa) | DC_HPDx_EN; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 281 | |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 282 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 283 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 284 | switch (radeon_connector->hpd.hpd) { |
| 285 | case RADEON_HPD_1: |
| 286 | WREG32(DC_HPD1_CONTROL, tmp); |
| 287 | rdev->irq.hpd[0] = true; |
| 288 | break; |
| 289 | case RADEON_HPD_2: |
| 290 | WREG32(DC_HPD2_CONTROL, tmp); |
| 291 | rdev->irq.hpd[1] = true; |
| 292 | break; |
| 293 | case RADEON_HPD_3: |
| 294 | WREG32(DC_HPD3_CONTROL, tmp); |
| 295 | rdev->irq.hpd[2] = true; |
| 296 | break; |
| 297 | case RADEON_HPD_4: |
| 298 | WREG32(DC_HPD4_CONTROL, tmp); |
| 299 | rdev->irq.hpd[3] = true; |
| 300 | break; |
| 301 | case RADEON_HPD_5: |
| 302 | WREG32(DC_HPD5_CONTROL, tmp); |
| 303 | rdev->irq.hpd[4] = true; |
| 304 | break; |
| 305 | case RADEON_HPD_6: |
| 306 | WREG32(DC_HPD6_CONTROL, tmp); |
| 307 | rdev->irq.hpd[5] = true; |
| 308 | break; |
| 309 | default: |
| 310 | break; |
| 311 | } |
| 312 | } |
| 313 | if (rdev->irq.installed) |
| 314 | evergreen_irq_set(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | void evergreen_hpd_fini(struct radeon_device *rdev) |
| 318 | { |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 319 | struct drm_device *dev = rdev->ddev; |
| 320 | struct drm_connector *connector; |
| 321 | |
| 322 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 323 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 324 | switch (radeon_connector->hpd.hpd) { |
| 325 | case RADEON_HPD_1: |
| 326 | WREG32(DC_HPD1_CONTROL, 0); |
| 327 | rdev->irq.hpd[0] = false; |
| 328 | break; |
| 329 | case RADEON_HPD_2: |
| 330 | WREG32(DC_HPD2_CONTROL, 0); |
| 331 | rdev->irq.hpd[1] = false; |
| 332 | break; |
| 333 | case RADEON_HPD_3: |
| 334 | WREG32(DC_HPD3_CONTROL, 0); |
| 335 | rdev->irq.hpd[2] = false; |
| 336 | break; |
| 337 | case RADEON_HPD_4: |
| 338 | WREG32(DC_HPD4_CONTROL, 0); |
| 339 | rdev->irq.hpd[3] = false; |
| 340 | break; |
| 341 | case RADEON_HPD_5: |
| 342 | WREG32(DC_HPD5_CONTROL, 0); |
| 343 | rdev->irq.hpd[4] = false; |
| 344 | break; |
| 345 | case RADEON_HPD_6: |
| 346 | WREG32(DC_HPD6_CONTROL, 0); |
| 347 | rdev->irq.hpd[5] = false; |
| 348 | break; |
| 349 | default: |
| 350 | break; |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 355 | /* watermark setup */ |
| 356 | |
| 357 | static u32 evergreen_line_buffer_adjust(struct radeon_device *rdev, |
| 358 | struct radeon_crtc *radeon_crtc, |
| 359 | struct drm_display_mode *mode, |
| 360 | struct drm_display_mode *other_mode) |
| 361 | { |
| 362 | u32 tmp = 0; |
| 363 | /* |
| 364 | * Line Buffer Setup |
| 365 | * There are 3 line buffers, each one shared by 2 display controllers. |
| 366 | * DC_LB_MEMORY_SPLIT controls how that line buffer is shared between |
| 367 | * the display controllers. The paritioning is done via one of four |
| 368 | * preset allocations specified in bits 2:0: |
| 369 | * first display controller |
| 370 | * 0 - first half of lb (3840 * 2) |
| 371 | * 1 - first 3/4 of lb (5760 * 2) |
| 372 | * 2 - whole lb (7680 * 2) |
| 373 | * 3 - first 1/4 of lb (1920 * 2) |
| 374 | * second display controller |
| 375 | * 4 - second half of lb (3840 * 2) |
| 376 | * 5 - second 3/4 of lb (5760 * 2) |
| 377 | * 6 - whole lb (7680 * 2) |
| 378 | * 7 - last 1/4 of lb (1920 * 2) |
| 379 | */ |
| 380 | if (mode && other_mode) { |
| 381 | if (mode->hdisplay > other_mode->hdisplay) { |
| 382 | if (mode->hdisplay > 2560) |
| 383 | tmp = 1; /* 3/4 */ |
| 384 | else |
| 385 | tmp = 0; /* 1/2 */ |
| 386 | } else if (other_mode->hdisplay > mode->hdisplay) { |
| 387 | if (other_mode->hdisplay > 2560) |
| 388 | tmp = 3; /* 1/4 */ |
| 389 | else |
| 390 | tmp = 0; /* 1/2 */ |
| 391 | } else |
| 392 | tmp = 0; /* 1/2 */ |
| 393 | } else if (mode) |
| 394 | tmp = 2; /* whole */ |
| 395 | else if (other_mode) |
| 396 | tmp = 3; /* 1/4 */ |
| 397 | |
| 398 | /* second controller of the pair uses second half of the lb */ |
| 399 | if (radeon_crtc->crtc_id % 2) |
| 400 | tmp += 4; |
| 401 | WREG32(DC_LB_MEMORY_SPLIT + radeon_crtc->crtc_offset, tmp); |
| 402 | |
| 403 | switch (tmp) { |
| 404 | case 0: |
| 405 | case 4: |
| 406 | default: |
Alex Deucher | 936b27c | 2011-01-06 21:19:13 -0500 | [diff] [blame] | 407 | if (ASIC_IS_DCE5(rdev)) |
| 408 | return 4096 * 2; |
| 409 | else |
| 410 | return 3840 * 2; |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 411 | case 1: |
| 412 | case 5: |
Alex Deucher | 936b27c | 2011-01-06 21:19:13 -0500 | [diff] [blame] | 413 | if (ASIC_IS_DCE5(rdev)) |
| 414 | return 6144 * 2; |
| 415 | else |
| 416 | return 5760 * 2; |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 417 | case 2: |
| 418 | case 6: |
Alex Deucher | 936b27c | 2011-01-06 21:19:13 -0500 | [diff] [blame] | 419 | if (ASIC_IS_DCE5(rdev)) |
| 420 | return 8192 * 2; |
| 421 | else |
| 422 | return 7680 * 2; |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 423 | case 3: |
| 424 | case 7: |
Alex Deucher | 936b27c | 2011-01-06 21:19:13 -0500 | [diff] [blame] | 425 | if (ASIC_IS_DCE5(rdev)) |
| 426 | return 2048 * 2; |
| 427 | else |
| 428 | return 1920 * 2; |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 429 | } |
| 430 | } |
| 431 | |
| 432 | static u32 evergreen_get_number_of_dram_channels(struct radeon_device *rdev) |
| 433 | { |
| 434 | u32 tmp = RREG32(MC_SHARED_CHMAP); |
| 435 | |
| 436 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { |
| 437 | case 0: |
| 438 | default: |
| 439 | return 1; |
| 440 | case 1: |
| 441 | return 2; |
| 442 | case 2: |
| 443 | return 4; |
| 444 | case 3: |
| 445 | return 8; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | struct evergreen_wm_params { |
| 450 | u32 dram_channels; /* number of dram channels */ |
| 451 | u32 yclk; /* bandwidth per dram data pin in kHz */ |
| 452 | u32 sclk; /* engine clock in kHz */ |
| 453 | u32 disp_clk; /* display clock in kHz */ |
| 454 | u32 src_width; /* viewport width */ |
| 455 | u32 active_time; /* active display time in ns */ |
| 456 | u32 blank_time; /* blank time in ns */ |
| 457 | bool interlaced; /* mode is interlaced */ |
| 458 | fixed20_12 vsc; /* vertical scale ratio */ |
| 459 | u32 num_heads; /* number of active crtcs */ |
| 460 | u32 bytes_per_pixel; /* bytes per pixel display + overlay */ |
| 461 | u32 lb_size; /* line buffer allocated to pipe */ |
| 462 | u32 vtaps; /* vertical scaler taps */ |
| 463 | }; |
| 464 | |
| 465 | static u32 evergreen_dram_bandwidth(struct evergreen_wm_params *wm) |
| 466 | { |
| 467 | /* Calculate DRAM Bandwidth and the part allocated to display. */ |
| 468 | fixed20_12 dram_efficiency; /* 0.7 */ |
| 469 | fixed20_12 yclk, dram_channels, bandwidth; |
| 470 | fixed20_12 a; |
| 471 | |
| 472 | a.full = dfixed_const(1000); |
| 473 | yclk.full = dfixed_const(wm->yclk); |
| 474 | yclk.full = dfixed_div(yclk, a); |
| 475 | dram_channels.full = dfixed_const(wm->dram_channels * 4); |
| 476 | a.full = dfixed_const(10); |
| 477 | dram_efficiency.full = dfixed_const(7); |
| 478 | dram_efficiency.full = dfixed_div(dram_efficiency, a); |
| 479 | bandwidth.full = dfixed_mul(dram_channels, yclk); |
| 480 | bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); |
| 481 | |
| 482 | return dfixed_trunc(bandwidth); |
| 483 | } |
| 484 | |
| 485 | static u32 evergreen_dram_bandwidth_for_display(struct evergreen_wm_params *wm) |
| 486 | { |
| 487 | /* Calculate DRAM Bandwidth and the part allocated to display. */ |
| 488 | fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */ |
| 489 | fixed20_12 yclk, dram_channels, bandwidth; |
| 490 | fixed20_12 a; |
| 491 | |
| 492 | a.full = dfixed_const(1000); |
| 493 | yclk.full = dfixed_const(wm->yclk); |
| 494 | yclk.full = dfixed_div(yclk, a); |
| 495 | dram_channels.full = dfixed_const(wm->dram_channels * 4); |
| 496 | a.full = dfixed_const(10); |
| 497 | disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */ |
| 498 | disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a); |
| 499 | bandwidth.full = dfixed_mul(dram_channels, yclk); |
| 500 | bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); |
| 501 | |
| 502 | return dfixed_trunc(bandwidth); |
| 503 | } |
| 504 | |
| 505 | static u32 evergreen_data_return_bandwidth(struct evergreen_wm_params *wm) |
| 506 | { |
| 507 | /* Calculate the display Data return Bandwidth */ |
| 508 | fixed20_12 return_efficiency; /* 0.8 */ |
| 509 | fixed20_12 sclk, bandwidth; |
| 510 | fixed20_12 a; |
| 511 | |
| 512 | a.full = dfixed_const(1000); |
| 513 | sclk.full = dfixed_const(wm->sclk); |
| 514 | sclk.full = dfixed_div(sclk, a); |
| 515 | a.full = dfixed_const(10); |
| 516 | return_efficiency.full = dfixed_const(8); |
| 517 | return_efficiency.full = dfixed_div(return_efficiency, a); |
| 518 | a.full = dfixed_const(32); |
| 519 | bandwidth.full = dfixed_mul(a, sclk); |
| 520 | bandwidth.full = dfixed_mul(bandwidth, return_efficiency); |
| 521 | |
| 522 | return dfixed_trunc(bandwidth); |
| 523 | } |
| 524 | |
| 525 | static u32 evergreen_dmif_request_bandwidth(struct evergreen_wm_params *wm) |
| 526 | { |
| 527 | /* Calculate the DMIF Request Bandwidth */ |
| 528 | fixed20_12 disp_clk_request_efficiency; /* 0.8 */ |
| 529 | fixed20_12 disp_clk, bandwidth; |
| 530 | fixed20_12 a; |
| 531 | |
| 532 | a.full = dfixed_const(1000); |
| 533 | disp_clk.full = dfixed_const(wm->disp_clk); |
| 534 | disp_clk.full = dfixed_div(disp_clk, a); |
| 535 | a.full = dfixed_const(10); |
| 536 | disp_clk_request_efficiency.full = dfixed_const(8); |
| 537 | disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a); |
| 538 | a.full = dfixed_const(32); |
| 539 | bandwidth.full = dfixed_mul(a, disp_clk); |
| 540 | bandwidth.full = dfixed_mul(bandwidth, disp_clk_request_efficiency); |
| 541 | |
| 542 | return dfixed_trunc(bandwidth); |
| 543 | } |
| 544 | |
| 545 | static u32 evergreen_available_bandwidth(struct evergreen_wm_params *wm) |
| 546 | { |
| 547 | /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */ |
| 548 | u32 dram_bandwidth = evergreen_dram_bandwidth(wm); |
| 549 | u32 data_return_bandwidth = evergreen_data_return_bandwidth(wm); |
| 550 | u32 dmif_req_bandwidth = evergreen_dmif_request_bandwidth(wm); |
| 551 | |
| 552 | return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth)); |
| 553 | } |
| 554 | |
| 555 | static u32 evergreen_average_bandwidth(struct evergreen_wm_params *wm) |
| 556 | { |
| 557 | /* Calculate the display mode Average Bandwidth |
| 558 | * DisplayMode should contain the source and destination dimensions, |
| 559 | * timing, etc. |
| 560 | */ |
| 561 | fixed20_12 bpp; |
| 562 | fixed20_12 line_time; |
| 563 | fixed20_12 src_width; |
| 564 | fixed20_12 bandwidth; |
| 565 | fixed20_12 a; |
| 566 | |
| 567 | a.full = dfixed_const(1000); |
| 568 | line_time.full = dfixed_const(wm->active_time + wm->blank_time); |
| 569 | line_time.full = dfixed_div(line_time, a); |
| 570 | bpp.full = dfixed_const(wm->bytes_per_pixel); |
| 571 | src_width.full = dfixed_const(wm->src_width); |
| 572 | bandwidth.full = dfixed_mul(src_width, bpp); |
| 573 | bandwidth.full = dfixed_mul(bandwidth, wm->vsc); |
| 574 | bandwidth.full = dfixed_div(bandwidth, line_time); |
| 575 | |
| 576 | return dfixed_trunc(bandwidth); |
| 577 | } |
| 578 | |
| 579 | static u32 evergreen_latency_watermark(struct evergreen_wm_params *wm) |
| 580 | { |
| 581 | /* First calcualte the latency in ns */ |
| 582 | u32 mc_latency = 2000; /* 2000 ns. */ |
| 583 | u32 available_bandwidth = evergreen_available_bandwidth(wm); |
| 584 | u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth; |
| 585 | u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth; |
| 586 | u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */ |
| 587 | u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) + |
| 588 | (wm->num_heads * cursor_line_pair_return_time); |
| 589 | u32 latency = mc_latency + other_heads_data_return_time + dc_latency; |
| 590 | u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time; |
| 591 | fixed20_12 a, b, c; |
| 592 | |
| 593 | if (wm->num_heads == 0) |
| 594 | return 0; |
| 595 | |
| 596 | a.full = dfixed_const(2); |
| 597 | b.full = dfixed_const(1); |
| 598 | if ((wm->vsc.full > a.full) || |
| 599 | ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) || |
| 600 | (wm->vtaps >= 5) || |
| 601 | ((wm->vsc.full >= a.full) && wm->interlaced)) |
| 602 | max_src_lines_per_dst_line = 4; |
| 603 | else |
| 604 | max_src_lines_per_dst_line = 2; |
| 605 | |
| 606 | a.full = dfixed_const(available_bandwidth); |
| 607 | b.full = dfixed_const(wm->num_heads); |
| 608 | a.full = dfixed_div(a, b); |
| 609 | |
| 610 | b.full = dfixed_const(1000); |
| 611 | c.full = dfixed_const(wm->disp_clk); |
| 612 | b.full = dfixed_div(c, b); |
| 613 | c.full = dfixed_const(wm->bytes_per_pixel); |
| 614 | b.full = dfixed_mul(b, c); |
| 615 | |
| 616 | lb_fill_bw = min(dfixed_trunc(a), dfixed_trunc(b)); |
| 617 | |
| 618 | a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel); |
| 619 | b.full = dfixed_const(1000); |
| 620 | c.full = dfixed_const(lb_fill_bw); |
| 621 | b.full = dfixed_div(c, b); |
| 622 | a.full = dfixed_div(a, b); |
| 623 | line_fill_time = dfixed_trunc(a); |
| 624 | |
| 625 | if (line_fill_time < wm->active_time) |
| 626 | return latency; |
| 627 | else |
| 628 | return latency + (line_fill_time - wm->active_time); |
| 629 | |
| 630 | } |
| 631 | |
| 632 | static bool evergreen_average_bandwidth_vs_dram_bandwidth_for_display(struct evergreen_wm_params *wm) |
| 633 | { |
| 634 | if (evergreen_average_bandwidth(wm) <= |
| 635 | (evergreen_dram_bandwidth_for_display(wm) / wm->num_heads)) |
| 636 | return true; |
| 637 | else |
| 638 | return false; |
| 639 | }; |
| 640 | |
| 641 | static bool evergreen_average_bandwidth_vs_available_bandwidth(struct evergreen_wm_params *wm) |
| 642 | { |
| 643 | if (evergreen_average_bandwidth(wm) <= |
| 644 | (evergreen_available_bandwidth(wm) / wm->num_heads)) |
| 645 | return true; |
| 646 | else |
| 647 | return false; |
| 648 | }; |
| 649 | |
| 650 | static bool evergreen_check_latency_hiding(struct evergreen_wm_params *wm) |
| 651 | { |
| 652 | u32 lb_partitions = wm->lb_size / wm->src_width; |
| 653 | u32 line_time = wm->active_time + wm->blank_time; |
| 654 | u32 latency_tolerant_lines; |
| 655 | u32 latency_hiding; |
| 656 | fixed20_12 a; |
| 657 | |
| 658 | a.full = dfixed_const(1); |
| 659 | if (wm->vsc.full > a.full) |
| 660 | latency_tolerant_lines = 1; |
| 661 | else { |
| 662 | if (lb_partitions <= (wm->vtaps + 1)) |
| 663 | latency_tolerant_lines = 1; |
| 664 | else |
| 665 | latency_tolerant_lines = 2; |
| 666 | } |
| 667 | |
| 668 | latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time); |
| 669 | |
| 670 | if (evergreen_latency_watermark(wm) <= latency_hiding) |
| 671 | return true; |
| 672 | else |
| 673 | return false; |
| 674 | } |
| 675 | |
| 676 | static void evergreen_program_watermarks(struct radeon_device *rdev, |
| 677 | struct radeon_crtc *radeon_crtc, |
| 678 | u32 lb_size, u32 num_heads) |
| 679 | { |
| 680 | struct drm_display_mode *mode = &radeon_crtc->base.mode; |
| 681 | struct evergreen_wm_params wm; |
| 682 | u32 pixel_period; |
| 683 | u32 line_time = 0; |
| 684 | u32 latency_watermark_a = 0, latency_watermark_b = 0; |
| 685 | u32 priority_a_mark = 0, priority_b_mark = 0; |
| 686 | u32 priority_a_cnt = PRIORITY_OFF; |
| 687 | u32 priority_b_cnt = PRIORITY_OFF; |
| 688 | u32 pipe_offset = radeon_crtc->crtc_id * 16; |
| 689 | u32 tmp, arb_control3; |
| 690 | fixed20_12 a, b, c; |
| 691 | |
| 692 | if (radeon_crtc->base.enabled && num_heads && mode) { |
| 693 | pixel_period = 1000000 / (u32)mode->clock; |
| 694 | line_time = min((u32)mode->crtc_htotal * pixel_period, (u32)65535); |
| 695 | priority_a_cnt = 0; |
| 696 | priority_b_cnt = 0; |
| 697 | |
| 698 | wm.yclk = rdev->pm.current_mclk * 10; |
| 699 | wm.sclk = rdev->pm.current_sclk * 10; |
| 700 | wm.disp_clk = mode->clock; |
| 701 | wm.src_width = mode->crtc_hdisplay; |
| 702 | wm.active_time = mode->crtc_hdisplay * pixel_period; |
| 703 | wm.blank_time = line_time - wm.active_time; |
| 704 | wm.interlaced = false; |
| 705 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 706 | wm.interlaced = true; |
| 707 | wm.vsc = radeon_crtc->vsc; |
| 708 | wm.vtaps = 1; |
| 709 | if (radeon_crtc->rmx_type != RMX_OFF) |
| 710 | wm.vtaps = 2; |
| 711 | wm.bytes_per_pixel = 4; /* XXX: get this from fb config */ |
| 712 | wm.lb_size = lb_size; |
| 713 | wm.dram_channels = evergreen_get_number_of_dram_channels(rdev); |
| 714 | wm.num_heads = num_heads; |
| 715 | |
| 716 | /* set for high clocks */ |
| 717 | latency_watermark_a = min(evergreen_latency_watermark(&wm), (u32)65535); |
| 718 | /* set for low clocks */ |
| 719 | /* wm.yclk = low clk; wm.sclk = low clk */ |
| 720 | latency_watermark_b = min(evergreen_latency_watermark(&wm), (u32)65535); |
| 721 | |
| 722 | /* possibly force display priority to high */ |
| 723 | /* should really do this at mode validation time... */ |
| 724 | if (!evergreen_average_bandwidth_vs_dram_bandwidth_for_display(&wm) || |
| 725 | !evergreen_average_bandwidth_vs_available_bandwidth(&wm) || |
| 726 | !evergreen_check_latency_hiding(&wm) || |
| 727 | (rdev->disp_priority == 2)) { |
| 728 | DRM_INFO("force priority to high\n"); |
| 729 | priority_a_cnt |= PRIORITY_ALWAYS_ON; |
| 730 | priority_b_cnt |= PRIORITY_ALWAYS_ON; |
| 731 | } |
| 732 | |
| 733 | a.full = dfixed_const(1000); |
| 734 | b.full = dfixed_const(mode->clock); |
| 735 | b.full = dfixed_div(b, a); |
| 736 | c.full = dfixed_const(latency_watermark_a); |
| 737 | c.full = dfixed_mul(c, b); |
| 738 | c.full = dfixed_mul(c, radeon_crtc->hsc); |
| 739 | c.full = dfixed_div(c, a); |
| 740 | a.full = dfixed_const(16); |
| 741 | c.full = dfixed_div(c, a); |
| 742 | priority_a_mark = dfixed_trunc(c); |
| 743 | priority_a_cnt |= priority_a_mark & PRIORITY_MARK_MASK; |
| 744 | |
| 745 | a.full = dfixed_const(1000); |
| 746 | b.full = dfixed_const(mode->clock); |
| 747 | b.full = dfixed_div(b, a); |
| 748 | c.full = dfixed_const(latency_watermark_b); |
| 749 | c.full = dfixed_mul(c, b); |
| 750 | c.full = dfixed_mul(c, radeon_crtc->hsc); |
| 751 | c.full = dfixed_div(c, a); |
| 752 | a.full = dfixed_const(16); |
| 753 | c.full = dfixed_div(c, a); |
| 754 | priority_b_mark = dfixed_trunc(c); |
| 755 | priority_b_cnt |= priority_b_mark & PRIORITY_MARK_MASK; |
| 756 | } |
| 757 | |
| 758 | /* select wm A */ |
| 759 | arb_control3 = RREG32(PIPE0_ARBITRATION_CONTROL3 + pipe_offset); |
| 760 | tmp = arb_control3; |
| 761 | tmp &= ~LATENCY_WATERMARK_MASK(3); |
| 762 | tmp |= LATENCY_WATERMARK_MASK(1); |
| 763 | WREG32(PIPE0_ARBITRATION_CONTROL3 + pipe_offset, tmp); |
| 764 | WREG32(PIPE0_LATENCY_CONTROL + pipe_offset, |
| 765 | (LATENCY_LOW_WATERMARK(latency_watermark_a) | |
| 766 | LATENCY_HIGH_WATERMARK(line_time))); |
| 767 | /* select wm B */ |
| 768 | tmp = RREG32(PIPE0_ARBITRATION_CONTROL3 + pipe_offset); |
| 769 | tmp &= ~LATENCY_WATERMARK_MASK(3); |
| 770 | tmp |= LATENCY_WATERMARK_MASK(2); |
| 771 | WREG32(PIPE0_ARBITRATION_CONTROL3 + pipe_offset, tmp); |
| 772 | WREG32(PIPE0_LATENCY_CONTROL + pipe_offset, |
| 773 | (LATENCY_LOW_WATERMARK(latency_watermark_b) | |
| 774 | LATENCY_HIGH_WATERMARK(line_time))); |
| 775 | /* restore original selection */ |
| 776 | WREG32(PIPE0_ARBITRATION_CONTROL3 + pipe_offset, arb_control3); |
| 777 | |
| 778 | /* write the priority marks */ |
| 779 | WREG32(PRIORITY_A_CNT + radeon_crtc->crtc_offset, priority_a_cnt); |
| 780 | WREG32(PRIORITY_B_CNT + radeon_crtc->crtc_offset, priority_b_cnt); |
| 781 | |
| 782 | } |
| 783 | |
Alex Deucher | 0ca2ab5 | 2010-02-26 13:57:45 -0500 | [diff] [blame] | 784 | void evergreen_bandwidth_update(struct radeon_device *rdev) |
| 785 | { |
Alex Deucher | f9d9c36 | 2010-10-22 02:51:05 -0400 | [diff] [blame] | 786 | struct drm_display_mode *mode0 = NULL; |
| 787 | struct drm_display_mode *mode1 = NULL; |
| 788 | u32 num_heads = 0, lb_size; |
| 789 | int i; |
| 790 | |
| 791 | radeon_update_display_priority(rdev); |
| 792 | |
| 793 | for (i = 0; i < rdev->num_crtc; i++) { |
| 794 | if (rdev->mode_info.crtcs[i]->base.enabled) |
| 795 | num_heads++; |
| 796 | } |
| 797 | for (i = 0; i < rdev->num_crtc; i += 2) { |
| 798 | mode0 = &rdev->mode_info.crtcs[i]->base.mode; |
| 799 | mode1 = &rdev->mode_info.crtcs[i+1]->base.mode; |
| 800 | lb_size = evergreen_line_buffer_adjust(rdev, rdev->mode_info.crtcs[i], mode0, mode1); |
| 801 | evergreen_program_watermarks(rdev, rdev->mode_info.crtcs[i], lb_size, num_heads); |
| 802 | lb_size = evergreen_line_buffer_adjust(rdev, rdev->mode_info.crtcs[i+1], mode1, mode0); |
| 803 | evergreen_program_watermarks(rdev, rdev->mode_info.crtcs[i+1], lb_size, num_heads); |
| 804 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static int evergreen_mc_wait_for_idle(struct radeon_device *rdev) |
| 808 | { |
| 809 | unsigned i; |
| 810 | u32 tmp; |
| 811 | |
| 812 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 813 | /* read MC_STATUS */ |
| 814 | tmp = RREG32(SRBM_STATUS) & 0x1F00; |
| 815 | if (!tmp) |
| 816 | return 0; |
| 817 | udelay(1); |
| 818 | } |
| 819 | return -1; |
| 820 | } |
| 821 | |
| 822 | /* |
| 823 | * GART |
| 824 | */ |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 825 | void evergreen_pcie_gart_tlb_flush(struct radeon_device *rdev) |
| 826 | { |
| 827 | unsigned i; |
| 828 | u32 tmp; |
| 829 | |
Alex Deucher | 6f2f48a | 2010-12-15 11:01:56 -0500 | [diff] [blame] | 830 | WREG32(HDP_MEM_COHERENCY_FLUSH_CNTL, 0x1); |
| 831 | |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 832 | WREG32(VM_CONTEXT0_REQUEST_RESPONSE, REQUEST_TYPE(1)); |
| 833 | for (i = 0; i < rdev->usec_timeout; i++) { |
| 834 | /* read MC_STATUS */ |
| 835 | tmp = RREG32(VM_CONTEXT0_REQUEST_RESPONSE); |
| 836 | tmp = (tmp & RESPONSE_TYPE_MASK) >> RESPONSE_TYPE_SHIFT; |
| 837 | if (tmp == 2) { |
| 838 | printk(KERN_WARNING "[drm] r600 flush TLB failed\n"); |
| 839 | return; |
| 840 | } |
| 841 | if (tmp) { |
| 842 | return; |
| 843 | } |
| 844 | udelay(1); |
| 845 | } |
| 846 | } |
| 847 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 848 | int evergreen_pcie_gart_enable(struct radeon_device *rdev) |
| 849 | { |
| 850 | u32 tmp; |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 851 | int r; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 852 | |
| 853 | if (rdev->gart.table.vram.robj == NULL) { |
| 854 | dev_err(rdev->dev, "No VRAM object for PCIE GART.\n"); |
| 855 | return -EINVAL; |
| 856 | } |
| 857 | r = radeon_gart_table_vram_pin(rdev); |
| 858 | if (r) |
| 859 | return r; |
Dave Airlie | 8256856 | 2010-02-05 16:00:07 +1000 | [diff] [blame] | 860 | radeon_gart_restore(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 861 | /* Setup L2 cache */ |
| 862 | WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING | |
| 863 | ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE | |
| 864 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 865 | WREG32(VM_L2_CNTL2, 0); |
| 866 | WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2)); |
| 867 | /* Setup TLB control */ |
| 868 | tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING | |
| 869 | SYSTEM_ACCESS_MODE_NOT_IN_SYS | |
| 870 | SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU | |
| 871 | EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5); |
| 872 | WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp); |
| 873 | WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp); |
| 874 | WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp); |
| 875 | WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp); |
| 876 | WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp); |
| 877 | WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp); |
| 878 | WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp); |
| 879 | WREG32(VM_CONTEXT0_PAGE_TABLE_START_ADDR, rdev->mc.gtt_start >> 12); |
| 880 | WREG32(VM_CONTEXT0_PAGE_TABLE_END_ADDR, rdev->mc.gtt_end >> 12); |
| 881 | WREG32(VM_CONTEXT0_PAGE_TABLE_BASE_ADDR, rdev->gart.table_addr >> 12); |
| 882 | WREG32(VM_CONTEXT0_CNTL, ENABLE_CONTEXT | PAGE_TABLE_DEPTH(0) | |
| 883 | RANGE_PROTECTION_FAULT_ENABLE_DEFAULT); |
| 884 | WREG32(VM_CONTEXT0_PROTECTION_FAULT_DEFAULT_ADDR, |
| 885 | (u32)(rdev->dummy_page.addr >> 12)); |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 886 | WREG32(VM_CONTEXT1_CNTL, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 887 | |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 888 | evergreen_pcie_gart_tlb_flush(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 889 | rdev->gart.ready = true; |
| 890 | return 0; |
| 891 | } |
| 892 | |
| 893 | void evergreen_pcie_gart_disable(struct radeon_device *rdev) |
| 894 | { |
| 895 | u32 tmp; |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 896 | int r; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 897 | |
| 898 | /* Disable all tables */ |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 899 | WREG32(VM_CONTEXT0_CNTL, 0); |
| 900 | WREG32(VM_CONTEXT1_CNTL, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 901 | |
| 902 | /* Setup L2 cache */ |
| 903 | WREG32(VM_L2_CNTL, ENABLE_L2_FRAGMENT_PROCESSING | |
| 904 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 905 | WREG32(VM_L2_CNTL2, 0); |
| 906 | WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2)); |
| 907 | /* Setup TLB control */ |
| 908 | tmp = EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5); |
| 909 | WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp); |
| 910 | WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp); |
| 911 | WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp); |
| 912 | WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp); |
| 913 | WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp); |
| 914 | WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp); |
| 915 | WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp); |
| 916 | if (rdev->gart.table.vram.robj) { |
| 917 | r = radeon_bo_reserve(rdev->gart.table.vram.robj, false); |
| 918 | if (likely(r == 0)) { |
| 919 | radeon_bo_kunmap(rdev->gart.table.vram.robj); |
| 920 | radeon_bo_unpin(rdev->gart.table.vram.robj); |
| 921 | radeon_bo_unreserve(rdev->gart.table.vram.robj); |
| 922 | } |
| 923 | } |
| 924 | } |
| 925 | |
| 926 | void evergreen_pcie_gart_fini(struct radeon_device *rdev) |
| 927 | { |
| 928 | evergreen_pcie_gart_disable(rdev); |
| 929 | radeon_gart_table_vram_free(rdev); |
| 930 | radeon_gart_fini(rdev); |
| 931 | } |
| 932 | |
| 933 | |
| 934 | void evergreen_agp_enable(struct radeon_device *rdev) |
| 935 | { |
| 936 | u32 tmp; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 937 | |
| 938 | /* Setup L2 cache */ |
| 939 | WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING | |
| 940 | ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE | |
| 941 | EFFECTIVE_L2_QUEUE_SIZE(7)); |
| 942 | WREG32(VM_L2_CNTL2, 0); |
| 943 | WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2)); |
| 944 | /* Setup TLB control */ |
| 945 | tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING | |
| 946 | SYSTEM_ACCESS_MODE_NOT_IN_SYS | |
| 947 | SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU | |
| 948 | EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5); |
| 949 | WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp); |
| 950 | WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp); |
| 951 | WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp); |
| 952 | WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp); |
| 953 | WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp); |
| 954 | WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp); |
| 955 | WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp); |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 956 | WREG32(VM_CONTEXT0_CNTL, 0); |
| 957 | WREG32(VM_CONTEXT1_CNTL, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | static void evergreen_mc_stop(struct radeon_device *rdev, struct evergreen_mc_save *save) |
| 961 | { |
| 962 | save->vga_control[0] = RREG32(D1VGA_CONTROL); |
| 963 | save->vga_control[1] = RREG32(D2VGA_CONTROL); |
| 964 | save->vga_control[2] = RREG32(EVERGREEN_D3VGA_CONTROL); |
| 965 | save->vga_control[3] = RREG32(EVERGREEN_D4VGA_CONTROL); |
| 966 | save->vga_control[4] = RREG32(EVERGREEN_D5VGA_CONTROL); |
| 967 | save->vga_control[5] = RREG32(EVERGREEN_D6VGA_CONTROL); |
| 968 | save->vga_render_control = RREG32(VGA_RENDER_CONTROL); |
| 969 | save->vga_hdp_control = RREG32(VGA_HDP_CONTROL); |
| 970 | save->crtc_control[0] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET); |
| 971 | save->crtc_control[1] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 972 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 973 | save->crtc_control[2] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET); |
| 974 | save->crtc_control[3] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET); |
| 975 | save->crtc_control[4] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET); |
| 976 | save->crtc_control[5] = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET); |
| 977 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 978 | |
| 979 | /* Stop all video */ |
| 980 | WREG32(VGA_RENDER_CONTROL, 0); |
| 981 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC0_REGISTER_OFFSET, 1); |
| 982 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC1_REGISTER_OFFSET, 1); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 983 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 984 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC2_REGISTER_OFFSET, 1); |
| 985 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC3_REGISTER_OFFSET, 1); |
| 986 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC4_REGISTER_OFFSET, 1); |
| 987 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC5_REGISTER_OFFSET, 1); |
| 988 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 989 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 990 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 991 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 992 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 993 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| 994 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET, 0); |
| 995 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 996 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 997 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 998 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 999 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 1000 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 1001 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| 1002 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC4_REGISTER_OFFSET, 0); |
| 1003 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 1004 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1005 | |
| 1006 | WREG32(D1VGA_CONTROL, 0); |
| 1007 | WREG32(D2VGA_CONTROL, 0); |
| 1008 | WREG32(EVERGREEN_D3VGA_CONTROL, 0); |
| 1009 | WREG32(EVERGREEN_D4VGA_CONTROL, 0); |
| 1010 | WREG32(EVERGREEN_D5VGA_CONTROL, 0); |
| 1011 | WREG32(EVERGREEN_D6VGA_CONTROL, 0); |
| 1012 | } |
| 1013 | |
| 1014 | static void evergreen_mc_resume(struct radeon_device *rdev, struct evergreen_mc_save *save) |
| 1015 | { |
| 1016 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC0_REGISTER_OFFSET, |
| 1017 | upper_32_bits(rdev->mc.vram_start)); |
| 1018 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC0_REGISTER_OFFSET, |
| 1019 | upper_32_bits(rdev->mc.vram_start)); |
| 1020 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC0_REGISTER_OFFSET, |
| 1021 | (u32)rdev->mc.vram_start); |
| 1022 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC0_REGISTER_OFFSET, |
| 1023 | (u32)rdev->mc.vram_start); |
| 1024 | |
| 1025 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC1_REGISTER_OFFSET, |
| 1026 | upper_32_bits(rdev->mc.vram_start)); |
| 1027 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC1_REGISTER_OFFSET, |
| 1028 | upper_32_bits(rdev->mc.vram_start)); |
| 1029 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC1_REGISTER_OFFSET, |
| 1030 | (u32)rdev->mc.vram_start); |
| 1031 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC1_REGISTER_OFFSET, |
| 1032 | (u32)rdev->mc.vram_start); |
| 1033 | |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1034 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 1035 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC2_REGISTER_OFFSET, |
| 1036 | upper_32_bits(rdev->mc.vram_start)); |
| 1037 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC2_REGISTER_OFFSET, |
| 1038 | upper_32_bits(rdev->mc.vram_start)); |
| 1039 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC2_REGISTER_OFFSET, |
| 1040 | (u32)rdev->mc.vram_start); |
| 1041 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC2_REGISTER_OFFSET, |
| 1042 | (u32)rdev->mc.vram_start); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1043 | |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1044 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC3_REGISTER_OFFSET, |
| 1045 | upper_32_bits(rdev->mc.vram_start)); |
| 1046 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC3_REGISTER_OFFSET, |
| 1047 | upper_32_bits(rdev->mc.vram_start)); |
| 1048 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC3_REGISTER_OFFSET, |
| 1049 | (u32)rdev->mc.vram_start); |
| 1050 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC3_REGISTER_OFFSET, |
| 1051 | (u32)rdev->mc.vram_start); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1052 | |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1053 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC4_REGISTER_OFFSET, |
| 1054 | upper_32_bits(rdev->mc.vram_start)); |
| 1055 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC4_REGISTER_OFFSET, |
| 1056 | upper_32_bits(rdev->mc.vram_start)); |
| 1057 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC4_REGISTER_OFFSET, |
| 1058 | (u32)rdev->mc.vram_start); |
| 1059 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC4_REGISTER_OFFSET, |
| 1060 | (u32)rdev->mc.vram_start); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1061 | |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1062 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC5_REGISTER_OFFSET, |
| 1063 | upper_32_bits(rdev->mc.vram_start)); |
| 1064 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + EVERGREEN_CRTC5_REGISTER_OFFSET, |
| 1065 | upper_32_bits(rdev->mc.vram_start)); |
| 1066 | WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + EVERGREEN_CRTC5_REGISTER_OFFSET, |
| 1067 | (u32)rdev->mc.vram_start); |
| 1068 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + EVERGREEN_CRTC5_REGISTER_OFFSET, |
| 1069 | (u32)rdev->mc.vram_start); |
| 1070 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1071 | |
| 1072 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS_HIGH, upper_32_bits(rdev->mc.vram_start)); |
| 1073 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS, (u32)rdev->mc.vram_start); |
| 1074 | /* Unlock host access */ |
| 1075 | WREG32(VGA_HDP_CONTROL, save->vga_hdp_control); |
| 1076 | mdelay(1); |
| 1077 | /* Restore video state */ |
| 1078 | WREG32(D1VGA_CONTROL, save->vga_control[0]); |
| 1079 | WREG32(D2VGA_CONTROL, save->vga_control[1]); |
| 1080 | WREG32(EVERGREEN_D3VGA_CONTROL, save->vga_control[2]); |
| 1081 | WREG32(EVERGREEN_D4VGA_CONTROL, save->vga_control[3]); |
| 1082 | WREG32(EVERGREEN_D5VGA_CONTROL, save->vga_control[4]); |
| 1083 | WREG32(EVERGREEN_D6VGA_CONTROL, save->vga_control[5]); |
| 1084 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC0_REGISTER_OFFSET, 1); |
| 1085 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC1_REGISTER_OFFSET, 1); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1086 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 1087 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC2_REGISTER_OFFSET, 1); |
| 1088 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC3_REGISTER_OFFSET, 1); |
| 1089 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC4_REGISTER_OFFSET, 1); |
| 1090 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC5_REGISTER_OFFSET, 1); |
| 1091 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1092 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, save->crtc_control[0]); |
| 1093 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, save->crtc_control[1]); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1094 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 1095 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, save->crtc_control[2]); |
| 1096 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, save->crtc_control[3]); |
| 1097 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET, save->crtc_control[4]); |
| 1098 | WREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, save->crtc_control[5]); |
| 1099 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1100 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 1101 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 1102 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 1103 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 1104 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| 1105 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC4_REGISTER_OFFSET, 0); |
| 1106 | WREG32(EVERGREEN_CRTC_UPDATE_LOCK + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 1107 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1108 | WREG32(VGA_RENDER_CONTROL, save->vga_render_control); |
| 1109 | } |
| 1110 | |
| 1111 | static void evergreen_mc_program(struct radeon_device *rdev) |
| 1112 | { |
| 1113 | struct evergreen_mc_save save; |
| 1114 | u32 tmp; |
| 1115 | int i, j; |
| 1116 | |
| 1117 | /* Initialize HDP */ |
| 1118 | for (i = 0, j = 0; i < 32; i++, j += 0x18) { |
| 1119 | WREG32((0x2c14 + j), 0x00000000); |
| 1120 | WREG32((0x2c18 + j), 0x00000000); |
| 1121 | WREG32((0x2c1c + j), 0x00000000); |
| 1122 | WREG32((0x2c20 + j), 0x00000000); |
| 1123 | WREG32((0x2c24 + j), 0x00000000); |
| 1124 | } |
| 1125 | WREG32(HDP_REG_COHERENCY_FLUSH_CNTL, 0); |
| 1126 | |
| 1127 | evergreen_mc_stop(rdev, &save); |
| 1128 | if (evergreen_mc_wait_for_idle(rdev)) { |
| 1129 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 1130 | } |
| 1131 | /* Lockout access through VGA aperture*/ |
| 1132 | WREG32(VGA_HDP_CONTROL, VGA_MEMORY_DISABLE); |
| 1133 | /* Update configuration */ |
| 1134 | if (rdev->flags & RADEON_IS_AGP) { |
| 1135 | if (rdev->mc.vram_start < rdev->mc.gtt_start) { |
| 1136 | /* VRAM before AGP */ |
| 1137 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 1138 | rdev->mc.vram_start >> 12); |
| 1139 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, |
| 1140 | rdev->mc.gtt_end >> 12); |
| 1141 | } else { |
| 1142 | /* VRAM after AGP */ |
| 1143 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 1144 | rdev->mc.gtt_start >> 12); |
| 1145 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, |
| 1146 | rdev->mc.vram_end >> 12); |
| 1147 | } |
| 1148 | } else { |
| 1149 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 1150 | rdev->mc.vram_start >> 12); |
| 1151 | WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR, |
| 1152 | rdev->mc.vram_end >> 12); |
| 1153 | } |
| 1154 | WREG32(MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR, 0); |
Alex Deucher | b4183e3 | 2010-12-15 11:04:10 -0500 | [diff] [blame] | 1155 | if (rdev->flags & RADEON_IS_IGP) { |
| 1156 | tmp = RREG32(MC_FUS_VM_FB_OFFSET) & 0x000FFFFF; |
| 1157 | tmp |= ((rdev->mc.vram_end >> 20) & 0xF) << 24; |
| 1158 | tmp |= ((rdev->mc.vram_start >> 20) & 0xF) << 20; |
| 1159 | WREG32(MC_FUS_VM_FB_OFFSET, tmp); |
| 1160 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1161 | tmp = ((rdev->mc.vram_end >> 24) & 0xFFFF) << 16; |
| 1162 | tmp |= ((rdev->mc.vram_start >> 24) & 0xFFFF); |
| 1163 | WREG32(MC_VM_FB_LOCATION, tmp); |
| 1164 | WREG32(HDP_NONSURFACE_BASE, (rdev->mc.vram_start >> 8)); |
Alex Deucher | c46cb4d | 2011-01-06 19:12:37 -0500 | [diff] [blame] | 1165 | WREG32(HDP_NONSURFACE_INFO, (2 << 7) | (1 << 30)); |
Jerome Glisse | 46fcd2b | 2010-06-03 19:34:48 +0200 | [diff] [blame] | 1166 | WREG32(HDP_NONSURFACE_SIZE, 0x3FFFFFFF); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1167 | if (rdev->flags & RADEON_IS_AGP) { |
| 1168 | WREG32(MC_VM_AGP_TOP, rdev->mc.gtt_end >> 16); |
| 1169 | WREG32(MC_VM_AGP_BOT, rdev->mc.gtt_start >> 16); |
| 1170 | WREG32(MC_VM_AGP_BASE, rdev->mc.agp_base >> 22); |
| 1171 | } else { |
| 1172 | WREG32(MC_VM_AGP_BASE, 0); |
| 1173 | WREG32(MC_VM_AGP_TOP, 0x0FFFFFFF); |
| 1174 | WREG32(MC_VM_AGP_BOT, 0x0FFFFFFF); |
| 1175 | } |
| 1176 | if (evergreen_mc_wait_for_idle(rdev)) { |
| 1177 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 1178 | } |
| 1179 | evergreen_mc_resume(rdev, &save); |
| 1180 | /* we need to own VRAM, so turn off the VGA renderer here |
| 1181 | * to stop it overwriting our objects */ |
| 1182 | rv515_vga_render_disable(rdev); |
| 1183 | } |
| 1184 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1185 | /* |
| 1186 | * CP. |
| 1187 | */ |
Alex Deucher | 1292059 | 2011-02-02 12:37:40 -0500 | [diff] [blame^] | 1188 | void evergreen_ring_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib) |
| 1189 | { |
| 1190 | /* set to DX10/11 mode */ |
| 1191 | radeon_ring_write(rdev, PACKET3(PACKET3_MODE_CONTROL, 0)); |
| 1192 | radeon_ring_write(rdev, 1); |
| 1193 | /* FIXME: implement */ |
| 1194 | radeon_ring_write(rdev, PACKET3(PACKET3_INDIRECT_BUFFER, 2)); |
| 1195 | radeon_ring_write(rdev, ib->gpu_addr & 0xFFFFFFFC); |
| 1196 | radeon_ring_write(rdev, upper_32_bits(ib->gpu_addr) & 0xFF); |
| 1197 | radeon_ring_write(rdev, ib->length_dw); |
| 1198 | } |
| 1199 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1200 | |
| 1201 | static int evergreen_cp_load_microcode(struct radeon_device *rdev) |
| 1202 | { |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1203 | const __be32 *fw_data; |
| 1204 | int i; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1205 | |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1206 | if (!rdev->me_fw || !rdev->pfp_fw) |
| 1207 | return -EINVAL; |
| 1208 | |
| 1209 | r700_cp_stop(rdev); |
| 1210 | WREG32(CP_RB_CNTL, RB_NO_UPDATE | (15 << 8) | (3 << 0)); |
| 1211 | |
| 1212 | fw_data = (const __be32 *)rdev->pfp_fw->data; |
| 1213 | WREG32(CP_PFP_UCODE_ADDR, 0); |
| 1214 | for (i = 0; i < EVERGREEN_PFP_UCODE_SIZE; i++) |
| 1215 | WREG32(CP_PFP_UCODE_DATA, be32_to_cpup(fw_data++)); |
| 1216 | WREG32(CP_PFP_UCODE_ADDR, 0); |
| 1217 | |
| 1218 | fw_data = (const __be32 *)rdev->me_fw->data; |
| 1219 | WREG32(CP_ME_RAM_WADDR, 0); |
| 1220 | for (i = 0; i < EVERGREEN_PM4_UCODE_SIZE; i++) |
| 1221 | WREG32(CP_ME_RAM_DATA, be32_to_cpup(fw_data++)); |
| 1222 | |
| 1223 | WREG32(CP_PFP_UCODE_ADDR, 0); |
| 1224 | WREG32(CP_ME_RAM_WADDR, 0); |
| 1225 | WREG32(CP_ME_RAM_RADDR, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1226 | return 0; |
| 1227 | } |
| 1228 | |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 1229 | static int evergreen_cp_start(struct radeon_device *rdev) |
| 1230 | { |
Alex Deucher | 2281a37 | 2010-10-21 13:31:38 -0400 | [diff] [blame] | 1231 | int r, i; |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 1232 | uint32_t cp_me; |
| 1233 | |
| 1234 | r = radeon_ring_lock(rdev, 7); |
| 1235 | if (r) { |
| 1236 | DRM_ERROR("radeon: cp failed to lock ring (%d).\n", r); |
| 1237 | return r; |
| 1238 | } |
| 1239 | radeon_ring_write(rdev, PACKET3(PACKET3_ME_INITIALIZE, 5)); |
| 1240 | radeon_ring_write(rdev, 0x1); |
| 1241 | radeon_ring_write(rdev, 0x0); |
| 1242 | radeon_ring_write(rdev, rdev->config.evergreen.max_hw_contexts - 1); |
| 1243 | radeon_ring_write(rdev, PACKET3_ME_INITIALIZE_DEVICE_ID(1)); |
| 1244 | radeon_ring_write(rdev, 0); |
| 1245 | radeon_ring_write(rdev, 0); |
| 1246 | radeon_ring_unlock_commit(rdev); |
| 1247 | |
| 1248 | cp_me = 0xff; |
| 1249 | WREG32(CP_ME_CNTL, cp_me); |
| 1250 | |
Alex Deucher | 2281a37 | 2010-10-21 13:31:38 -0400 | [diff] [blame] | 1251 | r = radeon_ring_lock(rdev, evergreen_default_size + 15); |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 1252 | if (r) { |
| 1253 | DRM_ERROR("radeon: cp failed to lock ring (%d).\n", r); |
| 1254 | return r; |
| 1255 | } |
Alex Deucher | 2281a37 | 2010-10-21 13:31:38 -0400 | [diff] [blame] | 1256 | |
| 1257 | /* setup clear context state */ |
| 1258 | radeon_ring_write(rdev, PACKET3(PACKET3_PREAMBLE_CNTL, 0)); |
| 1259 | radeon_ring_write(rdev, PACKET3_PREAMBLE_BEGIN_CLEAR_STATE); |
| 1260 | |
| 1261 | for (i = 0; i < evergreen_default_size; i++) |
| 1262 | radeon_ring_write(rdev, evergreen_default_state[i]); |
| 1263 | |
| 1264 | radeon_ring_write(rdev, PACKET3(PACKET3_PREAMBLE_CNTL, 0)); |
| 1265 | radeon_ring_write(rdev, PACKET3_PREAMBLE_END_CLEAR_STATE); |
| 1266 | |
| 1267 | /* set clear context state */ |
| 1268 | radeon_ring_write(rdev, PACKET3(PACKET3_CLEAR_STATE, 0)); |
| 1269 | radeon_ring_write(rdev, 0); |
| 1270 | |
| 1271 | /* SQ_VTX_BASE_VTX_LOC */ |
| 1272 | radeon_ring_write(rdev, 0xc0026f00); |
| 1273 | radeon_ring_write(rdev, 0x00000000); |
| 1274 | radeon_ring_write(rdev, 0x00000000); |
| 1275 | radeon_ring_write(rdev, 0x00000000); |
| 1276 | |
| 1277 | /* Clear consts */ |
| 1278 | radeon_ring_write(rdev, 0xc0036f00); |
| 1279 | radeon_ring_write(rdev, 0x00000bc4); |
| 1280 | radeon_ring_write(rdev, 0xffffffff); |
| 1281 | radeon_ring_write(rdev, 0xffffffff); |
| 1282 | radeon_ring_write(rdev, 0xffffffff); |
| 1283 | |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 1284 | radeon_ring_unlock_commit(rdev); |
| 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1289 | int evergreen_cp_resume(struct radeon_device *rdev) |
| 1290 | { |
| 1291 | u32 tmp; |
| 1292 | u32 rb_bufsz; |
| 1293 | int r; |
| 1294 | |
| 1295 | /* Reset cp; if cp is reset, then PA, SH, VGT also need to be reset */ |
| 1296 | WREG32(GRBM_SOFT_RESET, (SOFT_RESET_CP | |
| 1297 | SOFT_RESET_PA | |
| 1298 | SOFT_RESET_SH | |
| 1299 | SOFT_RESET_VGT | |
| 1300 | SOFT_RESET_SX)); |
| 1301 | RREG32(GRBM_SOFT_RESET); |
| 1302 | mdelay(15); |
| 1303 | WREG32(GRBM_SOFT_RESET, 0); |
| 1304 | RREG32(GRBM_SOFT_RESET); |
| 1305 | |
| 1306 | /* Set ring buffer size */ |
| 1307 | rb_bufsz = drm_order(rdev->cp.ring_size / 8); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 1308 | tmp = (drm_order(RADEON_GPU_PAGE_SIZE/8) << 8) | rb_bufsz; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1309 | #ifdef __BIG_ENDIAN |
| 1310 | tmp |= BUF_SWAP_32BIT; |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1311 | #endif |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1312 | WREG32(CP_RB_CNTL, tmp); |
| 1313 | WREG32(CP_SEM_WAIT_TIMER, 0x4); |
| 1314 | |
| 1315 | /* Set the write pointer delay */ |
| 1316 | WREG32(CP_RB_WPTR_DELAY, 0); |
| 1317 | |
| 1318 | /* Initialize the ring buffer's read and write pointers */ |
| 1319 | WREG32(CP_RB_CNTL, tmp | RB_RPTR_WR_ENA); |
| 1320 | WREG32(CP_RB_RPTR_WR, 0); |
| 1321 | WREG32(CP_RB_WPTR, 0); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 1322 | |
| 1323 | /* set the wb address wether it's enabled or not */ |
| 1324 | WREG32(CP_RB_RPTR_ADDR, (rdev->wb.gpu_addr + RADEON_WB_CP_RPTR_OFFSET) & 0xFFFFFFFC); |
| 1325 | WREG32(CP_RB_RPTR_ADDR_HI, upper_32_bits(rdev->wb.gpu_addr + RADEON_WB_CP_RPTR_OFFSET) & 0xFF); |
| 1326 | WREG32(SCRATCH_ADDR, ((rdev->wb.gpu_addr + RADEON_WB_SCRATCH_OFFSET) >> 8) & 0xFFFFFFFF); |
| 1327 | |
| 1328 | if (rdev->wb.enabled) |
| 1329 | WREG32(SCRATCH_UMSK, 0xff); |
| 1330 | else { |
| 1331 | tmp |= RB_NO_UPDATE; |
| 1332 | WREG32(SCRATCH_UMSK, 0); |
| 1333 | } |
| 1334 | |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1335 | mdelay(1); |
| 1336 | WREG32(CP_RB_CNTL, tmp); |
| 1337 | |
| 1338 | WREG32(CP_RB_BASE, rdev->cp.gpu_addr >> 8); |
| 1339 | WREG32(CP_DEBUG, (1 << 27) | (1 << 28)); |
| 1340 | |
| 1341 | rdev->cp.rptr = RREG32(CP_RB_RPTR); |
| 1342 | rdev->cp.wptr = RREG32(CP_RB_WPTR); |
| 1343 | |
Alex Deucher | 7e7b41d | 2010-09-02 21:32:32 -0400 | [diff] [blame] | 1344 | evergreen_cp_start(rdev); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 1345 | rdev->cp.ready = true; |
| 1346 | r = radeon_ring_test(rdev); |
| 1347 | if (r) { |
| 1348 | rdev->cp.ready = false; |
| 1349 | return r; |
| 1350 | } |
| 1351 | return 0; |
| 1352 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1353 | |
| 1354 | /* |
| 1355 | * Core functions |
| 1356 | */ |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1357 | static u32 evergreen_get_tile_pipe_to_backend_map(struct radeon_device *rdev, |
| 1358 | u32 num_tile_pipes, |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1359 | u32 num_backends, |
| 1360 | u32 backend_disable_mask) |
| 1361 | { |
| 1362 | u32 backend_map = 0; |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1363 | u32 enabled_backends_mask = 0; |
| 1364 | u32 enabled_backends_count = 0; |
| 1365 | u32 cur_pipe; |
| 1366 | u32 swizzle_pipe[EVERGREEN_MAX_PIPES]; |
| 1367 | u32 cur_backend = 0; |
| 1368 | u32 i; |
| 1369 | bool force_no_swizzle; |
| 1370 | |
| 1371 | if (num_tile_pipes > EVERGREEN_MAX_PIPES) |
| 1372 | num_tile_pipes = EVERGREEN_MAX_PIPES; |
| 1373 | if (num_tile_pipes < 1) |
| 1374 | num_tile_pipes = 1; |
| 1375 | if (num_backends > EVERGREEN_MAX_BACKENDS) |
| 1376 | num_backends = EVERGREEN_MAX_BACKENDS; |
| 1377 | if (num_backends < 1) |
| 1378 | num_backends = 1; |
| 1379 | |
| 1380 | for (i = 0; i < EVERGREEN_MAX_BACKENDS; ++i) { |
| 1381 | if (((backend_disable_mask >> i) & 1) == 0) { |
| 1382 | enabled_backends_mask |= (1 << i); |
| 1383 | ++enabled_backends_count; |
| 1384 | } |
| 1385 | if (enabled_backends_count == num_backends) |
| 1386 | break; |
| 1387 | } |
| 1388 | |
| 1389 | if (enabled_backends_count == 0) { |
| 1390 | enabled_backends_mask = 1; |
| 1391 | enabled_backends_count = 1; |
| 1392 | } |
| 1393 | |
| 1394 | if (enabled_backends_count != num_backends) |
| 1395 | num_backends = enabled_backends_count; |
| 1396 | |
| 1397 | memset((uint8_t *)&swizzle_pipe[0], 0, sizeof(u32) * EVERGREEN_MAX_PIPES); |
| 1398 | switch (rdev->family) { |
| 1399 | case CHIP_CEDAR: |
| 1400 | case CHIP_REDWOOD: |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 1401 | case CHIP_PALM: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 1402 | case CHIP_TURKS: |
| 1403 | case CHIP_CAICOS: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1404 | force_no_swizzle = false; |
| 1405 | break; |
| 1406 | case CHIP_CYPRESS: |
| 1407 | case CHIP_HEMLOCK: |
| 1408 | case CHIP_JUNIPER: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 1409 | case CHIP_BARTS: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1410 | default: |
| 1411 | force_no_swizzle = true; |
| 1412 | break; |
| 1413 | } |
| 1414 | if (force_no_swizzle) { |
| 1415 | bool last_backend_enabled = false; |
| 1416 | |
| 1417 | force_no_swizzle = false; |
| 1418 | for (i = 0; i < EVERGREEN_MAX_BACKENDS; ++i) { |
| 1419 | if (((enabled_backends_mask >> i) & 1) == 1) { |
| 1420 | if (last_backend_enabled) |
| 1421 | force_no_swizzle = true; |
| 1422 | last_backend_enabled = true; |
| 1423 | } else |
| 1424 | last_backend_enabled = false; |
| 1425 | } |
| 1426 | } |
| 1427 | |
| 1428 | switch (num_tile_pipes) { |
| 1429 | case 1: |
| 1430 | case 3: |
| 1431 | case 5: |
| 1432 | case 7: |
| 1433 | DRM_ERROR("odd number of pipes!\n"); |
| 1434 | break; |
| 1435 | case 2: |
| 1436 | swizzle_pipe[0] = 0; |
| 1437 | swizzle_pipe[1] = 1; |
| 1438 | break; |
| 1439 | case 4: |
| 1440 | if (force_no_swizzle) { |
| 1441 | swizzle_pipe[0] = 0; |
| 1442 | swizzle_pipe[1] = 1; |
| 1443 | swizzle_pipe[2] = 2; |
| 1444 | swizzle_pipe[3] = 3; |
| 1445 | } else { |
| 1446 | swizzle_pipe[0] = 0; |
| 1447 | swizzle_pipe[1] = 2; |
| 1448 | swizzle_pipe[2] = 1; |
| 1449 | swizzle_pipe[3] = 3; |
| 1450 | } |
| 1451 | break; |
| 1452 | case 6: |
| 1453 | if (force_no_swizzle) { |
| 1454 | swizzle_pipe[0] = 0; |
| 1455 | swizzle_pipe[1] = 1; |
| 1456 | swizzle_pipe[2] = 2; |
| 1457 | swizzle_pipe[3] = 3; |
| 1458 | swizzle_pipe[4] = 4; |
| 1459 | swizzle_pipe[5] = 5; |
| 1460 | } else { |
| 1461 | swizzle_pipe[0] = 0; |
| 1462 | swizzle_pipe[1] = 2; |
| 1463 | swizzle_pipe[2] = 4; |
| 1464 | swizzle_pipe[3] = 1; |
| 1465 | swizzle_pipe[4] = 3; |
| 1466 | swizzle_pipe[5] = 5; |
| 1467 | } |
| 1468 | break; |
| 1469 | case 8: |
| 1470 | if (force_no_swizzle) { |
| 1471 | swizzle_pipe[0] = 0; |
| 1472 | swizzle_pipe[1] = 1; |
| 1473 | swizzle_pipe[2] = 2; |
| 1474 | swizzle_pipe[3] = 3; |
| 1475 | swizzle_pipe[4] = 4; |
| 1476 | swizzle_pipe[5] = 5; |
| 1477 | swizzle_pipe[6] = 6; |
| 1478 | swizzle_pipe[7] = 7; |
| 1479 | } else { |
| 1480 | swizzle_pipe[0] = 0; |
| 1481 | swizzle_pipe[1] = 2; |
| 1482 | swizzle_pipe[2] = 4; |
| 1483 | swizzle_pipe[3] = 6; |
| 1484 | swizzle_pipe[4] = 1; |
| 1485 | swizzle_pipe[5] = 3; |
| 1486 | swizzle_pipe[6] = 5; |
| 1487 | swizzle_pipe[7] = 7; |
| 1488 | } |
| 1489 | break; |
| 1490 | } |
| 1491 | |
| 1492 | for (cur_pipe = 0; cur_pipe < num_tile_pipes; ++cur_pipe) { |
| 1493 | while (((1 << cur_backend) & enabled_backends_mask) == 0) |
| 1494 | cur_backend = (cur_backend + 1) % EVERGREEN_MAX_BACKENDS; |
| 1495 | |
| 1496 | backend_map |= (((cur_backend & 0xf) << (swizzle_pipe[cur_pipe] * 4))); |
| 1497 | |
| 1498 | cur_backend = (cur_backend + 1) % EVERGREEN_MAX_BACKENDS; |
| 1499 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1500 | |
| 1501 | return backend_map; |
| 1502 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1503 | |
Alex Deucher | 9535ab7 | 2010-11-22 17:56:18 -0500 | [diff] [blame] | 1504 | static void evergreen_program_channel_remap(struct radeon_device *rdev) |
| 1505 | { |
| 1506 | u32 tcp_chan_steer_lo, tcp_chan_steer_hi, mc_shared_chremap, tmp; |
| 1507 | |
| 1508 | tmp = RREG32(MC_SHARED_CHMAP); |
| 1509 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { |
| 1510 | case 0: |
| 1511 | case 1: |
| 1512 | case 2: |
| 1513 | case 3: |
| 1514 | default: |
| 1515 | /* default mapping */ |
| 1516 | mc_shared_chremap = 0x00fac688; |
| 1517 | break; |
| 1518 | } |
| 1519 | |
| 1520 | switch (rdev->family) { |
| 1521 | case CHIP_HEMLOCK: |
| 1522 | case CHIP_CYPRESS: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 1523 | case CHIP_BARTS: |
Alex Deucher | 9535ab7 | 2010-11-22 17:56:18 -0500 | [diff] [blame] | 1524 | tcp_chan_steer_lo = 0x54763210; |
| 1525 | tcp_chan_steer_hi = 0x0000ba98; |
| 1526 | break; |
| 1527 | case CHIP_JUNIPER: |
| 1528 | case CHIP_REDWOOD: |
| 1529 | case CHIP_CEDAR: |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 1530 | case CHIP_PALM: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 1531 | case CHIP_TURKS: |
| 1532 | case CHIP_CAICOS: |
Alex Deucher | 9535ab7 | 2010-11-22 17:56:18 -0500 | [diff] [blame] | 1533 | default: |
| 1534 | tcp_chan_steer_lo = 0x76543210; |
| 1535 | tcp_chan_steer_hi = 0x0000ba98; |
| 1536 | break; |
| 1537 | } |
| 1538 | |
| 1539 | WREG32(TCP_CHAN_STEER_LO, tcp_chan_steer_lo); |
| 1540 | WREG32(TCP_CHAN_STEER_HI, tcp_chan_steer_hi); |
| 1541 | WREG32(MC_SHARED_CHREMAP, mc_shared_chremap); |
| 1542 | } |
| 1543 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 1544 | static void evergreen_gpu_init(struct radeon_device *rdev) |
| 1545 | { |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1546 | u32 cc_rb_backend_disable = 0; |
| 1547 | u32 cc_gc_shader_pipe_config; |
| 1548 | u32 gb_addr_config = 0; |
| 1549 | u32 mc_shared_chmap, mc_arb_ramcfg; |
| 1550 | u32 gb_backend_map; |
| 1551 | u32 grbm_gfx_index; |
| 1552 | u32 sx_debug_1; |
| 1553 | u32 smx_dc_ctl0; |
| 1554 | u32 sq_config; |
| 1555 | u32 sq_lds_resource_mgmt; |
| 1556 | u32 sq_gpr_resource_mgmt_1; |
| 1557 | u32 sq_gpr_resource_mgmt_2; |
| 1558 | u32 sq_gpr_resource_mgmt_3; |
| 1559 | u32 sq_thread_resource_mgmt; |
| 1560 | u32 sq_thread_resource_mgmt_2; |
| 1561 | u32 sq_stack_resource_mgmt_1; |
| 1562 | u32 sq_stack_resource_mgmt_2; |
| 1563 | u32 sq_stack_resource_mgmt_3; |
| 1564 | u32 vgt_cache_invalidation; |
| 1565 | u32 hdp_host_path_cntl; |
| 1566 | int i, j, num_shader_engines, ps_thread_count; |
| 1567 | |
| 1568 | switch (rdev->family) { |
| 1569 | case CHIP_CYPRESS: |
| 1570 | case CHIP_HEMLOCK: |
| 1571 | rdev->config.evergreen.num_ses = 2; |
| 1572 | rdev->config.evergreen.max_pipes = 4; |
| 1573 | rdev->config.evergreen.max_tile_pipes = 8; |
| 1574 | rdev->config.evergreen.max_simds = 10; |
| 1575 | rdev->config.evergreen.max_backends = 4 * rdev->config.evergreen.num_ses; |
| 1576 | rdev->config.evergreen.max_gprs = 256; |
| 1577 | rdev->config.evergreen.max_threads = 248; |
| 1578 | rdev->config.evergreen.max_gs_threads = 32; |
| 1579 | rdev->config.evergreen.max_stack_entries = 512; |
| 1580 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1581 | rdev->config.evergreen.sx_max_export_size = 256; |
| 1582 | rdev->config.evergreen.sx_max_export_pos_size = 64; |
| 1583 | rdev->config.evergreen.sx_max_export_smx_size = 192; |
| 1584 | rdev->config.evergreen.max_hw_contexts = 8; |
| 1585 | rdev->config.evergreen.sq_num_cf_insts = 2; |
| 1586 | |
| 1587 | rdev->config.evergreen.sc_prim_fifo_size = 0x100; |
| 1588 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1589 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1590 | break; |
| 1591 | case CHIP_JUNIPER: |
| 1592 | rdev->config.evergreen.num_ses = 1; |
| 1593 | rdev->config.evergreen.max_pipes = 4; |
| 1594 | rdev->config.evergreen.max_tile_pipes = 4; |
| 1595 | rdev->config.evergreen.max_simds = 10; |
| 1596 | rdev->config.evergreen.max_backends = 4 * rdev->config.evergreen.num_ses; |
| 1597 | rdev->config.evergreen.max_gprs = 256; |
| 1598 | rdev->config.evergreen.max_threads = 248; |
| 1599 | rdev->config.evergreen.max_gs_threads = 32; |
| 1600 | rdev->config.evergreen.max_stack_entries = 512; |
| 1601 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1602 | rdev->config.evergreen.sx_max_export_size = 256; |
| 1603 | rdev->config.evergreen.sx_max_export_pos_size = 64; |
| 1604 | rdev->config.evergreen.sx_max_export_smx_size = 192; |
| 1605 | rdev->config.evergreen.max_hw_contexts = 8; |
| 1606 | rdev->config.evergreen.sq_num_cf_insts = 2; |
| 1607 | |
| 1608 | rdev->config.evergreen.sc_prim_fifo_size = 0x100; |
| 1609 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1610 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1611 | break; |
| 1612 | case CHIP_REDWOOD: |
| 1613 | rdev->config.evergreen.num_ses = 1; |
| 1614 | rdev->config.evergreen.max_pipes = 4; |
| 1615 | rdev->config.evergreen.max_tile_pipes = 4; |
| 1616 | rdev->config.evergreen.max_simds = 5; |
| 1617 | rdev->config.evergreen.max_backends = 2 * rdev->config.evergreen.num_ses; |
| 1618 | rdev->config.evergreen.max_gprs = 256; |
| 1619 | rdev->config.evergreen.max_threads = 248; |
| 1620 | rdev->config.evergreen.max_gs_threads = 32; |
| 1621 | rdev->config.evergreen.max_stack_entries = 256; |
| 1622 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1623 | rdev->config.evergreen.sx_max_export_size = 256; |
| 1624 | rdev->config.evergreen.sx_max_export_pos_size = 64; |
| 1625 | rdev->config.evergreen.sx_max_export_smx_size = 192; |
| 1626 | rdev->config.evergreen.max_hw_contexts = 8; |
| 1627 | rdev->config.evergreen.sq_num_cf_insts = 2; |
| 1628 | |
| 1629 | rdev->config.evergreen.sc_prim_fifo_size = 0x100; |
| 1630 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1631 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1632 | break; |
| 1633 | case CHIP_CEDAR: |
| 1634 | default: |
| 1635 | rdev->config.evergreen.num_ses = 1; |
| 1636 | rdev->config.evergreen.max_pipes = 2; |
| 1637 | rdev->config.evergreen.max_tile_pipes = 2; |
| 1638 | rdev->config.evergreen.max_simds = 2; |
| 1639 | rdev->config.evergreen.max_backends = 1 * rdev->config.evergreen.num_ses; |
| 1640 | rdev->config.evergreen.max_gprs = 256; |
| 1641 | rdev->config.evergreen.max_threads = 192; |
| 1642 | rdev->config.evergreen.max_gs_threads = 16; |
| 1643 | rdev->config.evergreen.max_stack_entries = 256; |
| 1644 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1645 | rdev->config.evergreen.sx_max_export_size = 128; |
| 1646 | rdev->config.evergreen.sx_max_export_pos_size = 32; |
| 1647 | rdev->config.evergreen.sx_max_export_smx_size = 96; |
| 1648 | rdev->config.evergreen.max_hw_contexts = 4; |
| 1649 | rdev->config.evergreen.sq_num_cf_insts = 1; |
| 1650 | |
| 1651 | rdev->config.evergreen.sc_prim_fifo_size = 0x40; |
| 1652 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1653 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1654 | break; |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 1655 | case CHIP_PALM: |
| 1656 | rdev->config.evergreen.num_ses = 1; |
| 1657 | rdev->config.evergreen.max_pipes = 2; |
| 1658 | rdev->config.evergreen.max_tile_pipes = 2; |
| 1659 | rdev->config.evergreen.max_simds = 2; |
| 1660 | rdev->config.evergreen.max_backends = 1 * rdev->config.evergreen.num_ses; |
| 1661 | rdev->config.evergreen.max_gprs = 256; |
| 1662 | rdev->config.evergreen.max_threads = 192; |
| 1663 | rdev->config.evergreen.max_gs_threads = 16; |
| 1664 | rdev->config.evergreen.max_stack_entries = 256; |
| 1665 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1666 | rdev->config.evergreen.sx_max_export_size = 128; |
| 1667 | rdev->config.evergreen.sx_max_export_pos_size = 32; |
| 1668 | rdev->config.evergreen.sx_max_export_smx_size = 96; |
| 1669 | rdev->config.evergreen.max_hw_contexts = 4; |
| 1670 | rdev->config.evergreen.sq_num_cf_insts = 1; |
| 1671 | |
| 1672 | rdev->config.evergreen.sc_prim_fifo_size = 0x40; |
| 1673 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1674 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1675 | break; |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 1676 | case CHIP_BARTS: |
| 1677 | rdev->config.evergreen.num_ses = 2; |
| 1678 | rdev->config.evergreen.max_pipes = 4; |
| 1679 | rdev->config.evergreen.max_tile_pipes = 8; |
| 1680 | rdev->config.evergreen.max_simds = 7; |
| 1681 | rdev->config.evergreen.max_backends = 4 * rdev->config.evergreen.num_ses; |
| 1682 | rdev->config.evergreen.max_gprs = 256; |
| 1683 | rdev->config.evergreen.max_threads = 248; |
| 1684 | rdev->config.evergreen.max_gs_threads = 32; |
| 1685 | rdev->config.evergreen.max_stack_entries = 512; |
| 1686 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1687 | rdev->config.evergreen.sx_max_export_size = 256; |
| 1688 | rdev->config.evergreen.sx_max_export_pos_size = 64; |
| 1689 | rdev->config.evergreen.sx_max_export_smx_size = 192; |
| 1690 | rdev->config.evergreen.max_hw_contexts = 8; |
| 1691 | rdev->config.evergreen.sq_num_cf_insts = 2; |
| 1692 | |
| 1693 | rdev->config.evergreen.sc_prim_fifo_size = 0x100; |
| 1694 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1695 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1696 | break; |
| 1697 | case CHIP_TURKS: |
| 1698 | rdev->config.evergreen.num_ses = 1; |
| 1699 | rdev->config.evergreen.max_pipes = 4; |
| 1700 | rdev->config.evergreen.max_tile_pipes = 4; |
| 1701 | rdev->config.evergreen.max_simds = 6; |
| 1702 | rdev->config.evergreen.max_backends = 2 * rdev->config.evergreen.num_ses; |
| 1703 | rdev->config.evergreen.max_gprs = 256; |
| 1704 | rdev->config.evergreen.max_threads = 248; |
| 1705 | rdev->config.evergreen.max_gs_threads = 32; |
| 1706 | rdev->config.evergreen.max_stack_entries = 256; |
| 1707 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1708 | rdev->config.evergreen.sx_max_export_size = 256; |
| 1709 | rdev->config.evergreen.sx_max_export_pos_size = 64; |
| 1710 | rdev->config.evergreen.sx_max_export_smx_size = 192; |
| 1711 | rdev->config.evergreen.max_hw_contexts = 8; |
| 1712 | rdev->config.evergreen.sq_num_cf_insts = 2; |
| 1713 | |
| 1714 | rdev->config.evergreen.sc_prim_fifo_size = 0x100; |
| 1715 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1716 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1717 | break; |
| 1718 | case CHIP_CAICOS: |
| 1719 | rdev->config.evergreen.num_ses = 1; |
| 1720 | rdev->config.evergreen.max_pipes = 4; |
| 1721 | rdev->config.evergreen.max_tile_pipes = 2; |
| 1722 | rdev->config.evergreen.max_simds = 2; |
| 1723 | rdev->config.evergreen.max_backends = 1 * rdev->config.evergreen.num_ses; |
| 1724 | rdev->config.evergreen.max_gprs = 256; |
| 1725 | rdev->config.evergreen.max_threads = 192; |
| 1726 | rdev->config.evergreen.max_gs_threads = 16; |
| 1727 | rdev->config.evergreen.max_stack_entries = 256; |
| 1728 | rdev->config.evergreen.sx_num_of_sets = 4; |
| 1729 | rdev->config.evergreen.sx_max_export_size = 128; |
| 1730 | rdev->config.evergreen.sx_max_export_pos_size = 32; |
| 1731 | rdev->config.evergreen.sx_max_export_smx_size = 96; |
| 1732 | rdev->config.evergreen.max_hw_contexts = 4; |
| 1733 | rdev->config.evergreen.sq_num_cf_insts = 1; |
| 1734 | |
| 1735 | rdev->config.evergreen.sc_prim_fifo_size = 0x40; |
| 1736 | rdev->config.evergreen.sc_hiz_tile_fifo_size = 0x30; |
| 1737 | rdev->config.evergreen.sc_earlyz_tile_fifo_size = 0x130; |
| 1738 | break; |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1739 | } |
| 1740 | |
| 1741 | /* Initialize HDP */ |
| 1742 | for (i = 0, j = 0; i < 32; i++, j += 0x18) { |
| 1743 | WREG32((0x2c14 + j), 0x00000000); |
| 1744 | WREG32((0x2c18 + j), 0x00000000); |
| 1745 | WREG32((0x2c1c + j), 0x00000000); |
| 1746 | WREG32((0x2c20 + j), 0x00000000); |
| 1747 | WREG32((0x2c24 + j), 0x00000000); |
| 1748 | } |
| 1749 | |
| 1750 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); |
| 1751 | |
| 1752 | cc_gc_shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG) & ~2; |
| 1753 | |
| 1754 | cc_gc_shader_pipe_config |= |
| 1755 | INACTIVE_QD_PIPES((EVERGREEN_MAX_PIPES_MASK << rdev->config.evergreen.max_pipes) |
| 1756 | & EVERGREEN_MAX_PIPES_MASK); |
| 1757 | cc_gc_shader_pipe_config |= |
| 1758 | INACTIVE_SIMDS((EVERGREEN_MAX_SIMDS_MASK << rdev->config.evergreen.max_simds) |
| 1759 | & EVERGREEN_MAX_SIMDS_MASK); |
| 1760 | |
| 1761 | cc_rb_backend_disable = |
| 1762 | BACKEND_DISABLE((EVERGREEN_MAX_BACKENDS_MASK << rdev->config.evergreen.max_backends) |
| 1763 | & EVERGREEN_MAX_BACKENDS_MASK); |
| 1764 | |
| 1765 | |
| 1766 | mc_shared_chmap = RREG32(MC_SHARED_CHMAP); |
| 1767 | mc_arb_ramcfg = RREG32(MC_ARB_RAMCFG); |
| 1768 | |
| 1769 | switch (rdev->config.evergreen.max_tile_pipes) { |
| 1770 | case 1: |
| 1771 | default: |
| 1772 | gb_addr_config |= NUM_PIPES(0); |
| 1773 | break; |
| 1774 | case 2: |
| 1775 | gb_addr_config |= NUM_PIPES(1); |
| 1776 | break; |
| 1777 | case 4: |
| 1778 | gb_addr_config |= NUM_PIPES(2); |
| 1779 | break; |
| 1780 | case 8: |
| 1781 | gb_addr_config |= NUM_PIPES(3); |
| 1782 | break; |
| 1783 | } |
| 1784 | |
| 1785 | gb_addr_config |= PIPE_INTERLEAVE_SIZE((mc_arb_ramcfg & BURSTLENGTH_MASK) >> BURSTLENGTH_SHIFT); |
| 1786 | gb_addr_config |= BANK_INTERLEAVE_SIZE(0); |
| 1787 | gb_addr_config |= NUM_SHADER_ENGINES(rdev->config.evergreen.num_ses - 1); |
| 1788 | gb_addr_config |= SHADER_ENGINE_TILE_SIZE(1); |
| 1789 | gb_addr_config |= NUM_GPUS(0); /* Hemlock? */ |
| 1790 | gb_addr_config |= MULTI_GPU_TILE_SIZE(2); |
| 1791 | |
| 1792 | if (((mc_arb_ramcfg & NOOFCOLS_MASK) >> NOOFCOLS_SHIFT) > 2) |
| 1793 | gb_addr_config |= ROW_SIZE(2); |
| 1794 | else |
| 1795 | gb_addr_config |= ROW_SIZE((mc_arb_ramcfg & NOOFCOLS_MASK) >> NOOFCOLS_SHIFT); |
| 1796 | |
| 1797 | if (rdev->ddev->pdev->device == 0x689e) { |
| 1798 | u32 efuse_straps_4; |
| 1799 | u32 efuse_straps_3; |
| 1800 | u8 efuse_box_bit_131_124; |
| 1801 | |
| 1802 | WREG32(RCU_IND_INDEX, 0x204); |
| 1803 | efuse_straps_4 = RREG32(RCU_IND_DATA); |
| 1804 | WREG32(RCU_IND_INDEX, 0x203); |
| 1805 | efuse_straps_3 = RREG32(RCU_IND_DATA); |
| 1806 | efuse_box_bit_131_124 = (u8)(((efuse_straps_4 & 0xf) << 4) | ((efuse_straps_3 & 0xf0000000) >> 28)); |
| 1807 | |
| 1808 | switch(efuse_box_bit_131_124) { |
| 1809 | case 0x00: |
| 1810 | gb_backend_map = 0x76543210; |
| 1811 | break; |
| 1812 | case 0x55: |
| 1813 | gb_backend_map = 0x77553311; |
| 1814 | break; |
| 1815 | case 0x56: |
| 1816 | gb_backend_map = 0x77553300; |
| 1817 | break; |
| 1818 | case 0x59: |
| 1819 | gb_backend_map = 0x77552211; |
| 1820 | break; |
| 1821 | case 0x66: |
| 1822 | gb_backend_map = 0x77443300; |
| 1823 | break; |
| 1824 | case 0x99: |
| 1825 | gb_backend_map = 0x66552211; |
| 1826 | break; |
| 1827 | case 0x5a: |
| 1828 | gb_backend_map = 0x77552200; |
| 1829 | break; |
| 1830 | case 0xaa: |
| 1831 | gb_backend_map = 0x66442200; |
| 1832 | break; |
| 1833 | case 0x95: |
| 1834 | gb_backend_map = 0x66553311; |
| 1835 | break; |
| 1836 | default: |
| 1837 | DRM_ERROR("bad backend map, using default\n"); |
| 1838 | gb_backend_map = |
| 1839 | evergreen_get_tile_pipe_to_backend_map(rdev, |
| 1840 | rdev->config.evergreen.max_tile_pipes, |
| 1841 | rdev->config.evergreen.max_backends, |
| 1842 | ((EVERGREEN_MAX_BACKENDS_MASK << |
| 1843 | rdev->config.evergreen.max_backends) & |
| 1844 | EVERGREEN_MAX_BACKENDS_MASK)); |
| 1845 | break; |
| 1846 | } |
| 1847 | } else if (rdev->ddev->pdev->device == 0x68b9) { |
| 1848 | u32 efuse_straps_3; |
| 1849 | u8 efuse_box_bit_127_124; |
| 1850 | |
| 1851 | WREG32(RCU_IND_INDEX, 0x203); |
| 1852 | efuse_straps_3 = RREG32(RCU_IND_DATA); |
Alex Deucher | d31dba5 | 2010-10-11 12:41:32 -0400 | [diff] [blame] | 1853 | efuse_box_bit_127_124 = (u8)((efuse_straps_3 & 0xF0000000) >> 28); |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1854 | |
| 1855 | switch(efuse_box_bit_127_124) { |
| 1856 | case 0x0: |
| 1857 | gb_backend_map = 0x00003210; |
| 1858 | break; |
| 1859 | case 0x5: |
| 1860 | case 0x6: |
| 1861 | case 0x9: |
| 1862 | case 0xa: |
| 1863 | gb_backend_map = 0x00003311; |
| 1864 | break; |
| 1865 | default: |
| 1866 | DRM_ERROR("bad backend map, using default\n"); |
| 1867 | gb_backend_map = |
| 1868 | evergreen_get_tile_pipe_to_backend_map(rdev, |
| 1869 | rdev->config.evergreen.max_tile_pipes, |
| 1870 | rdev->config.evergreen.max_backends, |
| 1871 | ((EVERGREEN_MAX_BACKENDS_MASK << |
| 1872 | rdev->config.evergreen.max_backends) & |
| 1873 | EVERGREEN_MAX_BACKENDS_MASK)); |
| 1874 | break; |
| 1875 | } |
Alex Deucher | b741be8 | 2010-09-09 19:15:23 -0400 | [diff] [blame] | 1876 | } else { |
| 1877 | switch (rdev->family) { |
| 1878 | case CHIP_CYPRESS: |
| 1879 | case CHIP_HEMLOCK: |
Alex Deucher | 03f4009 | 2011-01-06 21:19:25 -0500 | [diff] [blame] | 1880 | case CHIP_BARTS: |
Alex Deucher | b741be8 | 2010-09-09 19:15:23 -0400 | [diff] [blame] | 1881 | gb_backend_map = 0x66442200; |
| 1882 | break; |
| 1883 | case CHIP_JUNIPER: |
| 1884 | gb_backend_map = 0x00006420; |
| 1885 | break; |
| 1886 | default: |
| 1887 | gb_backend_map = |
| 1888 | evergreen_get_tile_pipe_to_backend_map(rdev, |
| 1889 | rdev->config.evergreen.max_tile_pipes, |
| 1890 | rdev->config.evergreen.max_backends, |
| 1891 | ((EVERGREEN_MAX_BACKENDS_MASK << |
| 1892 | rdev->config.evergreen.max_backends) & |
| 1893 | EVERGREEN_MAX_BACKENDS_MASK)); |
| 1894 | } |
| 1895 | } |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1896 | |
Alex Deucher | 1aa52bd | 2010-11-17 12:11:03 -0500 | [diff] [blame] | 1897 | /* setup tiling info dword. gb_addr_config is not adequate since it does |
| 1898 | * not have bank info, so create a custom tiling dword. |
| 1899 | * bits 3:0 num_pipes |
| 1900 | * bits 7:4 num_banks |
| 1901 | * bits 11:8 group_size |
| 1902 | * bits 15:12 row_size |
| 1903 | */ |
| 1904 | rdev->config.evergreen.tile_config = 0; |
| 1905 | switch (rdev->config.evergreen.max_tile_pipes) { |
| 1906 | case 1: |
| 1907 | default: |
| 1908 | rdev->config.evergreen.tile_config |= (0 << 0); |
| 1909 | break; |
| 1910 | case 2: |
| 1911 | rdev->config.evergreen.tile_config |= (1 << 0); |
| 1912 | break; |
| 1913 | case 4: |
| 1914 | rdev->config.evergreen.tile_config |= (2 << 0); |
| 1915 | break; |
| 1916 | case 8: |
| 1917 | rdev->config.evergreen.tile_config |= (3 << 0); |
| 1918 | break; |
| 1919 | } |
| 1920 | rdev->config.evergreen.tile_config |= |
| 1921 | ((mc_arb_ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT) << 4; |
| 1922 | rdev->config.evergreen.tile_config |= |
| 1923 | ((mc_arb_ramcfg & BURSTLENGTH_MASK) >> BURSTLENGTH_SHIFT) << 8; |
| 1924 | rdev->config.evergreen.tile_config |= |
| 1925 | ((gb_addr_config & 0x30000000) >> 28) << 12; |
| 1926 | |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1927 | WREG32(GB_BACKEND_MAP, gb_backend_map); |
| 1928 | WREG32(GB_ADDR_CONFIG, gb_addr_config); |
| 1929 | WREG32(DMIF_ADDR_CONFIG, gb_addr_config); |
| 1930 | WREG32(HDP_ADDR_CONFIG, gb_addr_config); |
| 1931 | |
Alex Deucher | 9535ab7 | 2010-11-22 17:56:18 -0500 | [diff] [blame] | 1932 | evergreen_program_channel_remap(rdev); |
| 1933 | |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 1934 | num_shader_engines = ((RREG32(GB_ADDR_CONFIG) & NUM_SHADER_ENGINES(3)) >> 12) + 1; |
| 1935 | grbm_gfx_index = INSTANCE_BROADCAST_WRITES; |
| 1936 | |
| 1937 | for (i = 0; i < rdev->config.evergreen.num_ses; i++) { |
| 1938 | u32 rb = cc_rb_backend_disable | (0xf0 << 16); |
| 1939 | u32 sp = cc_gc_shader_pipe_config; |
| 1940 | u32 gfx = grbm_gfx_index | SE_INDEX(i); |
| 1941 | |
| 1942 | if (i == num_shader_engines) { |
| 1943 | rb |= BACKEND_DISABLE(EVERGREEN_MAX_BACKENDS_MASK); |
| 1944 | sp |= INACTIVE_SIMDS(EVERGREEN_MAX_SIMDS_MASK); |
| 1945 | } |
| 1946 | |
| 1947 | WREG32(GRBM_GFX_INDEX, gfx); |
| 1948 | WREG32(RLC_GFX_INDEX, gfx); |
| 1949 | |
| 1950 | WREG32(CC_RB_BACKEND_DISABLE, rb); |
| 1951 | WREG32(CC_SYS_RB_BACKEND_DISABLE, rb); |
| 1952 | WREG32(GC_USER_RB_BACKEND_DISABLE, rb); |
| 1953 | WREG32(CC_GC_SHADER_PIPE_CONFIG, sp); |
| 1954 | } |
| 1955 | |
| 1956 | grbm_gfx_index |= SE_BROADCAST_WRITES; |
| 1957 | WREG32(GRBM_GFX_INDEX, grbm_gfx_index); |
| 1958 | WREG32(RLC_GFX_INDEX, grbm_gfx_index); |
| 1959 | |
| 1960 | WREG32(CGTS_SYS_TCC_DISABLE, 0); |
| 1961 | WREG32(CGTS_TCC_DISABLE, 0); |
| 1962 | WREG32(CGTS_USER_SYS_TCC_DISABLE, 0); |
| 1963 | WREG32(CGTS_USER_TCC_DISABLE, 0); |
| 1964 | |
| 1965 | /* set HW defaults for 3D engine */ |
| 1966 | WREG32(CP_QUEUE_THRESHOLDS, (ROQ_IB1_START(0x16) | |
| 1967 | ROQ_IB2_START(0x2b))); |
| 1968 | |
| 1969 | WREG32(CP_MEQ_THRESHOLDS, STQ_SPLIT(0x30)); |
| 1970 | |
| 1971 | WREG32(TA_CNTL_AUX, (DISABLE_CUBE_ANISO | |
| 1972 | SYNC_GRADIENT | |
| 1973 | SYNC_WALKER | |
| 1974 | SYNC_ALIGNER)); |
| 1975 | |
| 1976 | sx_debug_1 = RREG32(SX_DEBUG_1); |
| 1977 | sx_debug_1 |= ENABLE_NEW_SMX_ADDRESS; |
| 1978 | WREG32(SX_DEBUG_1, sx_debug_1); |
| 1979 | |
| 1980 | |
| 1981 | smx_dc_ctl0 = RREG32(SMX_DC_CTL0); |
| 1982 | smx_dc_ctl0 &= ~NUMBER_OF_SETS(0x1ff); |
| 1983 | smx_dc_ctl0 |= NUMBER_OF_SETS(rdev->config.evergreen.sx_num_of_sets); |
| 1984 | WREG32(SMX_DC_CTL0, smx_dc_ctl0); |
| 1985 | |
| 1986 | WREG32(SX_EXPORT_BUFFER_SIZES, (COLOR_BUFFER_SIZE((rdev->config.evergreen.sx_max_export_size / 4) - 1) | |
| 1987 | POSITION_BUFFER_SIZE((rdev->config.evergreen.sx_max_export_pos_size / 4) - 1) | |
| 1988 | SMX_BUFFER_SIZE((rdev->config.evergreen.sx_max_export_smx_size / 4) - 1))); |
| 1989 | |
| 1990 | WREG32(PA_SC_FIFO_SIZE, (SC_PRIM_FIFO_SIZE(rdev->config.evergreen.sc_prim_fifo_size) | |
| 1991 | SC_HIZ_TILE_FIFO_SIZE(rdev->config.evergreen.sc_hiz_tile_fifo_size) | |
| 1992 | SC_EARLYZ_TILE_FIFO_SIZE(rdev->config.evergreen.sc_earlyz_tile_fifo_size))); |
| 1993 | |
| 1994 | WREG32(VGT_NUM_INSTANCES, 1); |
| 1995 | WREG32(SPI_CONFIG_CNTL, 0); |
| 1996 | WREG32(SPI_CONFIG_CNTL_1, VTX_DONE_DELAY(4)); |
| 1997 | WREG32(CP_PERFMON_CNTL, 0); |
| 1998 | |
| 1999 | WREG32(SQ_MS_FIFO_SIZES, (CACHE_FIFO_SIZE(16 * rdev->config.evergreen.sq_num_cf_insts) | |
| 2000 | FETCH_FIFO_HIWATER(0x4) | |
| 2001 | DONE_FIFO_HIWATER(0xe0) | |
| 2002 | ALU_UPDATE_FIFO_HIWATER(0x8))); |
| 2003 | |
| 2004 | sq_config = RREG32(SQ_CONFIG); |
| 2005 | sq_config &= ~(PS_PRIO(3) | |
| 2006 | VS_PRIO(3) | |
| 2007 | GS_PRIO(3) | |
| 2008 | ES_PRIO(3)); |
| 2009 | sq_config |= (VC_ENABLE | |
| 2010 | EXPORT_SRC_C | |
| 2011 | PS_PRIO(0) | |
| 2012 | VS_PRIO(1) | |
| 2013 | GS_PRIO(2) | |
| 2014 | ES_PRIO(3)); |
| 2015 | |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2016 | switch (rdev->family) { |
| 2017 | case CHIP_CEDAR: |
| 2018 | case CHIP_PALM: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 2019 | case CHIP_CAICOS: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2020 | /* no vertex cache */ |
| 2021 | sq_config &= ~VC_ENABLE; |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2022 | break; |
| 2023 | default: |
| 2024 | break; |
| 2025 | } |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2026 | |
| 2027 | sq_lds_resource_mgmt = RREG32(SQ_LDS_RESOURCE_MGMT); |
| 2028 | |
| 2029 | sq_gpr_resource_mgmt_1 = NUM_PS_GPRS((rdev->config.evergreen.max_gprs - (4 * 2))* 12 / 32); |
| 2030 | sq_gpr_resource_mgmt_1 |= NUM_VS_GPRS((rdev->config.evergreen.max_gprs - (4 * 2)) * 6 / 32); |
| 2031 | sq_gpr_resource_mgmt_1 |= NUM_CLAUSE_TEMP_GPRS(4); |
| 2032 | sq_gpr_resource_mgmt_2 = NUM_GS_GPRS((rdev->config.evergreen.max_gprs - (4 * 2)) * 4 / 32); |
| 2033 | sq_gpr_resource_mgmt_2 |= NUM_ES_GPRS((rdev->config.evergreen.max_gprs - (4 * 2)) * 4 / 32); |
| 2034 | sq_gpr_resource_mgmt_3 = NUM_HS_GPRS((rdev->config.evergreen.max_gprs - (4 * 2)) * 3 / 32); |
| 2035 | sq_gpr_resource_mgmt_3 |= NUM_LS_GPRS((rdev->config.evergreen.max_gprs - (4 * 2)) * 3 / 32); |
| 2036 | |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2037 | switch (rdev->family) { |
| 2038 | case CHIP_CEDAR: |
| 2039 | case CHIP_PALM: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2040 | ps_thread_count = 96; |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2041 | break; |
| 2042 | default: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2043 | ps_thread_count = 128; |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2044 | break; |
| 2045 | } |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2046 | |
| 2047 | sq_thread_resource_mgmt = NUM_PS_THREADS(ps_thread_count); |
Alex Deucher | f96b35c | 2010-06-16 12:24:07 -0400 | [diff] [blame] | 2048 | sq_thread_resource_mgmt |= NUM_VS_THREADS((((rdev->config.evergreen.max_threads - ps_thread_count) / 6) / 8) * 8); |
| 2049 | sq_thread_resource_mgmt |= NUM_GS_THREADS((((rdev->config.evergreen.max_threads - ps_thread_count) / 6) / 8) * 8); |
| 2050 | sq_thread_resource_mgmt |= NUM_ES_THREADS((((rdev->config.evergreen.max_threads - ps_thread_count) / 6) / 8) * 8); |
| 2051 | sq_thread_resource_mgmt_2 = NUM_HS_THREADS((((rdev->config.evergreen.max_threads - ps_thread_count) / 6) / 8) * 8); |
| 2052 | sq_thread_resource_mgmt_2 |= NUM_LS_THREADS((((rdev->config.evergreen.max_threads - ps_thread_count) / 6) / 8) * 8); |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2053 | |
| 2054 | sq_stack_resource_mgmt_1 = NUM_PS_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2055 | sq_stack_resource_mgmt_1 |= NUM_VS_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2056 | sq_stack_resource_mgmt_2 = NUM_GS_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2057 | sq_stack_resource_mgmt_2 |= NUM_ES_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2058 | sq_stack_resource_mgmt_3 = NUM_HS_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2059 | sq_stack_resource_mgmt_3 |= NUM_LS_STACK_ENTRIES((rdev->config.evergreen.max_stack_entries * 1) / 6); |
| 2060 | |
| 2061 | WREG32(SQ_CONFIG, sq_config); |
| 2062 | WREG32(SQ_GPR_RESOURCE_MGMT_1, sq_gpr_resource_mgmt_1); |
| 2063 | WREG32(SQ_GPR_RESOURCE_MGMT_2, sq_gpr_resource_mgmt_2); |
| 2064 | WREG32(SQ_GPR_RESOURCE_MGMT_3, sq_gpr_resource_mgmt_3); |
| 2065 | WREG32(SQ_THREAD_RESOURCE_MGMT, sq_thread_resource_mgmt); |
| 2066 | WREG32(SQ_THREAD_RESOURCE_MGMT_2, sq_thread_resource_mgmt_2); |
| 2067 | WREG32(SQ_STACK_RESOURCE_MGMT_1, sq_stack_resource_mgmt_1); |
| 2068 | WREG32(SQ_STACK_RESOURCE_MGMT_2, sq_stack_resource_mgmt_2); |
| 2069 | WREG32(SQ_STACK_RESOURCE_MGMT_3, sq_stack_resource_mgmt_3); |
| 2070 | WREG32(SQ_DYN_GPR_CNTL_PS_FLUSH_REQ, 0); |
| 2071 | WREG32(SQ_LDS_RESOURCE_MGMT, sq_lds_resource_mgmt); |
| 2072 | |
| 2073 | WREG32(PA_SC_FORCE_EOV_MAX_CNTS, (FORCE_EOV_MAX_CLK_CNT(4095) | |
| 2074 | FORCE_EOV_MAX_REZ_CNT(255))); |
| 2075 | |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2076 | switch (rdev->family) { |
| 2077 | case CHIP_CEDAR: |
| 2078 | case CHIP_PALM: |
Alex Deucher | adb68fa | 2011-01-06 21:19:24 -0500 | [diff] [blame] | 2079 | case CHIP_CAICOS: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2080 | vgt_cache_invalidation = CACHE_INVALIDATION(TC_ONLY); |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2081 | break; |
| 2082 | default: |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2083 | vgt_cache_invalidation = CACHE_INVALIDATION(VC_AND_TC); |
Alex Deucher | d5e455e | 2010-11-22 17:56:29 -0500 | [diff] [blame] | 2084 | break; |
| 2085 | } |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2086 | vgt_cache_invalidation |= AUTO_INVLD_EN(ES_AND_GS_AUTO); |
| 2087 | WREG32(VGT_CACHE_INVALIDATION, vgt_cache_invalidation); |
| 2088 | |
| 2089 | WREG32(VGT_GS_VERTEX_REUSE, 16); |
Alex Deucher | 1292059 | 2011-02-02 12:37:40 -0500 | [diff] [blame^] | 2090 | WREG32(PA_SU_LINE_STIPPLE_VALUE, 0); |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2091 | WREG32(PA_SC_LINE_STIPPLE_STATE, 0); |
| 2092 | |
Alex Deucher | 60a4a3e | 2010-06-29 17:03:35 -0400 | [diff] [blame] | 2093 | WREG32(VGT_VERTEX_REUSE_BLOCK_CNTL, 14); |
| 2094 | WREG32(VGT_OUT_DEALLOC_CNTL, 16); |
| 2095 | |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2096 | WREG32(CB_PERF_CTR0_SEL_0, 0); |
| 2097 | WREG32(CB_PERF_CTR0_SEL_1, 0); |
| 2098 | WREG32(CB_PERF_CTR1_SEL_0, 0); |
| 2099 | WREG32(CB_PERF_CTR1_SEL_1, 0); |
| 2100 | WREG32(CB_PERF_CTR2_SEL_0, 0); |
| 2101 | WREG32(CB_PERF_CTR2_SEL_1, 0); |
| 2102 | WREG32(CB_PERF_CTR3_SEL_0, 0); |
| 2103 | WREG32(CB_PERF_CTR3_SEL_1, 0); |
| 2104 | |
Alex Deucher | 60a4a3e | 2010-06-29 17:03:35 -0400 | [diff] [blame] | 2105 | /* clear render buffer base addresses */ |
| 2106 | WREG32(CB_COLOR0_BASE, 0); |
| 2107 | WREG32(CB_COLOR1_BASE, 0); |
| 2108 | WREG32(CB_COLOR2_BASE, 0); |
| 2109 | WREG32(CB_COLOR3_BASE, 0); |
| 2110 | WREG32(CB_COLOR4_BASE, 0); |
| 2111 | WREG32(CB_COLOR5_BASE, 0); |
| 2112 | WREG32(CB_COLOR6_BASE, 0); |
| 2113 | WREG32(CB_COLOR7_BASE, 0); |
| 2114 | WREG32(CB_COLOR8_BASE, 0); |
| 2115 | WREG32(CB_COLOR9_BASE, 0); |
| 2116 | WREG32(CB_COLOR10_BASE, 0); |
| 2117 | WREG32(CB_COLOR11_BASE, 0); |
| 2118 | |
| 2119 | /* set the shader const cache sizes to 0 */ |
| 2120 | for (i = SQ_ALU_CONST_BUFFER_SIZE_PS_0; i < 0x28200; i += 4) |
| 2121 | WREG32(i, 0); |
| 2122 | for (i = SQ_ALU_CONST_BUFFER_SIZE_HS_0; i < 0x29000; i += 4) |
| 2123 | WREG32(i, 0); |
| 2124 | |
Alex Deucher | 32fcdbf | 2010-03-24 13:33:47 -0400 | [diff] [blame] | 2125 | hdp_host_path_cntl = RREG32(HDP_HOST_PATH_CNTL); |
| 2126 | WREG32(HDP_HOST_PATH_CNTL, hdp_host_path_cntl); |
| 2127 | |
| 2128 | WREG32(PA_CL_ENHANCE, CLIP_VTX_REORDER_ENA | NUM_CLIP_SEQ(3)); |
| 2129 | |
| 2130 | udelay(50); |
| 2131 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2132 | } |
| 2133 | |
| 2134 | int evergreen_mc_init(struct radeon_device *rdev) |
| 2135 | { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2136 | u32 tmp; |
| 2137 | int chansize, numchan; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2138 | |
| 2139 | /* Get VRAM informations */ |
| 2140 | rdev->mc.vram_is_ddr = true; |
| 2141 | tmp = RREG32(MC_ARB_RAMCFG); |
| 2142 | if (tmp & CHANSIZE_OVERRIDE) { |
| 2143 | chansize = 16; |
| 2144 | } else if (tmp & CHANSIZE_MASK) { |
| 2145 | chansize = 64; |
| 2146 | } else { |
| 2147 | chansize = 32; |
| 2148 | } |
| 2149 | tmp = RREG32(MC_SHARED_CHMAP); |
| 2150 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { |
| 2151 | case 0: |
| 2152 | default: |
| 2153 | numchan = 1; |
| 2154 | break; |
| 2155 | case 1: |
| 2156 | numchan = 2; |
| 2157 | break; |
| 2158 | case 2: |
| 2159 | numchan = 4; |
| 2160 | break; |
| 2161 | case 3: |
| 2162 | numchan = 8; |
| 2163 | break; |
| 2164 | } |
| 2165 | rdev->mc.vram_width = numchan * chansize; |
| 2166 | /* Could aper size report 0 ? */ |
Jordan Crouse | 01d73a6 | 2010-05-27 13:40:24 -0600 | [diff] [blame] | 2167 | rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0); |
| 2168 | rdev->mc.aper_size = pci_resource_len(rdev->pdev, 0); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2169 | /* Setup GPU memory space */ |
Alex Deucher | 6eb18f8 | 2010-11-22 17:56:27 -0500 | [diff] [blame] | 2170 | if (rdev->flags & RADEON_IS_IGP) { |
| 2171 | /* size in bytes on fusion */ |
| 2172 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE); |
| 2173 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE); |
| 2174 | } else { |
| 2175 | /* size in MB on evergreen */ |
| 2176 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; |
| 2177 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; |
| 2178 | } |
Jerome Glisse | 51e5fcd | 2010-02-19 14:33:54 +0000 | [diff] [blame] | 2179 | rdev->mc.visible_vram_size = rdev->mc.aper_size; |
Jerome Glisse | c919b37 | 2010-08-10 17:41:31 -0400 | [diff] [blame] | 2180 | rdev->mc.active_vram_size = rdev->mc.visible_vram_size; |
Alex Deucher | 0ef0c1f | 2010-11-22 17:56:26 -0500 | [diff] [blame] | 2181 | r700_vram_gtt_location(rdev, &rdev->mc); |
Alex Deucher | f47299c | 2010-03-16 20:54:38 -0400 | [diff] [blame] | 2182 | radeon_update_bandwidth_info(rdev); |
| 2183 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2184 | return 0; |
| 2185 | } |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 2186 | |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 2187 | bool evergreen_gpu_is_lockup(struct radeon_device *rdev) |
| 2188 | { |
Alex Deucher | 17db704 | 2010-12-21 16:05:39 -0500 | [diff] [blame] | 2189 | u32 srbm_status; |
| 2190 | u32 grbm_status; |
| 2191 | u32 grbm_status_se0, grbm_status_se1; |
| 2192 | struct r100_gpu_lockup *lockup = &rdev->config.evergreen.lockup; |
| 2193 | int r; |
| 2194 | |
| 2195 | srbm_status = RREG32(SRBM_STATUS); |
| 2196 | grbm_status = RREG32(GRBM_STATUS); |
| 2197 | grbm_status_se0 = RREG32(GRBM_STATUS_SE0); |
| 2198 | grbm_status_se1 = RREG32(GRBM_STATUS_SE1); |
| 2199 | if (!(grbm_status & GUI_ACTIVE)) { |
| 2200 | r100_gpu_lockup_update(lockup, &rdev->cp); |
| 2201 | return false; |
| 2202 | } |
| 2203 | /* force CP activities */ |
| 2204 | r = radeon_ring_lock(rdev, 2); |
| 2205 | if (!r) { |
| 2206 | /* PACKET2 NOP */ |
| 2207 | radeon_ring_write(rdev, 0x80000000); |
| 2208 | radeon_ring_write(rdev, 0x80000000); |
| 2209 | radeon_ring_unlock_commit(rdev); |
| 2210 | } |
| 2211 | rdev->cp.rptr = RREG32(CP_RB_RPTR); |
| 2212 | return r100_gpu_cp_is_lockup(rdev, lockup, &rdev->cp); |
Jerome Glisse | 225758d | 2010-03-09 14:45:10 +0000 | [diff] [blame] | 2213 | } |
| 2214 | |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2215 | static int evergreen_gpu_soft_reset(struct radeon_device *rdev) |
| 2216 | { |
| 2217 | struct evergreen_mc_save save; |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2218 | u32 grbm_reset = 0; |
| 2219 | |
Alex Deucher | 8d96fe9 | 2011-01-21 15:38:22 +0000 | [diff] [blame] | 2220 | if (!(RREG32(GRBM_STATUS) & GUI_ACTIVE)) |
| 2221 | return 0; |
| 2222 | |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2223 | dev_info(rdev->dev, "GPU softreset \n"); |
| 2224 | dev_info(rdev->dev, " GRBM_STATUS=0x%08X\n", |
| 2225 | RREG32(GRBM_STATUS)); |
| 2226 | dev_info(rdev->dev, " GRBM_STATUS_SE0=0x%08X\n", |
| 2227 | RREG32(GRBM_STATUS_SE0)); |
| 2228 | dev_info(rdev->dev, " GRBM_STATUS_SE1=0x%08X\n", |
| 2229 | RREG32(GRBM_STATUS_SE1)); |
| 2230 | dev_info(rdev->dev, " SRBM_STATUS=0x%08X\n", |
| 2231 | RREG32(SRBM_STATUS)); |
| 2232 | evergreen_mc_stop(rdev, &save); |
| 2233 | if (evergreen_mc_wait_for_idle(rdev)) { |
| 2234 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 2235 | } |
| 2236 | /* Disable CP parsing/prefetching */ |
| 2237 | WREG32(CP_ME_CNTL, CP_ME_HALT | CP_PFP_HALT); |
| 2238 | |
| 2239 | /* reset all the gfx blocks */ |
| 2240 | grbm_reset = (SOFT_RESET_CP | |
| 2241 | SOFT_RESET_CB | |
| 2242 | SOFT_RESET_DB | |
| 2243 | SOFT_RESET_PA | |
| 2244 | SOFT_RESET_SC | |
| 2245 | SOFT_RESET_SPI | |
| 2246 | SOFT_RESET_SH | |
| 2247 | SOFT_RESET_SX | |
| 2248 | SOFT_RESET_TC | |
| 2249 | SOFT_RESET_TA | |
| 2250 | SOFT_RESET_VC | |
| 2251 | SOFT_RESET_VGT); |
| 2252 | |
| 2253 | dev_info(rdev->dev, " GRBM_SOFT_RESET=0x%08X\n", grbm_reset); |
| 2254 | WREG32(GRBM_SOFT_RESET, grbm_reset); |
| 2255 | (void)RREG32(GRBM_SOFT_RESET); |
| 2256 | udelay(50); |
| 2257 | WREG32(GRBM_SOFT_RESET, 0); |
| 2258 | (void)RREG32(GRBM_SOFT_RESET); |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2259 | /* Wait a little for things to settle down */ |
| 2260 | udelay(50); |
| 2261 | dev_info(rdev->dev, " GRBM_STATUS=0x%08X\n", |
| 2262 | RREG32(GRBM_STATUS)); |
| 2263 | dev_info(rdev->dev, " GRBM_STATUS_SE0=0x%08X\n", |
| 2264 | RREG32(GRBM_STATUS_SE0)); |
| 2265 | dev_info(rdev->dev, " GRBM_STATUS_SE1=0x%08X\n", |
| 2266 | RREG32(GRBM_STATUS_SE1)); |
| 2267 | dev_info(rdev->dev, " SRBM_STATUS=0x%08X\n", |
| 2268 | RREG32(SRBM_STATUS)); |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2269 | evergreen_mc_resume(rdev, &save); |
| 2270 | return 0; |
| 2271 | } |
| 2272 | |
Jerome Glisse | a2d07b7 | 2010-03-09 14:45:11 +0000 | [diff] [blame] | 2273 | int evergreen_asic_reset(struct radeon_device *rdev) |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2274 | { |
Alex Deucher | 747943e | 2010-03-24 13:26:36 -0400 | [diff] [blame] | 2275 | return evergreen_gpu_soft_reset(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2276 | } |
| 2277 | |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2278 | /* Interrupts */ |
| 2279 | |
| 2280 | u32 evergreen_get_vblank_counter(struct radeon_device *rdev, int crtc) |
| 2281 | { |
| 2282 | switch (crtc) { |
| 2283 | case 0: |
| 2284 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC0_REGISTER_OFFSET); |
| 2285 | case 1: |
| 2286 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC1_REGISTER_OFFSET); |
| 2287 | case 2: |
| 2288 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC2_REGISTER_OFFSET); |
| 2289 | case 3: |
| 2290 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC3_REGISTER_OFFSET); |
| 2291 | case 4: |
| 2292 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC4_REGISTER_OFFSET); |
| 2293 | case 5: |
| 2294 | return RREG32(CRTC_STATUS_FRAME_COUNT + EVERGREEN_CRTC5_REGISTER_OFFSET); |
| 2295 | default: |
| 2296 | return 0; |
| 2297 | } |
| 2298 | } |
| 2299 | |
| 2300 | void evergreen_disable_interrupt_state(struct radeon_device *rdev) |
| 2301 | { |
| 2302 | u32 tmp; |
| 2303 | |
Alex Deucher | 3555e53 | 2010-10-08 12:09:12 -0400 | [diff] [blame] | 2304 | WREG32(CP_INT_CNTL, CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2305 | WREG32(GRBM_INT_CNTL, 0); |
| 2306 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 2307 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 2308 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 2309 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 2310 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| 2311 | WREG32(INT_MASK + EVERGREEN_CRTC4_REGISTER_OFFSET, 0); |
| 2312 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 2313 | } |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2314 | |
| 2315 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 2316 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 2317 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 2318 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 2319 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| 2320 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET, 0); |
| 2321 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 2322 | } |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2323 | |
| 2324 | WREG32(DACA_AUTODETECT_INT_CONTROL, 0); |
| 2325 | WREG32(DACB_AUTODETECT_INT_CONTROL, 0); |
| 2326 | |
| 2327 | tmp = RREG32(DC_HPD1_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2328 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 2329 | tmp = RREG32(DC_HPD2_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2330 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 2331 | tmp = RREG32(DC_HPD3_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2332 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 2333 | tmp = RREG32(DC_HPD4_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2334 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 2335 | tmp = RREG32(DC_HPD5_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2336 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
| 2337 | tmp = RREG32(DC_HPD6_INT_CONTROL) & DC_HPDx_INT_POLARITY; |
| 2338 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
| 2339 | |
| 2340 | } |
| 2341 | |
| 2342 | int evergreen_irq_set(struct radeon_device *rdev) |
| 2343 | { |
| 2344 | u32 cp_int_cntl = CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE; |
| 2345 | u32 crtc1 = 0, crtc2 = 0, crtc3 = 0, crtc4 = 0, crtc5 = 0, crtc6 = 0; |
| 2346 | u32 hpd1, hpd2, hpd3, hpd4, hpd5, hpd6; |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 2347 | u32 grbm_int_cntl = 0; |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2348 | u32 grph1 = 0, grph2 = 0, grph3 = 0, grph4 = 0, grph5 = 0, grph6 = 0; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2349 | |
| 2350 | if (!rdev->irq.installed) { |
Joe Perches | fce7d61 | 2010-10-30 21:08:30 +0000 | [diff] [blame] | 2351 | WARN(1, "Can't enable IRQ/MSI because no handler is installed\n"); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2352 | return -EINVAL; |
| 2353 | } |
| 2354 | /* don't enable anything if the ih is disabled */ |
| 2355 | if (!rdev->ih.enabled) { |
| 2356 | r600_disable_interrupts(rdev); |
| 2357 | /* force the active interrupt state to all disabled */ |
| 2358 | evergreen_disable_interrupt_state(rdev); |
| 2359 | return 0; |
| 2360 | } |
| 2361 | |
| 2362 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2363 | hpd2 = RREG32(DC_HPD2_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2364 | hpd3 = RREG32(DC_HPD3_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2365 | hpd4 = RREG32(DC_HPD4_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2366 | hpd5 = RREG32(DC_HPD5_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2367 | hpd6 = RREG32(DC_HPD6_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 2368 | |
| 2369 | if (rdev->irq.sw_int) { |
| 2370 | DRM_DEBUG("evergreen_irq_set: sw int\n"); |
| 2371 | cp_int_cntl |= RB_INT_ENABLE; |
Alex Deucher | d0f8a85 | 2010-09-04 05:04:34 -0400 | [diff] [blame] | 2372 | cp_int_cntl |= TIME_STAMP_INT_ENABLE; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2373 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2374 | if (rdev->irq.crtc_vblank_int[0] || |
| 2375 | rdev->irq.pflip[0]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2376 | DRM_DEBUG("evergreen_irq_set: vblank 0\n"); |
| 2377 | crtc1 |= VBLANK_INT_MASK; |
| 2378 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2379 | if (rdev->irq.crtc_vblank_int[1] || |
| 2380 | rdev->irq.pflip[1]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2381 | DRM_DEBUG("evergreen_irq_set: vblank 1\n"); |
| 2382 | crtc2 |= VBLANK_INT_MASK; |
| 2383 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2384 | if (rdev->irq.crtc_vblank_int[2] || |
| 2385 | rdev->irq.pflip[2]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2386 | DRM_DEBUG("evergreen_irq_set: vblank 2\n"); |
| 2387 | crtc3 |= VBLANK_INT_MASK; |
| 2388 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2389 | if (rdev->irq.crtc_vblank_int[3] || |
| 2390 | rdev->irq.pflip[3]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2391 | DRM_DEBUG("evergreen_irq_set: vblank 3\n"); |
| 2392 | crtc4 |= VBLANK_INT_MASK; |
| 2393 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2394 | if (rdev->irq.crtc_vblank_int[4] || |
| 2395 | rdev->irq.pflip[4]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2396 | DRM_DEBUG("evergreen_irq_set: vblank 4\n"); |
| 2397 | crtc5 |= VBLANK_INT_MASK; |
| 2398 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2399 | if (rdev->irq.crtc_vblank_int[5] || |
| 2400 | rdev->irq.pflip[5]) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2401 | DRM_DEBUG("evergreen_irq_set: vblank 5\n"); |
| 2402 | crtc6 |= VBLANK_INT_MASK; |
| 2403 | } |
| 2404 | if (rdev->irq.hpd[0]) { |
| 2405 | DRM_DEBUG("evergreen_irq_set: hpd 1\n"); |
| 2406 | hpd1 |= DC_HPDx_INT_EN; |
| 2407 | } |
| 2408 | if (rdev->irq.hpd[1]) { |
| 2409 | DRM_DEBUG("evergreen_irq_set: hpd 2\n"); |
| 2410 | hpd2 |= DC_HPDx_INT_EN; |
| 2411 | } |
| 2412 | if (rdev->irq.hpd[2]) { |
| 2413 | DRM_DEBUG("evergreen_irq_set: hpd 3\n"); |
| 2414 | hpd3 |= DC_HPDx_INT_EN; |
| 2415 | } |
| 2416 | if (rdev->irq.hpd[3]) { |
| 2417 | DRM_DEBUG("evergreen_irq_set: hpd 4\n"); |
| 2418 | hpd4 |= DC_HPDx_INT_EN; |
| 2419 | } |
| 2420 | if (rdev->irq.hpd[4]) { |
| 2421 | DRM_DEBUG("evergreen_irq_set: hpd 5\n"); |
| 2422 | hpd5 |= DC_HPDx_INT_EN; |
| 2423 | } |
| 2424 | if (rdev->irq.hpd[5]) { |
| 2425 | DRM_DEBUG("evergreen_irq_set: hpd 6\n"); |
| 2426 | hpd6 |= DC_HPDx_INT_EN; |
| 2427 | } |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 2428 | if (rdev->irq.gui_idle) { |
| 2429 | DRM_DEBUG("gui idle\n"); |
| 2430 | grbm_int_cntl |= GUI_IDLE_INT_ENABLE; |
| 2431 | } |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2432 | |
| 2433 | WREG32(CP_INT_CNTL, cp_int_cntl); |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 2434 | WREG32(GRBM_INT_CNTL, grbm_int_cntl); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2435 | |
| 2436 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, crtc1); |
| 2437 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, crtc2); |
Alex Deucher | 1800740 | 2010-11-22 17:56:28 -0500 | [diff] [blame] | 2438 | if (!(rdev->flags & RADEON_IS_IGP)) { |
| 2439 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, crtc3); |
| 2440 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, crtc4); |
| 2441 | WREG32(INT_MASK + EVERGREEN_CRTC4_REGISTER_OFFSET, crtc5); |
| 2442 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, crtc6); |
| 2443 | } |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2444 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2445 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, grph1); |
| 2446 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, grph2); |
| 2447 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, grph3); |
| 2448 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, grph4); |
| 2449 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET, grph5); |
| 2450 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, grph6); |
| 2451 | |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2452 | WREG32(DC_HPD1_INT_CONTROL, hpd1); |
| 2453 | WREG32(DC_HPD2_INT_CONTROL, hpd2); |
| 2454 | WREG32(DC_HPD3_INT_CONTROL, hpd3); |
| 2455 | WREG32(DC_HPD4_INT_CONTROL, hpd4); |
| 2456 | WREG32(DC_HPD5_INT_CONTROL, hpd5); |
| 2457 | WREG32(DC_HPD6_INT_CONTROL, hpd6); |
| 2458 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2459 | return 0; |
| 2460 | } |
| 2461 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2462 | static inline void evergreen_irq_ack(struct radeon_device *rdev) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2463 | { |
| 2464 | u32 tmp; |
| 2465 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2466 | rdev->irq.stat_regs.evergreen.disp_int = RREG32(DISP_INTERRUPT_STATUS); |
| 2467 | rdev->irq.stat_regs.evergreen.disp_int_cont = RREG32(DISP_INTERRUPT_STATUS_CONTINUE); |
| 2468 | rdev->irq.stat_regs.evergreen.disp_int_cont2 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE2); |
| 2469 | rdev->irq.stat_regs.evergreen.disp_int_cont3 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE3); |
| 2470 | rdev->irq.stat_regs.evergreen.disp_int_cont4 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE4); |
| 2471 | rdev->irq.stat_regs.evergreen.disp_int_cont5 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE5); |
| 2472 | rdev->irq.stat_regs.evergreen.d1grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC0_REGISTER_OFFSET); |
| 2473 | rdev->irq.stat_regs.evergreen.d2grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC1_REGISTER_OFFSET); |
| 2474 | rdev->irq.stat_regs.evergreen.d3grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC2_REGISTER_OFFSET); |
| 2475 | rdev->irq.stat_regs.evergreen.d4grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC3_REGISTER_OFFSET); |
| 2476 | rdev->irq.stat_regs.evergreen.d5grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC4_REGISTER_OFFSET); |
| 2477 | rdev->irq.stat_regs.evergreen.d6grph_int = RREG32(GRPH_INT_STATUS + EVERGREEN_CRTC5_REGISTER_OFFSET); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2478 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2479 | if (rdev->irq.stat_regs.evergreen.d1grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2480 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC0_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2481 | if (rdev->irq.stat_regs.evergreen.d2grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2482 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC1_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2483 | if (rdev->irq.stat_regs.evergreen.d3grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2484 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC2_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2485 | if (rdev->irq.stat_regs.evergreen.d4grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2486 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC3_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2487 | if (rdev->irq.stat_regs.evergreen.d5grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2488 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC4_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2489 | if (rdev->irq.stat_regs.evergreen.d6grph_int & GRPH_PFLIP_INT_OCCURRED) |
| 2490 | WREG32(GRPH_INT_STATUS + EVERGREEN_CRTC5_REGISTER_OFFSET, GRPH_PFLIP_INT_CLEAR); |
| 2491 | |
| 2492 | if (rdev->irq.stat_regs.evergreen.disp_int & LB_D1_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2493 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC0_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2494 | if (rdev->irq.stat_regs.evergreen.disp_int & LB_D1_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2495 | WREG32(VLINE_STATUS + EVERGREEN_CRTC0_REGISTER_OFFSET, VLINE_ACK); |
| 2496 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2497 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & LB_D2_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2498 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC1_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2499 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & LB_D2_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2500 | WREG32(VLINE_STATUS + EVERGREEN_CRTC1_REGISTER_OFFSET, VLINE_ACK); |
| 2501 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2502 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & LB_D3_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2503 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC2_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2504 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & LB_D3_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2505 | WREG32(VLINE_STATUS + EVERGREEN_CRTC2_REGISTER_OFFSET, VLINE_ACK); |
| 2506 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2507 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & LB_D4_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2508 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC3_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2509 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & LB_D4_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2510 | WREG32(VLINE_STATUS + EVERGREEN_CRTC3_REGISTER_OFFSET, VLINE_ACK); |
| 2511 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2512 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & LB_D5_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2513 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC4_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2514 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & LB_D5_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2515 | WREG32(VLINE_STATUS + EVERGREEN_CRTC4_REGISTER_OFFSET, VLINE_ACK); |
| 2516 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2517 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & LB_D6_VBLANK_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2518 | WREG32(VBLANK_STATUS + EVERGREEN_CRTC5_REGISTER_OFFSET, VBLANK_ACK); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2519 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & LB_D6_VLINE_INTERRUPT) |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2520 | WREG32(VLINE_STATUS + EVERGREEN_CRTC5_REGISTER_OFFSET, VLINE_ACK); |
| 2521 | |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2522 | if (rdev->irq.stat_regs.evergreen.disp_int & DC_HPD1_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2523 | tmp = RREG32(DC_HPD1_INT_CONTROL); |
| 2524 | tmp |= DC_HPDx_INT_ACK; |
| 2525 | WREG32(DC_HPD1_INT_CONTROL, tmp); |
| 2526 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2527 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & DC_HPD2_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2528 | tmp = RREG32(DC_HPD2_INT_CONTROL); |
| 2529 | tmp |= DC_HPDx_INT_ACK; |
| 2530 | WREG32(DC_HPD2_INT_CONTROL, tmp); |
| 2531 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2532 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & DC_HPD3_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2533 | tmp = RREG32(DC_HPD3_INT_CONTROL); |
| 2534 | tmp |= DC_HPDx_INT_ACK; |
| 2535 | WREG32(DC_HPD3_INT_CONTROL, tmp); |
| 2536 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2537 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & DC_HPD4_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2538 | tmp = RREG32(DC_HPD4_INT_CONTROL); |
| 2539 | tmp |= DC_HPDx_INT_ACK; |
| 2540 | WREG32(DC_HPD4_INT_CONTROL, tmp); |
| 2541 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2542 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & DC_HPD5_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2543 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 2544 | tmp |= DC_HPDx_INT_ACK; |
| 2545 | WREG32(DC_HPD5_INT_CONTROL, tmp); |
| 2546 | } |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2547 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & DC_HPD6_INTERRUPT) { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2548 | tmp = RREG32(DC_HPD5_INT_CONTROL); |
| 2549 | tmp |= DC_HPDx_INT_ACK; |
| 2550 | WREG32(DC_HPD6_INT_CONTROL, tmp); |
| 2551 | } |
| 2552 | } |
| 2553 | |
| 2554 | void evergreen_irq_disable(struct radeon_device *rdev) |
| 2555 | { |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2556 | r600_disable_interrupts(rdev); |
| 2557 | /* Wait and acknowledge irq */ |
| 2558 | mdelay(1); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2559 | evergreen_irq_ack(rdev); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2560 | evergreen_disable_interrupt_state(rdev); |
| 2561 | } |
| 2562 | |
| 2563 | static void evergreen_irq_suspend(struct radeon_device *rdev) |
| 2564 | { |
| 2565 | evergreen_irq_disable(rdev); |
| 2566 | r600_rlc_stop(rdev); |
| 2567 | } |
| 2568 | |
| 2569 | static inline u32 evergreen_get_ih_wptr(struct radeon_device *rdev) |
| 2570 | { |
| 2571 | u32 wptr, tmp; |
| 2572 | |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2573 | if (rdev->wb.enabled) |
| 2574 | wptr = rdev->wb.wb[R600_WB_IH_WPTR_OFFSET/4]; |
| 2575 | else |
| 2576 | wptr = RREG32(IH_RB_WPTR); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2577 | |
| 2578 | if (wptr & RB_OVERFLOW) { |
| 2579 | /* When a ring buffer overflow happen start parsing interrupt |
| 2580 | * from the last not overwritten vector (wptr + 16). Hopefully |
| 2581 | * this should allow us to catchup. |
| 2582 | */ |
| 2583 | dev_warn(rdev->dev, "IH ring buffer overflow (0x%08X, %d, %d)\n", |
| 2584 | wptr, rdev->ih.rptr, (wptr + 16) + rdev->ih.ptr_mask); |
| 2585 | rdev->ih.rptr = (wptr + 16) & rdev->ih.ptr_mask; |
| 2586 | tmp = RREG32(IH_RB_CNTL); |
| 2587 | tmp |= IH_WPTR_OVERFLOW_CLEAR; |
| 2588 | WREG32(IH_RB_CNTL, tmp); |
| 2589 | } |
| 2590 | return (wptr & rdev->ih.ptr_mask); |
| 2591 | } |
| 2592 | |
| 2593 | int evergreen_irq_process(struct radeon_device *rdev) |
| 2594 | { |
| 2595 | u32 wptr = evergreen_get_ih_wptr(rdev); |
| 2596 | u32 rptr = rdev->ih.rptr; |
| 2597 | u32 src_id, src_data; |
| 2598 | u32 ring_index; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2599 | unsigned long flags; |
| 2600 | bool queue_hotplug = false; |
| 2601 | |
| 2602 | DRM_DEBUG("r600_irq_process start: rptr %d, wptr %d\n", rptr, wptr); |
| 2603 | if (!rdev->ih.enabled) |
| 2604 | return IRQ_NONE; |
| 2605 | |
| 2606 | spin_lock_irqsave(&rdev->ih.lock, flags); |
| 2607 | |
| 2608 | if (rptr == wptr) { |
| 2609 | spin_unlock_irqrestore(&rdev->ih.lock, flags); |
| 2610 | return IRQ_NONE; |
| 2611 | } |
| 2612 | if (rdev->shutdown) { |
| 2613 | spin_unlock_irqrestore(&rdev->ih.lock, flags); |
| 2614 | return IRQ_NONE; |
| 2615 | } |
| 2616 | |
| 2617 | restart_ih: |
| 2618 | /* display interrupts */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2619 | evergreen_irq_ack(rdev); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2620 | |
| 2621 | rdev->ih.wptr = wptr; |
| 2622 | while (rptr != wptr) { |
| 2623 | /* wptr/rptr are in bytes! */ |
| 2624 | ring_index = rptr / 4; |
| 2625 | src_id = rdev->ih.ring[ring_index] & 0xff; |
| 2626 | src_data = rdev->ih.ring[ring_index + 1] & 0xfffffff; |
| 2627 | |
| 2628 | switch (src_id) { |
| 2629 | case 1: /* D1 vblank/vline */ |
| 2630 | switch (src_data) { |
| 2631 | case 0: /* D1 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2632 | if (rdev->irq.stat_regs.evergreen.disp_int & LB_D1_VBLANK_INTERRUPT) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2633 | if (rdev->irq.crtc_vblank_int[0]) { |
| 2634 | drm_handle_vblank(rdev->ddev, 0); |
| 2635 | rdev->pm.vblank_sync = true; |
| 2636 | wake_up(&rdev->irq.vblank_queue); |
| 2637 | } |
Mario Kleiner | 3e4ea74 | 2010-11-21 10:59:02 -0500 | [diff] [blame] | 2638 | if (rdev->irq.pflip[0]) |
| 2639 | radeon_crtc_handle_flip(rdev, 0); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2640 | rdev->irq.stat_regs.evergreen.disp_int &= ~LB_D1_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2641 | DRM_DEBUG("IH: D1 vblank\n"); |
| 2642 | } |
| 2643 | break; |
| 2644 | case 1: /* D1 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2645 | if (rdev->irq.stat_regs.evergreen.disp_int & LB_D1_VLINE_INTERRUPT) { |
| 2646 | rdev->irq.stat_regs.evergreen.disp_int &= ~LB_D1_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2647 | DRM_DEBUG("IH: D1 vline\n"); |
| 2648 | } |
| 2649 | break; |
| 2650 | default: |
| 2651 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2652 | break; |
| 2653 | } |
| 2654 | break; |
| 2655 | case 2: /* D2 vblank/vline */ |
| 2656 | switch (src_data) { |
| 2657 | case 0: /* D2 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2658 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & LB_D2_VBLANK_INTERRUPT) { |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2659 | if (rdev->irq.crtc_vblank_int[1]) { |
| 2660 | drm_handle_vblank(rdev->ddev, 1); |
| 2661 | rdev->pm.vblank_sync = true; |
| 2662 | wake_up(&rdev->irq.vblank_queue); |
| 2663 | } |
Mario Kleiner | 3e4ea74 | 2010-11-21 10:59:02 -0500 | [diff] [blame] | 2664 | if (rdev->irq.pflip[1]) |
| 2665 | radeon_crtc_handle_flip(rdev, 1); |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2666 | rdev->irq.stat_regs.evergreen.disp_int_cont &= ~LB_D2_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2667 | DRM_DEBUG("IH: D2 vblank\n"); |
| 2668 | } |
| 2669 | break; |
| 2670 | case 1: /* D2 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2671 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & LB_D2_VLINE_INTERRUPT) { |
| 2672 | rdev->irq.stat_regs.evergreen.disp_int_cont &= ~LB_D2_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2673 | DRM_DEBUG("IH: D2 vline\n"); |
| 2674 | } |
| 2675 | break; |
| 2676 | default: |
| 2677 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2678 | break; |
| 2679 | } |
| 2680 | break; |
| 2681 | case 3: /* D3 vblank/vline */ |
| 2682 | switch (src_data) { |
| 2683 | case 0: /* D3 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2684 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & LB_D3_VBLANK_INTERRUPT) { |
| 2685 | if (rdev->irq.crtc_vblank_int[2]) { |
| 2686 | drm_handle_vblank(rdev->ddev, 2); |
| 2687 | rdev->pm.vblank_sync = true; |
| 2688 | wake_up(&rdev->irq.vblank_queue); |
| 2689 | } |
| 2690 | if (rdev->irq.pflip[2]) |
| 2691 | radeon_crtc_handle_flip(rdev, 2); |
| 2692 | rdev->irq.stat_regs.evergreen.disp_int_cont2 &= ~LB_D3_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2693 | DRM_DEBUG("IH: D3 vblank\n"); |
| 2694 | } |
| 2695 | break; |
| 2696 | case 1: /* D3 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2697 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & LB_D3_VLINE_INTERRUPT) { |
| 2698 | rdev->irq.stat_regs.evergreen.disp_int_cont2 &= ~LB_D3_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2699 | DRM_DEBUG("IH: D3 vline\n"); |
| 2700 | } |
| 2701 | break; |
| 2702 | default: |
| 2703 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2704 | break; |
| 2705 | } |
| 2706 | break; |
| 2707 | case 4: /* D4 vblank/vline */ |
| 2708 | switch (src_data) { |
| 2709 | case 0: /* D4 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2710 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & LB_D4_VBLANK_INTERRUPT) { |
| 2711 | if (rdev->irq.crtc_vblank_int[3]) { |
| 2712 | drm_handle_vblank(rdev->ddev, 3); |
| 2713 | rdev->pm.vblank_sync = true; |
| 2714 | wake_up(&rdev->irq.vblank_queue); |
| 2715 | } |
| 2716 | if (rdev->irq.pflip[3]) |
| 2717 | radeon_crtc_handle_flip(rdev, 3); |
| 2718 | rdev->irq.stat_regs.evergreen.disp_int_cont3 &= ~LB_D4_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2719 | DRM_DEBUG("IH: D4 vblank\n"); |
| 2720 | } |
| 2721 | break; |
| 2722 | case 1: /* D4 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2723 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & LB_D4_VLINE_INTERRUPT) { |
| 2724 | rdev->irq.stat_regs.evergreen.disp_int_cont3 &= ~LB_D4_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2725 | DRM_DEBUG("IH: D4 vline\n"); |
| 2726 | } |
| 2727 | break; |
| 2728 | default: |
| 2729 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2730 | break; |
| 2731 | } |
| 2732 | break; |
| 2733 | case 5: /* D5 vblank/vline */ |
| 2734 | switch (src_data) { |
| 2735 | case 0: /* D5 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2736 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & LB_D5_VBLANK_INTERRUPT) { |
| 2737 | if (rdev->irq.crtc_vblank_int[4]) { |
| 2738 | drm_handle_vblank(rdev->ddev, 4); |
| 2739 | rdev->pm.vblank_sync = true; |
| 2740 | wake_up(&rdev->irq.vblank_queue); |
| 2741 | } |
| 2742 | if (rdev->irq.pflip[4]) |
| 2743 | radeon_crtc_handle_flip(rdev, 4); |
| 2744 | rdev->irq.stat_regs.evergreen.disp_int_cont4 &= ~LB_D5_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2745 | DRM_DEBUG("IH: D5 vblank\n"); |
| 2746 | } |
| 2747 | break; |
| 2748 | case 1: /* D5 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2749 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & LB_D5_VLINE_INTERRUPT) { |
| 2750 | rdev->irq.stat_regs.evergreen.disp_int_cont4 &= ~LB_D5_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2751 | DRM_DEBUG("IH: D5 vline\n"); |
| 2752 | } |
| 2753 | break; |
| 2754 | default: |
| 2755 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2756 | break; |
| 2757 | } |
| 2758 | break; |
| 2759 | case 6: /* D6 vblank/vline */ |
| 2760 | switch (src_data) { |
| 2761 | case 0: /* D6 vblank */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2762 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & LB_D6_VBLANK_INTERRUPT) { |
| 2763 | if (rdev->irq.crtc_vblank_int[5]) { |
| 2764 | drm_handle_vblank(rdev->ddev, 5); |
| 2765 | rdev->pm.vblank_sync = true; |
| 2766 | wake_up(&rdev->irq.vblank_queue); |
| 2767 | } |
| 2768 | if (rdev->irq.pflip[5]) |
| 2769 | radeon_crtc_handle_flip(rdev, 5); |
| 2770 | rdev->irq.stat_regs.evergreen.disp_int_cont5 &= ~LB_D6_VBLANK_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2771 | DRM_DEBUG("IH: D6 vblank\n"); |
| 2772 | } |
| 2773 | break; |
| 2774 | case 1: /* D6 vline */ |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2775 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & LB_D6_VLINE_INTERRUPT) { |
| 2776 | rdev->irq.stat_regs.evergreen.disp_int_cont5 &= ~LB_D6_VLINE_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2777 | DRM_DEBUG("IH: D6 vline\n"); |
| 2778 | } |
| 2779 | break; |
| 2780 | default: |
| 2781 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2782 | break; |
| 2783 | } |
| 2784 | break; |
| 2785 | case 42: /* HPD hotplug */ |
| 2786 | switch (src_data) { |
| 2787 | case 0: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2788 | if (rdev->irq.stat_regs.evergreen.disp_int & DC_HPD1_INTERRUPT) { |
| 2789 | rdev->irq.stat_regs.evergreen.disp_int &= ~DC_HPD1_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2790 | queue_hotplug = true; |
| 2791 | DRM_DEBUG("IH: HPD1\n"); |
| 2792 | } |
| 2793 | break; |
| 2794 | case 1: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2795 | if (rdev->irq.stat_regs.evergreen.disp_int_cont & DC_HPD2_INTERRUPT) { |
| 2796 | rdev->irq.stat_regs.evergreen.disp_int_cont &= ~DC_HPD2_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2797 | queue_hotplug = true; |
| 2798 | DRM_DEBUG("IH: HPD2\n"); |
| 2799 | } |
| 2800 | break; |
| 2801 | case 2: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2802 | if (rdev->irq.stat_regs.evergreen.disp_int_cont2 & DC_HPD3_INTERRUPT) { |
| 2803 | rdev->irq.stat_regs.evergreen.disp_int_cont2 &= ~DC_HPD3_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2804 | queue_hotplug = true; |
| 2805 | DRM_DEBUG("IH: HPD3\n"); |
| 2806 | } |
| 2807 | break; |
| 2808 | case 3: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2809 | if (rdev->irq.stat_regs.evergreen.disp_int_cont3 & DC_HPD4_INTERRUPT) { |
| 2810 | rdev->irq.stat_regs.evergreen.disp_int_cont3 &= ~DC_HPD4_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2811 | queue_hotplug = true; |
| 2812 | DRM_DEBUG("IH: HPD4\n"); |
| 2813 | } |
| 2814 | break; |
| 2815 | case 4: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2816 | if (rdev->irq.stat_regs.evergreen.disp_int_cont4 & DC_HPD5_INTERRUPT) { |
| 2817 | rdev->irq.stat_regs.evergreen.disp_int_cont4 &= ~DC_HPD5_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2818 | queue_hotplug = true; |
| 2819 | DRM_DEBUG("IH: HPD5\n"); |
| 2820 | } |
| 2821 | break; |
| 2822 | case 5: |
Alex Deucher | 6f34be5 | 2010-11-21 10:59:01 -0500 | [diff] [blame] | 2823 | if (rdev->irq.stat_regs.evergreen.disp_int_cont5 & DC_HPD6_INTERRUPT) { |
| 2824 | rdev->irq.stat_regs.evergreen.disp_int_cont5 &= ~DC_HPD6_INTERRUPT; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2825 | queue_hotplug = true; |
| 2826 | DRM_DEBUG("IH: HPD6\n"); |
| 2827 | } |
| 2828 | break; |
| 2829 | default: |
| 2830 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2831 | break; |
| 2832 | } |
| 2833 | break; |
| 2834 | case 176: /* CP_INT in ring buffer */ |
| 2835 | case 177: /* CP_INT in IB1 */ |
| 2836 | case 178: /* CP_INT in IB2 */ |
| 2837 | DRM_DEBUG("IH: CP int: 0x%08x\n", src_data); |
| 2838 | radeon_fence_process(rdev); |
| 2839 | break; |
| 2840 | case 181: /* CP EOP event */ |
| 2841 | DRM_DEBUG("IH: CP EOP\n"); |
Alex Deucher | d0f8a85 | 2010-09-04 05:04:34 -0400 | [diff] [blame] | 2842 | radeon_fence_process(rdev); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2843 | break; |
Alex Deucher | 2031f77 | 2010-04-22 12:52:11 -0400 | [diff] [blame] | 2844 | case 233: /* GUI IDLE */ |
| 2845 | DRM_DEBUG("IH: CP EOP\n"); |
| 2846 | rdev->pm.gui_idle = true; |
| 2847 | wake_up(&rdev->irq.idle_queue); |
| 2848 | break; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2849 | default: |
| 2850 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2851 | break; |
| 2852 | } |
| 2853 | |
| 2854 | /* wptr/rptr are in bytes! */ |
| 2855 | rptr += 16; |
| 2856 | rptr &= rdev->ih.ptr_mask; |
| 2857 | } |
| 2858 | /* make sure wptr hasn't changed while processing */ |
| 2859 | wptr = evergreen_get_ih_wptr(rdev); |
| 2860 | if (wptr != rdev->ih.wptr) |
| 2861 | goto restart_ih; |
| 2862 | if (queue_hotplug) |
Tejun Heo | 32c87fc | 2011-01-03 14:49:32 +0100 | [diff] [blame] | 2863 | schedule_work(&rdev->hotplug_work); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2864 | rdev->ih.rptr = rptr; |
| 2865 | WREG32(IH_RB_RPTR, rdev->ih.rptr); |
| 2866 | spin_unlock_irqrestore(&rdev->ih.lock, flags); |
| 2867 | return IRQ_HANDLED; |
| 2868 | } |
| 2869 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2870 | static int evergreen_startup(struct radeon_device *rdev) |
| 2871 | { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2872 | int r; |
| 2873 | |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 2874 | /* enable pcie gen2 link */ |
Alex Deucher | 0d1014a | 2011-01-06 21:19:34 -0500 | [diff] [blame] | 2875 | if (!ASIC_IS_DCE5(rdev)) |
| 2876 | evergreen_pcie_gen2_enable(rdev); |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 2877 | |
Alex Deucher | 0af62b0 | 2011-01-06 21:19:31 -0500 | [diff] [blame] | 2878 | if (ASIC_IS_DCE5(rdev)) { |
| 2879 | if (!rdev->me_fw || !rdev->pfp_fw || !rdev->rlc_fw || !rdev->mc_fw) { |
| 2880 | r = ni_init_microcode(rdev); |
| 2881 | if (r) { |
| 2882 | DRM_ERROR("Failed to load firmware!\n"); |
| 2883 | return r; |
| 2884 | } |
| 2885 | } |
| 2886 | r = btc_mc_load_microcode(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2887 | if (r) { |
Alex Deucher | 0af62b0 | 2011-01-06 21:19:31 -0500 | [diff] [blame] | 2888 | DRM_ERROR("Failed to load MC firmware!\n"); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2889 | return r; |
| 2890 | } |
Alex Deucher | 0af62b0 | 2011-01-06 21:19:31 -0500 | [diff] [blame] | 2891 | } else { |
| 2892 | if (!rdev->me_fw || !rdev->pfp_fw || !rdev->rlc_fw) { |
| 2893 | r = r600_init_microcode(rdev); |
| 2894 | if (r) { |
| 2895 | DRM_ERROR("Failed to load firmware!\n"); |
| 2896 | return r; |
| 2897 | } |
| 2898 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2899 | } |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2900 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2901 | evergreen_mc_program(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2902 | if (rdev->flags & RADEON_IS_AGP) { |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 2903 | evergreen_agp_enable(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2904 | } else { |
| 2905 | r = evergreen_pcie_gart_enable(rdev); |
| 2906 | if (r) |
| 2907 | return r; |
| 2908 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2909 | evergreen_gpu_init(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2910 | |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 2911 | r = evergreen_blit_init(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2912 | if (r) { |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 2913 | evergreen_blit_fini(rdev); |
| 2914 | rdev->asic->copy = NULL; |
| 2915 | dev_warn(rdev->dev, "failed blitter (%d) falling back to memcpy\n", r); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2916 | } |
Alex Deucher | 880981e | 2010-12-21 16:16:13 -0500 | [diff] [blame] | 2917 | /* XXX: ontario has problems blitting to gart at the moment */ |
| 2918 | if (rdev->family == CHIP_PALM) { |
| 2919 | rdev->asic->copy = NULL; |
| 2920 | rdev->mc.active_vram_size = rdev->mc.visible_vram_size; |
| 2921 | } |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2922 | |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2923 | /* allocate wb buffer */ |
| 2924 | r = radeon_wb_init(rdev); |
| 2925 | if (r) |
| 2926 | return r; |
| 2927 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2928 | /* Enable IRQ */ |
| 2929 | r = r600_irq_init(rdev); |
| 2930 | if (r) { |
| 2931 | DRM_ERROR("radeon: IH init failed (%d).\n", r); |
| 2932 | radeon_irq_kms_fini(rdev); |
| 2933 | return r; |
| 2934 | } |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2935 | evergreen_irq_set(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2936 | |
| 2937 | r = radeon_ring_init(rdev, rdev->cp.ring_size); |
| 2938 | if (r) |
| 2939 | return r; |
| 2940 | r = evergreen_cp_load_microcode(rdev); |
| 2941 | if (r) |
| 2942 | return r; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2943 | r = evergreen_cp_resume(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2944 | if (r) |
| 2945 | return r; |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2946 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2947 | return 0; |
| 2948 | } |
| 2949 | |
| 2950 | int evergreen_resume(struct radeon_device *rdev) |
| 2951 | { |
| 2952 | int r; |
| 2953 | |
Alex Deucher | 86f5c9e | 2010-12-20 12:35:04 -0500 | [diff] [blame] | 2954 | /* reset the asic, the gfx blocks are often in a bad state |
| 2955 | * after the driver is unloaded or after a resume |
| 2956 | */ |
| 2957 | if (radeon_asic_reset(rdev)) |
| 2958 | dev_warn(rdev->dev, "GPU reset failed !\n"); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2959 | /* Do not reset GPU before posting, on rv770 hw unlike on r500 hw, |
| 2960 | * posting will perform necessary task to bring back GPU into good |
| 2961 | * shape. |
| 2962 | */ |
| 2963 | /* post card */ |
| 2964 | atom_asic_init(rdev->mode_info.atom_context); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2965 | |
| 2966 | r = evergreen_startup(rdev); |
| 2967 | if (r) { |
| 2968 | DRM_ERROR("r600 startup failed on resume\n"); |
| 2969 | return r; |
| 2970 | } |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2971 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2972 | r = r600_ib_test(rdev); |
| 2973 | if (r) { |
| 2974 | DRM_ERROR("radeon: failled testing IB (%d).\n", r); |
| 2975 | return r; |
| 2976 | } |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 2977 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2978 | return r; |
| 2979 | |
| 2980 | } |
| 2981 | |
| 2982 | int evergreen_suspend(struct radeon_device *rdev) |
| 2983 | { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2984 | int r; |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 2985 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2986 | /* FIXME: we should wait for ring to be empty */ |
| 2987 | r700_cp_stop(rdev); |
| 2988 | rdev->cp.ready = false; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 2989 | evergreen_irq_suspend(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 2990 | radeon_wb_disable(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2991 | evergreen_pcie_gart_disable(rdev); |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 2992 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 2993 | /* unpin shaders bo */ |
| 2994 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); |
| 2995 | if (likely(r == 0)) { |
| 2996 | radeon_bo_unpin(rdev->r600_blit.shader_obj); |
| 2997 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); |
| 2998 | } |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 2999 | |
| 3000 | return 0; |
| 3001 | } |
| 3002 | |
| 3003 | int evergreen_copy_blit(struct radeon_device *rdev, |
| 3004 | uint64_t src_offset, uint64_t dst_offset, |
| 3005 | unsigned num_pages, struct radeon_fence *fence) |
| 3006 | { |
| 3007 | int r; |
| 3008 | |
| 3009 | mutex_lock(&rdev->r600_blit.mutex); |
| 3010 | rdev->r600_blit.vb_ib = NULL; |
| 3011 | r = evergreen_blit_prepare_copy(rdev, num_pages * RADEON_GPU_PAGE_SIZE); |
| 3012 | if (r) { |
| 3013 | if (rdev->r600_blit.vb_ib) |
| 3014 | radeon_ib_free(rdev, &rdev->r600_blit.vb_ib); |
| 3015 | mutex_unlock(&rdev->r600_blit.mutex); |
| 3016 | return r; |
| 3017 | } |
| 3018 | evergreen_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * RADEON_GPU_PAGE_SIZE); |
| 3019 | evergreen_blit_done_copy(rdev, fence); |
| 3020 | mutex_unlock(&rdev->r600_blit.mutex); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3021 | return 0; |
| 3022 | } |
| 3023 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3024 | /* Plan is to move initialization in that function and use |
| 3025 | * helper function so that radeon_device_init pretty much |
| 3026 | * do nothing more than calling asic specific function. This |
| 3027 | * should also allow to remove a bunch of callback function |
| 3028 | * like vram_info. |
| 3029 | */ |
| 3030 | int evergreen_init(struct radeon_device *rdev) |
| 3031 | { |
| 3032 | int r; |
| 3033 | |
| 3034 | r = radeon_dummy_page_init(rdev); |
| 3035 | if (r) |
| 3036 | return r; |
| 3037 | /* This don't do much */ |
| 3038 | r = radeon_gem_init(rdev); |
| 3039 | if (r) |
| 3040 | return r; |
| 3041 | /* Read BIOS */ |
| 3042 | if (!radeon_get_bios(rdev)) { |
| 3043 | if (ASIC_IS_AVIVO(rdev)) |
| 3044 | return -EINVAL; |
| 3045 | } |
| 3046 | /* Must be an ATOMBIOS */ |
| 3047 | if (!rdev->is_atom_bios) { |
| 3048 | dev_err(rdev->dev, "Expecting atombios for R600 GPU\n"); |
| 3049 | return -EINVAL; |
| 3050 | } |
| 3051 | r = radeon_atombios_init(rdev); |
| 3052 | if (r) |
| 3053 | return r; |
Alex Deucher | 86f5c9e | 2010-12-20 12:35:04 -0500 | [diff] [blame] | 3054 | /* reset the asic, the gfx blocks are often in a bad state |
| 3055 | * after the driver is unloaded or after a resume |
| 3056 | */ |
| 3057 | if (radeon_asic_reset(rdev)) |
| 3058 | dev_warn(rdev->dev, "GPU reset failed !\n"); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3059 | /* Post card if necessary */ |
Alex Deucher | fd909c3 | 2011-01-11 18:08:59 -0500 | [diff] [blame] | 3060 | if (!radeon_card_posted(rdev)) { |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3061 | if (!rdev->bios) { |
| 3062 | dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n"); |
| 3063 | return -EINVAL; |
| 3064 | } |
| 3065 | DRM_INFO("GPU not posted. posting now...\n"); |
| 3066 | atom_asic_init(rdev->mode_info.atom_context); |
| 3067 | } |
| 3068 | /* Initialize scratch registers */ |
| 3069 | r600_scratch_init(rdev); |
| 3070 | /* Initialize surface registers */ |
| 3071 | radeon_surface_init(rdev); |
| 3072 | /* Initialize clocks */ |
| 3073 | radeon_get_clock_info(rdev->ddev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3074 | /* Fence driver */ |
| 3075 | r = radeon_fence_driver_init(rdev); |
| 3076 | if (r) |
| 3077 | return r; |
Jerome Glisse | d594e46 | 2010-02-17 21:54:29 +0000 | [diff] [blame] | 3078 | /* initialize AGP */ |
| 3079 | if (rdev->flags & RADEON_IS_AGP) { |
| 3080 | r = radeon_agp_init(rdev); |
| 3081 | if (r) |
| 3082 | radeon_agp_disable(rdev); |
| 3083 | } |
| 3084 | /* initialize memory controller */ |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3085 | r = evergreen_mc_init(rdev); |
| 3086 | if (r) |
| 3087 | return r; |
| 3088 | /* Memory manager */ |
| 3089 | r = radeon_bo_init(rdev); |
| 3090 | if (r) |
| 3091 | return r; |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 3092 | |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3093 | r = radeon_irq_kms_init(rdev); |
| 3094 | if (r) |
| 3095 | return r; |
| 3096 | |
| 3097 | rdev->cp.ring_obj = NULL; |
| 3098 | r600_ring_init(rdev, 1024 * 1024); |
| 3099 | |
| 3100 | rdev->ih.ring_obj = NULL; |
| 3101 | r600_ih_ring_init(rdev, 64 * 1024); |
| 3102 | |
| 3103 | r = r600_pcie_gart_init(rdev); |
| 3104 | if (r) |
| 3105 | return r; |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 3106 | |
Alex Deucher | 148a03b | 2010-06-03 19:00:03 -0400 | [diff] [blame] | 3107 | rdev->accel_working = true; |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3108 | r = evergreen_startup(rdev); |
| 3109 | if (r) { |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 3110 | dev_err(rdev->dev, "disabling GPU acceleration\n"); |
| 3111 | r700_cp_fini(rdev); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 3112 | r600_irq_fini(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 3113 | radeon_wb_fini(rdev); |
Alex Deucher | fe251e2 | 2010-03-24 13:36:43 -0400 | [diff] [blame] | 3114 | radeon_irq_kms_fini(rdev); |
Alex Deucher | 0fcdb61 | 2010-03-24 13:20:41 -0400 | [diff] [blame] | 3115 | evergreen_pcie_gart_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3116 | rdev->accel_working = false; |
| 3117 | } |
| 3118 | if (rdev->accel_working) { |
| 3119 | r = radeon_ib_pool_init(rdev); |
| 3120 | if (r) { |
| 3121 | DRM_ERROR("radeon: failed initializing IB pool (%d).\n", r); |
| 3122 | rdev->accel_working = false; |
| 3123 | } |
| 3124 | r = r600_ib_test(rdev); |
| 3125 | if (r) { |
| 3126 | DRM_ERROR("radeon: failed testing IB (%d).\n", r); |
| 3127 | rdev->accel_working = false; |
| 3128 | } |
| 3129 | } |
| 3130 | return 0; |
| 3131 | } |
| 3132 | |
| 3133 | void evergreen_fini(struct radeon_device *rdev) |
| 3134 | { |
Alex Deucher | d7ccd8f | 2010-09-09 11:33:36 -0400 | [diff] [blame] | 3135 | evergreen_blit_fini(rdev); |
Alex Deucher | 45f9a39 | 2010-03-24 13:55:51 -0400 | [diff] [blame] | 3136 | r700_cp_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3137 | r600_irq_fini(rdev); |
Alex Deucher | 724c80e | 2010-08-27 18:25:25 -0400 | [diff] [blame] | 3138 | radeon_wb_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3139 | radeon_irq_kms_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3140 | evergreen_pcie_gart_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3141 | radeon_gem_fini(rdev); |
| 3142 | radeon_fence_driver_fini(rdev); |
Alex Deucher | bcc1c2a | 2010-01-12 17:54:34 -0500 | [diff] [blame] | 3143 | radeon_agp_fini(rdev); |
| 3144 | radeon_bo_fini(rdev); |
| 3145 | radeon_atombios_fini(rdev); |
| 3146 | kfree(rdev->bios); |
| 3147 | rdev->bios = NULL; |
| 3148 | radeon_dummy_page_fini(rdev); |
| 3149 | } |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 3150 | |
| 3151 | static void evergreen_pcie_gen2_enable(struct radeon_device *rdev) |
| 3152 | { |
| 3153 | u32 link_width_cntl, speed_cntl; |
| 3154 | |
Alex Deucher | d42dd57 | 2011-01-12 20:05:11 -0500 | [diff] [blame] | 3155 | if (radeon_pcie_gen2 == 0) |
| 3156 | return; |
| 3157 | |
Alex Deucher | 9e46a48 | 2011-01-06 18:49:35 -0500 | [diff] [blame] | 3158 | if (rdev->flags & RADEON_IS_IGP) |
| 3159 | return; |
| 3160 | |
| 3161 | if (!(rdev->flags & RADEON_IS_PCIE)) |
| 3162 | return; |
| 3163 | |
| 3164 | /* x2 cards have a special sequence */ |
| 3165 | if (ASIC_IS_X2(rdev)) |
| 3166 | return; |
| 3167 | |
| 3168 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3169 | if ((speed_cntl & LC_OTHER_SIDE_EVER_SENT_GEN2) || |
| 3170 | (speed_cntl & LC_OTHER_SIDE_SUPPORTS_GEN2)) { |
| 3171 | |
| 3172 | link_width_cntl = RREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL); |
| 3173 | link_width_cntl &= ~LC_UPCONFIGURE_DIS; |
| 3174 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3175 | |
| 3176 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3177 | speed_cntl &= ~LC_TARGET_LINK_SPEED_OVERRIDE_EN; |
| 3178 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3179 | |
| 3180 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3181 | speed_cntl |= LC_CLR_FAILED_SPD_CHANGE_CNT; |
| 3182 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3183 | |
| 3184 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3185 | speed_cntl &= ~LC_CLR_FAILED_SPD_CHANGE_CNT; |
| 3186 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3187 | |
| 3188 | speed_cntl = RREG32_PCIE_P(PCIE_LC_SPEED_CNTL); |
| 3189 | speed_cntl |= LC_GEN2_EN_STRAP; |
| 3190 | WREG32_PCIE_P(PCIE_LC_SPEED_CNTL, speed_cntl); |
| 3191 | |
| 3192 | } else { |
| 3193 | link_width_cntl = RREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL); |
| 3194 | /* XXX: only disable it if gen1 bridge vendor == 0x111d or 0x1106 */ |
| 3195 | if (1) |
| 3196 | link_width_cntl |= LC_UPCONFIGURE_DIS; |
| 3197 | else |
| 3198 | link_width_cntl &= ~LC_UPCONFIGURE_DIS; |
| 3199 | WREG32_PCIE_P(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl); |
| 3200 | } |
| 3201 | } |