]>
Commit | Line | Data |
---|---|---|
62fdfeaf EA |
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 | ||
760285e7 | 30 | #include <drm/drmP.h> |
62fdfeaf | 31 | #include "i915_drv.h" |
760285e7 | 32 | #include <drm/i915_drm.h> |
62fdfeaf | 33 | #include "i915_trace.h" |
881f47b6 | 34 | #include "intel_drv.h" |
62fdfeaf | 35 | |
48d82387 OM |
36 | bool |
37 | intel_ring_initialized(struct intel_engine_cs *ring) | |
38 | { | |
39 | struct drm_device *dev = ring->dev; | |
40 | ||
41 | if (!dev) | |
42 | return false; | |
43 | ||
44 | if (i915.enable_execlists) { | |
45 | struct intel_context *dctx = ring->default_context; | |
46 | struct intel_ringbuffer *ringbuf = dctx->engine[ring->id].ringbuf; | |
47 | ||
48 | return ringbuf->obj; | |
49 | } else | |
50 | return ring->buffer && ring->buffer->obj; | |
51 | } | |
18393f63 | 52 | |
82e104cc | 53 | int __intel_ring_space(int head, int tail, int size) |
c7dca47b | 54 | { |
4f54741e DG |
55 | int space = head - tail; |
56 | if (space <= 0) | |
1cf0ba14 | 57 | space += size; |
4f54741e | 58 | return space - I915_RING_FREE_SPACE; |
c7dca47b CW |
59 | } |
60 | ||
ebd0fd4b DG |
61 | void intel_ring_update_space(struct intel_ringbuffer *ringbuf) |
62 | { | |
63 | if (ringbuf->last_retired_head != -1) { | |
64 | ringbuf->head = ringbuf->last_retired_head; | |
65 | ringbuf->last_retired_head = -1; | |
66 | } | |
67 | ||
68 | ringbuf->space = __intel_ring_space(ringbuf->head & HEAD_ADDR, | |
69 | ringbuf->tail, ringbuf->size); | |
70 | } | |
71 | ||
82e104cc | 72 | int intel_ring_space(struct intel_ringbuffer *ringbuf) |
1cf0ba14 | 73 | { |
ebd0fd4b DG |
74 | intel_ring_update_space(ringbuf); |
75 | return ringbuf->space; | |
1cf0ba14 CW |
76 | } |
77 | ||
82e104cc | 78 | bool intel_ring_stopped(struct intel_engine_cs *ring) |
09246732 CW |
79 | { |
80 | struct drm_i915_private *dev_priv = ring->dev->dev_private; | |
88b4aa87 MK |
81 | return dev_priv->gpu_error.stop_rings & intel_ring_flag(ring); |
82 | } | |
09246732 | 83 | |
a4872ba6 | 84 | void __intel_ring_advance(struct intel_engine_cs *ring) |
88b4aa87 | 85 | { |
93b0a4e0 OM |
86 | struct intel_ringbuffer *ringbuf = ring->buffer; |
87 | ringbuf->tail &= ringbuf->size - 1; | |
88b4aa87 | 88 | if (intel_ring_stopped(ring)) |
09246732 | 89 | return; |
93b0a4e0 | 90 | ring->write_tail(ring, ringbuf->tail); |
09246732 CW |
91 | } |
92 | ||
b72f3acb | 93 | static int |
a4872ba6 | 94 | gen2_render_ring_flush(struct intel_engine_cs *ring, |
46f0f8d1 CW |
95 | u32 invalidate_domains, |
96 | u32 flush_domains) | |
97 | { | |
98 | u32 cmd; | |
99 | int ret; | |
100 | ||
101 | cmd = MI_FLUSH; | |
31b14c9f | 102 | if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0) |
46f0f8d1 CW |
103 | cmd |= MI_NO_WRITE_FLUSH; |
104 | ||
105 | if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER) | |
106 | cmd |= MI_READ_FLUSH; | |
107 | ||
108 | ret = intel_ring_begin(ring, 2); | |
109 | if (ret) | |
110 | return ret; | |
111 | ||
112 | intel_ring_emit(ring, cmd); | |
113 | intel_ring_emit(ring, MI_NOOP); | |
114 | intel_ring_advance(ring); | |
115 | ||
116 | return 0; | |
117 | } | |
118 | ||
119 | static int | |
a4872ba6 | 120 | gen4_render_ring_flush(struct intel_engine_cs *ring, |
46f0f8d1 CW |
121 | u32 invalidate_domains, |
122 | u32 flush_domains) | |
62fdfeaf | 123 | { |
78501eac | 124 | struct drm_device *dev = ring->dev; |
6f392d54 | 125 | u32 cmd; |
b72f3acb | 126 | int ret; |
6f392d54 | 127 | |
36d527de CW |
128 | /* |
129 | * read/write caches: | |
130 | * | |
131 | * I915_GEM_DOMAIN_RENDER is always invalidated, but is | |
132 | * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is | |
133 | * also flushed at 2d versus 3d pipeline switches. | |
134 | * | |
135 | * read-only caches: | |
136 | * | |
137 | * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if | |
138 | * MI_READ_FLUSH is set, and is always flushed on 965. | |
139 | * | |
140 | * I915_GEM_DOMAIN_COMMAND may not exist? | |
141 | * | |
142 | * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is | |
143 | * invalidated when MI_EXE_FLUSH is set. | |
144 | * | |
145 | * I915_GEM_DOMAIN_VERTEX, which exists on 965, is | |
146 | * invalidated with every MI_FLUSH. | |
147 | * | |
148 | * TLBs: | |
149 | * | |
150 | * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND | |
151 | * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and | |
152 | * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER | |
153 | * are flushed at any MI_FLUSH. | |
154 | */ | |
155 | ||
156 | cmd = MI_FLUSH | MI_NO_WRITE_FLUSH; | |
46f0f8d1 | 157 | if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) |
36d527de | 158 | cmd &= ~MI_NO_WRITE_FLUSH; |
36d527de CW |
159 | if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION) |
160 | cmd |= MI_EXE_FLUSH; | |
62fdfeaf | 161 | |
36d527de CW |
162 | if (invalidate_domains & I915_GEM_DOMAIN_COMMAND && |
163 | (IS_G4X(dev) || IS_GEN5(dev))) | |
164 | cmd |= MI_INVALIDATE_ISP; | |
70eac33e | 165 | |
36d527de CW |
166 | ret = intel_ring_begin(ring, 2); |
167 | if (ret) | |
168 | return ret; | |
b72f3acb | 169 | |
36d527de CW |
170 | intel_ring_emit(ring, cmd); |
171 | intel_ring_emit(ring, MI_NOOP); | |
172 | intel_ring_advance(ring); | |
b72f3acb CW |
173 | |
174 | return 0; | |
8187a2b7 ZN |
175 | } |
176 | ||
8d315287 JB |
177 | /** |
178 | * Emits a PIPE_CONTROL with a non-zero post-sync operation, for | |
179 | * implementing two workarounds on gen6. From section 1.4.7.1 | |
180 | * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1: | |
181 | * | |
182 | * [DevSNB-C+{W/A}] Before any depth stall flush (including those | |
183 | * produced by non-pipelined state commands), software needs to first | |
184 | * send a PIPE_CONTROL with no bits set except Post-Sync Operation != | |
185 | * 0. | |
186 | * | |
187 | * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable | |
188 | * =1, a PIPE_CONTROL with any non-zero post-sync-op is required. | |
189 | * | |
190 | * And the workaround for these two requires this workaround first: | |
191 | * | |
192 | * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent | |
193 | * BEFORE the pipe-control with a post-sync op and no write-cache | |
194 | * flushes. | |
195 | * | |
196 | * And this last workaround is tricky because of the requirements on | |
197 | * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM | |
198 | * volume 2 part 1: | |
199 | * | |
200 | * "1 of the following must also be set: | |
201 | * - Render Target Cache Flush Enable ([12] of DW1) | |
202 | * - Depth Cache Flush Enable ([0] of DW1) | |
203 | * - Stall at Pixel Scoreboard ([1] of DW1) | |
204 | * - Depth Stall ([13] of DW1) | |
205 | * - Post-Sync Operation ([13] of DW1) | |
206 | * - Notify Enable ([8] of DW1)" | |
207 | * | |
208 | * The cache flushes require the workaround flush that triggered this | |
209 | * one, so we can't use it. Depth stall would trigger the same. | |
210 | * Post-sync nonzero is what triggered this second workaround, so we | |
211 | * can't use that one either. Notify enable is IRQs, which aren't | |
212 | * really our business. That leaves only stall at scoreboard. | |
213 | */ | |
214 | static int | |
a4872ba6 | 215 | intel_emit_post_sync_nonzero_flush(struct intel_engine_cs *ring) |
8d315287 | 216 | { |
18393f63 | 217 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
8d315287 JB |
218 | int ret; |
219 | ||
220 | ||
221 | ret = intel_ring_begin(ring, 6); | |
222 | if (ret) | |
223 | return ret; | |
224 | ||
225 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5)); | |
226 | intel_ring_emit(ring, PIPE_CONTROL_CS_STALL | | |
227 | PIPE_CONTROL_STALL_AT_SCOREBOARD); | |
228 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */ | |
229 | intel_ring_emit(ring, 0); /* low dword */ | |
230 | intel_ring_emit(ring, 0); /* high dword */ | |
231 | intel_ring_emit(ring, MI_NOOP); | |
232 | intel_ring_advance(ring); | |
233 | ||
234 | ret = intel_ring_begin(ring, 6); | |
235 | if (ret) | |
236 | return ret; | |
237 | ||
238 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5)); | |
239 | intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE); | |
240 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */ | |
241 | intel_ring_emit(ring, 0); | |
242 | intel_ring_emit(ring, 0); | |
243 | intel_ring_emit(ring, MI_NOOP); | |
244 | intel_ring_advance(ring); | |
245 | ||
246 | return 0; | |
247 | } | |
248 | ||
249 | static int | |
a4872ba6 | 250 | gen6_render_ring_flush(struct intel_engine_cs *ring, |
8d315287 JB |
251 | u32 invalidate_domains, u32 flush_domains) |
252 | { | |
253 | u32 flags = 0; | |
18393f63 | 254 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
8d315287 JB |
255 | int ret; |
256 | ||
b3111509 PZ |
257 | /* Force SNB workarounds for PIPE_CONTROL flushes */ |
258 | ret = intel_emit_post_sync_nonzero_flush(ring); | |
259 | if (ret) | |
260 | return ret; | |
261 | ||
8d315287 JB |
262 | /* Just flush everything. Experiments have shown that reducing the |
263 | * number of bits based on the write domains has little performance | |
264 | * impact. | |
265 | */ | |
7d54a904 CW |
266 | if (flush_domains) { |
267 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; | |
268 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; | |
269 | /* | |
270 | * Ensure that any following seqno writes only happen | |
271 | * when the render cache is indeed flushed. | |
272 | */ | |
97f209bc | 273 | flags |= PIPE_CONTROL_CS_STALL; |
7d54a904 CW |
274 | } |
275 | if (invalidate_domains) { | |
276 | flags |= PIPE_CONTROL_TLB_INVALIDATE; | |
277 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; | |
278 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; | |
279 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; | |
280 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; | |
281 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; | |
282 | /* | |
283 | * TLB invalidate requires a post-sync write. | |
284 | */ | |
3ac78313 | 285 | flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL; |
7d54a904 | 286 | } |
8d315287 | 287 | |
6c6cf5aa | 288 | ret = intel_ring_begin(ring, 4); |
8d315287 JB |
289 | if (ret) |
290 | return ret; | |
291 | ||
6c6cf5aa | 292 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4)); |
8d315287 JB |
293 | intel_ring_emit(ring, flags); |
294 | intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); | |
6c6cf5aa | 295 | intel_ring_emit(ring, 0); |
8d315287 JB |
296 | intel_ring_advance(ring); |
297 | ||
298 | return 0; | |
299 | } | |
300 | ||
f3987631 | 301 | static int |
a4872ba6 | 302 | gen7_render_ring_cs_stall_wa(struct intel_engine_cs *ring) |
f3987631 PZ |
303 | { |
304 | int ret; | |
305 | ||
306 | ret = intel_ring_begin(ring, 4); | |
307 | if (ret) | |
308 | return ret; | |
309 | ||
310 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4)); | |
311 | intel_ring_emit(ring, PIPE_CONTROL_CS_STALL | | |
312 | PIPE_CONTROL_STALL_AT_SCOREBOARD); | |
313 | intel_ring_emit(ring, 0); | |
314 | intel_ring_emit(ring, 0); | |
315 | intel_ring_advance(ring); | |
316 | ||
317 | return 0; | |
318 | } | |
319 | ||
4772eaeb | 320 | static int |
a4872ba6 | 321 | gen7_render_ring_flush(struct intel_engine_cs *ring, |
4772eaeb PZ |
322 | u32 invalidate_domains, u32 flush_domains) |
323 | { | |
324 | u32 flags = 0; | |
18393f63 | 325 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
4772eaeb PZ |
326 | int ret; |
327 | ||
f3987631 PZ |
328 | /* |
329 | * Ensure that any following seqno writes only happen when the render | |
330 | * cache is indeed flushed. | |
331 | * | |
332 | * Workaround: 4th PIPE_CONTROL command (except the ones with only | |
333 | * read-cache invalidate bits set) must have the CS_STALL bit set. We | |
334 | * don't try to be clever and just set it unconditionally. | |
335 | */ | |
336 | flags |= PIPE_CONTROL_CS_STALL; | |
337 | ||
4772eaeb PZ |
338 | /* Just flush everything. Experiments have shown that reducing the |
339 | * number of bits based on the write domains has little performance | |
340 | * impact. | |
341 | */ | |
342 | if (flush_domains) { | |
343 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; | |
344 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; | |
4772eaeb PZ |
345 | } |
346 | if (invalidate_domains) { | |
347 | flags |= PIPE_CONTROL_TLB_INVALIDATE; | |
348 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; | |
349 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; | |
350 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; | |
351 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; | |
352 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; | |
148b83d0 | 353 | flags |= PIPE_CONTROL_MEDIA_STATE_CLEAR; |
4772eaeb PZ |
354 | /* |
355 | * TLB invalidate requires a post-sync write. | |
356 | */ | |
357 | flags |= PIPE_CONTROL_QW_WRITE; | |
b9e1faa7 | 358 | flags |= PIPE_CONTROL_GLOBAL_GTT_IVB; |
f3987631 | 359 | |
add284a3 CW |
360 | flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD; |
361 | ||
f3987631 PZ |
362 | /* Workaround: we must issue a pipe_control with CS-stall bit |
363 | * set before a pipe_control command that has the state cache | |
364 | * invalidate bit set. */ | |
365 | gen7_render_ring_cs_stall_wa(ring); | |
4772eaeb PZ |
366 | } |
367 | ||
368 | ret = intel_ring_begin(ring, 4); | |
369 | if (ret) | |
370 | return ret; | |
371 | ||
372 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4)); | |
373 | intel_ring_emit(ring, flags); | |
b9e1faa7 | 374 | intel_ring_emit(ring, scratch_addr); |
4772eaeb PZ |
375 | intel_ring_emit(ring, 0); |
376 | intel_ring_advance(ring); | |
377 | ||
378 | return 0; | |
379 | } | |
380 | ||
884ceace KG |
381 | static int |
382 | gen8_emit_pipe_control(struct intel_engine_cs *ring, | |
383 | u32 flags, u32 scratch_addr) | |
384 | { | |
385 | int ret; | |
386 | ||
387 | ret = intel_ring_begin(ring, 6); | |
388 | if (ret) | |
389 | return ret; | |
390 | ||
391 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(6)); | |
392 | intel_ring_emit(ring, flags); | |
393 | intel_ring_emit(ring, scratch_addr); | |
394 | intel_ring_emit(ring, 0); | |
395 | intel_ring_emit(ring, 0); | |
396 | intel_ring_emit(ring, 0); | |
397 | intel_ring_advance(ring); | |
398 | ||
399 | return 0; | |
400 | } | |
401 | ||
a5f3d68e | 402 | static int |
a4872ba6 | 403 | gen8_render_ring_flush(struct intel_engine_cs *ring, |
a5f3d68e BW |
404 | u32 invalidate_domains, u32 flush_domains) |
405 | { | |
406 | u32 flags = 0; | |
18393f63 | 407 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
02c9f7e3 | 408 | int ret; |
a5f3d68e BW |
409 | |
410 | flags |= PIPE_CONTROL_CS_STALL; | |
411 | ||
412 | if (flush_domains) { | |
413 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; | |
414 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; | |
415 | } | |
416 | if (invalidate_domains) { | |
417 | flags |= PIPE_CONTROL_TLB_INVALIDATE; | |
418 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; | |
419 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; | |
420 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; | |
421 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; | |
422 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; | |
423 | flags |= PIPE_CONTROL_QW_WRITE; | |
424 | flags |= PIPE_CONTROL_GLOBAL_GTT_IVB; | |
02c9f7e3 KG |
425 | |
426 | /* WaCsStallBeforeStateCacheInvalidate:bdw,chv */ | |
427 | ret = gen8_emit_pipe_control(ring, | |
428 | PIPE_CONTROL_CS_STALL | | |
429 | PIPE_CONTROL_STALL_AT_SCOREBOARD, | |
430 | 0); | |
431 | if (ret) | |
432 | return ret; | |
a5f3d68e BW |
433 | } |
434 | ||
6e0b3f8d | 435 | return gen8_emit_pipe_control(ring, flags, scratch_addr); |
a5f3d68e BW |
436 | } |
437 | ||
a4872ba6 | 438 | static void ring_write_tail(struct intel_engine_cs *ring, |
297b0c5b | 439 | u32 value) |
d46eefa2 | 440 | { |
4640c4ff | 441 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
297b0c5b | 442 | I915_WRITE_TAIL(ring, value); |
d46eefa2 XH |
443 | } |
444 | ||
a4872ba6 | 445 | u64 intel_ring_get_active_head(struct intel_engine_cs *ring) |
8187a2b7 | 446 | { |
4640c4ff | 447 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
50877445 | 448 | u64 acthd; |
8187a2b7 | 449 | |
50877445 CW |
450 | if (INTEL_INFO(ring->dev)->gen >= 8) |
451 | acthd = I915_READ64_2x32(RING_ACTHD(ring->mmio_base), | |
452 | RING_ACTHD_UDW(ring->mmio_base)); | |
453 | else if (INTEL_INFO(ring->dev)->gen >= 4) | |
454 | acthd = I915_READ(RING_ACTHD(ring->mmio_base)); | |
455 | else | |
456 | acthd = I915_READ(ACTHD); | |
457 | ||
458 | return acthd; | |
8187a2b7 ZN |
459 | } |
460 | ||
a4872ba6 | 461 | static void ring_setup_phys_status_page(struct intel_engine_cs *ring) |
035dc1e0 DV |
462 | { |
463 | struct drm_i915_private *dev_priv = ring->dev->dev_private; | |
464 | u32 addr; | |
465 | ||
466 | addr = dev_priv->status_page_dmah->busaddr; | |
467 | if (INTEL_INFO(ring->dev)->gen >= 4) | |
468 | addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0; | |
469 | I915_WRITE(HWS_PGA, addr); | |
470 | } | |
471 | ||
af75f269 DL |
472 | static void intel_ring_setup_status_page(struct intel_engine_cs *ring) |
473 | { | |
474 | struct drm_device *dev = ring->dev; | |
475 | struct drm_i915_private *dev_priv = ring->dev->dev_private; | |
476 | u32 mmio = 0; | |
477 | ||
478 | /* The ring status page addresses are no longer next to the rest of | |
479 | * the ring registers as of gen7. | |
480 | */ | |
481 | if (IS_GEN7(dev)) { | |
482 | switch (ring->id) { | |
483 | case RCS: | |
484 | mmio = RENDER_HWS_PGA_GEN7; | |
485 | break; | |
486 | case BCS: | |
487 | mmio = BLT_HWS_PGA_GEN7; | |
488 | break; | |
489 | /* | |
490 | * VCS2 actually doesn't exist on Gen7. Only shut up | |
491 | * gcc switch check warning | |
492 | */ | |
493 | case VCS2: | |
494 | case VCS: | |
495 | mmio = BSD_HWS_PGA_GEN7; | |
496 | break; | |
497 | case VECS: | |
498 | mmio = VEBOX_HWS_PGA_GEN7; | |
499 | break; | |
500 | } | |
501 | } else if (IS_GEN6(ring->dev)) { | |
502 | mmio = RING_HWS_PGA_GEN6(ring->mmio_base); | |
503 | } else { | |
504 | /* XXX: gen8 returns to sanity */ | |
505 | mmio = RING_HWS_PGA(ring->mmio_base); | |
506 | } | |
507 | ||
508 | I915_WRITE(mmio, (u32)ring->status_page.gfx_addr); | |
509 | POSTING_READ(mmio); | |
510 | ||
511 | /* | |
512 | * Flush the TLB for this page | |
513 | * | |
514 | * FIXME: These two bits have disappeared on gen8, so a question | |
515 | * arises: do we still need this and if so how should we go about | |
516 | * invalidating the TLB? | |
517 | */ | |
518 | if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) { | |
519 | u32 reg = RING_INSTPM(ring->mmio_base); | |
520 | ||
521 | /* ring should be idle before issuing a sync flush*/ | |
522 | WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0); | |
523 | ||
524 | I915_WRITE(reg, | |
525 | _MASKED_BIT_ENABLE(INSTPM_TLB_INVALIDATE | | |
526 | INSTPM_SYNC_FLUSH)); | |
527 | if (wait_for((I915_READ(reg) & INSTPM_SYNC_FLUSH) == 0, | |
528 | 1000)) | |
529 | DRM_ERROR("%s: wait for SyncFlush to complete for TLB invalidation timed out\n", | |
530 | ring->name); | |
531 | } | |
532 | } | |
533 | ||
a4872ba6 | 534 | static bool stop_ring(struct intel_engine_cs *ring) |
8187a2b7 | 535 | { |
9991ae78 | 536 | struct drm_i915_private *dev_priv = to_i915(ring->dev); |
8187a2b7 | 537 | |
9991ae78 CW |
538 | if (!IS_GEN2(ring->dev)) { |
539 | I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING)); | |
403bdd10 DV |
540 | if (wait_for((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) { |
541 | DRM_ERROR("%s : timed out trying to stop ring\n", ring->name); | |
9bec9b13 CW |
542 | /* Sometimes we observe that the idle flag is not |
543 | * set even though the ring is empty. So double | |
544 | * check before giving up. | |
545 | */ | |
546 | if (I915_READ_HEAD(ring) != I915_READ_TAIL(ring)) | |
547 | return false; | |
9991ae78 CW |
548 | } |
549 | } | |
b7884eb4 | 550 | |
7f2ab699 | 551 | I915_WRITE_CTL(ring, 0); |
570ef608 | 552 | I915_WRITE_HEAD(ring, 0); |
78501eac | 553 | ring->write_tail(ring, 0); |
8187a2b7 | 554 | |
9991ae78 CW |
555 | if (!IS_GEN2(ring->dev)) { |
556 | (void)I915_READ_CTL(ring); | |
557 | I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING)); | |
558 | } | |
a51435a3 | 559 | |
9991ae78 CW |
560 | return (I915_READ_HEAD(ring) & HEAD_ADDR) == 0; |
561 | } | |
8187a2b7 | 562 | |
a4872ba6 | 563 | static int init_ring_common(struct intel_engine_cs *ring) |
9991ae78 CW |
564 | { |
565 | struct drm_device *dev = ring->dev; | |
566 | struct drm_i915_private *dev_priv = dev->dev_private; | |
93b0a4e0 OM |
567 | struct intel_ringbuffer *ringbuf = ring->buffer; |
568 | struct drm_i915_gem_object *obj = ringbuf->obj; | |
9991ae78 CW |
569 | int ret = 0; |
570 | ||
59bad947 | 571 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
9991ae78 CW |
572 | |
573 | if (!stop_ring(ring)) { | |
574 | /* G45 ring initialization often fails to reset head to zero */ | |
6fd0d56e CW |
575 | DRM_DEBUG_KMS("%s head not reset to zero " |
576 | "ctl %08x head %08x tail %08x start %08x\n", | |
577 | ring->name, | |
578 | I915_READ_CTL(ring), | |
579 | I915_READ_HEAD(ring), | |
580 | I915_READ_TAIL(ring), | |
581 | I915_READ_START(ring)); | |
8187a2b7 | 582 | |
9991ae78 | 583 | if (!stop_ring(ring)) { |
6fd0d56e CW |
584 | DRM_ERROR("failed to set %s head to zero " |
585 | "ctl %08x head %08x tail %08x start %08x\n", | |
586 | ring->name, | |
587 | I915_READ_CTL(ring), | |
588 | I915_READ_HEAD(ring), | |
589 | I915_READ_TAIL(ring), | |
590 | I915_READ_START(ring)); | |
9991ae78 CW |
591 | ret = -EIO; |
592 | goto out; | |
6fd0d56e | 593 | } |
8187a2b7 ZN |
594 | } |
595 | ||
9991ae78 CW |
596 | if (I915_NEED_GFX_HWS(dev)) |
597 | intel_ring_setup_status_page(ring); | |
598 | else | |
599 | ring_setup_phys_status_page(ring); | |
600 | ||
ece4a17d JK |
601 | /* Enforce ordering by reading HEAD register back */ |
602 | I915_READ_HEAD(ring); | |
603 | ||
0d8957c8 DV |
604 | /* Initialize the ring. This must happen _after_ we've cleared the ring |
605 | * registers with the above sequence (the readback of the HEAD registers | |
606 | * also enforces ordering), otherwise the hw might lose the new ring | |
607 | * register values. */ | |
f343c5f6 | 608 | I915_WRITE_START(ring, i915_gem_obj_ggtt_offset(obj)); |
95468892 CW |
609 | |
610 | /* WaClearRingBufHeadRegAtInit:ctg,elk */ | |
611 | if (I915_READ_HEAD(ring)) | |
612 | DRM_DEBUG("%s initialization failed [head=%08x], fudging\n", | |
613 | ring->name, I915_READ_HEAD(ring)); | |
614 | I915_WRITE_HEAD(ring, 0); | |
615 | (void)I915_READ_HEAD(ring); | |
616 | ||
7f2ab699 | 617 | I915_WRITE_CTL(ring, |
93b0a4e0 | 618 | ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) |
5d031e5b | 619 | | RING_VALID); |
8187a2b7 | 620 | |
8187a2b7 | 621 | /* If the head is still not zero, the ring is dead */ |
f01db988 | 622 | if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 && |
f343c5f6 | 623 | I915_READ_START(ring) == i915_gem_obj_ggtt_offset(obj) && |
f01db988 | 624 | (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) { |
e74cfed5 | 625 | DRM_ERROR("%s initialization failed " |
48e48a0b CW |
626 | "ctl %08x (valid? %d) head %08x tail %08x start %08x [expected %08lx]\n", |
627 | ring->name, | |
628 | I915_READ_CTL(ring), I915_READ_CTL(ring) & RING_VALID, | |
629 | I915_READ_HEAD(ring), I915_READ_TAIL(ring), | |
630 | I915_READ_START(ring), (unsigned long)i915_gem_obj_ggtt_offset(obj)); | |
b7884eb4 DV |
631 | ret = -EIO; |
632 | goto out; | |
8187a2b7 ZN |
633 | } |
634 | ||
ebd0fd4b | 635 | ringbuf->last_retired_head = -1; |
5c6c6003 CW |
636 | ringbuf->head = I915_READ_HEAD(ring); |
637 | ringbuf->tail = I915_READ_TAIL(ring) & TAIL_ADDR; | |
ebd0fd4b | 638 | intel_ring_update_space(ringbuf); |
1ec14ad3 | 639 | |
50f018df CW |
640 | memset(&ring->hangcheck, 0, sizeof(ring->hangcheck)); |
641 | ||
b7884eb4 | 642 | out: |
59bad947 | 643 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
b7884eb4 DV |
644 | |
645 | return ret; | |
8187a2b7 ZN |
646 | } |
647 | ||
9b1136d5 OM |
648 | void |
649 | intel_fini_pipe_control(struct intel_engine_cs *ring) | |
650 | { | |
651 | struct drm_device *dev = ring->dev; | |
652 | ||
653 | if (ring->scratch.obj == NULL) | |
654 | return; | |
655 | ||
656 | if (INTEL_INFO(dev)->gen >= 5) { | |
657 | kunmap(sg_page(ring->scratch.obj->pages->sgl)); | |
658 | i915_gem_object_ggtt_unpin(ring->scratch.obj); | |
659 | } | |
660 | ||
661 | drm_gem_object_unreference(&ring->scratch.obj->base); | |
662 | ring->scratch.obj = NULL; | |
663 | } | |
664 | ||
665 | int | |
666 | intel_init_pipe_control(struct intel_engine_cs *ring) | |
c6df541c | 667 | { |
c6df541c CW |
668 | int ret; |
669 | ||
bfc882b4 | 670 | WARN_ON(ring->scratch.obj); |
c6df541c | 671 | |
0d1aacac CW |
672 | ring->scratch.obj = i915_gem_alloc_object(ring->dev, 4096); |
673 | if (ring->scratch.obj == NULL) { | |
c6df541c CW |
674 | DRM_ERROR("Failed to allocate seqno page\n"); |
675 | ret = -ENOMEM; | |
676 | goto err; | |
677 | } | |
e4ffd173 | 678 | |
a9cc726c DV |
679 | ret = i915_gem_object_set_cache_level(ring->scratch.obj, I915_CACHE_LLC); |
680 | if (ret) | |
681 | goto err_unref; | |
c6df541c | 682 | |
1ec9e26d | 683 | ret = i915_gem_obj_ggtt_pin(ring->scratch.obj, 4096, 0); |
c6df541c CW |
684 | if (ret) |
685 | goto err_unref; | |
686 | ||
0d1aacac CW |
687 | ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(ring->scratch.obj); |
688 | ring->scratch.cpu_page = kmap(sg_page(ring->scratch.obj->pages->sgl)); | |
689 | if (ring->scratch.cpu_page == NULL) { | |
56b085a0 | 690 | ret = -ENOMEM; |
c6df541c | 691 | goto err_unpin; |
56b085a0 | 692 | } |
c6df541c | 693 | |
2b1086cc | 694 | DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n", |
0d1aacac | 695 | ring->name, ring->scratch.gtt_offset); |
c6df541c CW |
696 | return 0; |
697 | ||
698 | err_unpin: | |
d7f46fc4 | 699 | i915_gem_object_ggtt_unpin(ring->scratch.obj); |
c6df541c | 700 | err_unref: |
0d1aacac | 701 | drm_gem_object_unreference(&ring->scratch.obj->base); |
c6df541c | 702 | err: |
c6df541c CW |
703 | return ret; |
704 | } | |
705 | ||
771b9a53 MT |
706 | static int intel_ring_workarounds_emit(struct intel_engine_cs *ring, |
707 | struct intel_context *ctx) | |
86d7f238 | 708 | { |
7225342a | 709 | int ret, i; |
888b5995 AS |
710 | struct drm_device *dev = ring->dev; |
711 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7225342a | 712 | struct i915_workarounds *w = &dev_priv->workarounds; |
888b5995 | 713 | |
e6c1abb7 | 714 | if (WARN_ON_ONCE(w->count == 0)) |
7225342a | 715 | return 0; |
888b5995 | 716 | |
7225342a MK |
717 | ring->gpu_caches_dirty = true; |
718 | ret = intel_ring_flush_all_caches(ring); | |
719 | if (ret) | |
720 | return ret; | |
888b5995 | 721 | |
22a916aa | 722 | ret = intel_ring_begin(ring, (w->count * 2 + 2)); |
7225342a MK |
723 | if (ret) |
724 | return ret; | |
725 | ||
22a916aa | 726 | intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(w->count)); |
7225342a | 727 | for (i = 0; i < w->count; i++) { |
7225342a MK |
728 | intel_ring_emit(ring, w->reg[i].addr); |
729 | intel_ring_emit(ring, w->reg[i].value); | |
730 | } | |
22a916aa | 731 | intel_ring_emit(ring, MI_NOOP); |
7225342a MK |
732 | |
733 | intel_ring_advance(ring); | |
734 | ||
735 | ring->gpu_caches_dirty = true; | |
736 | ret = intel_ring_flush_all_caches(ring); | |
737 | if (ret) | |
738 | return ret; | |
888b5995 | 739 | |
7225342a | 740 | DRM_DEBUG_DRIVER("Number of Workarounds emitted: %d\n", w->count); |
888b5995 | 741 | |
7225342a | 742 | return 0; |
86d7f238 AS |
743 | } |
744 | ||
8753181e | 745 | static int intel_rcs_ctx_init(struct drm_i915_gem_request *req) |
8f0e2b9d DV |
746 | { |
747 | int ret; | |
748 | ||
8753181e | 749 | ret = intel_ring_workarounds_emit(req->ring, req->ctx); |
8f0e2b9d DV |
750 | if (ret != 0) |
751 | return ret; | |
752 | ||
8753181e | 753 | ret = i915_gem_render_state_init(req->ring); |
8f0e2b9d DV |
754 | if (ret) |
755 | DRM_ERROR("init render state: %d\n", ret); | |
756 | ||
757 | return ret; | |
758 | } | |
759 | ||
7225342a | 760 | static int wa_add(struct drm_i915_private *dev_priv, |
cf4b0de6 | 761 | const u32 addr, const u32 mask, const u32 val) |
7225342a MK |
762 | { |
763 | const u32 idx = dev_priv->workarounds.count; | |
764 | ||
765 | if (WARN_ON(idx >= I915_MAX_WA_REGS)) | |
766 | return -ENOSPC; | |
767 | ||
768 | dev_priv->workarounds.reg[idx].addr = addr; | |
769 | dev_priv->workarounds.reg[idx].value = val; | |
770 | dev_priv->workarounds.reg[idx].mask = mask; | |
771 | ||
772 | dev_priv->workarounds.count++; | |
773 | ||
774 | return 0; | |
86d7f238 AS |
775 | } |
776 | ||
cf4b0de6 DL |
777 | #define WA_REG(addr, mask, val) { \ |
778 | const int r = wa_add(dev_priv, (addr), (mask), (val)); \ | |
7225342a MK |
779 | if (r) \ |
780 | return r; \ | |
781 | } | |
782 | ||
783 | #define WA_SET_BIT_MASKED(addr, mask) \ | |
26459343 | 784 | WA_REG(addr, (mask), _MASKED_BIT_ENABLE(mask)) |
7225342a MK |
785 | |
786 | #define WA_CLR_BIT_MASKED(addr, mask) \ | |
26459343 | 787 | WA_REG(addr, (mask), _MASKED_BIT_DISABLE(mask)) |
7225342a | 788 | |
98533251 | 789 | #define WA_SET_FIELD_MASKED(addr, mask, value) \ |
cf4b0de6 | 790 | WA_REG(addr, mask, _MASKED_FIELD(mask, value)) |
7225342a | 791 | |
cf4b0de6 DL |
792 | #define WA_SET_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) | (mask)) |
793 | #define WA_CLR_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) & ~(mask)) | |
7225342a | 794 | |
cf4b0de6 | 795 | #define WA_WRITE(addr, val) WA_REG(addr, 0xffffffff, val) |
7225342a | 796 | |
00e1e623 | 797 | static int bdw_init_workarounds(struct intel_engine_cs *ring) |
86d7f238 | 798 | { |
888b5995 AS |
799 | struct drm_device *dev = ring->dev; |
800 | struct drm_i915_private *dev_priv = dev->dev_private; | |
86d7f238 | 801 | |
9cc83020 VS |
802 | WA_SET_BIT_MASKED(INSTPM, INSTPM_FORCE_ORDERING); |
803 | ||
2441f877 VS |
804 | /* WaDisableAsyncFlipPerfMode:bdw */ |
805 | WA_SET_BIT_MASKED(MI_MODE, ASYNC_FLIP_PERF_DISABLE); | |
806 | ||
86d7f238 | 807 | /* WaDisablePartialInstShootdown:bdw */ |
101b376d | 808 | /* WaDisableThreadStallDopClockGating:bdw (pre-production) */ |
7225342a MK |
809 | WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, |
810 | PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE | | |
811 | STALL_DOP_GATING_DISABLE); | |
86d7f238 | 812 | |
101b376d | 813 | /* WaDisableDopClockGating:bdw */ |
7225342a MK |
814 | WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2, |
815 | DOP_CLOCK_GATING_DISABLE); | |
86d7f238 | 816 | |
7225342a MK |
817 | WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3, |
818 | GEN8_SAMPLER_POWER_BYPASS_DIS); | |
86d7f238 AS |
819 | |
820 | /* Use Force Non-Coherent whenever executing a 3D context. This is a | |
821 | * workaround for for a possible hang in the unlikely event a TLB | |
822 | * invalidation occurs during a PSD flush. | |
823 | */ | |
7225342a | 824 | WA_SET_BIT_MASKED(HDC_CHICKEN0, |
35cb6f3b | 825 | /* WaForceEnableNonCoherent:bdw */ |
7225342a | 826 | HDC_FORCE_NON_COHERENT | |
35cb6f3b DL |
827 | /* WaForceContextSaveRestoreNonCoherent:bdw */ |
828 | HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT | | |
829 | /* WaHdcDisableFetchWhenMasked:bdw */ | |
f3f32360 | 830 | HDC_DONOT_FETCH_MEM_WHEN_MASKED | |
35cb6f3b | 831 | /* WaDisableFenceDestinationToSLM:bdw (pre-prod) */ |
7225342a | 832 | (IS_BDW_GT3(dev) ? HDC_FENCE_DEST_SLM_DISABLE : 0)); |
86d7f238 | 833 | |
2701fc43 KG |
834 | /* From the Haswell PRM, Command Reference: Registers, CACHE_MODE_0: |
835 | * "The Hierarchical Z RAW Stall Optimization allows non-overlapping | |
836 | * polygons in the same 8x4 pixel/sample area to be processed without | |
837 | * stalling waiting for the earlier ones to write to Hierarchical Z | |
838 | * buffer." | |
839 | * | |
840 | * This optimization is off by default for Broadwell; turn it on. | |
841 | */ | |
842 | WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE); | |
843 | ||
86d7f238 | 844 | /* Wa4x4STCOptimizationDisable:bdw */ |
7225342a MK |
845 | WA_SET_BIT_MASKED(CACHE_MODE_1, |
846 | GEN8_4x4_STC_OPTIMIZATION_DISABLE); | |
86d7f238 AS |
847 | |
848 | /* | |
849 | * BSpec recommends 8x4 when MSAA is used, | |
850 | * however in practice 16x4 seems fastest. | |
851 | * | |
852 | * Note that PS/WM thread counts depend on the WIZ hashing | |
853 | * disable bit, which we don't touch here, but it's good | |
854 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). | |
855 | */ | |
98533251 DL |
856 | WA_SET_FIELD_MASKED(GEN7_GT_MODE, |
857 | GEN6_WIZ_HASHING_MASK, | |
858 | GEN6_WIZ_HASHING_16x4); | |
888b5995 | 859 | |
86d7f238 AS |
860 | return 0; |
861 | } | |
862 | ||
00e1e623 VS |
863 | static int chv_init_workarounds(struct intel_engine_cs *ring) |
864 | { | |
00e1e623 VS |
865 | struct drm_device *dev = ring->dev; |
866 | struct drm_i915_private *dev_priv = dev->dev_private; | |
867 | ||
9cc83020 VS |
868 | WA_SET_BIT_MASKED(INSTPM, INSTPM_FORCE_ORDERING); |
869 | ||
2441f877 VS |
870 | /* WaDisableAsyncFlipPerfMode:chv */ |
871 | WA_SET_BIT_MASKED(MI_MODE, ASYNC_FLIP_PERF_DISABLE); | |
872 | ||
00e1e623 | 873 | /* WaDisablePartialInstShootdown:chv */ |
00e1e623 | 874 | /* WaDisableThreadStallDopClockGating:chv */ |
7225342a | 875 | WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, |
605f1433 AS |
876 | PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE | |
877 | STALL_DOP_GATING_DISABLE); | |
00e1e623 | 878 | |
95289009 AS |
879 | /* Use Force Non-Coherent whenever executing a 3D context. This is a |
880 | * workaround for a possible hang in the unlikely event a TLB | |
881 | * invalidation occurs during a PSD flush. | |
882 | */ | |
883 | /* WaForceEnableNonCoherent:chv */ | |
884 | /* WaHdcDisableFetchWhenMasked:chv */ | |
885 | WA_SET_BIT_MASKED(HDC_CHICKEN0, | |
886 | HDC_FORCE_NON_COHERENT | | |
887 | HDC_DONOT_FETCH_MEM_WHEN_MASKED); | |
888 | ||
973a5b06 KG |
889 | /* According to the CACHE_MODE_0 default value documentation, some |
890 | * CHV platforms disable this optimization by default. Turn it on. | |
891 | */ | |
892 | WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE); | |
893 | ||
14bc16e3 VS |
894 | /* Wa4x4STCOptimizationDisable:chv */ |
895 | WA_SET_BIT_MASKED(CACHE_MODE_1, | |
896 | GEN8_4x4_STC_OPTIMIZATION_DISABLE); | |
897 | ||
d60de81d KG |
898 | /* Improve HiZ throughput on CHV. */ |
899 | WA_SET_BIT_MASKED(HIZ_CHICKEN, CHV_HZ_8X8_MODE_IN_1X); | |
900 | ||
e7fc2436 VS |
901 | /* |
902 | * BSpec recommends 8x4 when MSAA is used, | |
903 | * however in practice 16x4 seems fastest. | |
904 | * | |
905 | * Note that PS/WM thread counts depend on the WIZ hashing | |
906 | * disable bit, which we don't touch here, but it's good | |
907 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). | |
908 | */ | |
909 | WA_SET_FIELD_MASKED(GEN7_GT_MODE, | |
910 | GEN6_WIZ_HASHING_MASK, | |
911 | GEN6_WIZ_HASHING_16x4); | |
912 | ||
7225342a MK |
913 | return 0; |
914 | } | |
915 | ||
3b106531 HN |
916 | static int gen9_init_workarounds(struct intel_engine_cs *ring) |
917 | { | |
ab0dfafe HN |
918 | struct drm_device *dev = ring->dev; |
919 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8ea6f892 | 920 | uint32_t tmp; |
ab0dfafe | 921 | |
b0e6f6d4 | 922 | /* WaDisablePartialInstShootdown:skl,bxt */ |
ab0dfafe HN |
923 | WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, |
924 | PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE); | |
925 | ||
a119a6e6 | 926 | /* Syncing dependencies between camera and graphics:skl,bxt */ |
8424171e NH |
927 | WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3, |
928 | GEN9_DISABLE_OCL_OOB_SUPPRESS_LOGIC); | |
929 | ||
d2a31dbd NH |
930 | if ((IS_SKYLAKE(dev) && (INTEL_REVID(dev) == SKL_REVID_A0 || |
931 | INTEL_REVID(dev) == SKL_REVID_B0)) || | |
932 | (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0)) { | |
933 | /* WaDisableDgMirrorFixInHalfSliceChicken5:skl,bxt */ | |
a86eb582 DL |
934 | WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5, |
935 | GEN9_DG_MIRROR_FIX_ENABLE); | |
1de4582f NH |
936 | } |
937 | ||
a13d215f NH |
938 | if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_B0) || |
939 | (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0)) { | |
940 | /* WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken:skl,bxt */ | |
183c6dac DL |
941 | WA_SET_BIT_MASKED(GEN7_COMMON_SLICE_CHICKEN1, |
942 | GEN9_RHWO_OPTIMIZATION_DISABLE); | |
943 | WA_SET_BIT_MASKED(GEN9_SLICE_COMMON_ECO_CHICKEN0, | |
944 | DISABLE_PIXEL_MASK_CAMMING); | |
945 | } | |
946 | ||
27a1b688 NH |
947 | if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) >= SKL_REVID_C0) || |
948 | IS_BROXTON(dev)) { | |
949 | /* WaEnableYV12BugFixInHalfSliceChicken7:skl,bxt */ | |
cac23df4 NH |
950 | WA_SET_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN7, |
951 | GEN9_ENABLE_YV12_BUGFIX); | |
952 | } | |
953 | ||
5068368c | 954 | /* Wa4x4STCOptimizationDisable:skl,bxt */ |
1840481f HN |
955 | WA_SET_BIT_MASKED(CACHE_MODE_1, GEN8_4x4_STC_OPTIMIZATION_DISABLE); |
956 | ||
27160c96 | 957 | /* WaDisablePartialResolveInVc:skl,bxt */ |
9370cd98 DL |
958 | WA_SET_BIT_MASKED(CACHE_MODE_1, GEN9_PARTIAL_RESOLVE_IN_VC_DISABLE); |
959 | ||
16be17af | 960 | /* WaCcsTlbPrefetchDisable:skl,bxt */ |
e2db7071 DL |
961 | WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5, |
962 | GEN9_CCS_TLB_PREFETCH_ENABLE); | |
963 | ||
5a2ae95e ID |
964 | /* WaDisableMaskBasedCammingInRCC:skl,bxt */ |
965 | if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) == SKL_REVID_C0) || | |
966 | (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0)) | |
38a39a7b BW |
967 | WA_SET_BIT_MASKED(SLICE_ECO_CHICKEN0, |
968 | PIXEL_MASK_CAMMING_DISABLE); | |
969 | ||
8ea6f892 ID |
970 | /* WaForceContextSaveRestoreNonCoherent:skl,bxt */ |
971 | tmp = HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT; | |
972 | if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) == SKL_REVID_F0) || | |
973 | (IS_BROXTON(dev) && INTEL_REVID(dev) >= BXT_REVID_B0)) | |
974 | tmp |= HDC_FORCE_CSR_NON_COHERENT_OVR_DISABLE; | |
975 | WA_SET_BIT_MASKED(HDC_CHICKEN0, tmp); | |
976 | ||
3b106531 HN |
977 | return 0; |
978 | } | |
979 | ||
b7668791 DL |
980 | static int skl_tune_iz_hashing(struct intel_engine_cs *ring) |
981 | { | |
982 | struct drm_device *dev = ring->dev; | |
983 | struct drm_i915_private *dev_priv = dev->dev_private; | |
984 | u8 vals[3] = { 0, 0, 0 }; | |
985 | unsigned int i; | |
986 | ||
987 | for (i = 0; i < 3; i++) { | |
988 | u8 ss; | |
989 | ||
990 | /* | |
991 | * Only consider slices where one, and only one, subslice has 7 | |
992 | * EUs | |
993 | */ | |
994 | if (hweight8(dev_priv->info.subslice_7eu[i]) != 1) | |
995 | continue; | |
996 | ||
997 | /* | |
998 | * subslice_7eu[i] != 0 (because of the check above) and | |
999 | * ss_max == 4 (maximum number of subslices possible per slice) | |
1000 | * | |
1001 | * -> 0 <= ss <= 3; | |
1002 | */ | |
1003 | ss = ffs(dev_priv->info.subslice_7eu[i]) - 1; | |
1004 | vals[i] = 3 - ss; | |
1005 | } | |
1006 | ||
1007 | if (vals[0] == 0 && vals[1] == 0 && vals[2] == 0) | |
1008 | return 0; | |
1009 | ||
1010 | /* Tune IZ hashing. See intel_device_info_runtime_init() */ | |
1011 | WA_SET_FIELD_MASKED(GEN7_GT_MODE, | |
1012 | GEN9_IZ_HASHING_MASK(2) | | |
1013 | GEN9_IZ_HASHING_MASK(1) | | |
1014 | GEN9_IZ_HASHING_MASK(0), | |
1015 | GEN9_IZ_HASHING(2, vals[2]) | | |
1016 | GEN9_IZ_HASHING(1, vals[1]) | | |
1017 | GEN9_IZ_HASHING(0, vals[0])); | |
1018 | ||
1019 | return 0; | |
1020 | } | |
1021 | ||
1022 | ||
8d205494 DL |
1023 | static int skl_init_workarounds(struct intel_engine_cs *ring) |
1024 | { | |
d0bbbc4f DL |
1025 | struct drm_device *dev = ring->dev; |
1026 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1027 | ||
8d205494 DL |
1028 | gen9_init_workarounds(ring); |
1029 | ||
d0bbbc4f DL |
1030 | /* WaDisablePowerCompilerClockGating:skl */ |
1031 | if (INTEL_REVID(dev) == SKL_REVID_B0) | |
1032 | WA_SET_BIT_MASKED(HIZ_CHICKEN, | |
1033 | BDW_HIZ_POWER_COMPILER_CLOCK_GATING_DISABLE); | |
1034 | ||
b62adbd1 NH |
1035 | if (INTEL_REVID(dev) <= SKL_REVID_D0) { |
1036 | /* | |
1037 | *Use Force Non-Coherent whenever executing a 3D context. This | |
1038 | * is a workaround for a possible hang in the unlikely event | |
1039 | * a TLB invalidation occurs during a PSD flush. | |
1040 | */ | |
1041 | /* WaForceEnableNonCoherent:skl */ | |
1042 | WA_SET_BIT_MASKED(HDC_CHICKEN0, | |
1043 | HDC_FORCE_NON_COHERENT); | |
1044 | } | |
1045 | ||
5b6fd12a VS |
1046 | if (INTEL_REVID(dev) == SKL_REVID_C0 || |
1047 | INTEL_REVID(dev) == SKL_REVID_D0) | |
1048 | /* WaBarrierPerformanceFixDisable:skl */ | |
1049 | WA_SET_BIT_MASKED(HDC_CHICKEN0, | |
1050 | HDC_FENCE_DEST_SLM_DISABLE | | |
1051 | HDC_BARRIER_PERFORMANCE_DISABLE); | |
1052 | ||
b7668791 | 1053 | return skl_tune_iz_hashing(ring); |
7225342a MK |
1054 | } |
1055 | ||
cae0437f NH |
1056 | static int bxt_init_workarounds(struct intel_engine_cs *ring) |
1057 | { | |
dfb601e6 NH |
1058 | struct drm_device *dev = ring->dev; |
1059 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1060 | ||
cae0437f NH |
1061 | gen9_init_workarounds(ring); |
1062 | ||
dfb601e6 NH |
1063 | /* WaDisableThreadStallDopClockGating:bxt */ |
1064 | WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, | |
1065 | STALL_DOP_GATING_DISABLE); | |
1066 | ||
983b4b9d NH |
1067 | /* WaDisableSbeCacheDispatchPortSharing:bxt */ |
1068 | if (INTEL_REVID(dev) <= BXT_REVID_B0) { | |
1069 | WA_SET_BIT_MASKED( | |
1070 | GEN7_HALF_SLICE_CHICKEN1, | |
1071 | GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE); | |
1072 | } | |
1073 | ||
cae0437f NH |
1074 | return 0; |
1075 | } | |
1076 | ||
771b9a53 | 1077 | int init_workarounds_ring(struct intel_engine_cs *ring) |
7225342a MK |
1078 | { |
1079 | struct drm_device *dev = ring->dev; | |
1080 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1081 | ||
1082 | WARN_ON(ring->id != RCS); | |
1083 | ||
1084 | dev_priv->workarounds.count = 0; | |
1085 | ||
1086 | if (IS_BROADWELL(dev)) | |
1087 | return bdw_init_workarounds(ring); | |
1088 | ||
1089 | if (IS_CHERRYVIEW(dev)) | |
1090 | return chv_init_workarounds(ring); | |
00e1e623 | 1091 | |
8d205494 DL |
1092 | if (IS_SKYLAKE(dev)) |
1093 | return skl_init_workarounds(ring); | |
cae0437f NH |
1094 | |
1095 | if (IS_BROXTON(dev)) | |
1096 | return bxt_init_workarounds(ring); | |
3b106531 | 1097 | |
00e1e623 VS |
1098 | return 0; |
1099 | } | |
1100 | ||
a4872ba6 | 1101 | static int init_render_ring(struct intel_engine_cs *ring) |
8187a2b7 | 1102 | { |
78501eac | 1103 | struct drm_device *dev = ring->dev; |
1ec14ad3 | 1104 | struct drm_i915_private *dev_priv = dev->dev_private; |
78501eac | 1105 | int ret = init_ring_common(ring); |
9c33baa6 KZ |
1106 | if (ret) |
1107 | return ret; | |
a69ffdbf | 1108 | |
61a563a2 AG |
1109 | /* WaTimedSingleVertexDispatch:cl,bw,ctg,elk,ilk,snb */ |
1110 | if (INTEL_INFO(dev)->gen >= 4 && INTEL_INFO(dev)->gen < 7) | |
6b26c86d | 1111 | I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH)); |
1c8c38c5 CW |
1112 | |
1113 | /* We need to disable the AsyncFlip performance optimisations in order | |
1114 | * to use MI_WAIT_FOR_EVENT within the CS. It should already be | |
1115 | * programmed to '1' on all products. | |
8693a824 | 1116 | * |
2441f877 | 1117 | * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv |
1c8c38c5 | 1118 | */ |
2441f877 | 1119 | if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) |
1c8c38c5 CW |
1120 | I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE)); |
1121 | ||
f05bb0c7 | 1122 | /* Required for the hardware to program scanline values for waiting */ |
01fa0302 | 1123 | /* WaEnableFlushTlbInvalidationMode:snb */ |
f05bb0c7 CW |
1124 | if (INTEL_INFO(dev)->gen == 6) |
1125 | I915_WRITE(GFX_MODE, | |
aa83e30d | 1126 | _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT)); |
f05bb0c7 | 1127 | |
01fa0302 | 1128 | /* WaBCSVCSTlbInvalidationMode:ivb,vlv,hsw */ |
1c8c38c5 CW |
1129 | if (IS_GEN7(dev)) |
1130 | I915_WRITE(GFX_MODE_GEN7, | |
01fa0302 | 1131 | _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT) | |
1c8c38c5 | 1132 | _MASKED_BIT_ENABLE(GFX_REPLAY_MODE)); |
78501eac | 1133 | |
5e13a0c5 | 1134 | if (IS_GEN6(dev)) { |
3a69ddd6 KG |
1135 | /* From the Sandybridge PRM, volume 1 part 3, page 24: |
1136 | * "If this bit is set, STCunit will have LRA as replacement | |
1137 | * policy. [...] This bit must be reset. LRA replacement | |
1138 | * policy is not supported." | |
1139 | */ | |
1140 | I915_WRITE(CACHE_MODE_0, | |
5e13a0c5 | 1141 | _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB)); |
84f9f938 BW |
1142 | } |
1143 | ||
9cc83020 | 1144 | if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) |
6b26c86d | 1145 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING)); |
84f9f938 | 1146 | |
040d2baa | 1147 | if (HAS_L3_DPF(dev)) |
35a85ac6 | 1148 | I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev)); |
15b9f80e | 1149 | |
7225342a | 1150 | return init_workarounds_ring(ring); |
8187a2b7 ZN |
1151 | } |
1152 | ||
a4872ba6 | 1153 | static void render_ring_cleanup(struct intel_engine_cs *ring) |
c6df541c | 1154 | { |
b45305fc | 1155 | struct drm_device *dev = ring->dev; |
3e78998a BW |
1156 | struct drm_i915_private *dev_priv = dev->dev_private; |
1157 | ||
1158 | if (dev_priv->semaphore_obj) { | |
1159 | i915_gem_object_ggtt_unpin(dev_priv->semaphore_obj); | |
1160 | drm_gem_object_unreference(&dev_priv->semaphore_obj->base); | |
1161 | dev_priv->semaphore_obj = NULL; | |
1162 | } | |
b45305fc | 1163 | |
9b1136d5 | 1164 | intel_fini_pipe_control(ring); |
c6df541c CW |
1165 | } |
1166 | ||
3e78998a BW |
1167 | static int gen8_rcs_signal(struct intel_engine_cs *signaller, |
1168 | unsigned int num_dwords) | |
1169 | { | |
1170 | #define MBOX_UPDATE_DWORDS 8 | |
1171 | struct drm_device *dev = signaller->dev; | |
1172 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1173 | struct intel_engine_cs *waiter; | |
1174 | int i, ret, num_rings; | |
1175 | ||
1176 | num_rings = hweight32(INTEL_INFO(dev)->ring_mask); | |
1177 | num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS; | |
1178 | #undef MBOX_UPDATE_DWORDS | |
1179 | ||
1180 | ret = intel_ring_begin(signaller, num_dwords); | |
1181 | if (ret) | |
1182 | return ret; | |
1183 | ||
1184 | for_each_ring(waiter, dev_priv, i) { | |
6259cead | 1185 | u32 seqno; |
3e78998a BW |
1186 | u64 gtt_offset = signaller->semaphore.signal_ggtt[i]; |
1187 | if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID) | |
1188 | continue; | |
1189 | ||
6259cead JH |
1190 | seqno = i915_gem_request_get_seqno( |
1191 | signaller->outstanding_lazy_request); | |
3e78998a BW |
1192 | intel_ring_emit(signaller, GFX_OP_PIPE_CONTROL(6)); |
1193 | intel_ring_emit(signaller, PIPE_CONTROL_GLOBAL_GTT_IVB | | |
1194 | PIPE_CONTROL_QW_WRITE | | |
1195 | PIPE_CONTROL_FLUSH_ENABLE); | |
1196 | intel_ring_emit(signaller, lower_32_bits(gtt_offset)); | |
1197 | intel_ring_emit(signaller, upper_32_bits(gtt_offset)); | |
6259cead | 1198 | intel_ring_emit(signaller, seqno); |
3e78998a BW |
1199 | intel_ring_emit(signaller, 0); |
1200 | intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL | | |
1201 | MI_SEMAPHORE_TARGET(waiter->id)); | |
1202 | intel_ring_emit(signaller, 0); | |
1203 | } | |
1204 | ||
1205 | return 0; | |
1206 | } | |
1207 | ||
1208 | static int gen8_xcs_signal(struct intel_engine_cs *signaller, | |
1209 | unsigned int num_dwords) | |
1210 | { | |
1211 | #define MBOX_UPDATE_DWORDS 6 | |
1212 | struct drm_device *dev = signaller->dev; | |
1213 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1214 | struct intel_engine_cs *waiter; | |
1215 | int i, ret, num_rings; | |
1216 | ||
1217 | num_rings = hweight32(INTEL_INFO(dev)->ring_mask); | |
1218 | num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS; | |
1219 | #undef MBOX_UPDATE_DWORDS | |
1220 | ||
1221 | ret = intel_ring_begin(signaller, num_dwords); | |
1222 | if (ret) | |
1223 | return ret; | |
1224 | ||
1225 | for_each_ring(waiter, dev_priv, i) { | |
6259cead | 1226 | u32 seqno; |
3e78998a BW |
1227 | u64 gtt_offset = signaller->semaphore.signal_ggtt[i]; |
1228 | if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID) | |
1229 | continue; | |
1230 | ||
6259cead JH |
1231 | seqno = i915_gem_request_get_seqno( |
1232 | signaller->outstanding_lazy_request); | |
3e78998a BW |
1233 | intel_ring_emit(signaller, (MI_FLUSH_DW + 1) | |
1234 | MI_FLUSH_DW_OP_STOREDW); | |
1235 | intel_ring_emit(signaller, lower_32_bits(gtt_offset) | | |
1236 | MI_FLUSH_DW_USE_GTT); | |
1237 | intel_ring_emit(signaller, upper_32_bits(gtt_offset)); | |
6259cead | 1238 | intel_ring_emit(signaller, seqno); |
3e78998a BW |
1239 | intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL | |
1240 | MI_SEMAPHORE_TARGET(waiter->id)); | |
1241 | intel_ring_emit(signaller, 0); | |
1242 | } | |
1243 | ||
1244 | return 0; | |
1245 | } | |
1246 | ||
a4872ba6 | 1247 | static int gen6_signal(struct intel_engine_cs *signaller, |
024a43e1 | 1248 | unsigned int num_dwords) |
1ec14ad3 | 1249 | { |
024a43e1 BW |
1250 | struct drm_device *dev = signaller->dev; |
1251 | struct drm_i915_private *dev_priv = dev->dev_private; | |
a4872ba6 | 1252 | struct intel_engine_cs *useless; |
a1444b79 | 1253 | int i, ret, num_rings; |
78325f2d | 1254 | |
a1444b79 BW |
1255 | #define MBOX_UPDATE_DWORDS 3 |
1256 | num_rings = hweight32(INTEL_INFO(dev)->ring_mask); | |
1257 | num_dwords += round_up((num_rings-1) * MBOX_UPDATE_DWORDS, 2); | |
1258 | #undef MBOX_UPDATE_DWORDS | |
024a43e1 BW |
1259 | |
1260 | ret = intel_ring_begin(signaller, num_dwords); | |
1261 | if (ret) | |
1262 | return ret; | |
024a43e1 | 1263 | |
78325f2d BW |
1264 | for_each_ring(useless, dev_priv, i) { |
1265 | u32 mbox_reg = signaller->semaphore.mbox.signal[i]; | |
1266 | if (mbox_reg != GEN6_NOSYNC) { | |
6259cead JH |
1267 | u32 seqno = i915_gem_request_get_seqno( |
1268 | signaller->outstanding_lazy_request); | |
78325f2d BW |
1269 | intel_ring_emit(signaller, MI_LOAD_REGISTER_IMM(1)); |
1270 | intel_ring_emit(signaller, mbox_reg); | |
6259cead | 1271 | intel_ring_emit(signaller, seqno); |
78325f2d BW |
1272 | } |
1273 | } | |
024a43e1 | 1274 | |
a1444b79 BW |
1275 | /* If num_dwords was rounded, make sure the tail pointer is correct */ |
1276 | if (num_rings % 2 == 0) | |
1277 | intel_ring_emit(signaller, MI_NOOP); | |
1278 | ||
024a43e1 | 1279 | return 0; |
1ec14ad3 CW |
1280 | } |
1281 | ||
c8c99b0f BW |
1282 | /** |
1283 | * gen6_add_request - Update the semaphore mailbox registers | |
1284 | * | |
1285 | * @ring - ring that is adding a request | |
1286 | * @seqno - return seqno stuck into the ring | |
1287 | * | |
1288 | * Update the mailbox registers in the *other* rings with the current seqno. | |
1289 | * This acts like a signal in the canonical semaphore. | |
1290 | */ | |
1ec14ad3 | 1291 | static int |
a4872ba6 | 1292 | gen6_add_request(struct intel_engine_cs *ring) |
1ec14ad3 | 1293 | { |
024a43e1 | 1294 | int ret; |
52ed2325 | 1295 | |
707d9cf9 BW |
1296 | if (ring->semaphore.signal) |
1297 | ret = ring->semaphore.signal(ring, 4); | |
1298 | else | |
1299 | ret = intel_ring_begin(ring, 4); | |
1300 | ||
1ec14ad3 CW |
1301 | if (ret) |
1302 | return ret; | |
1303 | ||
1ec14ad3 CW |
1304 | intel_ring_emit(ring, MI_STORE_DWORD_INDEX); |
1305 | intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT); | |
6259cead JH |
1306 | intel_ring_emit(ring, |
1307 | i915_gem_request_get_seqno(ring->outstanding_lazy_request)); | |
1ec14ad3 | 1308 | intel_ring_emit(ring, MI_USER_INTERRUPT); |
09246732 | 1309 | __intel_ring_advance(ring); |
1ec14ad3 | 1310 | |
1ec14ad3 CW |
1311 | return 0; |
1312 | } | |
1313 | ||
f72b3435 MK |
1314 | static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev, |
1315 | u32 seqno) | |
1316 | { | |
1317 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1318 | return dev_priv->last_seqno < seqno; | |
1319 | } | |
1320 | ||
c8c99b0f BW |
1321 | /** |
1322 | * intel_ring_sync - sync the waiter to the signaller on seqno | |
1323 | * | |
1324 | * @waiter - ring that is waiting | |
1325 | * @signaller - ring which has, or will signal | |
1326 | * @seqno - seqno which the waiter will block on | |
1327 | */ | |
5ee426ca BW |
1328 | |
1329 | static int | |
1330 | gen8_ring_sync(struct intel_engine_cs *waiter, | |
1331 | struct intel_engine_cs *signaller, | |
1332 | u32 seqno) | |
1333 | { | |
1334 | struct drm_i915_private *dev_priv = waiter->dev->dev_private; | |
1335 | int ret; | |
1336 | ||
1337 | ret = intel_ring_begin(waiter, 4); | |
1338 | if (ret) | |
1339 | return ret; | |
1340 | ||
1341 | intel_ring_emit(waiter, MI_SEMAPHORE_WAIT | | |
1342 | MI_SEMAPHORE_GLOBAL_GTT | | |
bae4fcd2 | 1343 | MI_SEMAPHORE_POLL | |
5ee426ca BW |
1344 | MI_SEMAPHORE_SAD_GTE_SDD); |
1345 | intel_ring_emit(waiter, seqno); | |
1346 | intel_ring_emit(waiter, | |
1347 | lower_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id))); | |
1348 | intel_ring_emit(waiter, | |
1349 | upper_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id))); | |
1350 | intel_ring_advance(waiter); | |
1351 | return 0; | |
1352 | } | |
1353 | ||
c8c99b0f | 1354 | static int |
a4872ba6 OM |
1355 | gen6_ring_sync(struct intel_engine_cs *waiter, |
1356 | struct intel_engine_cs *signaller, | |
686cb5f9 | 1357 | u32 seqno) |
1ec14ad3 | 1358 | { |
c8c99b0f BW |
1359 | u32 dw1 = MI_SEMAPHORE_MBOX | |
1360 | MI_SEMAPHORE_COMPARE | | |
1361 | MI_SEMAPHORE_REGISTER; | |
ebc348b2 BW |
1362 | u32 wait_mbox = signaller->semaphore.mbox.wait[waiter->id]; |
1363 | int ret; | |
1ec14ad3 | 1364 | |
1500f7ea BW |
1365 | /* Throughout all of the GEM code, seqno passed implies our current |
1366 | * seqno is >= the last seqno executed. However for hardware the | |
1367 | * comparison is strictly greater than. | |
1368 | */ | |
1369 | seqno -= 1; | |
1370 | ||
ebc348b2 | 1371 | WARN_ON(wait_mbox == MI_SEMAPHORE_SYNC_INVALID); |
686cb5f9 | 1372 | |
c8c99b0f | 1373 | ret = intel_ring_begin(waiter, 4); |
1ec14ad3 CW |
1374 | if (ret) |
1375 | return ret; | |
1376 | ||
f72b3435 MK |
1377 | /* If seqno wrap happened, omit the wait with no-ops */ |
1378 | if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) { | |
ebc348b2 | 1379 | intel_ring_emit(waiter, dw1 | wait_mbox); |
f72b3435 MK |
1380 | intel_ring_emit(waiter, seqno); |
1381 | intel_ring_emit(waiter, 0); | |
1382 | intel_ring_emit(waiter, MI_NOOP); | |
1383 | } else { | |
1384 | intel_ring_emit(waiter, MI_NOOP); | |
1385 | intel_ring_emit(waiter, MI_NOOP); | |
1386 | intel_ring_emit(waiter, MI_NOOP); | |
1387 | intel_ring_emit(waiter, MI_NOOP); | |
1388 | } | |
c8c99b0f | 1389 | intel_ring_advance(waiter); |
1ec14ad3 CW |
1390 | |
1391 | return 0; | |
1392 | } | |
1393 | ||
c6df541c CW |
1394 | #define PIPE_CONTROL_FLUSH(ring__, addr__) \ |
1395 | do { \ | |
fcbc34e4 KG |
1396 | intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \ |
1397 | PIPE_CONTROL_DEPTH_STALL); \ | |
c6df541c CW |
1398 | intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \ |
1399 | intel_ring_emit(ring__, 0); \ | |
1400 | intel_ring_emit(ring__, 0); \ | |
1401 | } while (0) | |
1402 | ||
1403 | static int | |
a4872ba6 | 1404 | pc_render_add_request(struct intel_engine_cs *ring) |
c6df541c | 1405 | { |
18393f63 | 1406 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
c6df541c CW |
1407 | int ret; |
1408 | ||
1409 | /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently | |
1410 | * incoherent with writes to memory, i.e. completely fubar, | |
1411 | * so we need to use PIPE_NOTIFY instead. | |
1412 | * | |
1413 | * However, we also need to workaround the qword write | |
1414 | * incoherence by flushing the 6 PIPE_NOTIFY buffers out to | |
1415 | * memory before requesting an interrupt. | |
1416 | */ | |
1417 | ret = intel_ring_begin(ring, 32); | |
1418 | if (ret) | |
1419 | return ret; | |
1420 | ||
fcbc34e4 | 1421 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | |
9d971b37 KG |
1422 | PIPE_CONTROL_WRITE_FLUSH | |
1423 | PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE); | |
0d1aacac | 1424 | intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT); |
6259cead JH |
1425 | intel_ring_emit(ring, |
1426 | i915_gem_request_get_seqno(ring->outstanding_lazy_request)); | |
c6df541c CW |
1427 | intel_ring_emit(ring, 0); |
1428 | PIPE_CONTROL_FLUSH(ring, scratch_addr); | |
18393f63 | 1429 | scratch_addr += 2 * CACHELINE_BYTES; /* write to separate cachelines */ |
c6df541c | 1430 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
18393f63 | 1431 | scratch_addr += 2 * CACHELINE_BYTES; |
c6df541c | 1432 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
18393f63 | 1433 | scratch_addr += 2 * CACHELINE_BYTES; |
c6df541c | 1434 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
18393f63 | 1435 | scratch_addr += 2 * CACHELINE_BYTES; |
c6df541c | 1436 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
18393f63 | 1437 | scratch_addr += 2 * CACHELINE_BYTES; |
c6df541c | 1438 | PIPE_CONTROL_FLUSH(ring, scratch_addr); |
a71d8d94 | 1439 | |
fcbc34e4 | 1440 | intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | |
9d971b37 KG |
1441 | PIPE_CONTROL_WRITE_FLUSH | |
1442 | PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | | |
c6df541c | 1443 | PIPE_CONTROL_NOTIFY); |
0d1aacac | 1444 | intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT); |
6259cead JH |
1445 | intel_ring_emit(ring, |
1446 | i915_gem_request_get_seqno(ring->outstanding_lazy_request)); | |
c6df541c | 1447 | intel_ring_emit(ring, 0); |
09246732 | 1448 | __intel_ring_advance(ring); |
c6df541c | 1449 | |
c6df541c CW |
1450 | return 0; |
1451 | } | |
1452 | ||
4cd53c0c | 1453 | static u32 |
a4872ba6 | 1454 | gen6_ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency) |
4cd53c0c | 1455 | { |
4cd53c0c DV |
1456 | /* Workaround to force correct ordering between irq and seqno writes on |
1457 | * ivb (and maybe also on snb) by reading from a CS register (like | |
1458 | * ACTHD) before reading the status page. */ | |
50877445 CW |
1459 | if (!lazy_coherency) { |
1460 | struct drm_i915_private *dev_priv = ring->dev->dev_private; | |
1461 | POSTING_READ(RING_ACTHD(ring->mmio_base)); | |
1462 | } | |
1463 | ||
4cd53c0c DV |
1464 | return intel_read_status_page(ring, I915_GEM_HWS_INDEX); |
1465 | } | |
1466 | ||
8187a2b7 | 1467 | static u32 |
a4872ba6 | 1468 | ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency) |
8187a2b7 | 1469 | { |
1ec14ad3 CW |
1470 | return intel_read_status_page(ring, I915_GEM_HWS_INDEX); |
1471 | } | |
1472 | ||
b70ec5bf | 1473 | static void |
a4872ba6 | 1474 | ring_set_seqno(struct intel_engine_cs *ring, u32 seqno) |
b70ec5bf MK |
1475 | { |
1476 | intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno); | |
1477 | } | |
1478 | ||
c6df541c | 1479 | static u32 |
a4872ba6 | 1480 | pc_render_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency) |
c6df541c | 1481 | { |
0d1aacac | 1482 | return ring->scratch.cpu_page[0]; |
c6df541c CW |
1483 | } |
1484 | ||
b70ec5bf | 1485 | static void |
a4872ba6 | 1486 | pc_render_set_seqno(struct intel_engine_cs *ring, u32 seqno) |
b70ec5bf | 1487 | { |
0d1aacac | 1488 | ring->scratch.cpu_page[0] = seqno; |
b70ec5bf MK |
1489 | } |
1490 | ||
e48d8634 | 1491 | static bool |
a4872ba6 | 1492 | gen5_ring_get_irq(struct intel_engine_cs *ring) |
e48d8634 DV |
1493 | { |
1494 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1495 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1496 | unsigned long flags; |
e48d8634 | 1497 | |
7cd512f1 | 1498 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
e48d8634 DV |
1499 | return false; |
1500 | ||
7338aefa | 1501 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
43eaea13 | 1502 | if (ring->irq_refcount++ == 0) |
480c8033 | 1503 | gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask); |
7338aefa | 1504 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
e48d8634 DV |
1505 | |
1506 | return true; | |
1507 | } | |
1508 | ||
1509 | static void | |
a4872ba6 | 1510 | gen5_ring_put_irq(struct intel_engine_cs *ring) |
e48d8634 DV |
1511 | { |
1512 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1513 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1514 | unsigned long flags; |
e48d8634 | 1515 | |
7338aefa | 1516 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
43eaea13 | 1517 | if (--ring->irq_refcount == 0) |
480c8033 | 1518 | gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask); |
7338aefa | 1519 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
e48d8634 DV |
1520 | } |
1521 | ||
b13c2b96 | 1522 | static bool |
a4872ba6 | 1523 | i9xx_ring_get_irq(struct intel_engine_cs *ring) |
62fdfeaf | 1524 | { |
78501eac | 1525 | struct drm_device *dev = ring->dev; |
4640c4ff | 1526 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1527 | unsigned long flags; |
62fdfeaf | 1528 | |
7cd512f1 | 1529 | if (!intel_irqs_enabled(dev_priv)) |
b13c2b96 CW |
1530 | return false; |
1531 | ||
7338aefa | 1532 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1533 | if (ring->irq_refcount++ == 0) { |
f637fde4 DV |
1534 | dev_priv->irq_mask &= ~ring->irq_enable_mask; |
1535 | I915_WRITE(IMR, dev_priv->irq_mask); | |
1536 | POSTING_READ(IMR); | |
1537 | } | |
7338aefa | 1538 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
b13c2b96 CW |
1539 | |
1540 | return true; | |
62fdfeaf EA |
1541 | } |
1542 | ||
8187a2b7 | 1543 | static void |
a4872ba6 | 1544 | i9xx_ring_put_irq(struct intel_engine_cs *ring) |
62fdfeaf | 1545 | { |
78501eac | 1546 | struct drm_device *dev = ring->dev; |
4640c4ff | 1547 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1548 | unsigned long flags; |
62fdfeaf | 1549 | |
7338aefa | 1550 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1551 | if (--ring->irq_refcount == 0) { |
f637fde4 DV |
1552 | dev_priv->irq_mask |= ring->irq_enable_mask; |
1553 | I915_WRITE(IMR, dev_priv->irq_mask); | |
1554 | POSTING_READ(IMR); | |
1555 | } | |
7338aefa | 1556 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
62fdfeaf EA |
1557 | } |
1558 | ||
c2798b19 | 1559 | static bool |
a4872ba6 | 1560 | i8xx_ring_get_irq(struct intel_engine_cs *ring) |
c2798b19 CW |
1561 | { |
1562 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1563 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1564 | unsigned long flags; |
c2798b19 | 1565 | |
7cd512f1 | 1566 | if (!intel_irqs_enabled(dev_priv)) |
c2798b19 CW |
1567 | return false; |
1568 | ||
7338aefa | 1569 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1570 | if (ring->irq_refcount++ == 0) { |
c2798b19 CW |
1571 | dev_priv->irq_mask &= ~ring->irq_enable_mask; |
1572 | I915_WRITE16(IMR, dev_priv->irq_mask); | |
1573 | POSTING_READ16(IMR); | |
1574 | } | |
7338aefa | 1575 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
c2798b19 CW |
1576 | |
1577 | return true; | |
1578 | } | |
1579 | ||
1580 | static void | |
a4872ba6 | 1581 | i8xx_ring_put_irq(struct intel_engine_cs *ring) |
c2798b19 CW |
1582 | { |
1583 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1584 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1585 | unsigned long flags; |
c2798b19 | 1586 | |
7338aefa | 1587 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1588 | if (--ring->irq_refcount == 0) { |
c2798b19 CW |
1589 | dev_priv->irq_mask |= ring->irq_enable_mask; |
1590 | I915_WRITE16(IMR, dev_priv->irq_mask); | |
1591 | POSTING_READ16(IMR); | |
1592 | } | |
7338aefa | 1593 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
c2798b19 CW |
1594 | } |
1595 | ||
b72f3acb | 1596 | static int |
a4872ba6 | 1597 | bsd_ring_flush(struct intel_engine_cs *ring, |
78501eac CW |
1598 | u32 invalidate_domains, |
1599 | u32 flush_domains) | |
d1b851fc | 1600 | { |
b72f3acb CW |
1601 | int ret; |
1602 | ||
b72f3acb CW |
1603 | ret = intel_ring_begin(ring, 2); |
1604 | if (ret) | |
1605 | return ret; | |
1606 | ||
1607 | intel_ring_emit(ring, MI_FLUSH); | |
1608 | intel_ring_emit(ring, MI_NOOP); | |
1609 | intel_ring_advance(ring); | |
1610 | return 0; | |
d1b851fc ZN |
1611 | } |
1612 | ||
3cce469c | 1613 | static int |
a4872ba6 | 1614 | i9xx_add_request(struct intel_engine_cs *ring) |
d1b851fc | 1615 | { |
3cce469c CW |
1616 | int ret; |
1617 | ||
1618 | ret = intel_ring_begin(ring, 4); | |
1619 | if (ret) | |
1620 | return ret; | |
6f392d54 | 1621 | |
3cce469c CW |
1622 | intel_ring_emit(ring, MI_STORE_DWORD_INDEX); |
1623 | intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT); | |
6259cead JH |
1624 | intel_ring_emit(ring, |
1625 | i915_gem_request_get_seqno(ring->outstanding_lazy_request)); | |
3cce469c | 1626 | intel_ring_emit(ring, MI_USER_INTERRUPT); |
09246732 | 1627 | __intel_ring_advance(ring); |
d1b851fc | 1628 | |
3cce469c | 1629 | return 0; |
d1b851fc ZN |
1630 | } |
1631 | ||
0f46832f | 1632 | static bool |
a4872ba6 | 1633 | gen6_ring_get_irq(struct intel_engine_cs *ring) |
0f46832f CW |
1634 | { |
1635 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1636 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1637 | unsigned long flags; |
0f46832f | 1638 | |
7cd512f1 DV |
1639 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
1640 | return false; | |
0f46832f | 1641 | |
7338aefa | 1642 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1643 | if (ring->irq_refcount++ == 0) { |
040d2baa | 1644 | if (HAS_L3_DPF(dev) && ring->id == RCS) |
cc609d5d BW |
1645 | I915_WRITE_IMR(ring, |
1646 | ~(ring->irq_enable_mask | | |
35a85ac6 | 1647 | GT_PARITY_ERROR(dev))); |
15b9f80e BW |
1648 | else |
1649 | I915_WRITE_IMR(ring, ~ring->irq_enable_mask); | |
480c8033 | 1650 | gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask); |
0f46832f | 1651 | } |
7338aefa | 1652 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
0f46832f CW |
1653 | |
1654 | return true; | |
1655 | } | |
1656 | ||
1657 | static void | |
a4872ba6 | 1658 | gen6_ring_put_irq(struct intel_engine_cs *ring) |
0f46832f CW |
1659 | { |
1660 | struct drm_device *dev = ring->dev; | |
4640c4ff | 1661 | struct drm_i915_private *dev_priv = dev->dev_private; |
7338aefa | 1662 | unsigned long flags; |
0f46832f | 1663 | |
7338aefa | 1664 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1665 | if (--ring->irq_refcount == 0) { |
040d2baa | 1666 | if (HAS_L3_DPF(dev) && ring->id == RCS) |
35a85ac6 | 1667 | I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev)); |
15b9f80e BW |
1668 | else |
1669 | I915_WRITE_IMR(ring, ~0); | |
480c8033 | 1670 | gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask); |
1ec14ad3 | 1671 | } |
7338aefa | 1672 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
d1b851fc ZN |
1673 | } |
1674 | ||
a19d2933 | 1675 | static bool |
a4872ba6 | 1676 | hsw_vebox_get_irq(struct intel_engine_cs *ring) |
a19d2933 BW |
1677 | { |
1678 | struct drm_device *dev = ring->dev; | |
1679 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1680 | unsigned long flags; | |
1681 | ||
7cd512f1 | 1682 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
a19d2933 BW |
1683 | return false; |
1684 | ||
59cdb63d | 1685 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1686 | if (ring->irq_refcount++ == 0) { |
a19d2933 | 1687 | I915_WRITE_IMR(ring, ~ring->irq_enable_mask); |
480c8033 | 1688 | gen6_enable_pm_irq(dev_priv, ring->irq_enable_mask); |
a19d2933 | 1689 | } |
59cdb63d | 1690 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
a19d2933 BW |
1691 | |
1692 | return true; | |
1693 | } | |
1694 | ||
1695 | static void | |
a4872ba6 | 1696 | hsw_vebox_put_irq(struct intel_engine_cs *ring) |
a19d2933 BW |
1697 | { |
1698 | struct drm_device *dev = ring->dev; | |
1699 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1700 | unsigned long flags; | |
1701 | ||
59cdb63d | 1702 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
c7113cc3 | 1703 | if (--ring->irq_refcount == 0) { |
a19d2933 | 1704 | I915_WRITE_IMR(ring, ~0); |
480c8033 | 1705 | gen6_disable_pm_irq(dev_priv, ring->irq_enable_mask); |
a19d2933 | 1706 | } |
59cdb63d | 1707 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
a19d2933 BW |
1708 | } |
1709 | ||
abd58f01 | 1710 | static bool |
a4872ba6 | 1711 | gen8_ring_get_irq(struct intel_engine_cs *ring) |
abd58f01 BW |
1712 | { |
1713 | struct drm_device *dev = ring->dev; | |
1714 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1715 | unsigned long flags; | |
1716 | ||
7cd512f1 | 1717 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
abd58f01 BW |
1718 | return false; |
1719 | ||
1720 | spin_lock_irqsave(&dev_priv->irq_lock, flags); | |
1721 | if (ring->irq_refcount++ == 0) { | |
1722 | if (HAS_L3_DPF(dev) && ring->id == RCS) { | |
1723 | I915_WRITE_IMR(ring, | |
1724 | ~(ring->irq_enable_mask | | |
1725 | GT_RENDER_L3_PARITY_ERROR_INTERRUPT)); | |
1726 | } else { | |
1727 | I915_WRITE_IMR(ring, ~ring->irq_enable_mask); | |
1728 | } | |
1729 | POSTING_READ(RING_IMR(ring->mmio_base)); | |
1730 | } | |
1731 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); | |
1732 | ||
1733 | return true; | |
1734 | } | |
1735 | ||
1736 | static void | |
a4872ba6 | 1737 | gen8_ring_put_irq(struct intel_engine_cs *ring) |
abd58f01 BW |
1738 | { |
1739 | struct drm_device *dev = ring->dev; | |
1740 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1741 | unsigned long flags; | |
1742 | ||
1743 | spin_lock_irqsave(&dev_priv->irq_lock, flags); | |
1744 | if (--ring->irq_refcount == 0) { | |
1745 | if (HAS_L3_DPF(dev) && ring->id == RCS) { | |
1746 | I915_WRITE_IMR(ring, | |
1747 | ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT); | |
1748 | } else { | |
1749 | I915_WRITE_IMR(ring, ~0); | |
1750 | } | |
1751 | POSTING_READ(RING_IMR(ring->mmio_base)); | |
1752 | } | |
1753 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); | |
1754 | } | |
1755 | ||
d1b851fc | 1756 | static int |
a4872ba6 | 1757 | i965_dispatch_execbuffer(struct intel_engine_cs *ring, |
9bcb144c | 1758 | u64 offset, u32 length, |
8e004efc | 1759 | unsigned dispatch_flags) |
d1b851fc | 1760 | { |
e1f99ce6 | 1761 | int ret; |
78501eac | 1762 | |
e1f99ce6 CW |
1763 | ret = intel_ring_begin(ring, 2); |
1764 | if (ret) | |
1765 | return ret; | |
1766 | ||
78501eac | 1767 | intel_ring_emit(ring, |
65f56876 CW |
1768 | MI_BATCH_BUFFER_START | |
1769 | MI_BATCH_GTT | | |
8e004efc JH |
1770 | (dispatch_flags & I915_DISPATCH_SECURE ? |
1771 | 0 : MI_BATCH_NON_SECURE_I965)); | |
c4e7a414 | 1772 | intel_ring_emit(ring, offset); |
78501eac CW |
1773 | intel_ring_advance(ring); |
1774 | ||
d1b851fc ZN |
1775 | return 0; |
1776 | } | |
1777 | ||
b45305fc DV |
1778 | /* Just userspace ABI convention to limit the wa batch bo to a resonable size */ |
1779 | #define I830_BATCH_LIMIT (256*1024) | |
c4d69da1 CW |
1780 | #define I830_TLB_ENTRIES (2) |
1781 | #define I830_WA_SIZE max(I830_TLB_ENTRIES*4096, I830_BATCH_LIMIT) | |
8187a2b7 | 1782 | static int |
a4872ba6 | 1783 | i830_dispatch_execbuffer(struct intel_engine_cs *ring, |
8e004efc JH |
1784 | u64 offset, u32 len, |
1785 | unsigned dispatch_flags) | |
62fdfeaf | 1786 | { |
c4d69da1 | 1787 | u32 cs_offset = ring->scratch.gtt_offset; |
c4e7a414 | 1788 | int ret; |
62fdfeaf | 1789 | |
c4d69da1 CW |
1790 | ret = intel_ring_begin(ring, 6); |
1791 | if (ret) | |
1792 | return ret; | |
62fdfeaf | 1793 | |
c4d69da1 CW |
1794 | /* Evict the invalid PTE TLBs */ |
1795 | intel_ring_emit(ring, COLOR_BLT_CMD | BLT_WRITE_RGBA); | |
1796 | intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_COLOR_COPY | 4096); | |
1797 | intel_ring_emit(ring, I830_TLB_ENTRIES << 16 | 4); /* load each page */ | |
1798 | intel_ring_emit(ring, cs_offset); | |
1799 | intel_ring_emit(ring, 0xdeadbeef); | |
1800 | intel_ring_emit(ring, MI_NOOP); | |
1801 | intel_ring_advance(ring); | |
b45305fc | 1802 | |
8e004efc | 1803 | if ((dispatch_flags & I915_DISPATCH_PINNED) == 0) { |
b45305fc DV |
1804 | if (len > I830_BATCH_LIMIT) |
1805 | return -ENOSPC; | |
1806 | ||
c4d69da1 | 1807 | ret = intel_ring_begin(ring, 6 + 2); |
b45305fc DV |
1808 | if (ret) |
1809 | return ret; | |
c4d69da1 CW |
1810 | |
1811 | /* Blit the batch (which has now all relocs applied) to the | |
1812 | * stable batch scratch bo area (so that the CS never | |
1813 | * stumbles over its tlb invalidation bug) ... | |
1814 | */ | |
1815 | intel_ring_emit(ring, SRC_COPY_BLT_CMD | BLT_WRITE_RGBA); | |
1816 | intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_SRC_COPY | 4096); | |
611a7a4f | 1817 | intel_ring_emit(ring, DIV_ROUND_UP(len, 4096) << 16 | 4096); |
b45305fc | 1818 | intel_ring_emit(ring, cs_offset); |
b45305fc DV |
1819 | intel_ring_emit(ring, 4096); |
1820 | intel_ring_emit(ring, offset); | |
c4d69da1 | 1821 | |
b45305fc | 1822 | intel_ring_emit(ring, MI_FLUSH); |
c4d69da1 CW |
1823 | intel_ring_emit(ring, MI_NOOP); |
1824 | intel_ring_advance(ring); | |
b45305fc DV |
1825 | |
1826 | /* ... and execute it. */ | |
c4d69da1 | 1827 | offset = cs_offset; |
b45305fc | 1828 | } |
e1f99ce6 | 1829 | |
c4d69da1 CW |
1830 | ret = intel_ring_begin(ring, 4); |
1831 | if (ret) | |
1832 | return ret; | |
1833 | ||
1834 | intel_ring_emit(ring, MI_BATCH_BUFFER); | |
8e004efc JH |
1835 | intel_ring_emit(ring, offset | (dispatch_flags & I915_DISPATCH_SECURE ? |
1836 | 0 : MI_BATCH_NON_SECURE)); | |
c4d69da1 CW |
1837 | intel_ring_emit(ring, offset + len - 8); |
1838 | intel_ring_emit(ring, MI_NOOP); | |
1839 | intel_ring_advance(ring); | |
1840 | ||
fb3256da DV |
1841 | return 0; |
1842 | } | |
1843 | ||
1844 | static int | |
a4872ba6 | 1845 | i915_dispatch_execbuffer(struct intel_engine_cs *ring, |
9bcb144c | 1846 | u64 offset, u32 len, |
8e004efc | 1847 | unsigned dispatch_flags) |
fb3256da DV |
1848 | { |
1849 | int ret; | |
1850 | ||
1851 | ret = intel_ring_begin(ring, 2); | |
1852 | if (ret) | |
1853 | return ret; | |
1854 | ||
65f56876 | 1855 | intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT); |
8e004efc JH |
1856 | intel_ring_emit(ring, offset | (dispatch_flags & I915_DISPATCH_SECURE ? |
1857 | 0 : MI_BATCH_NON_SECURE)); | |
c4e7a414 | 1858 | intel_ring_advance(ring); |
62fdfeaf | 1859 | |
62fdfeaf EA |
1860 | return 0; |
1861 | } | |
1862 | ||
a4872ba6 | 1863 | static void cleanup_status_page(struct intel_engine_cs *ring) |
62fdfeaf | 1864 | { |
05394f39 | 1865 | struct drm_i915_gem_object *obj; |
62fdfeaf | 1866 | |
8187a2b7 ZN |
1867 | obj = ring->status_page.obj; |
1868 | if (obj == NULL) | |
62fdfeaf | 1869 | return; |
62fdfeaf | 1870 | |
9da3da66 | 1871 | kunmap(sg_page(obj->pages->sgl)); |
d7f46fc4 | 1872 | i915_gem_object_ggtt_unpin(obj); |
05394f39 | 1873 | drm_gem_object_unreference(&obj->base); |
8187a2b7 | 1874 | ring->status_page.obj = NULL; |
62fdfeaf EA |
1875 | } |
1876 | ||
a4872ba6 | 1877 | static int init_status_page(struct intel_engine_cs *ring) |
62fdfeaf | 1878 | { |
05394f39 | 1879 | struct drm_i915_gem_object *obj; |
62fdfeaf | 1880 | |
e3efda49 | 1881 | if ((obj = ring->status_page.obj) == NULL) { |
1f767e02 | 1882 | unsigned flags; |
e3efda49 | 1883 | int ret; |
e4ffd173 | 1884 | |
e3efda49 CW |
1885 | obj = i915_gem_alloc_object(ring->dev, 4096); |
1886 | if (obj == NULL) { | |
1887 | DRM_ERROR("Failed to allocate status page\n"); | |
1888 | return -ENOMEM; | |
1889 | } | |
62fdfeaf | 1890 | |
e3efda49 CW |
1891 | ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC); |
1892 | if (ret) | |
1893 | goto err_unref; | |
1894 | ||
1f767e02 CW |
1895 | flags = 0; |
1896 | if (!HAS_LLC(ring->dev)) | |
1897 | /* On g33, we cannot place HWS above 256MiB, so | |
1898 | * restrict its pinning to the low mappable arena. | |
1899 | * Though this restriction is not documented for | |
1900 | * gen4, gen5, or byt, they also behave similarly | |
1901 | * and hang if the HWS is placed at the top of the | |
1902 | * GTT. To generalise, it appears that all !llc | |
1903 | * platforms have issues with us placing the HWS | |
1904 | * above the mappable region (even though we never | |
1905 | * actualy map it). | |
1906 | */ | |
1907 | flags |= PIN_MAPPABLE; | |
1908 | ret = i915_gem_obj_ggtt_pin(obj, 4096, flags); | |
e3efda49 CW |
1909 | if (ret) { |
1910 | err_unref: | |
1911 | drm_gem_object_unreference(&obj->base); | |
1912 | return ret; | |
1913 | } | |
1914 | ||
1915 | ring->status_page.obj = obj; | |
1916 | } | |
62fdfeaf | 1917 | |
f343c5f6 | 1918 | ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(obj); |
9da3da66 | 1919 | ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl)); |
8187a2b7 | 1920 | memset(ring->status_page.page_addr, 0, PAGE_SIZE); |
62fdfeaf | 1921 | |
8187a2b7 ZN |
1922 | DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n", |
1923 | ring->name, ring->status_page.gfx_addr); | |
62fdfeaf EA |
1924 | |
1925 | return 0; | |
62fdfeaf EA |
1926 | } |
1927 | ||
a4872ba6 | 1928 | static int init_phys_status_page(struct intel_engine_cs *ring) |
6b8294a4 CW |
1929 | { |
1930 | struct drm_i915_private *dev_priv = ring->dev->dev_private; | |
6b8294a4 CW |
1931 | |
1932 | if (!dev_priv->status_page_dmah) { | |
1933 | dev_priv->status_page_dmah = | |
1934 | drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE); | |
1935 | if (!dev_priv->status_page_dmah) | |
1936 | return -ENOMEM; | |
1937 | } | |
1938 | ||
6b8294a4 CW |
1939 | ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr; |
1940 | memset(ring->status_page.page_addr, 0, PAGE_SIZE); | |
1941 | ||
1942 | return 0; | |
1943 | } | |
1944 | ||
7ba717cf | 1945 | void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf) |
2919d291 | 1946 | { |
2919d291 | 1947 | iounmap(ringbuf->virtual_start); |
7ba717cf | 1948 | ringbuf->virtual_start = NULL; |
2919d291 | 1949 | i915_gem_object_ggtt_unpin(ringbuf->obj); |
7ba717cf TD |
1950 | } |
1951 | ||
1952 | int intel_pin_and_map_ringbuffer_obj(struct drm_device *dev, | |
1953 | struct intel_ringbuffer *ringbuf) | |
1954 | { | |
1955 | struct drm_i915_private *dev_priv = to_i915(dev); | |
1956 | struct drm_i915_gem_object *obj = ringbuf->obj; | |
1957 | int ret; | |
1958 | ||
1959 | ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE, PIN_MAPPABLE); | |
1960 | if (ret) | |
1961 | return ret; | |
1962 | ||
1963 | ret = i915_gem_object_set_to_gtt_domain(obj, true); | |
1964 | if (ret) { | |
1965 | i915_gem_object_ggtt_unpin(obj); | |
1966 | return ret; | |
1967 | } | |
1968 | ||
1969 | ringbuf->virtual_start = ioremap_wc(dev_priv->gtt.mappable_base + | |
1970 | i915_gem_obj_ggtt_offset(obj), ringbuf->size); | |
1971 | if (ringbuf->virtual_start == NULL) { | |
1972 | i915_gem_object_ggtt_unpin(obj); | |
1973 | return -EINVAL; | |
1974 | } | |
1975 | ||
1976 | return 0; | |
1977 | } | |
1978 | ||
1979 | void intel_destroy_ringbuffer_obj(struct intel_ringbuffer *ringbuf) | |
1980 | { | |
2919d291 OM |
1981 | drm_gem_object_unreference(&ringbuf->obj->base); |
1982 | ringbuf->obj = NULL; | |
1983 | } | |
1984 | ||
84c2377f OM |
1985 | int intel_alloc_ringbuffer_obj(struct drm_device *dev, |
1986 | struct intel_ringbuffer *ringbuf) | |
62fdfeaf | 1987 | { |
05394f39 | 1988 | struct drm_i915_gem_object *obj; |
62fdfeaf | 1989 | |
ebc052e0 CW |
1990 | obj = NULL; |
1991 | if (!HAS_LLC(dev)) | |
93b0a4e0 | 1992 | obj = i915_gem_object_create_stolen(dev, ringbuf->size); |
ebc052e0 | 1993 | if (obj == NULL) |
93b0a4e0 | 1994 | obj = i915_gem_alloc_object(dev, ringbuf->size); |
e3efda49 CW |
1995 | if (obj == NULL) |
1996 | return -ENOMEM; | |
8187a2b7 | 1997 | |
24f3a8cf AG |
1998 | /* mark ring buffers as read-only from GPU side by default */ |
1999 | obj->gt_ro = 1; | |
2000 | ||
93b0a4e0 | 2001 | ringbuf->obj = obj; |
e3efda49 | 2002 | |
7ba717cf | 2003 | return 0; |
e3efda49 CW |
2004 | } |
2005 | ||
2006 | static int intel_init_ring_buffer(struct drm_device *dev, | |
a4872ba6 | 2007 | struct intel_engine_cs *ring) |
e3efda49 | 2008 | { |
bfc882b4 | 2009 | struct intel_ringbuffer *ringbuf; |
e3efda49 CW |
2010 | int ret; |
2011 | ||
bfc882b4 DV |
2012 | WARN_ON(ring->buffer); |
2013 | ||
2014 | ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL); | |
2015 | if (!ringbuf) | |
2016 | return -ENOMEM; | |
2017 | ring->buffer = ringbuf; | |
8ee14975 | 2018 | |
e3efda49 CW |
2019 | ring->dev = dev; |
2020 | INIT_LIST_HEAD(&ring->active_list); | |
2021 | INIT_LIST_HEAD(&ring->request_list); | |
cc9130be | 2022 | INIT_LIST_HEAD(&ring->execlist_queue); |
06fbca71 | 2023 | i915_gem_batch_pool_init(dev, &ring->batch_pool); |
93b0a4e0 | 2024 | ringbuf->size = 32 * PAGE_SIZE; |
0c7dd53b | 2025 | ringbuf->ring = ring; |
ebc348b2 | 2026 | memset(ring->semaphore.sync_seqno, 0, sizeof(ring->semaphore.sync_seqno)); |
e3efda49 CW |
2027 | |
2028 | init_waitqueue_head(&ring->irq_queue); | |
2029 | ||
2030 | if (I915_NEED_GFX_HWS(dev)) { | |
2031 | ret = init_status_page(ring); | |
2032 | if (ret) | |
8ee14975 | 2033 | goto error; |
e3efda49 CW |
2034 | } else { |
2035 | BUG_ON(ring->id != RCS); | |
2036 | ret = init_phys_status_page(ring); | |
2037 | if (ret) | |
8ee14975 | 2038 | goto error; |
e3efda49 CW |
2039 | } |
2040 | ||
bfc882b4 | 2041 | WARN_ON(ringbuf->obj); |
7ba717cf | 2042 | |
bfc882b4 DV |
2043 | ret = intel_alloc_ringbuffer_obj(dev, ringbuf); |
2044 | if (ret) { | |
2045 | DRM_ERROR("Failed to allocate ringbuffer %s: %d\n", | |
2046 | ring->name, ret); | |
2047 | goto error; | |
2048 | } | |
2049 | ||
2050 | ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf); | |
2051 | if (ret) { | |
2052 | DRM_ERROR("Failed to pin and map ringbuffer %s: %d\n", | |
2053 | ring->name, ret); | |
2054 | intel_destroy_ringbuffer_obj(ringbuf); | |
2055 | goto error; | |
e3efda49 | 2056 | } |
62fdfeaf | 2057 | |
55249baa CW |
2058 | /* Workaround an erratum on the i830 which causes a hang if |
2059 | * the TAIL pointer points to within the last 2 cachelines | |
2060 | * of the buffer. | |
2061 | */ | |
93b0a4e0 | 2062 | ringbuf->effective_size = ringbuf->size; |
e3efda49 | 2063 | if (IS_I830(dev) || IS_845G(dev)) |
93b0a4e0 | 2064 | ringbuf->effective_size -= 2 * CACHELINE_BYTES; |
55249baa | 2065 | |
44e895a8 BV |
2066 | ret = i915_cmd_parser_init_ring(ring); |
2067 | if (ret) | |
8ee14975 OM |
2068 | goto error; |
2069 | ||
8ee14975 | 2070 | return 0; |
351e3db2 | 2071 | |
8ee14975 OM |
2072 | error: |
2073 | kfree(ringbuf); | |
2074 | ring->buffer = NULL; | |
2075 | return ret; | |
62fdfeaf EA |
2076 | } |
2077 | ||
a4872ba6 | 2078 | void intel_cleanup_ring_buffer(struct intel_engine_cs *ring) |
62fdfeaf | 2079 | { |
6402c330 JH |
2080 | struct drm_i915_private *dev_priv; |
2081 | struct intel_ringbuffer *ringbuf; | |
33626e6a | 2082 | |
93b0a4e0 | 2083 | if (!intel_ring_initialized(ring)) |
62fdfeaf EA |
2084 | return; |
2085 | ||
6402c330 JH |
2086 | dev_priv = to_i915(ring->dev); |
2087 | ringbuf = ring->buffer; | |
2088 | ||
e3efda49 | 2089 | intel_stop_ring_buffer(ring); |
de8f0a50 | 2090 | WARN_ON(!IS_GEN2(ring->dev) && (I915_READ_MODE(ring) & MODE_IDLE) == 0); |
33626e6a | 2091 | |
7ba717cf | 2092 | intel_unpin_ringbuffer_obj(ringbuf); |
2919d291 | 2093 | intel_destroy_ringbuffer_obj(ringbuf); |
6259cead | 2094 | i915_gem_request_assign(&ring->outstanding_lazy_request, NULL); |
78501eac | 2095 | |
8d19215b ZN |
2096 | if (ring->cleanup) |
2097 | ring->cleanup(ring); | |
2098 | ||
78501eac | 2099 | cleanup_status_page(ring); |
44e895a8 BV |
2100 | |
2101 | i915_cmd_parser_fini_ring(ring); | |
06fbca71 | 2102 | i915_gem_batch_pool_fini(&ring->batch_pool); |
8ee14975 | 2103 | |
93b0a4e0 | 2104 | kfree(ringbuf); |
8ee14975 | 2105 | ring->buffer = NULL; |
62fdfeaf EA |
2106 | } |
2107 | ||
595e1eeb | 2108 | static int ring_wait_for_space(struct intel_engine_cs *ring, int n) |
a71d8d94 | 2109 | { |
93b0a4e0 | 2110 | struct intel_ringbuffer *ringbuf = ring->buffer; |
a71d8d94 | 2111 | struct drm_i915_gem_request *request; |
b4716185 CW |
2112 | unsigned space; |
2113 | int ret; | |
a71d8d94 | 2114 | |
29b1b415 JH |
2115 | /* The whole point of reserving space is to not wait! */ |
2116 | WARN_ON(ringbuf->reserved_in_use); | |
2117 | ||
ebd0fd4b DG |
2118 | if (intel_ring_space(ringbuf) >= n) |
2119 | return 0; | |
a71d8d94 CW |
2120 | |
2121 | list_for_each_entry(request, &ring->request_list, list) { | |
b4716185 CW |
2122 | space = __intel_ring_space(request->postfix, ringbuf->tail, |
2123 | ringbuf->size); | |
2124 | if (space >= n) | |
a71d8d94 | 2125 | break; |
a71d8d94 CW |
2126 | } |
2127 | ||
595e1eeb | 2128 | if (WARN_ON(&request->list == &ring->request_list)) |
a71d8d94 CW |
2129 | return -ENOSPC; |
2130 | ||
a4b3a571 | 2131 | ret = i915_wait_request(request); |
a71d8d94 CW |
2132 | if (ret) |
2133 | return ret; | |
2134 | ||
b4716185 | 2135 | ringbuf->space = space; |
a71d8d94 CW |
2136 | return 0; |
2137 | } | |
2138 | ||
a4872ba6 | 2139 | static int intel_wrap_ring_buffer(struct intel_engine_cs *ring) |
3e960501 CW |
2140 | { |
2141 | uint32_t __iomem *virt; | |
93b0a4e0 OM |
2142 | struct intel_ringbuffer *ringbuf = ring->buffer; |
2143 | int rem = ringbuf->size - ringbuf->tail; | |
3e960501 | 2144 | |
29b1b415 JH |
2145 | /* Can't wrap if space has already been reserved! */ |
2146 | WARN_ON(ringbuf->reserved_in_use); | |
2147 | ||
93b0a4e0 | 2148 | if (ringbuf->space < rem) { |
3e960501 CW |
2149 | int ret = ring_wait_for_space(ring, rem); |
2150 | if (ret) | |
2151 | return ret; | |
2152 | } | |
2153 | ||
93b0a4e0 | 2154 | virt = ringbuf->virtual_start + ringbuf->tail; |
3e960501 CW |
2155 | rem /= 4; |
2156 | while (rem--) | |
2157 | iowrite32(MI_NOOP, virt++); | |
2158 | ||
93b0a4e0 | 2159 | ringbuf->tail = 0; |
ebd0fd4b | 2160 | intel_ring_update_space(ringbuf); |
3e960501 CW |
2161 | |
2162 | return 0; | |
2163 | } | |
2164 | ||
a4872ba6 | 2165 | int intel_ring_idle(struct intel_engine_cs *ring) |
3e960501 | 2166 | { |
a4b3a571 | 2167 | struct drm_i915_gem_request *req; |
3e960501 CW |
2168 | |
2169 | /* We need to add any requests required to flush the objects and ring */ | |
bf7dc5b7 JH |
2170 | if (ring->outstanding_lazy_request) |
2171 | i915_add_request(ring); | |
3e960501 CW |
2172 | |
2173 | /* Wait upon the last request to be completed */ | |
2174 | if (list_empty(&ring->request_list)) | |
2175 | return 0; | |
2176 | ||
a4b3a571 | 2177 | req = list_entry(ring->request_list.prev, |
b4716185 CW |
2178 | struct drm_i915_gem_request, |
2179 | list); | |
2180 | ||
2181 | /* Make sure we do not trigger any retires */ | |
2182 | return __i915_wait_request(req, | |
2183 | atomic_read(&to_i915(ring->dev)->gpu_error.reset_counter), | |
2184 | to_i915(ring->dev)->mm.interruptible, | |
2185 | NULL, NULL); | |
3e960501 CW |
2186 | } |
2187 | ||
6689cb2b | 2188 | int intel_ring_alloc_request_extras(struct drm_i915_gem_request *request) |
9d773091 | 2189 | { |
6689cb2b | 2190 | request->ringbuf = request->ring->buffer; |
9eba5d4a | 2191 | return 0; |
9d773091 CW |
2192 | } |
2193 | ||
29b1b415 JH |
2194 | void intel_ring_reserved_space_reserve(struct intel_ringbuffer *ringbuf, int size) |
2195 | { | |
2196 | /* NB: Until request management is fully tidied up and the OLR is | |
2197 | * removed, there are too many ways for get false hits on this | |
2198 | * anti-recursion check! */ | |
2199 | /*WARN_ON(ringbuf->reserved_size);*/ | |
2200 | WARN_ON(ringbuf->reserved_in_use); | |
2201 | ||
2202 | ringbuf->reserved_size = size; | |
2203 | ||
2204 | /* | |
2205 | * Really need to call _begin() here but that currently leads to | |
2206 | * recursion problems! This will be fixed later but for now just | |
2207 | * return and hope for the best. Note that there is only a real | |
2208 | * problem if the create of the request never actually calls _begin() | |
2209 | * but if they are not submitting any work then why did they create | |
2210 | * the request in the first place? | |
2211 | */ | |
2212 | } | |
2213 | ||
2214 | void intel_ring_reserved_space_cancel(struct intel_ringbuffer *ringbuf) | |
2215 | { | |
2216 | WARN_ON(ringbuf->reserved_in_use); | |
2217 | ||
2218 | ringbuf->reserved_size = 0; | |
2219 | ringbuf->reserved_in_use = false; | |
2220 | } | |
2221 | ||
2222 | void intel_ring_reserved_space_use(struct intel_ringbuffer *ringbuf) | |
2223 | { | |
2224 | WARN_ON(ringbuf->reserved_in_use); | |
2225 | ||
2226 | ringbuf->reserved_in_use = true; | |
2227 | ringbuf->reserved_tail = ringbuf->tail; | |
2228 | } | |
2229 | ||
2230 | void intel_ring_reserved_space_end(struct intel_ringbuffer *ringbuf) | |
2231 | { | |
2232 | WARN_ON(!ringbuf->reserved_in_use); | |
2233 | WARN(ringbuf->tail > ringbuf->reserved_tail + ringbuf->reserved_size, | |
2234 | "request reserved size too small: %d vs %d!\n", | |
2235 | ringbuf->tail - ringbuf->reserved_tail, ringbuf->reserved_size); | |
2236 | ||
2237 | ringbuf->reserved_size = 0; | |
2238 | ringbuf->reserved_in_use = false; | |
2239 | } | |
2240 | ||
2241 | static int __intel_ring_prepare(struct intel_engine_cs *ring, int bytes) | |
cbcc80df | 2242 | { |
93b0a4e0 | 2243 | struct intel_ringbuffer *ringbuf = ring->buffer; |
cbcc80df MK |
2244 | int ret; |
2245 | ||
29b1b415 JH |
2246 | /* |
2247 | * Add on the reserved size to the request to make sure that after | |
2248 | * the intended commands have been emitted, there is guaranteed to | |
2249 | * still be enough free space to send them to the hardware. | |
2250 | */ | |
2251 | if (!ringbuf->reserved_in_use) | |
2252 | bytes += ringbuf->reserved_size; | |
2253 | ||
93b0a4e0 | 2254 | if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) { |
cbcc80df MK |
2255 | ret = intel_wrap_ring_buffer(ring); |
2256 | if (unlikely(ret)) | |
2257 | return ret; | |
29b1b415 JH |
2258 | |
2259 | if(ringbuf->reserved_size) { | |
2260 | uint32_t size = ringbuf->reserved_size; | |
2261 | ||
2262 | intel_ring_reserved_space_cancel(ringbuf); | |
2263 | intel_ring_reserved_space_reserve(ringbuf, size); | |
2264 | } | |
cbcc80df MK |
2265 | } |
2266 | ||
93b0a4e0 | 2267 | if (unlikely(ringbuf->space < bytes)) { |
cbcc80df MK |
2268 | ret = ring_wait_for_space(ring, bytes); |
2269 | if (unlikely(ret)) | |
2270 | return ret; | |
2271 | } | |
2272 | ||
cbcc80df MK |
2273 | return 0; |
2274 | } | |
2275 | ||
a4872ba6 | 2276 | int intel_ring_begin(struct intel_engine_cs *ring, |
e1f99ce6 | 2277 | int num_dwords) |
8187a2b7 | 2278 | { |
217e46b5 | 2279 | struct drm_i915_gem_request *req; |
4640c4ff | 2280 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
e1f99ce6 | 2281 | int ret; |
78501eac | 2282 | |
33196ded DV |
2283 | ret = i915_gem_check_wedge(&dev_priv->gpu_error, |
2284 | dev_priv->mm.interruptible); | |
de2b9985 DV |
2285 | if (ret) |
2286 | return ret; | |
21dd3734 | 2287 | |
304d695c CW |
2288 | ret = __intel_ring_prepare(ring, num_dwords * sizeof(uint32_t)); |
2289 | if (ret) | |
2290 | return ret; | |
2291 | ||
9d773091 | 2292 | /* Preallocate the olr before touching the ring */ |
217e46b5 | 2293 | ret = i915_gem_request_alloc(ring, ring->default_context, &req); |
9d773091 CW |
2294 | if (ret) |
2295 | return ret; | |
2296 | ||
ee1b1e5e | 2297 | ring->buffer->space -= num_dwords * sizeof(uint32_t); |
304d695c | 2298 | return 0; |
8187a2b7 | 2299 | } |
78501eac | 2300 | |
753b1ad4 | 2301 | /* Align the ring tail to a cacheline boundary */ |
a4872ba6 | 2302 | int intel_ring_cacheline_align(struct intel_engine_cs *ring) |
753b1ad4 | 2303 | { |
ee1b1e5e | 2304 | int num_dwords = (ring->buffer->tail & (CACHELINE_BYTES - 1)) / sizeof(uint32_t); |
753b1ad4 VS |
2305 | int ret; |
2306 | ||
2307 | if (num_dwords == 0) | |
2308 | return 0; | |
2309 | ||
18393f63 | 2310 | num_dwords = CACHELINE_BYTES / sizeof(uint32_t) - num_dwords; |
753b1ad4 VS |
2311 | ret = intel_ring_begin(ring, num_dwords); |
2312 | if (ret) | |
2313 | return ret; | |
2314 | ||
2315 | while (num_dwords--) | |
2316 | intel_ring_emit(ring, MI_NOOP); | |
2317 | ||
2318 | intel_ring_advance(ring); | |
2319 | ||
2320 | return 0; | |
2321 | } | |
2322 | ||
a4872ba6 | 2323 | void intel_ring_init_seqno(struct intel_engine_cs *ring, u32 seqno) |
498d2ac1 | 2324 | { |
3b2cc8ab OM |
2325 | struct drm_device *dev = ring->dev; |
2326 | struct drm_i915_private *dev_priv = dev->dev_private; | |
498d2ac1 | 2327 | |
6259cead | 2328 | BUG_ON(ring->outstanding_lazy_request); |
498d2ac1 | 2329 | |
3b2cc8ab | 2330 | if (INTEL_INFO(dev)->gen == 6 || INTEL_INFO(dev)->gen == 7) { |
f7e98ad4 MK |
2331 | I915_WRITE(RING_SYNC_0(ring->mmio_base), 0); |
2332 | I915_WRITE(RING_SYNC_1(ring->mmio_base), 0); | |
3b2cc8ab | 2333 | if (HAS_VEBOX(dev)) |
5020150b | 2334 | I915_WRITE(RING_SYNC_2(ring->mmio_base), 0); |
e1f99ce6 | 2335 | } |
d97ed339 | 2336 | |
f7e98ad4 | 2337 | ring->set_seqno(ring, seqno); |
92cab734 | 2338 | ring->hangcheck.seqno = seqno; |
8187a2b7 | 2339 | } |
62fdfeaf | 2340 | |
a4872ba6 | 2341 | static void gen6_bsd_ring_write_tail(struct intel_engine_cs *ring, |
297b0c5b | 2342 | u32 value) |
881f47b6 | 2343 | { |
4640c4ff | 2344 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
881f47b6 XH |
2345 | |
2346 | /* Every tail move must follow the sequence below */ | |
12f55818 CW |
2347 | |
2348 | /* Disable notification that the ring is IDLE. The GT | |
2349 | * will then assume that it is busy and bring it out of rc6. | |
2350 | */ | |
0206e353 | 2351 | I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL, |
12f55818 CW |
2352 | _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE)); |
2353 | ||
2354 | /* Clear the context id. Here be magic! */ | |
2355 | I915_WRITE64(GEN6_BSD_RNCID, 0x0); | |
0206e353 | 2356 | |
12f55818 | 2357 | /* Wait for the ring not to be idle, i.e. for it to wake up. */ |
0206e353 | 2358 | if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) & |
12f55818 CW |
2359 | GEN6_BSD_SLEEP_INDICATOR) == 0, |
2360 | 50)) | |
2361 | DRM_ERROR("timed out waiting for the BSD ring to wake up\n"); | |
0206e353 | 2362 | |
12f55818 | 2363 | /* Now that the ring is fully powered up, update the tail */ |
0206e353 | 2364 | I915_WRITE_TAIL(ring, value); |
12f55818 CW |
2365 | POSTING_READ(RING_TAIL(ring->mmio_base)); |
2366 | ||
2367 | /* Let the ring send IDLE messages to the GT again, | |
2368 | * and so let it sleep to conserve power when idle. | |
2369 | */ | |
0206e353 | 2370 | I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL, |
12f55818 | 2371 | _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE)); |
881f47b6 XH |
2372 | } |
2373 | ||
a4872ba6 | 2374 | static int gen6_bsd_ring_flush(struct intel_engine_cs *ring, |
ea251324 | 2375 | u32 invalidate, u32 flush) |
881f47b6 | 2376 | { |
71a77e07 | 2377 | uint32_t cmd; |
b72f3acb CW |
2378 | int ret; |
2379 | ||
b72f3acb CW |
2380 | ret = intel_ring_begin(ring, 4); |
2381 | if (ret) | |
2382 | return ret; | |
2383 | ||
71a77e07 | 2384 | cmd = MI_FLUSH_DW; |
075b3bba BW |
2385 | if (INTEL_INFO(ring->dev)->gen >= 8) |
2386 | cmd += 1; | |
f0a1fb10 CW |
2387 | |
2388 | /* We always require a command barrier so that subsequent | |
2389 | * commands, such as breadcrumb interrupts, are strictly ordered | |
2390 | * wrt the contents of the write cache being flushed to memory | |
2391 | * (and thus being coherent from the CPU). | |
2392 | */ | |
2393 | cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW; | |
2394 | ||
9a289771 JB |
2395 | /* |
2396 | * Bspec vol 1c.5 - video engine command streamer: | |
2397 | * "If ENABLED, all TLBs will be invalidated once the flush | |
2398 | * operation is complete. This bit is only valid when the | |
2399 | * Post-Sync Operation field is a value of 1h or 3h." | |
2400 | */ | |
71a77e07 | 2401 | if (invalidate & I915_GEM_GPU_DOMAINS) |
f0a1fb10 CW |
2402 | cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD; |
2403 | ||
71a77e07 | 2404 | intel_ring_emit(ring, cmd); |
9a289771 | 2405 | intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT); |
075b3bba BW |
2406 | if (INTEL_INFO(ring->dev)->gen >= 8) { |
2407 | intel_ring_emit(ring, 0); /* upper addr */ | |
2408 | intel_ring_emit(ring, 0); /* value */ | |
2409 | } else { | |
2410 | intel_ring_emit(ring, 0); | |
2411 | intel_ring_emit(ring, MI_NOOP); | |
2412 | } | |
b72f3acb CW |
2413 | intel_ring_advance(ring); |
2414 | return 0; | |
881f47b6 XH |
2415 | } |
2416 | ||
1c7a0623 | 2417 | static int |
a4872ba6 | 2418 | gen8_ring_dispatch_execbuffer(struct intel_engine_cs *ring, |
9bcb144c | 2419 | u64 offset, u32 len, |
8e004efc | 2420 | unsigned dispatch_flags) |
1c7a0623 | 2421 | { |
8e004efc JH |
2422 | bool ppgtt = USES_PPGTT(ring->dev) && |
2423 | !(dispatch_flags & I915_DISPATCH_SECURE); | |
1c7a0623 BW |
2424 | int ret; |
2425 | ||
2426 | ret = intel_ring_begin(ring, 4); | |
2427 | if (ret) | |
2428 | return ret; | |
2429 | ||
2430 | /* FIXME(BDW): Address space and security selectors. */ | |
28cf5415 | 2431 | intel_ring_emit(ring, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8)); |
9bcb144c BW |
2432 | intel_ring_emit(ring, lower_32_bits(offset)); |
2433 | intel_ring_emit(ring, upper_32_bits(offset)); | |
1c7a0623 BW |
2434 | intel_ring_emit(ring, MI_NOOP); |
2435 | intel_ring_advance(ring); | |
2436 | ||
2437 | return 0; | |
2438 | } | |
2439 | ||
d7d4eedd | 2440 | static int |
a4872ba6 | 2441 | hsw_ring_dispatch_execbuffer(struct intel_engine_cs *ring, |
8e004efc JH |
2442 | u64 offset, u32 len, |
2443 | unsigned dispatch_flags) | |
d7d4eedd CW |
2444 | { |
2445 | int ret; | |
2446 | ||
2447 | ret = intel_ring_begin(ring, 2); | |
2448 | if (ret) | |
2449 | return ret; | |
2450 | ||
2451 | intel_ring_emit(ring, | |
77072258 | 2452 | MI_BATCH_BUFFER_START | |
8e004efc | 2453 | (dispatch_flags & I915_DISPATCH_SECURE ? |
77072258 | 2454 | 0 : MI_BATCH_PPGTT_HSW | MI_BATCH_NON_SECURE_HSW)); |
d7d4eedd CW |
2455 | /* bit0-7 is the length on GEN6+ */ |
2456 | intel_ring_emit(ring, offset); | |
2457 | intel_ring_advance(ring); | |
2458 | ||
2459 | return 0; | |
2460 | } | |
2461 | ||
881f47b6 | 2462 | static int |
a4872ba6 | 2463 | gen6_ring_dispatch_execbuffer(struct intel_engine_cs *ring, |
9bcb144c | 2464 | u64 offset, u32 len, |
8e004efc | 2465 | unsigned dispatch_flags) |
881f47b6 | 2466 | { |
0206e353 | 2467 | int ret; |
ab6f8e32 | 2468 | |
0206e353 AJ |
2469 | ret = intel_ring_begin(ring, 2); |
2470 | if (ret) | |
2471 | return ret; | |
e1f99ce6 | 2472 | |
d7d4eedd CW |
2473 | intel_ring_emit(ring, |
2474 | MI_BATCH_BUFFER_START | | |
8e004efc JH |
2475 | (dispatch_flags & I915_DISPATCH_SECURE ? |
2476 | 0 : MI_BATCH_NON_SECURE_I965)); | |
0206e353 AJ |
2477 | /* bit0-7 is the length on GEN6+ */ |
2478 | intel_ring_emit(ring, offset); | |
2479 | intel_ring_advance(ring); | |
ab6f8e32 | 2480 | |
0206e353 | 2481 | return 0; |
881f47b6 XH |
2482 | } |
2483 | ||
549f7365 CW |
2484 | /* Blitter support (SandyBridge+) */ |
2485 | ||
a4872ba6 | 2486 | static int gen6_ring_flush(struct intel_engine_cs *ring, |
ea251324 | 2487 | u32 invalidate, u32 flush) |
8d19215b | 2488 | { |
fd3da6c9 | 2489 | struct drm_device *dev = ring->dev; |
71a77e07 | 2490 | uint32_t cmd; |
b72f3acb CW |
2491 | int ret; |
2492 | ||
6a233c78 | 2493 | ret = intel_ring_begin(ring, 4); |
b72f3acb CW |
2494 | if (ret) |
2495 | return ret; | |
2496 | ||
71a77e07 | 2497 | cmd = MI_FLUSH_DW; |
dbef0f15 | 2498 | if (INTEL_INFO(dev)->gen >= 8) |
075b3bba | 2499 | cmd += 1; |
f0a1fb10 CW |
2500 | |
2501 | /* We always require a command barrier so that subsequent | |
2502 | * commands, such as breadcrumb interrupts, are strictly ordered | |
2503 | * wrt the contents of the write cache being flushed to memory | |
2504 | * (and thus being coherent from the CPU). | |
2505 | */ | |
2506 | cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW; | |
2507 | ||
9a289771 JB |
2508 | /* |
2509 | * Bspec vol 1c.3 - blitter engine command streamer: | |
2510 | * "If ENABLED, all TLBs will be invalidated once the flush | |
2511 | * operation is complete. This bit is only valid when the | |
2512 | * Post-Sync Operation field is a value of 1h or 3h." | |
2513 | */ | |
71a77e07 | 2514 | if (invalidate & I915_GEM_DOMAIN_RENDER) |
f0a1fb10 | 2515 | cmd |= MI_INVALIDATE_TLB; |
71a77e07 | 2516 | intel_ring_emit(ring, cmd); |
9a289771 | 2517 | intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT); |
dbef0f15 | 2518 | if (INTEL_INFO(dev)->gen >= 8) { |
075b3bba BW |
2519 | intel_ring_emit(ring, 0); /* upper addr */ |
2520 | intel_ring_emit(ring, 0); /* value */ | |
2521 | } else { | |
2522 | intel_ring_emit(ring, 0); | |
2523 | intel_ring_emit(ring, MI_NOOP); | |
2524 | } | |
b72f3acb | 2525 | intel_ring_advance(ring); |
fd3da6c9 | 2526 | |
b72f3acb | 2527 | return 0; |
8d19215b ZN |
2528 | } |
2529 | ||
5c1143bb XH |
2530 | int intel_init_render_ring_buffer(struct drm_device *dev) |
2531 | { | |
4640c4ff | 2532 | struct drm_i915_private *dev_priv = dev->dev_private; |
a4872ba6 | 2533 | struct intel_engine_cs *ring = &dev_priv->ring[RCS]; |
3e78998a BW |
2534 | struct drm_i915_gem_object *obj; |
2535 | int ret; | |
5c1143bb | 2536 | |
59465b5f DV |
2537 | ring->name = "render ring"; |
2538 | ring->id = RCS; | |
2539 | ring->mmio_base = RENDER_RING_BASE; | |
2540 | ||
707d9cf9 | 2541 | if (INTEL_INFO(dev)->gen >= 8) { |
3e78998a BW |
2542 | if (i915_semaphore_is_enabled(dev)) { |
2543 | obj = i915_gem_alloc_object(dev, 4096); | |
2544 | if (obj == NULL) { | |
2545 | DRM_ERROR("Failed to allocate semaphore bo. Disabling semaphores\n"); | |
2546 | i915.semaphores = 0; | |
2547 | } else { | |
2548 | i915_gem_object_set_cache_level(obj, I915_CACHE_LLC); | |
2549 | ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_NONBLOCK); | |
2550 | if (ret != 0) { | |
2551 | drm_gem_object_unreference(&obj->base); | |
2552 | DRM_ERROR("Failed to pin semaphore bo. Disabling semaphores\n"); | |
2553 | i915.semaphores = 0; | |
2554 | } else | |
2555 | dev_priv->semaphore_obj = obj; | |
2556 | } | |
2557 | } | |
7225342a | 2558 | |
8f0e2b9d | 2559 | ring->init_context = intel_rcs_ctx_init; |
707d9cf9 BW |
2560 | ring->add_request = gen6_add_request; |
2561 | ring->flush = gen8_render_ring_flush; | |
2562 | ring->irq_get = gen8_ring_get_irq; | |
2563 | ring->irq_put = gen8_ring_put_irq; | |
2564 | ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT; | |
2565 | ring->get_seqno = gen6_ring_get_seqno; | |
2566 | ring->set_seqno = ring_set_seqno; | |
2567 | if (i915_semaphore_is_enabled(dev)) { | |
3e78998a | 2568 | WARN_ON(!dev_priv->semaphore_obj); |
5ee426ca | 2569 | ring->semaphore.sync_to = gen8_ring_sync; |
3e78998a BW |
2570 | ring->semaphore.signal = gen8_rcs_signal; |
2571 | GEN8_RING_SEMAPHORE_INIT; | |
707d9cf9 BW |
2572 | } |
2573 | } else if (INTEL_INFO(dev)->gen >= 6) { | |
1ec14ad3 | 2574 | ring->add_request = gen6_add_request; |
4772eaeb | 2575 | ring->flush = gen7_render_ring_flush; |
6c6cf5aa | 2576 | if (INTEL_INFO(dev)->gen == 6) |
b3111509 | 2577 | ring->flush = gen6_render_ring_flush; |
707d9cf9 BW |
2578 | ring->irq_get = gen6_ring_get_irq; |
2579 | ring->irq_put = gen6_ring_put_irq; | |
cc609d5d | 2580 | ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT; |
4cd53c0c | 2581 | ring->get_seqno = gen6_ring_get_seqno; |
b70ec5bf | 2582 | ring->set_seqno = ring_set_seqno; |
707d9cf9 BW |
2583 | if (i915_semaphore_is_enabled(dev)) { |
2584 | ring->semaphore.sync_to = gen6_ring_sync; | |
2585 | ring->semaphore.signal = gen6_signal; | |
2586 | /* | |
2587 | * The current semaphore is only applied on pre-gen8 | |
2588 | * platform. And there is no VCS2 ring on the pre-gen8 | |
2589 | * platform. So the semaphore between RCS and VCS2 is | |
2590 | * initialized as INVALID. Gen8 will initialize the | |
2591 | * sema between VCS2 and RCS later. | |
2592 | */ | |
2593 | ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_INVALID; | |
2594 | ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_RV; | |
2595 | ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_RB; | |
2596 | ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_RVE; | |
2597 | ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID; | |
2598 | ring->semaphore.mbox.signal[RCS] = GEN6_NOSYNC; | |
2599 | ring->semaphore.mbox.signal[VCS] = GEN6_VRSYNC; | |
2600 | ring->semaphore.mbox.signal[BCS] = GEN6_BRSYNC; | |
2601 | ring->semaphore.mbox.signal[VECS] = GEN6_VERSYNC; | |
2602 | ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC; | |
2603 | } | |
c6df541c CW |
2604 | } else if (IS_GEN5(dev)) { |
2605 | ring->add_request = pc_render_add_request; | |
46f0f8d1 | 2606 | ring->flush = gen4_render_ring_flush; |
c6df541c | 2607 | ring->get_seqno = pc_render_get_seqno; |
b70ec5bf | 2608 | ring->set_seqno = pc_render_set_seqno; |
e48d8634 DV |
2609 | ring->irq_get = gen5_ring_get_irq; |
2610 | ring->irq_put = gen5_ring_put_irq; | |
cc609d5d BW |
2611 | ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT | |
2612 | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT; | |
59465b5f | 2613 | } else { |
8620a3a9 | 2614 | ring->add_request = i9xx_add_request; |
46f0f8d1 CW |
2615 | if (INTEL_INFO(dev)->gen < 4) |
2616 | ring->flush = gen2_render_ring_flush; | |
2617 | else | |
2618 | ring->flush = gen4_render_ring_flush; | |
59465b5f | 2619 | ring->get_seqno = ring_get_seqno; |
b70ec5bf | 2620 | ring->set_seqno = ring_set_seqno; |
c2798b19 CW |
2621 | if (IS_GEN2(dev)) { |
2622 | ring->irq_get = i8xx_ring_get_irq; | |
2623 | ring->irq_put = i8xx_ring_put_irq; | |
2624 | } else { | |
2625 | ring->irq_get = i9xx_ring_get_irq; | |
2626 | ring->irq_put = i9xx_ring_put_irq; | |
2627 | } | |
e3670319 | 2628 | ring->irq_enable_mask = I915_USER_INTERRUPT; |
1ec14ad3 | 2629 | } |
59465b5f | 2630 | ring->write_tail = ring_write_tail; |
707d9cf9 | 2631 | |
d7d4eedd CW |
2632 | if (IS_HASWELL(dev)) |
2633 | ring->dispatch_execbuffer = hsw_ring_dispatch_execbuffer; | |
1c7a0623 BW |
2634 | else if (IS_GEN8(dev)) |
2635 | ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer; | |
d7d4eedd | 2636 | else if (INTEL_INFO(dev)->gen >= 6) |
fb3256da DV |
2637 | ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer; |
2638 | else if (INTEL_INFO(dev)->gen >= 4) | |
2639 | ring->dispatch_execbuffer = i965_dispatch_execbuffer; | |
2640 | else if (IS_I830(dev) || IS_845G(dev)) | |
2641 | ring->dispatch_execbuffer = i830_dispatch_execbuffer; | |
2642 | else | |
2643 | ring->dispatch_execbuffer = i915_dispatch_execbuffer; | |
ecfe00d8 | 2644 | ring->init_hw = init_render_ring; |
59465b5f DV |
2645 | ring->cleanup = render_ring_cleanup; |
2646 | ||
b45305fc DV |
2647 | /* Workaround batchbuffer to combat CS tlb bug. */ |
2648 | if (HAS_BROKEN_CS_TLB(dev)) { | |
c4d69da1 | 2649 | obj = i915_gem_alloc_object(dev, I830_WA_SIZE); |
b45305fc DV |
2650 | if (obj == NULL) { |
2651 | DRM_ERROR("Failed to allocate batch bo\n"); | |
2652 | return -ENOMEM; | |
2653 | } | |
2654 | ||
be1fa129 | 2655 | ret = i915_gem_obj_ggtt_pin(obj, 0, 0); |
b45305fc DV |
2656 | if (ret != 0) { |
2657 | drm_gem_object_unreference(&obj->base); | |
2658 | DRM_ERROR("Failed to ping batch bo\n"); | |
2659 | return ret; | |
2660 | } | |
2661 | ||
0d1aacac CW |
2662 | ring->scratch.obj = obj; |
2663 | ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(obj); | |
b45305fc DV |
2664 | } |
2665 | ||
99be1dfe DV |
2666 | ret = intel_init_ring_buffer(dev, ring); |
2667 | if (ret) | |
2668 | return ret; | |
2669 | ||
2670 | if (INTEL_INFO(dev)->gen >= 5) { | |
2671 | ret = intel_init_pipe_control(ring); | |
2672 | if (ret) | |
2673 | return ret; | |
2674 | } | |
2675 | ||
2676 | return 0; | |
5c1143bb XH |
2677 | } |
2678 | ||
2679 | int intel_init_bsd_ring_buffer(struct drm_device *dev) | |
2680 | { | |
4640c4ff | 2681 | struct drm_i915_private *dev_priv = dev->dev_private; |
a4872ba6 | 2682 | struct intel_engine_cs *ring = &dev_priv->ring[VCS]; |
5c1143bb | 2683 | |
58fa3835 DV |
2684 | ring->name = "bsd ring"; |
2685 | ring->id = VCS; | |
2686 | ||
0fd2c201 | 2687 | ring->write_tail = ring_write_tail; |
780f18c8 | 2688 | if (INTEL_INFO(dev)->gen >= 6) { |
58fa3835 | 2689 | ring->mmio_base = GEN6_BSD_RING_BASE; |
0fd2c201 DV |
2690 | /* gen6 bsd needs a special wa for tail updates */ |
2691 | if (IS_GEN6(dev)) | |
2692 | ring->write_tail = gen6_bsd_ring_write_tail; | |
ea251324 | 2693 | ring->flush = gen6_bsd_ring_flush; |
58fa3835 DV |
2694 | ring->add_request = gen6_add_request; |
2695 | ring->get_seqno = gen6_ring_get_seqno; | |
b70ec5bf | 2696 | ring->set_seqno = ring_set_seqno; |
abd58f01 BW |
2697 | if (INTEL_INFO(dev)->gen >= 8) { |
2698 | ring->irq_enable_mask = | |
2699 | GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT; | |
2700 | ring->irq_get = gen8_ring_get_irq; | |
2701 | ring->irq_put = gen8_ring_put_irq; | |
1c7a0623 BW |
2702 | ring->dispatch_execbuffer = |
2703 | gen8_ring_dispatch_execbuffer; | |
707d9cf9 | 2704 | if (i915_semaphore_is_enabled(dev)) { |
5ee426ca | 2705 | ring->semaphore.sync_to = gen8_ring_sync; |
3e78998a BW |
2706 | ring->semaphore.signal = gen8_xcs_signal; |
2707 | GEN8_RING_SEMAPHORE_INIT; | |
707d9cf9 | 2708 | } |
abd58f01 BW |
2709 | } else { |
2710 | ring->irq_enable_mask = GT_BSD_USER_INTERRUPT; | |
2711 | ring->irq_get = gen6_ring_get_irq; | |
2712 | ring->irq_put = gen6_ring_put_irq; | |
1c7a0623 BW |
2713 | ring->dispatch_execbuffer = |
2714 | gen6_ring_dispatch_execbuffer; | |
707d9cf9 BW |
2715 | if (i915_semaphore_is_enabled(dev)) { |
2716 | ring->semaphore.sync_to = gen6_ring_sync; | |
2717 | ring->semaphore.signal = gen6_signal; | |
2718 | ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VR; | |
2719 | ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_INVALID; | |
2720 | ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VB; | |
2721 | ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_VVE; | |
2722 | ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID; | |
2723 | ring->semaphore.mbox.signal[RCS] = GEN6_RVSYNC; | |
2724 | ring->semaphore.mbox.signal[VCS] = GEN6_NOSYNC; | |
2725 | ring->semaphore.mbox.signal[BCS] = GEN6_BVSYNC; | |
2726 | ring->semaphore.mbox.signal[VECS] = GEN6_VEVSYNC; | |
2727 | ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC; | |
2728 | } | |
abd58f01 | 2729 | } |
58fa3835 DV |
2730 | } else { |
2731 | ring->mmio_base = BSD_RING_BASE; | |
58fa3835 | 2732 | ring->flush = bsd_ring_flush; |
8620a3a9 | 2733 | ring->add_request = i9xx_add_request; |
58fa3835 | 2734 | ring->get_seqno = ring_get_seqno; |
b70ec5bf | 2735 | ring->set_seqno = ring_set_seqno; |
e48d8634 | 2736 | if (IS_GEN5(dev)) { |
cc609d5d | 2737 | ring->irq_enable_mask = ILK_BSD_USER_INTERRUPT; |
e48d8634 DV |
2738 | ring->irq_get = gen5_ring_get_irq; |
2739 | ring->irq_put = gen5_ring_put_irq; | |
2740 | } else { | |
e3670319 | 2741 | ring->irq_enable_mask = I915_BSD_USER_INTERRUPT; |
e48d8634 DV |
2742 | ring->irq_get = i9xx_ring_get_irq; |
2743 | ring->irq_put = i9xx_ring_put_irq; | |
2744 | } | |
fb3256da | 2745 | ring->dispatch_execbuffer = i965_dispatch_execbuffer; |
58fa3835 | 2746 | } |
ecfe00d8 | 2747 | ring->init_hw = init_ring_common; |
58fa3835 | 2748 | |
1ec14ad3 | 2749 | return intel_init_ring_buffer(dev, ring); |
5c1143bb | 2750 | } |
549f7365 | 2751 | |
845f74a7 | 2752 | /** |
62659920 | 2753 | * Initialize the second BSD ring (eg. Broadwell GT3, Skylake GT3) |
845f74a7 ZY |
2754 | */ |
2755 | int intel_init_bsd2_ring_buffer(struct drm_device *dev) | |
2756 | { | |
2757 | struct drm_i915_private *dev_priv = dev->dev_private; | |
a4872ba6 | 2758 | struct intel_engine_cs *ring = &dev_priv->ring[VCS2]; |
845f74a7 | 2759 | |
f7b64236 | 2760 | ring->name = "bsd2 ring"; |
845f74a7 ZY |
2761 | ring->id = VCS2; |
2762 | ||
2763 | ring->write_tail = ring_write_tail; | |
2764 | ring->mmio_base = GEN8_BSD2_RING_BASE; | |
2765 | ring->flush = gen6_bsd_ring_flush; | |
2766 | ring->add_request = gen6_add_request; | |
2767 | ring->get_seqno = gen6_ring_get_seqno; | |
2768 | ring->set_seqno = ring_set_seqno; | |
2769 | ring->irq_enable_mask = | |
2770 | GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT; | |
2771 | ring->irq_get = gen8_ring_get_irq; | |
2772 | ring->irq_put = gen8_ring_put_irq; | |
2773 | ring->dispatch_execbuffer = | |
2774 | gen8_ring_dispatch_execbuffer; | |
3e78998a | 2775 | if (i915_semaphore_is_enabled(dev)) { |
5ee426ca | 2776 | ring->semaphore.sync_to = gen8_ring_sync; |
3e78998a BW |
2777 | ring->semaphore.signal = gen8_xcs_signal; |
2778 | GEN8_RING_SEMAPHORE_INIT; | |
2779 | } | |
ecfe00d8 | 2780 | ring->init_hw = init_ring_common; |
845f74a7 ZY |
2781 | |
2782 | return intel_init_ring_buffer(dev, ring); | |
2783 | } | |
2784 | ||
549f7365 CW |
2785 | int intel_init_blt_ring_buffer(struct drm_device *dev) |
2786 | { | |
4640c4ff | 2787 | struct drm_i915_private *dev_priv = dev->dev_private; |
a4872ba6 | 2788 | struct intel_engine_cs *ring = &dev_priv->ring[BCS]; |
549f7365 | 2789 | |
3535d9dd DV |
2790 | ring->name = "blitter ring"; |
2791 | ring->id = BCS; | |
2792 | ||
2793 | ring->mmio_base = BLT_RING_BASE; | |
2794 | ring->write_tail = ring_write_tail; | |
ea251324 | 2795 | ring->flush = gen6_ring_flush; |
3535d9dd DV |
2796 | ring->add_request = gen6_add_request; |
2797 | ring->get_seqno = gen6_ring_get_seqno; | |
b70ec5bf | 2798 | ring->set_seqno = ring_set_seqno; |
abd58f01 BW |
2799 | if (INTEL_INFO(dev)->gen >= 8) { |
2800 | ring->irq_enable_mask = | |
2801 | GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT; | |
2802 | ring->irq_get = gen8_ring_get_irq; | |
2803 | ring->irq_put = gen8_ring_put_irq; | |
1c7a0623 | 2804 | ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer; |
707d9cf9 | 2805 | if (i915_semaphore_is_enabled(dev)) { |
5ee426ca | 2806 | ring->semaphore.sync_to = gen8_ring_sync; |
3e78998a BW |
2807 | ring->semaphore.signal = gen8_xcs_signal; |
2808 | GEN8_RING_SEMAPHORE_INIT; | |
707d9cf9 | 2809 | } |
abd58f01 BW |
2810 | } else { |
2811 | ring->irq_enable_mask = GT_BLT_USER_INTERRUPT; | |
2812 | ring->irq_get = gen6_ring_get_irq; | |
2813 | ring->irq_put = gen6_ring_put_irq; | |
1c7a0623 | 2814 | ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer; |
707d9cf9 BW |
2815 | if (i915_semaphore_is_enabled(dev)) { |
2816 | ring->semaphore.signal = gen6_signal; | |
2817 | ring->semaphore.sync_to = gen6_ring_sync; | |
2818 | /* | |
2819 | * The current semaphore is only applied on pre-gen8 | |
2820 | * platform. And there is no VCS2 ring on the pre-gen8 | |
2821 | * platform. So the semaphore between BCS and VCS2 is | |
2822 | * initialized as INVALID. Gen8 will initialize the | |
2823 | * sema between BCS and VCS2 later. | |
2824 | */ | |
2825 | ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_BR; | |
2826 | ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_BV; | |
2827 | ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_INVALID; | |
2828 | ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_BVE; | |
2829 | ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID; | |
2830 | ring->semaphore.mbox.signal[RCS] = GEN6_RBSYNC; | |
2831 | ring->semaphore.mbox.signal[VCS] = GEN6_VBSYNC; | |
2832 | ring->semaphore.mbox.signal[BCS] = GEN6_NOSYNC; | |
2833 | ring->semaphore.mbox.signal[VECS] = GEN6_VEBSYNC; | |
2834 | ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC; | |
2835 | } | |
abd58f01 | 2836 | } |
ecfe00d8 | 2837 | ring->init_hw = init_ring_common; |
549f7365 | 2838 | |
1ec14ad3 | 2839 | return intel_init_ring_buffer(dev, ring); |
549f7365 | 2840 | } |
a7b9761d | 2841 | |
9a8a2213 BW |
2842 | int intel_init_vebox_ring_buffer(struct drm_device *dev) |
2843 | { | |
4640c4ff | 2844 | struct drm_i915_private *dev_priv = dev->dev_private; |
a4872ba6 | 2845 | struct intel_engine_cs *ring = &dev_priv->ring[VECS]; |
9a8a2213 BW |
2846 | |
2847 | ring->name = "video enhancement ring"; | |
2848 | ring->id = VECS; | |
2849 | ||
2850 | ring->mmio_base = VEBOX_RING_BASE; | |
2851 | ring->write_tail = ring_write_tail; | |
2852 | ring->flush = gen6_ring_flush; | |
2853 | ring->add_request = gen6_add_request; | |
2854 | ring->get_seqno = gen6_ring_get_seqno; | |
2855 | ring->set_seqno = ring_set_seqno; | |
abd58f01 BW |
2856 | |
2857 | if (INTEL_INFO(dev)->gen >= 8) { | |
2858 | ring->irq_enable_mask = | |
40c499f9 | 2859 | GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT; |
abd58f01 BW |
2860 | ring->irq_get = gen8_ring_get_irq; |
2861 | ring->irq_put = gen8_ring_put_irq; | |
1c7a0623 | 2862 | ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer; |
707d9cf9 | 2863 | if (i915_semaphore_is_enabled(dev)) { |
5ee426ca | 2864 | ring->semaphore.sync_to = gen8_ring_sync; |
3e78998a BW |
2865 | ring->semaphore.signal = gen8_xcs_signal; |
2866 | GEN8_RING_SEMAPHORE_INIT; | |
707d9cf9 | 2867 | } |
abd58f01 BW |
2868 | } else { |
2869 | ring->irq_enable_mask = PM_VEBOX_USER_INTERRUPT; | |
2870 | ring->irq_get = hsw_vebox_get_irq; | |
2871 | ring->irq_put = hsw_vebox_put_irq; | |
1c7a0623 | 2872 | ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer; |
707d9cf9 BW |
2873 | if (i915_semaphore_is_enabled(dev)) { |
2874 | ring->semaphore.sync_to = gen6_ring_sync; | |
2875 | ring->semaphore.signal = gen6_signal; | |
2876 | ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VER; | |
2877 | ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_VEV; | |
2878 | ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VEB; | |
2879 | ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_INVALID; | |
2880 | ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID; | |
2881 | ring->semaphore.mbox.signal[RCS] = GEN6_RVESYNC; | |
2882 | ring->semaphore.mbox.signal[VCS] = GEN6_VVESYNC; | |
2883 | ring->semaphore.mbox.signal[BCS] = GEN6_BVESYNC; | |
2884 | ring->semaphore.mbox.signal[VECS] = GEN6_NOSYNC; | |
2885 | ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC; | |
2886 | } | |
abd58f01 | 2887 | } |
ecfe00d8 | 2888 | ring->init_hw = init_ring_common; |
9a8a2213 BW |
2889 | |
2890 | return intel_init_ring_buffer(dev, ring); | |
2891 | } | |
2892 | ||
a7b9761d | 2893 | int |
a4872ba6 | 2894 | intel_ring_flush_all_caches(struct intel_engine_cs *ring) |
a7b9761d CW |
2895 | { |
2896 | int ret; | |
2897 | ||
2898 | if (!ring->gpu_caches_dirty) | |
2899 | return 0; | |
2900 | ||
2901 | ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS); | |
2902 | if (ret) | |
2903 | return ret; | |
2904 | ||
2905 | trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS); | |
2906 | ||
2907 | ring->gpu_caches_dirty = false; | |
2908 | return 0; | |
2909 | } | |
2910 | ||
2911 | int | |
a4872ba6 | 2912 | intel_ring_invalidate_all_caches(struct intel_engine_cs *ring) |
a7b9761d CW |
2913 | { |
2914 | uint32_t flush_domains; | |
2915 | int ret; | |
2916 | ||
2917 | flush_domains = 0; | |
2918 | if (ring->gpu_caches_dirty) | |
2919 | flush_domains = I915_GEM_GPU_DOMAINS; | |
2920 | ||
2921 | ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains); | |
2922 | if (ret) | |
2923 | return ret; | |
2924 | ||
2925 | trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains); | |
2926 | ||
2927 | ring->gpu_caches_dirty = false; | |
2928 | return 0; | |
2929 | } | |
e3efda49 CW |
2930 | |
2931 | void | |
a4872ba6 | 2932 | intel_stop_ring_buffer(struct intel_engine_cs *ring) |
e3efda49 CW |
2933 | { |
2934 | int ret; | |
2935 | ||
2936 | if (!intel_ring_initialized(ring)) | |
2937 | return; | |
2938 | ||
2939 | ret = intel_ring_idle(ring); | |
2940 | if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error)) | |
2941 | DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n", | |
2942 | ring->name, ret); | |
2943 | ||
2944 | stop_ring(ring); | |
2945 | } |