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