Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008-2010 Intel Corporation |
| 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 (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | * Zou Nan hai <nanhai.zou@intel.com> |
| 26 | * Xiang Hai hao<haihao.xiang@intel.com> |
| 27 | * |
| 28 | */ |
| 29 | |
| 30 | #include "drmP.h" |
| 31 | #include "drm.h" |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 32 | #include "i915_drv.h" |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 33 | #include "i915_drm.h" |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 34 | #include "i915_trace.h" |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 35 | #include "intel_drv.h" |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 36 | |
Jesse Barnes | 8d31528 | 2011-10-16 10:23:31 +0200 | [diff] [blame] | 37 | /* |
| 38 | * 965+ support PIPE_CONTROL commands, which provide finer grained control |
| 39 | * over cache flushing. |
| 40 | */ |
| 41 | struct pipe_control { |
| 42 | struct drm_i915_gem_object *obj; |
| 43 | volatile u32 *cpu_page; |
| 44 | u32 gtt_offset; |
| 45 | }; |
| 46 | |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 47 | static inline int ring_space(struct intel_ring_buffer *ring) |
| 48 | { |
| 49 | int space = (ring->head & HEAD_ADDR) - (ring->tail + 8); |
| 50 | if (space < 0) |
| 51 | space += ring->size; |
| 52 | return space; |
| 53 | } |
| 54 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 55 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 56 | render_ring_flush(struct intel_ring_buffer *ring, |
Chris Wilson | ab6f8e3 | 2010-09-19 17:53:44 +0100 | [diff] [blame] | 57 | u32 invalidate_domains, |
| 58 | u32 flush_domains) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 59 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 60 | struct drm_device *dev = ring->dev; |
Chris Wilson | 6f392d5 | 2010-08-07 11:01:22 +0100 | [diff] [blame] | 61 | u32 cmd; |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 62 | int ret; |
Chris Wilson | 6f392d5 | 2010-08-07 11:01:22 +0100 | [diff] [blame] | 63 | |
Chris Wilson | 36d527d | 2011-03-19 22:26:49 +0000 | [diff] [blame] | 64 | /* |
| 65 | * read/write caches: |
| 66 | * |
| 67 | * I915_GEM_DOMAIN_RENDER is always invalidated, but is |
| 68 | * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is |
| 69 | * also flushed at 2d versus 3d pipeline switches. |
| 70 | * |
| 71 | * read-only caches: |
| 72 | * |
| 73 | * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if |
| 74 | * MI_READ_FLUSH is set, and is always flushed on 965. |
| 75 | * |
| 76 | * I915_GEM_DOMAIN_COMMAND may not exist? |
| 77 | * |
| 78 | * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is |
| 79 | * invalidated when MI_EXE_FLUSH is set. |
| 80 | * |
| 81 | * I915_GEM_DOMAIN_VERTEX, which exists on 965, is |
| 82 | * invalidated with every MI_FLUSH. |
| 83 | * |
| 84 | * TLBs: |
| 85 | * |
| 86 | * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND |
| 87 | * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and |
| 88 | * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER |
| 89 | * are flushed at any MI_FLUSH. |
| 90 | */ |
| 91 | |
| 92 | cmd = MI_FLUSH | MI_NO_WRITE_FLUSH; |
| 93 | if ((invalidate_domains|flush_domains) & |
| 94 | I915_GEM_DOMAIN_RENDER) |
| 95 | cmd &= ~MI_NO_WRITE_FLUSH; |
| 96 | if (INTEL_INFO(dev)->gen < 4) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 97 | /* |
Chris Wilson | 36d527d | 2011-03-19 22:26:49 +0000 | [diff] [blame] | 98 | * On the 965, the sampler cache always gets flushed |
| 99 | * and this bit is reserved. |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 100 | */ |
Chris Wilson | 36d527d | 2011-03-19 22:26:49 +0000 | [diff] [blame] | 101 | if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER) |
| 102 | cmd |= MI_READ_FLUSH; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 103 | } |
Chris Wilson | 36d527d | 2011-03-19 22:26:49 +0000 | [diff] [blame] | 104 | if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION) |
| 105 | cmd |= MI_EXE_FLUSH; |
| 106 | |
| 107 | if (invalidate_domains & I915_GEM_DOMAIN_COMMAND && |
| 108 | (IS_G4X(dev) || IS_GEN5(dev))) |
| 109 | cmd |= MI_INVALIDATE_ISP; |
| 110 | |
| 111 | ret = intel_ring_begin(ring, 2); |
| 112 | if (ret) |
| 113 | return ret; |
| 114 | |
| 115 | intel_ring_emit(ring, cmd); |
| 116 | intel_ring_emit(ring, MI_NOOP); |
| 117 | intel_ring_advance(ring); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 118 | |
| 119 | return 0; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 120 | } |
| 121 | |
Jesse Barnes | 8d31528 | 2011-10-16 10:23:31 +0200 | [diff] [blame] | 122 | /** |
| 123 | * Emits a PIPE_CONTROL with a non-zero post-sync operation, for |
| 124 | * implementing two workarounds on gen6. From section 1.4.7.1 |
| 125 | * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1: |
| 126 | * |
| 127 | * [DevSNB-C+{W/A}] Before any depth stall flush (including those |
| 128 | * produced by non-pipelined state commands), software needs to first |
| 129 | * send a PIPE_CONTROL with no bits set except Post-Sync Operation != |
| 130 | * 0. |
| 131 | * |
| 132 | * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable |
| 133 | * =1, a PIPE_CONTROL with any non-zero post-sync-op is required. |
| 134 | * |
| 135 | * And the workaround for these two requires this workaround first: |
| 136 | * |
| 137 | * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent |
| 138 | * BEFORE the pipe-control with a post-sync op and no write-cache |
| 139 | * flushes. |
| 140 | * |
| 141 | * And this last workaround is tricky because of the requirements on |
| 142 | * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM |
| 143 | * volume 2 part 1: |
| 144 | * |
| 145 | * "1 of the following must also be set: |
| 146 | * - Render Target Cache Flush Enable ([12] of DW1) |
| 147 | * - Depth Cache Flush Enable ([0] of DW1) |
| 148 | * - Stall at Pixel Scoreboard ([1] of DW1) |
| 149 | * - Depth Stall ([13] of DW1) |
| 150 | * - Post-Sync Operation ([13] of DW1) |
| 151 | * - Notify Enable ([8] of DW1)" |
| 152 | * |
| 153 | * The cache flushes require the workaround flush that triggered this |
| 154 | * one, so we can't use it. Depth stall would trigger the same. |
| 155 | * Post-sync nonzero is what triggered this second workaround, so we |
| 156 | * can't use that one either. Notify enable is IRQs, which aren't |
| 157 | * really our business. That leaves only stall at scoreboard. |
| 158 | */ |
| 159 | static int |
| 160 | intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring) |
| 161 | { |
| 162 | struct pipe_control *pc = ring->private; |
| 163 | u32 scratch_addr = pc->gtt_offset + 128; |
| 164 | int ret; |
| 165 | |
| 166 | |
| 167 | ret = intel_ring_begin(ring, 6); |
| 168 | if (ret) |
| 169 | return ret; |
| 170 | |
| 171 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5)); |
| 172 | intel_ring_emit(ring, PIPE_CONTROL_CS_STALL | |
| 173 | PIPE_CONTROL_STALL_AT_SCOREBOARD); |
| 174 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */ |
| 175 | intel_ring_emit(ring, 0); /* low dword */ |
| 176 | intel_ring_emit(ring, 0); /* high dword */ |
| 177 | intel_ring_emit(ring, MI_NOOP); |
| 178 | intel_ring_advance(ring); |
| 179 | |
| 180 | ret = intel_ring_begin(ring, 6); |
| 181 | if (ret) |
| 182 | return ret; |
| 183 | |
| 184 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5)); |
| 185 | intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE); |
| 186 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */ |
| 187 | intel_ring_emit(ring, 0); |
| 188 | intel_ring_emit(ring, 0); |
| 189 | intel_ring_emit(ring, MI_NOOP); |
| 190 | intel_ring_advance(ring); |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | static int |
| 196 | gen6_render_ring_flush(struct intel_ring_buffer *ring, |
| 197 | u32 invalidate_domains, u32 flush_domains) |
| 198 | { |
| 199 | u32 flags = 0; |
| 200 | struct pipe_control *pc = ring->private; |
| 201 | u32 scratch_addr = pc->gtt_offset + 128; |
| 202 | int ret; |
| 203 | |
| 204 | /* Force SNB workarounds for PIPE_CONTROL flushes */ |
| 205 | intel_emit_post_sync_nonzero_flush(ring); |
| 206 | |
| 207 | /* Just flush everything. Experiments have shown that reducing the |
| 208 | * number of bits based on the write domains has little performance |
| 209 | * impact. |
| 210 | */ |
| 211 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; |
| 212 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; |
| 213 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; |
| 214 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; |
| 215 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; |
| 216 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; |
| 217 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; |
| 218 | |
| 219 | ret = intel_ring_begin(ring, 6); |
| 220 | if (ret) |
| 221 | return ret; |
| 222 | |
| 223 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5)); |
| 224 | intel_ring_emit(ring, flags); |
| 225 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); |
| 226 | intel_ring_emit(ring, 0); /* lower dword */ |
| 227 | intel_ring_emit(ring, 0); /* uppwer dword */ |
| 228 | intel_ring_emit(ring, MI_NOOP); |
| 229 | intel_ring_advance(ring); |
| 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 234 | static void ring_write_tail(struct intel_ring_buffer *ring, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 235 | u32 value) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 236 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 237 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 238 | I915_WRITE_TAIL(ring, value); |
Xiang, Haihao | d46eefa | 2010-09-16 10:43:12 +0800 | [diff] [blame] | 239 | } |
| 240 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 241 | u32 intel_ring_get_active_head(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 242 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 243 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
| 244 | u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ? |
Daniel Vetter | 3d281d8 | 2010-09-24 21:14:22 +0200 | [diff] [blame] | 245 | RING_ACTHD(ring->mmio_base) : ACTHD; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 246 | |
| 247 | return I915_READ(acthd_reg); |
| 248 | } |
| 249 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 250 | static int init_ring_common(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 251 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 252 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 253 | struct drm_i915_gem_object *obj = ring->obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 254 | u32 head; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 255 | |
| 256 | /* Stop the ring if it's running. */ |
Daniel Vetter | 7f2ab69 | 2010-08-02 17:06:59 +0200 | [diff] [blame] | 257 | I915_WRITE_CTL(ring, 0); |
Daniel Vetter | 570ef60 | 2010-08-02 17:06:23 +0200 | [diff] [blame] | 258 | I915_WRITE_HEAD(ring, 0); |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 259 | ring->write_tail(ring, 0); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 260 | |
| 261 | /* Initialize the ring. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 262 | I915_WRITE_START(ring, obj->gtt_offset); |
Daniel Vetter | 570ef60 | 2010-08-02 17:06:23 +0200 | [diff] [blame] | 263 | head = I915_READ_HEAD(ring) & HEAD_ADDR; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 264 | |
| 265 | /* G45 ring initialization fails to reset head to zero */ |
| 266 | if (head != 0) { |
Chris Wilson | 6fd0d56 | 2010-12-05 20:42:33 +0000 | [diff] [blame] | 267 | DRM_DEBUG_KMS("%s head not reset to zero " |
| 268 | "ctl %08x head %08x tail %08x start %08x\n", |
| 269 | ring->name, |
| 270 | I915_READ_CTL(ring), |
| 271 | I915_READ_HEAD(ring), |
| 272 | I915_READ_TAIL(ring), |
| 273 | I915_READ_START(ring)); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 274 | |
Daniel Vetter | 570ef60 | 2010-08-02 17:06:23 +0200 | [diff] [blame] | 275 | I915_WRITE_HEAD(ring, 0); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 276 | |
Chris Wilson | 6fd0d56 | 2010-12-05 20:42:33 +0000 | [diff] [blame] | 277 | if (I915_READ_HEAD(ring) & HEAD_ADDR) { |
| 278 | DRM_ERROR("failed to set %s head to zero " |
| 279 | "ctl %08x head %08x tail %08x start %08x\n", |
| 280 | ring->name, |
| 281 | I915_READ_CTL(ring), |
| 282 | I915_READ_HEAD(ring), |
| 283 | I915_READ_TAIL(ring), |
| 284 | I915_READ_START(ring)); |
| 285 | } |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Daniel Vetter | 7f2ab69 | 2010-08-02 17:06:59 +0200 | [diff] [blame] | 288 | I915_WRITE_CTL(ring, |
Chris Wilson | ae69b42 | 2010-11-07 11:45:52 +0000 | [diff] [blame] | 289 | ((ring->size - PAGE_SIZE) & RING_NR_PAGES) |
Chris Wilson | 5d031e5 | 2012-02-08 13:34:13 +0000 | [diff] [blame] | 290 | | RING_VALID); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 291 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 292 | /* If the head is still not zero, the ring is dead */ |
Chris Wilson | 176f28e | 2010-10-28 11:18:07 +0100 | [diff] [blame] | 293 | if ((I915_READ_CTL(ring) & RING_VALID) == 0 || |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 294 | I915_READ_START(ring) != obj->gtt_offset || |
Chris Wilson | 176f28e | 2010-10-28 11:18:07 +0100 | [diff] [blame] | 295 | (I915_READ_HEAD(ring) & HEAD_ADDR) != 0) { |
Chris Wilson | e74cfed | 2010-11-09 10:16:56 +0000 | [diff] [blame] | 296 | DRM_ERROR("%s initialization failed " |
| 297 | "ctl %08x head %08x tail %08x start %08x\n", |
| 298 | ring->name, |
| 299 | I915_READ_CTL(ring), |
| 300 | I915_READ_HEAD(ring), |
| 301 | I915_READ_TAIL(ring), |
| 302 | I915_READ_START(ring)); |
| 303 | return -EIO; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 304 | } |
| 305 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 306 | if (!drm_core_check_feature(ring->dev, DRIVER_MODESET)) |
| 307 | i915_kernel_lost_context(ring->dev); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 308 | else { |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 309 | ring->head = I915_READ_HEAD(ring); |
Daniel Vetter | 870e86d | 2010-08-02 16:29:44 +0200 | [diff] [blame] | 310 | ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR; |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 311 | ring->space = ring_space(ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 312 | } |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 313 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 314 | return 0; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 315 | } |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 316 | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 317 | static int |
| 318 | init_pipe_control(struct intel_ring_buffer *ring) |
| 319 | { |
| 320 | struct pipe_control *pc; |
| 321 | struct drm_i915_gem_object *obj; |
| 322 | int ret; |
| 323 | |
| 324 | if (ring->private) |
| 325 | return 0; |
| 326 | |
| 327 | pc = kmalloc(sizeof(*pc), GFP_KERNEL); |
| 328 | if (!pc) |
| 329 | return -ENOMEM; |
| 330 | |
| 331 | obj = i915_gem_alloc_object(ring->dev, 4096); |
| 332 | if (obj == NULL) { |
| 333 | DRM_ERROR("Failed to allocate seqno page\n"); |
| 334 | ret = -ENOMEM; |
| 335 | goto err; |
| 336 | } |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 337 | |
| 338 | i915_gem_object_set_cache_level(obj, I915_CACHE_LLC); |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 339 | |
| 340 | ret = i915_gem_object_pin(obj, 4096, true); |
| 341 | if (ret) |
| 342 | goto err_unref; |
| 343 | |
| 344 | pc->gtt_offset = obj->gtt_offset; |
| 345 | pc->cpu_page = kmap(obj->pages[0]); |
| 346 | if (pc->cpu_page == NULL) |
| 347 | goto err_unpin; |
| 348 | |
| 349 | pc->obj = obj; |
| 350 | ring->private = pc; |
| 351 | return 0; |
| 352 | |
| 353 | err_unpin: |
| 354 | i915_gem_object_unpin(obj); |
| 355 | err_unref: |
| 356 | drm_gem_object_unreference(&obj->base); |
| 357 | err: |
| 358 | kfree(pc); |
| 359 | return ret; |
| 360 | } |
| 361 | |
| 362 | static void |
| 363 | cleanup_pipe_control(struct intel_ring_buffer *ring) |
| 364 | { |
| 365 | struct pipe_control *pc = ring->private; |
| 366 | struct drm_i915_gem_object *obj; |
| 367 | |
| 368 | if (!ring->private) |
| 369 | return; |
| 370 | |
| 371 | obj = pc->obj; |
| 372 | kunmap(obj->pages[0]); |
| 373 | i915_gem_object_unpin(obj); |
| 374 | drm_gem_object_unreference(&obj->base); |
| 375 | |
| 376 | kfree(pc); |
| 377 | ring->private = NULL; |
| 378 | } |
| 379 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 380 | static int init_render_ring(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 381 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 382 | struct drm_device *dev = ring->dev; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 383 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 384 | int ret = init_ring_common(ring); |
Zhenyu Wang | a69ffdb | 2010-08-30 16:12:42 +0800 | [diff] [blame] | 385 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 386 | if (INTEL_INFO(dev)->gen > 3) { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 387 | int mode = VS_TIMER_DISPATCH << 16 | VS_TIMER_DISPATCH; |
Zhenyu Wang | a69ffdb | 2010-08-30 16:12:42 +0800 | [diff] [blame] | 388 | I915_WRITE(MI_MODE, mode); |
Jesse Barnes | b095cd0 | 2011-08-12 15:28:32 -0700 | [diff] [blame] | 389 | if (IS_GEN7(dev)) |
| 390 | I915_WRITE(GFX_MODE_GEN7, |
| 391 | GFX_MODE_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) | |
| 392 | GFX_MODE_ENABLE(GFX_REPLAY_MODE)); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 393 | } |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 394 | |
Jesse Barnes | 8d31528 | 2011-10-16 10:23:31 +0200 | [diff] [blame] | 395 | if (INTEL_INFO(dev)->gen >= 5) { |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 396 | ret = init_pipe_control(ring); |
| 397 | if (ret) |
| 398 | return ret; |
| 399 | } |
| 400 | |
Kenneth Graunke | 3a69ddd | 2012-04-27 12:44:41 -0700 | [diff] [blame] | 401 | |
Daniel Vetter | 2e7a448 | 2012-05-06 16:50:24 +0200 | [diff] [blame] | 402 | if (IS_GEN6(dev)) { |
Kenneth Graunke | 3a69ddd | 2012-04-27 12:44:41 -0700 | [diff] [blame] | 403 | /* From the Sandybridge PRM, volume 1 part 3, page 24: |
| 404 | * "If this bit is set, STCunit will have LRA as replacement |
| 405 | * policy. [...] This bit must be reset. LRA replacement |
| 406 | * policy is not supported." |
| 407 | */ |
| 408 | I915_WRITE(CACHE_MODE_0, |
| 409 | CM0_STC_EVICT_DISABLE_LRA_SNB << CM0_MASK_SHIFT); |
Ben Widawsky | 84f9f93 | 2011-12-12 19:21:58 -0800 | [diff] [blame] | 410 | } |
| 411 | |
Daniel Vetter | 2e7a448 | 2012-05-06 16:50:24 +0200 | [diff] [blame] | 412 | if (INTEL_INFO(dev)->gen >= 6) { |
| 413 | I915_WRITE(INSTPM, |
| 414 | INSTPM_FORCE_ORDERING << 16 | INSTPM_FORCE_ORDERING); |
| 415 | } |
| 416 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 417 | return ret; |
| 418 | } |
| 419 | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 420 | static void render_ring_cleanup(struct intel_ring_buffer *ring) |
| 421 | { |
| 422 | if (!ring->private) |
| 423 | return; |
| 424 | |
| 425 | cleanup_pipe_control(ring); |
| 426 | } |
| 427 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 428 | static void |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 429 | update_mboxes(struct intel_ring_buffer *ring, |
| 430 | u32 seqno, |
| 431 | u32 mmio_offset) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 432 | { |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 433 | intel_ring_emit(ring, MI_SEMAPHORE_MBOX | |
| 434 | MI_SEMAPHORE_GLOBAL_GTT | |
| 435 | MI_SEMAPHORE_REGISTER | |
| 436 | MI_SEMAPHORE_UPDATE); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 437 | intel_ring_emit(ring, seqno); |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 438 | intel_ring_emit(ring, mmio_offset); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 441 | /** |
| 442 | * gen6_add_request - Update the semaphore mailbox registers |
| 443 | * |
| 444 | * @ring - ring that is adding a request |
| 445 | * @seqno - return seqno stuck into the ring |
| 446 | * |
| 447 | * Update the mailbox registers in the *other* rings with the current seqno. |
| 448 | * This acts like a signal in the canonical semaphore. |
| 449 | */ |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 450 | static int |
| 451 | gen6_add_request(struct intel_ring_buffer *ring, |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 452 | u32 *seqno) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 453 | { |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 454 | u32 mbox1_reg; |
| 455 | u32 mbox2_reg; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 456 | int ret; |
| 457 | |
| 458 | ret = intel_ring_begin(ring, 10); |
| 459 | if (ret) |
| 460 | return ret; |
| 461 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 462 | mbox1_reg = ring->signal_mbox[0]; |
| 463 | mbox2_reg = ring->signal_mbox[1]; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 464 | |
Daniel Vetter | 53d227f | 2012-01-25 16:32:49 +0100 | [diff] [blame] | 465 | *seqno = i915_gem_next_request_seqno(ring); |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 466 | |
| 467 | update_mboxes(ring, *seqno, mbox1_reg); |
| 468 | update_mboxes(ring, *seqno, mbox2_reg); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 469 | intel_ring_emit(ring, MI_STORE_DWORD_INDEX); |
| 470 | intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 471 | intel_ring_emit(ring, *seqno); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 472 | intel_ring_emit(ring, MI_USER_INTERRUPT); |
| 473 | intel_ring_advance(ring); |
| 474 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 475 | return 0; |
| 476 | } |
| 477 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 478 | /** |
| 479 | * intel_ring_sync - sync the waiter to the signaller on seqno |
| 480 | * |
| 481 | * @waiter - ring that is waiting |
| 482 | * @signaller - ring which has, or will signal |
| 483 | * @seqno - seqno which the waiter will block on |
| 484 | */ |
| 485 | static int |
| 486 | intel_ring_sync(struct intel_ring_buffer *waiter, |
| 487 | struct intel_ring_buffer *signaller, |
| 488 | int ring, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 489 | u32 seqno) |
| 490 | { |
| 491 | int ret; |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 492 | u32 dw1 = MI_SEMAPHORE_MBOX | |
| 493 | MI_SEMAPHORE_COMPARE | |
| 494 | MI_SEMAPHORE_REGISTER; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 495 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 496 | ret = intel_ring_begin(waiter, 4); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 497 | if (ret) |
| 498 | return ret; |
| 499 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 500 | intel_ring_emit(waiter, dw1 | signaller->semaphore_register[ring]); |
| 501 | intel_ring_emit(waiter, seqno); |
| 502 | intel_ring_emit(waiter, 0); |
| 503 | intel_ring_emit(waiter, MI_NOOP); |
| 504 | intel_ring_advance(waiter); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 505 | |
| 506 | return 0; |
| 507 | } |
| 508 | |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 509 | /* VCS->RCS (RVSYNC) or BCS->RCS (RBSYNC) */ |
| 510 | int |
| 511 | render_ring_sync_to(struct intel_ring_buffer *waiter, |
| 512 | struct intel_ring_buffer *signaller, |
| 513 | u32 seqno) |
| 514 | { |
| 515 | WARN_ON(signaller->semaphore_register[RCS] == MI_SEMAPHORE_SYNC_INVALID); |
| 516 | return intel_ring_sync(waiter, |
| 517 | signaller, |
| 518 | RCS, |
| 519 | seqno); |
| 520 | } |
| 521 | |
| 522 | /* RCS->VCS (VRSYNC) or BCS->VCS (VBSYNC) */ |
| 523 | int |
| 524 | gen6_bsd_ring_sync_to(struct intel_ring_buffer *waiter, |
| 525 | struct intel_ring_buffer *signaller, |
| 526 | u32 seqno) |
| 527 | { |
| 528 | WARN_ON(signaller->semaphore_register[VCS] == MI_SEMAPHORE_SYNC_INVALID); |
| 529 | return intel_ring_sync(waiter, |
| 530 | signaller, |
| 531 | VCS, |
| 532 | seqno); |
| 533 | } |
| 534 | |
| 535 | /* RCS->BCS (BRSYNC) or VCS->BCS (BVSYNC) */ |
| 536 | int |
| 537 | gen6_blt_ring_sync_to(struct intel_ring_buffer *waiter, |
| 538 | struct intel_ring_buffer *signaller, |
| 539 | u32 seqno) |
| 540 | { |
| 541 | WARN_ON(signaller->semaphore_register[BCS] == MI_SEMAPHORE_SYNC_INVALID); |
| 542 | return intel_ring_sync(waiter, |
| 543 | signaller, |
| 544 | BCS, |
| 545 | seqno); |
| 546 | } |
| 547 | |
| 548 | |
| 549 | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 550 | #define PIPE_CONTROL_FLUSH(ring__, addr__) \ |
| 551 | do { \ |
Kenneth Graunke | fcbc34e | 2011-10-11 23:41:08 +0200 | [diff] [blame] | 552 | intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \ |
| 553 | PIPE_CONTROL_DEPTH_STALL); \ |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 554 | intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \ |
| 555 | intel_ring_emit(ring__, 0); \ |
| 556 | intel_ring_emit(ring__, 0); \ |
| 557 | } while (0) |
| 558 | |
| 559 | static int |
| 560 | pc_render_add_request(struct intel_ring_buffer *ring, |
| 561 | u32 *result) |
| 562 | { |
Daniel Vetter | 53d227f | 2012-01-25 16:32:49 +0100 | [diff] [blame] | 563 | u32 seqno = i915_gem_next_request_seqno(ring); |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 564 | struct pipe_control *pc = ring->private; |
| 565 | u32 scratch_addr = pc->gtt_offset + 128; |
| 566 | int ret; |
| 567 | |
| 568 | /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently |
| 569 | * incoherent with writes to memory, i.e. completely fubar, |
| 570 | * so we need to use PIPE_NOTIFY instead. |
| 571 | * |
| 572 | * However, we also need to workaround the qword write |
| 573 | * incoherence by flushing the 6 PIPE_NOTIFY buffers out to |
| 574 | * memory before requesting an interrupt. |
| 575 | */ |
| 576 | ret = intel_ring_begin(ring, 32); |
| 577 | if (ret) |
| 578 | return ret; |
| 579 | |
Kenneth Graunke | fcbc34e | 2011-10-11 23:41:08 +0200 | [diff] [blame] | 580 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | |
Kenneth Graunke | 9d971b3 | 2011-10-11 23:41:09 +0200 | [diff] [blame] | 581 | PIPE_CONTROL_WRITE_FLUSH | |
| 582 | PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE); |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 583 | intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT); |
| 584 | intel_ring_emit(ring, seqno); |
| 585 | intel_ring_emit(ring, 0); |
| 586 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
| 587 | scratch_addr += 128; /* write to separate cachelines */ |
| 588 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
| 589 | scratch_addr += 128; |
| 590 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
| 591 | scratch_addr += 128; |
| 592 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
| 593 | scratch_addr += 128; |
| 594 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
| 595 | scratch_addr += 128; |
| 596 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 597 | |
Kenneth Graunke | fcbc34e | 2011-10-11 23:41:08 +0200 | [diff] [blame] | 598 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | |
Kenneth Graunke | 9d971b3 | 2011-10-11 23:41:09 +0200 | [diff] [blame] | 599 | PIPE_CONTROL_WRITE_FLUSH | |
| 600 | PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 601 | PIPE_CONTROL_NOTIFY); |
| 602 | intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT); |
| 603 | intel_ring_emit(ring, seqno); |
| 604 | intel_ring_emit(ring, 0); |
| 605 | intel_ring_advance(ring); |
| 606 | |
| 607 | *result = seqno; |
| 608 | return 0; |
| 609 | } |
| 610 | |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 611 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 612 | render_ring_add_request(struct intel_ring_buffer *ring, |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 613 | u32 *result) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 614 | { |
Daniel Vetter | 53d227f | 2012-01-25 16:32:49 +0100 | [diff] [blame] | 615 | u32 seqno = i915_gem_next_request_seqno(ring); |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 616 | int ret; |
Zhenyu Wang | ca76482 | 2010-05-27 10:26:42 +0800 | [diff] [blame] | 617 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 618 | ret = intel_ring_begin(ring, 4); |
| 619 | if (ret) |
| 620 | return ret; |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 621 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 622 | intel_ring_emit(ring, MI_STORE_DWORD_INDEX); |
| 623 | intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
| 624 | intel_ring_emit(ring, seqno); |
| 625 | intel_ring_emit(ring, MI_USER_INTERRUPT); |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 626 | intel_ring_advance(ring); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 627 | |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 628 | *result = seqno; |
| 629 | return 0; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 632 | static u32 |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 633 | gen6_ring_get_seqno(struct intel_ring_buffer *ring) |
| 634 | { |
| 635 | struct drm_device *dev = ring->dev; |
| 636 | |
| 637 | /* Workaround to force correct ordering between irq and seqno writes on |
| 638 | * ivb (and maybe also on snb) by reading from a CS register (like |
| 639 | * ACTHD) before reading the status page. */ |
Daniel Vetter | 1c7eaac | 2012-03-27 09:31:24 +0200 | [diff] [blame] | 640 | if (IS_GEN6(dev) || IS_GEN7(dev)) |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 641 | intel_ring_get_active_head(ring); |
| 642 | return intel_read_status_page(ring, I915_GEM_HWS_INDEX); |
| 643 | } |
| 644 | |
| 645 | static u32 |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 646 | ring_get_seqno(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 647 | { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 648 | return intel_read_status_page(ring, I915_GEM_HWS_INDEX); |
| 649 | } |
| 650 | |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 651 | static u32 |
| 652 | pc_render_get_seqno(struct intel_ring_buffer *ring) |
| 653 | { |
| 654 | struct pipe_control *pc = ring->private; |
| 655 | return pc->cpu_page[0]; |
| 656 | } |
| 657 | |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 658 | static void |
| 659 | ironlake_enable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 660 | { |
| 661 | dev_priv->gt_irq_mask &= ~mask; |
| 662 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask); |
| 663 | POSTING_READ(GTIMR); |
| 664 | } |
| 665 | |
| 666 | static void |
| 667 | ironlake_disable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 668 | { |
| 669 | dev_priv->gt_irq_mask |= mask; |
| 670 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask); |
| 671 | POSTING_READ(GTIMR); |
| 672 | } |
| 673 | |
| 674 | static void |
| 675 | i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 676 | { |
| 677 | dev_priv->irq_mask &= ~mask; |
| 678 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 679 | POSTING_READ(IMR); |
| 680 | } |
| 681 | |
| 682 | static void |
| 683 | i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask) |
| 684 | { |
| 685 | dev_priv->irq_mask |= mask; |
| 686 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 687 | POSTING_READ(IMR); |
| 688 | } |
| 689 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 690 | static bool |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 691 | render_ring_get_irq(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 692 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 693 | struct drm_device *dev = ring->dev; |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 694 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 695 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 696 | if (!dev->irq_enabled) |
| 697 | return false; |
| 698 | |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 699 | spin_lock(&ring->irq_lock); |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 700 | if (ring->irq_refcount++ == 0) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 701 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 702 | ironlake_enable_irq(dev_priv, |
| 703 | GT_PIPE_NOTIFY | GT_USER_INTERRUPT); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 704 | else |
| 705 | i915_enable_irq(dev_priv, I915_USER_INTERRUPT); |
| 706 | } |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 707 | spin_unlock(&ring->irq_lock); |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 708 | |
| 709 | return true; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 712 | static void |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 713 | render_ring_put_irq(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 714 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 715 | struct drm_device *dev = ring->dev; |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 716 | drm_i915_private_t *dev_priv = dev->dev_private; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 717 | |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 718 | spin_lock(&ring->irq_lock); |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 719 | if (--ring->irq_refcount == 0) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 720 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 721 | ironlake_disable_irq(dev_priv, |
| 722 | GT_USER_INTERRUPT | |
| 723 | GT_PIPE_NOTIFY); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 724 | else |
| 725 | i915_disable_irq(dev_priv, I915_USER_INTERRUPT); |
| 726 | } |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 727 | spin_unlock(&ring->irq_lock); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 730 | void intel_ring_setup_status_page(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 731 | { |
Eric Anholt | 4593010 | 2011-05-06 17:12:35 -0700 | [diff] [blame] | 732 | struct drm_device *dev = ring->dev; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 733 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
Eric Anholt | 4593010 | 2011-05-06 17:12:35 -0700 | [diff] [blame] | 734 | u32 mmio = 0; |
| 735 | |
| 736 | /* The ring status page addresses are no longer next to the rest of |
| 737 | * the ring registers as of gen7. |
| 738 | */ |
| 739 | if (IS_GEN7(dev)) { |
| 740 | switch (ring->id) { |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 741 | case RCS: |
Eric Anholt | 4593010 | 2011-05-06 17:12:35 -0700 | [diff] [blame] | 742 | mmio = RENDER_HWS_PGA_GEN7; |
| 743 | break; |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 744 | case BCS: |
Eric Anholt | 4593010 | 2011-05-06 17:12:35 -0700 | [diff] [blame] | 745 | mmio = BLT_HWS_PGA_GEN7; |
| 746 | break; |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 747 | case VCS: |
Eric Anholt | 4593010 | 2011-05-06 17:12:35 -0700 | [diff] [blame] | 748 | mmio = BSD_HWS_PGA_GEN7; |
| 749 | break; |
| 750 | } |
| 751 | } else if (IS_GEN6(ring->dev)) { |
| 752 | mmio = RING_HWS_PGA_GEN6(ring->mmio_base); |
| 753 | } else { |
| 754 | mmio = RING_HWS_PGA(ring->mmio_base); |
| 755 | } |
| 756 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 757 | I915_WRITE(mmio, (u32)ring->status_page.gfx_addr); |
| 758 | POSTING_READ(mmio); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 759 | } |
| 760 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 761 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 762 | bsd_ring_flush(struct intel_ring_buffer *ring, |
| 763 | u32 invalidate_domains, |
| 764 | u32 flush_domains) |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 765 | { |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 766 | int ret; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 767 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 768 | ret = intel_ring_begin(ring, 2); |
| 769 | if (ret) |
| 770 | return ret; |
| 771 | |
| 772 | intel_ring_emit(ring, MI_FLUSH); |
| 773 | intel_ring_emit(ring, MI_NOOP); |
| 774 | intel_ring_advance(ring); |
| 775 | return 0; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 776 | } |
| 777 | |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 778 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 779 | ring_add_request(struct intel_ring_buffer *ring, |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 780 | u32 *result) |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 781 | { |
| 782 | u32 seqno; |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 783 | int ret; |
| 784 | |
| 785 | ret = intel_ring_begin(ring, 4); |
| 786 | if (ret) |
| 787 | return ret; |
Chris Wilson | 6f392d5 | 2010-08-07 11:01:22 +0100 | [diff] [blame] | 788 | |
Daniel Vetter | 53d227f | 2012-01-25 16:32:49 +0100 | [diff] [blame] | 789 | seqno = i915_gem_next_request_seqno(ring); |
Chris Wilson | 6f392d5 | 2010-08-07 11:01:22 +0100 | [diff] [blame] | 790 | |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 791 | intel_ring_emit(ring, MI_STORE_DWORD_INDEX); |
| 792 | intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT); |
| 793 | intel_ring_emit(ring, seqno); |
| 794 | intel_ring_emit(ring, MI_USER_INTERRUPT); |
| 795 | intel_ring_advance(ring); |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 796 | |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 797 | *result = seqno; |
| 798 | return 0; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 799 | } |
| 800 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 801 | static bool |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 802 | gen6_ring_get_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag) |
| 803 | { |
| 804 | struct drm_device *dev = ring->dev; |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 805 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 806 | |
| 807 | if (!dev->irq_enabled) |
| 808 | return false; |
| 809 | |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 810 | /* It looks like we need to prevent the gt from suspending while waiting |
| 811 | * for an notifiy irq, otherwise irqs seem to get lost on at least the |
| 812 | * blt/bsd rings on ivb. */ |
Daniel Vetter | 99ffa16 | 2012-01-25 14:04:00 +0100 | [diff] [blame] | 813 | gen6_gt_force_wake_get(dev_priv); |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 814 | |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 815 | spin_lock(&ring->irq_lock); |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 816 | if (ring->irq_refcount++ == 0) { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 817 | ring->irq_mask &= ~rflag; |
| 818 | I915_WRITE_IMR(ring, ring->irq_mask); |
| 819 | ironlake_enable_irq(dev_priv, gflag); |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 820 | } |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 821 | spin_unlock(&ring->irq_lock); |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 822 | |
| 823 | return true; |
| 824 | } |
| 825 | |
| 826 | static void |
| 827 | gen6_ring_put_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag) |
| 828 | { |
| 829 | struct drm_device *dev = ring->dev; |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 830 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 831 | |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 832 | spin_lock(&ring->irq_lock); |
Chris Wilson | 01a0333 | 2011-01-04 22:22:56 +0000 | [diff] [blame] | 833 | if (--ring->irq_refcount == 0) { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 834 | ring->irq_mask |= rflag; |
| 835 | I915_WRITE_IMR(ring, ring->irq_mask); |
| 836 | ironlake_disable_irq(dev_priv, gflag); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 837 | } |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 838 | spin_unlock(&ring->irq_lock); |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 839 | |
Daniel Vetter | 99ffa16 | 2012-01-25 14:04:00 +0100 | [diff] [blame] | 840 | gen6_gt_force_wake_put(dev_priv); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 841 | } |
| 842 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 843 | static bool |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 844 | bsd_ring_get_irq(struct intel_ring_buffer *ring) |
| 845 | { |
Feng, Boqun | 5bfa106 | 2011-05-16 16:02:39 +0800 | [diff] [blame] | 846 | struct drm_device *dev = ring->dev; |
| 847 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 848 | |
| 849 | if (!dev->irq_enabled) |
| 850 | return false; |
| 851 | |
| 852 | spin_lock(&ring->irq_lock); |
| 853 | if (ring->irq_refcount++ == 0) { |
| 854 | if (IS_G4X(dev)) |
| 855 | i915_enable_irq(dev_priv, I915_BSD_USER_INTERRUPT); |
| 856 | else |
| 857 | ironlake_enable_irq(dev_priv, GT_BSD_USER_INTERRUPT); |
| 858 | } |
| 859 | spin_unlock(&ring->irq_lock); |
| 860 | |
| 861 | return true; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 862 | } |
| 863 | static void |
| 864 | bsd_ring_put_irq(struct intel_ring_buffer *ring) |
| 865 | { |
Feng, Boqun | 5bfa106 | 2011-05-16 16:02:39 +0800 | [diff] [blame] | 866 | struct drm_device *dev = ring->dev; |
| 867 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 868 | |
| 869 | spin_lock(&ring->irq_lock); |
| 870 | if (--ring->irq_refcount == 0) { |
| 871 | if (IS_G4X(dev)) |
| 872 | i915_disable_irq(dev_priv, I915_BSD_USER_INTERRUPT); |
| 873 | else |
| 874 | ironlake_disable_irq(dev_priv, GT_BSD_USER_INTERRUPT); |
| 875 | } |
| 876 | spin_unlock(&ring->irq_lock); |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 877 | } |
| 878 | |
| 879 | static int |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 880 | ring_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length) |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 881 | { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 882 | int ret; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 883 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 884 | ret = intel_ring_begin(ring, 2); |
| 885 | if (ret) |
| 886 | return ret; |
| 887 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 888 | intel_ring_emit(ring, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 889 | MI_BATCH_BUFFER_START | (2 << 6) | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 890 | MI_BATCH_NON_SECURE_I965); |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 891 | intel_ring_emit(ring, offset); |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 892 | intel_ring_advance(ring); |
| 893 | |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 894 | return 0; |
| 895 | } |
| 896 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 897 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 898 | render_ring_dispatch_execbuffer(struct intel_ring_buffer *ring, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 899 | u32 offset, u32 len) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 900 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 901 | struct drm_device *dev = ring->dev; |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 902 | int ret; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 903 | |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 904 | if (IS_I830(dev) || IS_845G(dev)) { |
| 905 | ret = intel_ring_begin(ring, 4); |
| 906 | if (ret) |
| 907 | return ret; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 908 | |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 909 | intel_ring_emit(ring, MI_BATCH_BUFFER); |
| 910 | intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE); |
| 911 | intel_ring_emit(ring, offset + len - 8); |
| 912 | intel_ring_emit(ring, 0); |
| 913 | } else { |
| 914 | ret = intel_ring_begin(ring, 2); |
| 915 | if (ret) |
| 916 | return ret; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 917 | |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 918 | if (INTEL_INFO(dev)->gen >= 4) { |
| 919 | intel_ring_emit(ring, |
| 920 | MI_BATCH_BUFFER_START | (2 << 6) | |
| 921 | MI_BATCH_NON_SECURE_I965); |
| 922 | intel_ring_emit(ring, offset); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 923 | } else { |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 924 | intel_ring_emit(ring, |
| 925 | MI_BATCH_BUFFER_START | (2 << 6)); |
| 926 | intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 927 | } |
| 928 | } |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 929 | intel_ring_advance(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 930 | |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 931 | return 0; |
| 932 | } |
| 933 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 934 | static void cleanup_status_page(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 935 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 936 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 937 | struct drm_i915_gem_object *obj; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 938 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 939 | obj = ring->status_page.obj; |
| 940 | if (obj == NULL) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 941 | return; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 942 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 943 | kunmap(obj->pages[0]); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 944 | i915_gem_object_unpin(obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 945 | drm_gem_object_unreference(&obj->base); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 946 | ring->status_page.obj = NULL; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 947 | |
| 948 | memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map)); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 949 | } |
| 950 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 951 | static int init_status_page(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 952 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 953 | struct drm_device *dev = ring->dev; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 954 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 955 | struct drm_i915_gem_object *obj; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 956 | int ret; |
| 957 | |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 958 | obj = i915_gem_alloc_object(dev, 4096); |
| 959 | if (obj == NULL) { |
| 960 | DRM_ERROR("Failed to allocate status page\n"); |
| 961 | ret = -ENOMEM; |
| 962 | goto err; |
| 963 | } |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 964 | |
| 965 | i915_gem_object_set_cache_level(obj, I915_CACHE_LLC); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 966 | |
Daniel Vetter | 75e9e91 | 2010-11-04 17:11:09 +0100 | [diff] [blame] | 967 | ret = i915_gem_object_pin(obj, 4096, true); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 968 | if (ret != 0) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 969 | goto err_unref; |
| 970 | } |
| 971 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 972 | ring->status_page.gfx_addr = obj->gtt_offset; |
| 973 | ring->status_page.page_addr = kmap(obj->pages[0]); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 974 | if (ring->status_page.page_addr == NULL) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 975 | memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map)); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 976 | goto err_unpin; |
| 977 | } |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 978 | ring->status_page.obj = obj; |
| 979 | memset(ring->status_page.page_addr, 0, PAGE_SIZE); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 980 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 981 | intel_ring_setup_status_page(ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 982 | DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n", |
| 983 | ring->name, ring->status_page.gfx_addr); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 984 | |
| 985 | return 0; |
| 986 | |
| 987 | err_unpin: |
| 988 | i915_gem_object_unpin(obj); |
| 989 | err_unref: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 990 | drm_gem_object_unreference(&obj->base); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 991 | err: |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 992 | return ret; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 993 | } |
| 994 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 995 | int intel_init_ring_buffer(struct drm_device *dev, |
Chris Wilson | ab6f8e3 | 2010-09-19 17:53:44 +0100 | [diff] [blame] | 996 | struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 997 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 998 | struct drm_i915_gem_object *obj; |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 999 | int ret; |
| 1000 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1001 | ring->dev = dev; |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 1002 | INIT_LIST_HEAD(&ring->active_list); |
| 1003 | INIT_LIST_HEAD(&ring->request_list); |
Chris Wilson | 6419340 | 2010-10-24 12:38:05 +0100 | [diff] [blame] | 1004 | INIT_LIST_HEAD(&ring->gpu_write_list); |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 1005 | |
Chris Wilson | b259f67 | 2011-03-29 13:19:09 +0100 | [diff] [blame] | 1006 | init_waitqueue_head(&ring->irq_queue); |
Chris Wilson | 0dc79fb | 2011-01-05 10:32:24 +0000 | [diff] [blame] | 1007 | spin_lock_init(&ring->irq_lock); |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1008 | ring->irq_mask = ~0; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1009 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1010 | if (I915_NEED_GFX_HWS(dev)) { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1011 | ret = init_status_page(ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1012 | if (ret) |
| 1013 | return ret; |
| 1014 | } |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1015 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1016 | obj = i915_gem_alloc_object(dev, ring->size); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1017 | if (obj == NULL) { |
| 1018 | DRM_ERROR("Failed to allocate ringbuffer\n"); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1019 | ret = -ENOMEM; |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1020 | goto err_hws; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1021 | } |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1022 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1023 | ring->obj = obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1024 | |
Daniel Vetter | 75e9e91 | 2010-11-04 17:11:09 +0100 | [diff] [blame] | 1025 | ret = i915_gem_object_pin(obj, PAGE_SIZE, true); |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1026 | if (ret) |
| 1027 | goto err_unref; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1028 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1029 | ring->map.size = ring->size; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1030 | ring->map.offset = dev->agp->base + obj->gtt_offset; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1031 | ring->map.type = 0; |
| 1032 | ring->map.flags = 0; |
| 1033 | ring->map.mtrr = 0; |
| 1034 | |
| 1035 | drm_core_ioremap_wc(&ring->map, dev); |
| 1036 | if (ring->map.handle == NULL) { |
| 1037 | DRM_ERROR("Failed to map ringbuffer.\n"); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1038 | ret = -EINVAL; |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1039 | goto err_unpin; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1040 | } |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1041 | |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1042 | ring->virtual_start = ring->map.handle; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1043 | ret = ring->init(ring); |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1044 | if (ret) |
| 1045 | goto err_unmap; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1046 | |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 1047 | /* Workaround an erratum on the i830 which causes a hang if |
| 1048 | * the TAIL pointer points to within the last 2 cachelines |
| 1049 | * of the buffer. |
| 1050 | */ |
| 1051 | ring->effective_size = ring->size; |
Chris Wilson | 27c1cbd | 2012-04-09 13:59:46 +0100 | [diff] [blame] | 1052 | if (IS_I830(ring->dev) || IS_845G(ring->dev)) |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 1053 | ring->effective_size -= 128; |
| 1054 | |
Chris Wilson | c584fe4 | 2010-10-29 18:15:52 +0100 | [diff] [blame] | 1055 | return 0; |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1056 | |
| 1057 | err_unmap: |
| 1058 | drm_core_ioremapfree(&ring->map, dev); |
| 1059 | err_unpin: |
| 1060 | i915_gem_object_unpin(obj); |
| 1061 | err_unref: |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1062 | drm_gem_object_unreference(&obj->base); |
| 1063 | ring->obj = NULL; |
Chris Wilson | dd785e3 | 2010-08-07 11:01:34 +0100 | [diff] [blame] | 1064 | err_hws: |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1065 | cleanup_status_page(ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1066 | return ret; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1069 | void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1070 | { |
Chris Wilson | 33626e6 | 2010-10-29 16:18:36 +0100 | [diff] [blame] | 1071 | struct drm_i915_private *dev_priv; |
| 1072 | int ret; |
| 1073 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1074 | if (ring->obj == NULL) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1075 | return; |
| 1076 | |
Chris Wilson | 33626e6 | 2010-10-29 16:18:36 +0100 | [diff] [blame] | 1077 | /* Disable the ring buffer. The ring must be idle at this point */ |
| 1078 | dev_priv = ring->dev->dev_private; |
Ben Widawsky | 96f298a | 2011-03-19 18:14:27 -0700 | [diff] [blame] | 1079 | ret = intel_wait_ring_idle(ring); |
Chris Wilson | 29ee399 | 2011-01-24 16:35:42 +0000 | [diff] [blame] | 1080 | if (ret) |
| 1081 | DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n", |
| 1082 | ring->name, ret); |
| 1083 | |
Chris Wilson | 33626e6 | 2010-10-29 16:18:36 +0100 | [diff] [blame] | 1084 | I915_WRITE_CTL(ring, 0); |
| 1085 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1086 | drm_core_ioremapfree(&ring->map, ring->dev); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1087 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1088 | i915_gem_object_unpin(ring->obj); |
| 1089 | drm_gem_object_unreference(&ring->obj->base); |
| 1090 | ring->obj = NULL; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1091 | |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 1092 | if (ring->cleanup) |
| 1093 | ring->cleanup(ring); |
| 1094 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1095 | cleanup_status_page(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1096 | } |
| 1097 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1098 | static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1099 | { |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1100 | unsigned int *virt; |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 1101 | int rem = ring->size - ring->tail; |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1102 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1103 | if (ring->space < rem) { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1104 | int ret = intel_wait_ring_buffer(ring, rem); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1105 | if (ret) |
| 1106 | return ret; |
| 1107 | } |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1108 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1109 | virt = (unsigned int *)(ring->virtual_start + ring->tail); |
Chris Wilson | 1741dd4 | 2010-08-04 15:18:12 +0100 | [diff] [blame] | 1110 | rem /= 8; |
| 1111 | while (rem--) { |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1112 | *virt++ = MI_NOOP; |
Chris Wilson | 1741dd4 | 2010-08-04 15:18:12 +0100 | [diff] [blame] | 1113 | *virt++ = MI_NOOP; |
| 1114 | } |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1115 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1116 | ring->tail = 0; |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 1117 | ring->space = ring_space(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 1122 | static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno) |
| 1123 | { |
| 1124 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
| 1125 | bool was_interruptible; |
| 1126 | int ret; |
| 1127 | |
| 1128 | /* XXX As we have not yet audited all the paths to check that |
| 1129 | * they are ready for ERESTARTSYS from intel_ring_begin, do not |
| 1130 | * allow us to be interruptible by a signal. |
| 1131 | */ |
| 1132 | was_interruptible = dev_priv->mm.interruptible; |
| 1133 | dev_priv->mm.interruptible = false; |
| 1134 | |
| 1135 | ret = i915_wait_request(ring, seqno, true); |
| 1136 | |
| 1137 | dev_priv->mm.interruptible = was_interruptible; |
| 1138 | |
| 1139 | return ret; |
| 1140 | } |
| 1141 | |
| 1142 | static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n) |
| 1143 | { |
| 1144 | struct drm_i915_gem_request *request; |
| 1145 | u32 seqno = 0; |
| 1146 | int ret; |
| 1147 | |
| 1148 | i915_gem_retire_requests_ring(ring); |
| 1149 | |
| 1150 | if (ring->last_retired_head != -1) { |
| 1151 | ring->head = ring->last_retired_head; |
| 1152 | ring->last_retired_head = -1; |
| 1153 | ring->space = ring_space(ring); |
| 1154 | if (ring->space >= n) |
| 1155 | return 0; |
| 1156 | } |
| 1157 | |
| 1158 | list_for_each_entry(request, &ring->request_list, list) { |
| 1159 | int space; |
| 1160 | |
| 1161 | if (request->tail == -1) |
| 1162 | continue; |
| 1163 | |
| 1164 | space = request->tail - (ring->tail + 8); |
| 1165 | if (space < 0) |
| 1166 | space += ring->size; |
| 1167 | if (space >= n) { |
| 1168 | seqno = request->seqno; |
| 1169 | break; |
| 1170 | } |
| 1171 | |
| 1172 | /* Consume this request in case we need more space than |
| 1173 | * is available and so need to prevent a race between |
| 1174 | * updating last_retired_head and direct reads of |
| 1175 | * I915_RING_HEAD. It also provides a nice sanity check. |
| 1176 | */ |
| 1177 | request->tail = -1; |
| 1178 | } |
| 1179 | |
| 1180 | if (seqno == 0) |
| 1181 | return -ENOSPC; |
| 1182 | |
| 1183 | ret = intel_ring_wait_seqno(ring, seqno); |
| 1184 | if (ret) |
| 1185 | return ret; |
| 1186 | |
| 1187 | if (WARN_ON(ring->last_retired_head == -1)) |
| 1188 | return -ENOSPC; |
| 1189 | |
| 1190 | ring->head = ring->last_retired_head; |
| 1191 | ring->last_retired_head = -1; |
| 1192 | ring->space = ring_space(ring); |
| 1193 | if (WARN_ON(ring->space < n)) |
| 1194 | return -ENOSPC; |
| 1195 | |
| 1196 | return 0; |
| 1197 | } |
| 1198 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1199 | int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n) |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1200 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1201 | struct drm_device *dev = ring->dev; |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 1202 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1203 | unsigned long end; |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 1204 | int ret; |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 1205 | |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 1206 | ret = intel_ring_wait_request(ring, n); |
| 1207 | if (ret != -ENOSPC) |
| 1208 | return ret; |
| 1209 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1210 | trace_i915_ring_wait_begin(ring); |
Daniel Vetter | e6bfaf8 | 2011-12-14 13:56:59 +0100 | [diff] [blame] | 1211 | if (drm_core_check_feature(dev, DRIVER_GEM)) |
| 1212 | /* With GEM the hangcheck timer should kick us out of the loop, |
| 1213 | * leaving it early runs the risk of corrupting GEM state (due |
| 1214 | * to running on almost untested codepaths). But on resume |
| 1215 | * timers don't work yet, so prevent a complete hang in that |
| 1216 | * case by choosing an insanely large timeout. */ |
| 1217 | end = jiffies + 60 * HZ; |
| 1218 | else |
| 1219 | end = jiffies + 3 * HZ; |
| 1220 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1221 | do { |
Chris Wilson | c7dca47 | 2011-01-20 17:00:10 +0000 | [diff] [blame] | 1222 | ring->head = I915_READ_HEAD(ring); |
| 1223 | ring->space = ring_space(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1224 | if (ring->space >= n) { |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1225 | trace_i915_ring_wait_end(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1226 | return 0; |
| 1227 | } |
| 1228 | |
| 1229 | if (dev->primary->master) { |
| 1230 | struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv; |
| 1231 | if (master_priv->sarea_priv) |
| 1232 | master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT; |
| 1233 | } |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1234 | |
Chris Wilson | e60a0b1 | 2010-10-13 10:09:14 +0100 | [diff] [blame] | 1235 | msleep(1); |
Chris Wilson | f4e0b29 | 2010-10-29 21:06:16 +0100 | [diff] [blame] | 1236 | if (atomic_read(&dev_priv->mm.wedged)) |
| 1237 | return -EAGAIN; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1238 | } while (!time_after(jiffies, end)); |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1239 | trace_i915_ring_wait_end(ring); |
Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 1240 | return -EBUSY; |
| 1241 | } |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1242 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1243 | int intel_ring_begin(struct intel_ring_buffer *ring, |
| 1244 | int num_dwords) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1245 | { |
Chris Wilson | 21dd373 | 2011-01-26 15:55:56 +0000 | [diff] [blame] | 1246 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
Zou Nan hai | be26a10 | 2010-06-12 17:40:24 +0800 | [diff] [blame] | 1247 | int n = 4*num_dwords; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1248 | int ret; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1249 | |
Chris Wilson | 21dd373 | 2011-01-26 15:55:56 +0000 | [diff] [blame] | 1250 | if (unlikely(atomic_read(&dev_priv->mm.wedged))) |
| 1251 | return -EIO; |
| 1252 | |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 1253 | if (unlikely(ring->tail + n > ring->effective_size)) { |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1254 | ret = intel_wrap_ring_buffer(ring); |
| 1255 | if (unlikely(ret)) |
| 1256 | return ret; |
| 1257 | } |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1258 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1259 | if (unlikely(ring->space < n)) { |
| 1260 | ret = intel_wait_ring_buffer(ring, n); |
| 1261 | if (unlikely(ret)) |
| 1262 | return ret; |
| 1263 | } |
Chris Wilson | d97ed33 | 2010-08-04 15:18:13 +0100 | [diff] [blame] | 1264 | |
| 1265 | ring->space -= n; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1266 | return 0; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1267 | } |
| 1268 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1269 | void intel_ring_advance(struct intel_ring_buffer *ring) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1270 | { |
Chris Wilson | d97ed33 | 2010-08-04 15:18:13 +0100 | [diff] [blame] | 1271 | ring->tail &= ring->size - 1; |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1272 | ring->write_tail(ring, ring->tail); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1273 | } |
| 1274 | |
Chris Wilson | e070868 | 2010-09-19 14:46:27 +0100 | [diff] [blame] | 1275 | static const struct intel_ring_buffer render_ring = { |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1276 | .name = "render ring", |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 1277 | .id = RCS, |
Daniel Vetter | 333e9fe | 2010-08-02 16:24:01 +0200 | [diff] [blame] | 1278 | .mmio_base = RENDER_RING_BASE, |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1279 | .size = 32 * PAGE_SIZE, |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1280 | .init = init_render_ring, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 1281 | .write_tail = ring_write_tail, |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1282 | .flush = render_ring_flush, |
| 1283 | .add_request = render_ring_add_request, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1284 | .get_seqno = ring_get_seqno, |
| 1285 | .irq_get = render_ring_get_irq, |
| 1286 | .irq_put = render_ring_put_irq, |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1287 | .dispatch_execbuffer = render_ring_dispatch_execbuffer, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1288 | .cleanup = render_ring_cleanup, |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 1289 | .sync_to = render_ring_sync_to, |
| 1290 | .semaphore_register = {MI_SEMAPHORE_SYNC_INVALID, |
| 1291 | MI_SEMAPHORE_SYNC_RV, |
| 1292 | MI_SEMAPHORE_SYNC_RB}, |
| 1293 | .signal_mbox = {GEN6_VRSYNC, GEN6_BRSYNC}, |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1294 | }; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1295 | |
| 1296 | /* ring buffer for bit-stream decoder */ |
| 1297 | |
Chris Wilson | e070868 | 2010-09-19 14:46:27 +0100 | [diff] [blame] | 1298 | static const struct intel_ring_buffer bsd_ring = { |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1299 | .name = "bsd ring", |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 1300 | .id = VCS, |
Daniel Vetter | 333e9fe | 2010-08-02 16:24:01 +0200 | [diff] [blame] | 1301 | .mmio_base = BSD_RING_BASE, |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1302 | .size = 32 * PAGE_SIZE, |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1303 | .init = init_ring_common, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 1304 | .write_tail = ring_write_tail, |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1305 | .flush = bsd_ring_flush, |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1306 | .add_request = ring_add_request, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1307 | .get_seqno = ring_get_seqno, |
| 1308 | .irq_get = bsd_ring_get_irq, |
| 1309 | .irq_put = bsd_ring_put_irq, |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1310 | .dispatch_execbuffer = ring_dispatch_execbuffer, |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 1311 | }; |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1312 | |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1313 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1314 | static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 1315 | u32 value) |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1316 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1317 | drm_i915_private_t *dev_priv = ring->dev->dev_private; |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1318 | |
| 1319 | /* Every tail move must follow the sequence below */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1320 | I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL, |
| 1321 | GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK | |
| 1322 | GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE); |
| 1323 | I915_WRITE(GEN6_BSD_RNCID, 0x0); |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1324 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1325 | if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) & |
| 1326 | GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0, |
| 1327 | 50)) |
| 1328 | DRM_ERROR("timed out waiting for IDLE Indicator\n"); |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1329 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1330 | I915_WRITE_TAIL(ring, value); |
| 1331 | I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL, |
| 1332 | GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK | |
| 1333 | GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE); |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1334 | } |
| 1335 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1336 | static int gen6_ring_flush(struct intel_ring_buffer *ring, |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1337 | u32 invalidate, u32 flush) |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1338 | { |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1339 | uint32_t cmd; |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1340 | int ret; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1341 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1342 | ret = intel_ring_begin(ring, 4); |
| 1343 | if (ret) |
| 1344 | return ret; |
| 1345 | |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1346 | cmd = MI_FLUSH_DW; |
| 1347 | if (invalidate & I915_GEM_GPU_DOMAINS) |
| 1348 | cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD; |
| 1349 | intel_ring_emit(ring, cmd); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1350 | intel_ring_emit(ring, 0); |
| 1351 | intel_ring_emit(ring, 0); |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1352 | intel_ring_emit(ring, MI_NOOP); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1353 | intel_ring_advance(ring); |
| 1354 | return 0; |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | static int |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 1358 | gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 1359 | u32 offset, u32 len) |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1360 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1361 | int ret; |
Chris Wilson | ab6f8e3 | 2010-09-19 17:53:44 +0100 | [diff] [blame] | 1362 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1363 | ret = intel_ring_begin(ring, 2); |
| 1364 | if (ret) |
| 1365 | return ret; |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 1366 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1367 | intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965); |
| 1368 | /* bit0-7 is the length on GEN6+ */ |
| 1369 | intel_ring_emit(ring, offset); |
| 1370 | intel_ring_advance(ring); |
Chris Wilson | ab6f8e3 | 2010-09-19 17:53:44 +0100 | [diff] [blame] | 1371 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1372 | return 0; |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1373 | } |
| 1374 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 1375 | static bool |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1376 | gen6_render_ring_get_irq(struct intel_ring_buffer *ring) |
| 1377 | { |
| 1378 | return gen6_ring_get_irq(ring, |
| 1379 | GT_USER_INTERRUPT, |
| 1380 | GEN6_RENDER_USER_INTERRUPT); |
| 1381 | } |
| 1382 | |
| 1383 | static void |
| 1384 | gen6_render_ring_put_irq(struct intel_ring_buffer *ring) |
| 1385 | { |
| 1386 | return gen6_ring_put_irq(ring, |
| 1387 | GT_USER_INTERRUPT, |
| 1388 | GEN6_RENDER_USER_INTERRUPT); |
| 1389 | } |
| 1390 | |
| 1391 | static bool |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1392 | gen6_bsd_ring_get_irq(struct intel_ring_buffer *ring) |
| 1393 | { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1394 | return gen6_ring_get_irq(ring, |
| 1395 | GT_GEN6_BSD_USER_INTERRUPT, |
| 1396 | GEN6_BSD_USER_INTERRUPT); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | static void |
| 1400 | gen6_bsd_ring_put_irq(struct intel_ring_buffer *ring) |
| 1401 | { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1402 | return gen6_ring_put_irq(ring, |
| 1403 | GT_GEN6_BSD_USER_INTERRUPT, |
| 1404 | GEN6_BSD_USER_INTERRUPT); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1405 | } |
| 1406 | |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1407 | /* ring buffer for Video Codec for Gen6+ */ |
Chris Wilson | e070868 | 2010-09-19 14:46:27 +0100 | [diff] [blame] | 1408 | static const struct intel_ring_buffer gen6_bsd_ring = { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1409 | .name = "gen6 bsd ring", |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 1410 | .id = VCS, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1411 | .mmio_base = GEN6_BSD_RING_BASE, |
| 1412 | .size = 32 * PAGE_SIZE, |
| 1413 | .init = init_ring_common, |
| 1414 | .write_tail = gen6_bsd_ring_write_tail, |
| 1415 | .flush = gen6_ring_flush, |
| 1416 | .add_request = gen6_add_request, |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 1417 | .get_seqno = gen6_ring_get_seqno, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1418 | .irq_get = gen6_bsd_ring_get_irq, |
| 1419 | .irq_put = gen6_bsd_ring_put_irq, |
| 1420 | .dispatch_execbuffer = gen6_ring_dispatch_execbuffer, |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 1421 | .sync_to = gen6_bsd_ring_sync_to, |
| 1422 | .semaphore_register = {MI_SEMAPHORE_SYNC_VR, |
| 1423 | MI_SEMAPHORE_SYNC_INVALID, |
| 1424 | MI_SEMAPHORE_SYNC_VB}, |
| 1425 | .signal_mbox = {GEN6_RVSYNC, GEN6_BVSYNC}, |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1426 | }; |
| 1427 | |
| 1428 | /* Blitter support (SandyBridge+) */ |
| 1429 | |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 1430 | static bool |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1431 | blt_ring_get_irq(struct intel_ring_buffer *ring) |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1432 | { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1433 | return gen6_ring_get_irq(ring, |
| 1434 | GT_BLT_USER_INTERRUPT, |
| 1435 | GEN6_BLITTER_USER_INTERRUPT); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1436 | } |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1437 | |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1438 | static void |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1439 | blt_ring_put_irq(struct intel_ring_buffer *ring) |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1440 | { |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1441 | gen6_ring_put_irq(ring, |
| 1442 | GT_BLT_USER_INTERRUPT, |
| 1443 | GEN6_BLITTER_USER_INTERRUPT); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1444 | } |
| 1445 | |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1446 | static int blt_ring_flush(struct intel_ring_buffer *ring, |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1447 | u32 invalidate, u32 flush) |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 1448 | { |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1449 | uint32_t cmd; |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1450 | int ret; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1451 | |
Daniel Vetter | 6a233c7 | 2011-12-14 13:57:07 +0100 | [diff] [blame] | 1452 | ret = intel_ring_begin(ring, 4); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1453 | if (ret) |
| 1454 | return ret; |
| 1455 | |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1456 | cmd = MI_FLUSH_DW; |
| 1457 | if (invalidate & I915_GEM_DOMAIN_RENDER) |
| 1458 | cmd |= MI_INVALIDATE_TLB; |
| 1459 | intel_ring_emit(ring, cmd); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1460 | intel_ring_emit(ring, 0); |
| 1461 | intel_ring_emit(ring, 0); |
Chris Wilson | 71a77e0 | 2011-02-02 12:13:49 +0000 | [diff] [blame] | 1462 | intel_ring_emit(ring, MI_NOOP); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 1463 | intel_ring_advance(ring); |
| 1464 | return 0; |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 1465 | } |
| 1466 | |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1467 | static const struct intel_ring_buffer gen6_blt_ring = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1468 | .name = "blt ring", |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 1469 | .id = BCS, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1470 | .mmio_base = BLT_RING_BASE, |
| 1471 | .size = 32 * PAGE_SIZE, |
Daniel Vetter | 6a233c7 | 2011-12-14 13:57:07 +0100 | [diff] [blame] | 1472 | .init = init_ring_common, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1473 | .write_tail = ring_write_tail, |
| 1474 | .flush = blt_ring_flush, |
| 1475 | .add_request = gen6_add_request, |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 1476 | .get_seqno = gen6_ring_get_seqno, |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 1477 | .irq_get = blt_ring_get_irq, |
| 1478 | .irq_put = blt_ring_put_irq, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1479 | .dispatch_execbuffer = gen6_ring_dispatch_execbuffer, |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 1480 | .sync_to = gen6_blt_ring_sync_to, |
| 1481 | .semaphore_register = {MI_SEMAPHORE_SYNC_BR, |
| 1482 | MI_SEMAPHORE_SYNC_BV, |
| 1483 | MI_SEMAPHORE_SYNC_INVALID}, |
| 1484 | .signal_mbox = {GEN6_RBSYNC, GEN6_VBSYNC}, |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1485 | }; |
| 1486 | |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1487 | int intel_init_render_ring_buffer(struct drm_device *dev) |
| 1488 | { |
| 1489 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1490 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1491 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1492 | *ring = render_ring; |
| 1493 | if (INTEL_INFO(dev)->gen >= 6) { |
| 1494 | ring->add_request = gen6_add_request; |
Jesse Barnes | 8d31528 | 2011-10-16 10:23:31 +0200 | [diff] [blame] | 1495 | ring->flush = gen6_render_ring_flush; |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 1496 | ring->irq_get = gen6_render_ring_get_irq; |
| 1497 | ring->irq_put = gen6_render_ring_put_irq; |
Daniel Vetter | 4cd53c0 | 2012-12-14 16:01:25 +0100 | [diff] [blame] | 1498 | ring->get_seqno = gen6_ring_get_seqno; |
Chris Wilson | c6df541 | 2010-12-15 09:56:50 +0000 | [diff] [blame] | 1499 | } else if (IS_GEN5(dev)) { |
| 1500 | ring->add_request = pc_render_add_request; |
| 1501 | ring->get_seqno = pc_render_get_seqno; |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1502 | } |
| 1503 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1504 | if (!I915_NEED_GFX_HWS(dev)) { |
| 1505 | ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr; |
| 1506 | memset(ring->status_page.page_addr, 0, PAGE_SIZE); |
| 1507 | } |
| 1508 | |
| 1509 | return intel_init_ring_buffer(dev, ring); |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1510 | } |
| 1511 | |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 1512 | int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size) |
| 1513 | { |
| 1514 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1515 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
| 1516 | |
| 1517 | *ring = render_ring; |
| 1518 | if (INTEL_INFO(dev)->gen >= 6) { |
| 1519 | ring->add_request = gen6_add_request; |
| 1520 | ring->irq_get = gen6_render_ring_get_irq; |
| 1521 | ring->irq_put = gen6_render_ring_put_irq; |
| 1522 | } else if (IS_GEN5(dev)) { |
| 1523 | ring->add_request = pc_render_add_request; |
| 1524 | ring->get_seqno = pc_render_get_seqno; |
| 1525 | } |
| 1526 | |
Keith Packard | f323470 | 2011-07-22 10:44:39 -0700 | [diff] [blame] | 1527 | if (!I915_NEED_GFX_HWS(dev)) |
| 1528 | ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr; |
| 1529 | |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 1530 | ring->dev = dev; |
| 1531 | INIT_LIST_HEAD(&ring->active_list); |
| 1532 | INIT_LIST_HEAD(&ring->request_list); |
| 1533 | INIT_LIST_HEAD(&ring->gpu_write_list); |
| 1534 | |
| 1535 | ring->size = size; |
| 1536 | ring->effective_size = ring->size; |
| 1537 | if (IS_I830(ring->dev)) |
| 1538 | ring->effective_size -= 128; |
| 1539 | |
| 1540 | ring->map.offset = start; |
| 1541 | ring->map.size = size; |
| 1542 | ring->map.type = 0; |
| 1543 | ring->map.flags = 0; |
| 1544 | ring->map.mtrr = 0; |
| 1545 | |
| 1546 | drm_core_ioremap_wc(&ring->map, dev); |
| 1547 | if (ring->map.handle == NULL) { |
| 1548 | DRM_ERROR("can not ioremap virtual address for" |
| 1549 | " ring buffer\n"); |
| 1550 | return -ENOMEM; |
| 1551 | } |
| 1552 | |
| 1553 | ring->virtual_start = (void __force __iomem *)ring->map.handle; |
| 1554 | return 0; |
| 1555 | } |
| 1556 | |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1557 | int intel_init_bsd_ring_buffer(struct drm_device *dev) |
| 1558 | { |
| 1559 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1560 | struct intel_ring_buffer *ring = &dev_priv->ring[VCS]; |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1561 | |
Jesse Barnes | 65d3eb1 | 2011-04-06 14:54:44 -0700 | [diff] [blame] | 1562 | if (IS_GEN6(dev) || IS_GEN7(dev)) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1563 | *ring = gen6_bsd_ring; |
Xiang, Haihao | 881f47b | 2010-09-19 14:40:43 +0100 | [diff] [blame] | 1564 | else |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1565 | *ring = bsd_ring; |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1566 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1567 | return intel_init_ring_buffer(dev, ring); |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 1568 | } |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1569 | |
| 1570 | int intel_init_blt_ring_buffer(struct drm_device *dev) |
| 1571 | { |
| 1572 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1573 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1574 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1575 | *ring = gen6_blt_ring; |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1576 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 1577 | return intel_init_ring_buffer(dev, ring); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 1578 | } |