blob: accfc893876582494dbe8ab40e3defcea2ab6825 [file] [log] [blame]
Eric Anholt62fdfea2010-05-21 13:26:39 -07001/*
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
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Eric Anholt62fdfea2010-05-21 13:26:39 -070031#include "i915_drv.h"
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/i915_drm.h>
Eric Anholt62fdfea2010-05-21 13:26:39 -070033#include "i915_trace.h"
Xiang, Haihao881f47b2010-09-19 14:40:43 +010034#include "intel_drv.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070035
Oscar Mateo48d82382014-07-24 17:04:23 +010036bool
37intel_ring_initialized(struct intel_engine_cs *ring)
38{
39 struct drm_device *dev = ring->dev;
Chris Wilson18393f62014-04-09 09:19:40 +010040
Oscar Mateo48d82382014-07-24 17:04:23 +010041 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}
52
Oscar Mateo82e104c2014-07-24 17:04:26 +010053int __intel_ring_space(int head, int tail, int size)
Chris Wilson1cf0ba12014-05-05 09:07:33 +010054{
55 int space = head - (tail + I915_RING_FREE_SPACE);
56 if (space < 0)
57 space += size;
58 return space;
59}
60
Oscar Mateo82e104c2014-07-24 17:04:26 +010061int intel_ring_space(struct intel_ringbuffer *ringbuf)
Chris Wilsonc7dca472011-01-20 17:00:10 +000062{
Oscar Mateo82e104c2014-07-24 17:04:26 +010063 return __intel_ring_space(ringbuf->head & HEAD_ADDR,
64 ringbuf->tail, ringbuf->size);
Chris Wilsonc7dca472011-01-20 17:00:10 +000065}
66
Oscar Mateo82e104c2014-07-24 17:04:26 +010067bool intel_ring_stopped(struct intel_engine_cs *ring)
Chris Wilson09246732013-08-10 22:16:32 +010068{
69 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020070 return dev_priv->gpu_error.stop_rings & intel_ring_flag(ring);
71}
Chris Wilson09246732013-08-10 22:16:32 +010072
Oscar Mateoa4872ba2014-05-22 14:13:33 +010073void __intel_ring_advance(struct intel_engine_cs *ring)
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020074{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +010075 struct intel_ringbuffer *ringbuf = ring->buffer;
76 ringbuf->tail &= ringbuf->size - 1;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020077 if (intel_ring_stopped(ring))
Chris Wilson09246732013-08-10 22:16:32 +010078 return;
Oscar Mateo93b0a4e2014-05-22 14:13:36 +010079 ring->write_tail(ring, ringbuf->tail);
Chris Wilson09246732013-08-10 22:16:32 +010080}
81
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000082static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +010083gen2_render_ring_flush(struct intel_engine_cs *ring,
Chris Wilson46f0f8d2012-04-18 11:12:11 +010084 u32 invalidate_domains,
85 u32 flush_domains)
86{
87 u32 cmd;
88 int ret;
89
90 cmd = MI_FLUSH;
Daniel Vetter31b14c92012-04-19 16:45:22 +020091 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
Chris Wilson46f0f8d2012-04-18 11:12:11 +010092 cmd |= MI_NO_WRITE_FLUSH;
93
94 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
95 cmd |= MI_READ_FLUSH;
96
97 ret = intel_ring_begin(ring, 2);
98 if (ret)
99 return ret;
100
101 intel_ring_emit(ring, cmd);
102 intel_ring_emit(ring, MI_NOOP);
103 intel_ring_advance(ring);
104
105 return 0;
106}
107
108static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100109gen4_render_ring_flush(struct intel_engine_cs *ring,
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100110 u32 invalidate_domains,
111 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700112{
Chris Wilson78501ea2010-10-27 12:18:21 +0100113 struct drm_device *dev = ring->dev;
Chris Wilson6f392d52010-08-07 11:01:22 +0100114 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000115 int ret;
Chris Wilson6f392d52010-08-07 11:01:22 +0100116
Chris Wilson36d527d2011-03-19 22:26:49 +0000117 /*
118 * read/write caches:
119 *
120 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
121 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
122 * also flushed at 2d versus 3d pipeline switches.
123 *
124 * read-only caches:
125 *
126 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
127 * MI_READ_FLUSH is set, and is always flushed on 965.
128 *
129 * I915_GEM_DOMAIN_COMMAND may not exist?
130 *
131 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
132 * invalidated when MI_EXE_FLUSH is set.
133 *
134 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
135 * invalidated with every MI_FLUSH.
136 *
137 * TLBs:
138 *
139 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
140 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
141 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
142 * are flushed at any MI_FLUSH.
143 */
144
145 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100146 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
Chris Wilson36d527d2011-03-19 22:26:49 +0000147 cmd &= ~MI_NO_WRITE_FLUSH;
Chris Wilson36d527d2011-03-19 22:26:49 +0000148 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
149 cmd |= MI_EXE_FLUSH;
150
151 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
152 (IS_G4X(dev) || IS_GEN5(dev)))
153 cmd |= MI_INVALIDATE_ISP;
154
155 ret = intel_ring_begin(ring, 2);
156 if (ret)
157 return ret;
158
159 intel_ring_emit(ring, cmd);
160 intel_ring_emit(ring, MI_NOOP);
161 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000162
163 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800164}
165
Jesse Barnes8d315282011-10-16 10:23:31 +0200166/**
167 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
168 * implementing two workarounds on gen6. From section 1.4.7.1
169 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
170 *
171 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
172 * produced by non-pipelined state commands), software needs to first
173 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
174 * 0.
175 *
176 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
177 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
178 *
179 * And the workaround for these two requires this workaround first:
180 *
181 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
182 * BEFORE the pipe-control with a post-sync op and no write-cache
183 * flushes.
184 *
185 * And this last workaround is tricky because of the requirements on
186 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
187 * volume 2 part 1:
188 *
189 * "1 of the following must also be set:
190 * - Render Target Cache Flush Enable ([12] of DW1)
191 * - Depth Cache Flush Enable ([0] of DW1)
192 * - Stall at Pixel Scoreboard ([1] of DW1)
193 * - Depth Stall ([13] of DW1)
194 * - Post-Sync Operation ([13] of DW1)
195 * - Notify Enable ([8] of DW1)"
196 *
197 * The cache flushes require the workaround flush that triggered this
198 * one, so we can't use it. Depth stall would trigger the same.
199 * Post-sync nonzero is what triggered this second workaround, so we
200 * can't use that one either. Notify enable is IRQs, which aren't
201 * really our business. That leaves only stall at scoreboard.
202 */
203static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100204intel_emit_post_sync_nonzero_flush(struct intel_engine_cs *ring)
Jesse Barnes8d315282011-10-16 10:23:31 +0200205{
Chris Wilson18393f62014-04-09 09:19:40 +0100206 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Jesse Barnes8d315282011-10-16 10:23:31 +0200207 int ret;
208
209
210 ret = intel_ring_begin(ring, 6);
211 if (ret)
212 return ret;
213
214 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
215 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
216 PIPE_CONTROL_STALL_AT_SCOREBOARD);
217 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
218 intel_ring_emit(ring, 0); /* low dword */
219 intel_ring_emit(ring, 0); /* high dword */
220 intel_ring_emit(ring, MI_NOOP);
221 intel_ring_advance(ring);
222
223 ret = intel_ring_begin(ring, 6);
224 if (ret)
225 return ret;
226
227 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
228 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
229 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
230 intel_ring_emit(ring, 0);
231 intel_ring_emit(ring, 0);
232 intel_ring_emit(ring, MI_NOOP);
233 intel_ring_advance(ring);
234
235 return 0;
236}
237
238static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100239gen6_render_ring_flush(struct intel_engine_cs *ring,
Jesse Barnes8d315282011-10-16 10:23:31 +0200240 u32 invalidate_domains, u32 flush_domains)
241{
242 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100243 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Jesse Barnes8d315282011-10-16 10:23:31 +0200244 int ret;
245
Paulo Zanonib3111502012-08-17 18:35:42 -0300246 /* Force SNB workarounds for PIPE_CONTROL flushes */
247 ret = intel_emit_post_sync_nonzero_flush(ring);
248 if (ret)
249 return ret;
250
Jesse Barnes8d315282011-10-16 10:23:31 +0200251 /* Just flush everything. Experiments have shown that reducing the
252 * number of bits based on the write domains has little performance
253 * impact.
254 */
Chris Wilson7d54a902012-08-10 10:18:10 +0100255 if (flush_domains) {
256 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
257 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
258 /*
259 * Ensure that any following seqno writes only happen
260 * when the render cache is indeed flushed.
261 */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200262 flags |= PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100263 }
264 if (invalidate_domains) {
265 flags |= PIPE_CONTROL_TLB_INVALIDATE;
266 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
267 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
268 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
269 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
270 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
271 /*
272 * TLB invalidate requires a post-sync write.
273 */
Jesse Barnes3ac78312012-10-25 12:15:47 -0700274 flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100275 }
Jesse Barnes8d315282011-10-16 10:23:31 +0200276
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100277 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200278 if (ret)
279 return ret;
280
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100281 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200282 intel_ring_emit(ring, flags);
283 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100284 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200285 intel_ring_advance(ring);
286
287 return 0;
288}
289
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100290static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100291gen7_render_ring_cs_stall_wa(struct intel_engine_cs *ring)
Paulo Zanonif3987632012-08-17 18:35:43 -0300292{
293 int ret;
294
295 ret = intel_ring_begin(ring, 4);
296 if (ret)
297 return ret;
298
299 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
300 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
301 PIPE_CONTROL_STALL_AT_SCOREBOARD);
302 intel_ring_emit(ring, 0);
303 intel_ring_emit(ring, 0);
304 intel_ring_advance(ring);
305
306 return 0;
307}
308
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100309static int gen7_ring_fbc_flush(struct intel_engine_cs *ring, u32 value)
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300310{
311 int ret;
312
313 if (!ring->fbc_dirty)
314 return 0;
315
Ville Syrjälä37c1d942013-11-06 23:02:20 +0200316 ret = intel_ring_begin(ring, 6);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300317 if (ret)
318 return ret;
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300319 /* WaFbcNukeOn3DBlt:ivb/hsw */
320 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
321 intel_ring_emit(ring, MSG_FBC_REND_STATE);
322 intel_ring_emit(ring, value);
Ville Syrjälä37c1d942013-11-06 23:02:20 +0200323 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) | MI_SRM_LRM_GLOBAL_GTT);
324 intel_ring_emit(ring, MSG_FBC_REND_STATE);
325 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300326 intel_ring_advance(ring);
327
328 ring->fbc_dirty = false;
329 return 0;
330}
331
Paulo Zanonif3987632012-08-17 18:35:43 -0300332static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100333gen7_render_ring_flush(struct intel_engine_cs *ring,
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300334 u32 invalidate_domains, u32 flush_domains)
335{
336 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100337 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300338 int ret;
339
Paulo Zanonif3987632012-08-17 18:35:43 -0300340 /*
341 * Ensure that any following seqno writes only happen when the render
342 * cache is indeed flushed.
343 *
344 * Workaround: 4th PIPE_CONTROL command (except the ones with only
345 * read-cache invalidate bits set) must have the CS_STALL bit set. We
346 * don't try to be clever and just set it unconditionally.
347 */
348 flags |= PIPE_CONTROL_CS_STALL;
349
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300350 /* Just flush everything. Experiments have shown that reducing the
351 * number of bits based on the write domains has little performance
352 * impact.
353 */
354 if (flush_domains) {
355 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
356 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300357 }
358 if (invalidate_domains) {
359 flags |= PIPE_CONTROL_TLB_INVALIDATE;
360 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
361 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
362 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
363 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
364 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
365 /*
366 * TLB invalidate requires a post-sync write.
367 */
368 flags |= PIPE_CONTROL_QW_WRITE;
Ville Syrjäläb9e1faa2013-02-14 21:53:51 +0200369 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Paulo Zanonif3987632012-08-17 18:35:43 -0300370
371 /* Workaround: we must issue a pipe_control with CS-stall bit
372 * set before a pipe_control command that has the state cache
373 * invalidate bit set. */
374 gen7_render_ring_cs_stall_wa(ring);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300375 }
376
377 ret = intel_ring_begin(ring, 4);
378 if (ret)
379 return ret;
380
381 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
382 intel_ring_emit(ring, flags);
Ville Syrjäläb9e1faa2013-02-14 21:53:51 +0200383 intel_ring_emit(ring, scratch_addr);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300384 intel_ring_emit(ring, 0);
385 intel_ring_advance(ring);
386
Ville Syrjälä9688eca2013-11-06 23:02:19 +0200387 if (!invalidate_domains && flush_domains)
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300388 return gen7_ring_fbc_flush(ring, FBC_REND_NUKE);
389
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300390 return 0;
391}
392
Ben Widawskya5f3d682013-11-02 21:07:27 -0700393static int
Kenneth Graunke884ceac2014-06-28 02:04:20 +0300394gen8_emit_pipe_control(struct intel_engine_cs *ring,
395 u32 flags, u32 scratch_addr)
396{
397 int ret;
398
399 ret = intel_ring_begin(ring, 6);
400 if (ret)
401 return ret;
402
403 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(6));
404 intel_ring_emit(ring, flags);
405 intel_ring_emit(ring, scratch_addr);
406 intel_ring_emit(ring, 0);
407 intel_ring_emit(ring, 0);
408 intel_ring_emit(ring, 0);
409 intel_ring_advance(ring);
410
411 return 0;
412}
413
414static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100415gen8_render_ring_flush(struct intel_engine_cs *ring,
Ben Widawskya5f3d682013-11-02 21:07:27 -0700416 u32 invalidate_domains, u32 flush_domains)
417{
418 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100419 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Kenneth Graunke02c9f7e2014-01-27 14:20:16 -0800420 int ret;
Ben Widawskya5f3d682013-11-02 21:07:27 -0700421
422 flags |= PIPE_CONTROL_CS_STALL;
423
424 if (flush_domains) {
425 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
426 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
427 }
428 if (invalidate_domains) {
429 flags |= PIPE_CONTROL_TLB_INVALIDATE;
430 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
431 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
432 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
433 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
434 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
435 flags |= PIPE_CONTROL_QW_WRITE;
436 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Kenneth Graunke02c9f7e2014-01-27 14:20:16 -0800437
438 /* WaCsStallBeforeStateCacheInvalidate:bdw,chv */
439 ret = gen8_emit_pipe_control(ring,
440 PIPE_CONTROL_CS_STALL |
441 PIPE_CONTROL_STALL_AT_SCOREBOARD,
442 0);
443 if (ret)
444 return ret;
Ben Widawskya5f3d682013-11-02 21:07:27 -0700445 }
446
Rodrigo Vivic5ad0112014-08-04 03:51:38 -0700447 ret = gen8_emit_pipe_control(ring, flags, scratch_addr);
448 if (ret)
449 return ret;
450
451 if (!invalidate_domains && flush_domains)
452 return gen7_ring_fbc_flush(ring, FBC_REND_NUKE);
453
454 return 0;
Ben Widawskya5f3d682013-11-02 21:07:27 -0700455}
456
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100457static void ring_write_tail(struct intel_engine_cs *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100458 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800459{
Jani Nikula4640c4f2014-03-31 14:27:19 +0300460 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100461 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800462}
463
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100464u64 intel_ring_get_active_head(struct intel_engine_cs *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800465{
Jani Nikula4640c4f2014-03-31 14:27:19 +0300466 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson50877442014-03-21 12:41:53 +0000467 u64 acthd;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800468
Chris Wilson50877442014-03-21 12:41:53 +0000469 if (INTEL_INFO(ring->dev)->gen >= 8)
470 acthd = I915_READ64_2x32(RING_ACTHD(ring->mmio_base),
471 RING_ACTHD_UDW(ring->mmio_base));
472 else if (INTEL_INFO(ring->dev)->gen >= 4)
473 acthd = I915_READ(RING_ACTHD(ring->mmio_base));
474 else
475 acthd = I915_READ(ACTHD);
476
477 return acthd;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800478}
479
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100480static void ring_setup_phys_status_page(struct intel_engine_cs *ring)
Daniel Vetter035dc1e2013-07-03 12:56:54 +0200481{
482 struct drm_i915_private *dev_priv = ring->dev->dev_private;
483 u32 addr;
484
485 addr = dev_priv->status_page_dmah->busaddr;
486 if (INTEL_INFO(ring->dev)->gen >= 4)
487 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
488 I915_WRITE(HWS_PGA, addr);
489}
490
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100491static bool stop_ring(struct intel_engine_cs *ring)
Chris Wilson9991ae72014-04-02 16:36:07 +0100492{
493 struct drm_i915_private *dev_priv = to_i915(ring->dev);
494
495 if (!IS_GEN2(ring->dev)) {
496 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
Daniel Vetter403bdd12014-08-07 16:05:39 +0200497 if (wait_for((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
498 DRM_ERROR("%s : timed out trying to stop ring\n", ring->name);
Chris Wilson9bec9b12014-08-11 09:21:35 +0100499 /* Sometimes we observe that the idle flag is not
500 * set even though the ring is empty. So double
501 * check before giving up.
502 */
503 if (I915_READ_HEAD(ring) != I915_READ_TAIL(ring))
504 return false;
Chris Wilson9991ae72014-04-02 16:36:07 +0100505 }
506 }
507
508 I915_WRITE_CTL(ring, 0);
509 I915_WRITE_HEAD(ring, 0);
510 ring->write_tail(ring, 0);
511
512 if (!IS_GEN2(ring->dev)) {
513 (void)I915_READ_CTL(ring);
514 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
515 }
516
517 return (I915_READ_HEAD(ring) & HEAD_ADDR) == 0;
518}
519
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100520static int init_ring_common(struct intel_engine_cs *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800521{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200522 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300523 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateo93b0a4e2014-05-22 14:13:36 +0100524 struct intel_ringbuffer *ringbuf = ring->buffer;
525 struct drm_i915_gem_object *obj = ringbuf->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200526 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800527
Deepak Sc8d9a592013-11-23 14:55:42 +0530528 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200529
Chris Wilson9991ae72014-04-02 16:36:07 +0100530 if (!stop_ring(ring)) {
531 /* G45 ring initialization often fails to reset head to zero */
Chris Wilson6fd0d562010-12-05 20:42:33 +0000532 DRM_DEBUG_KMS("%s head not reset to zero "
533 "ctl %08x head %08x tail %08x start %08x\n",
534 ring->name,
535 I915_READ_CTL(ring),
536 I915_READ_HEAD(ring),
537 I915_READ_TAIL(ring),
538 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800539
Chris Wilson9991ae72014-04-02 16:36:07 +0100540 if (!stop_ring(ring)) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000541 DRM_ERROR("failed to set %s head to zero "
542 "ctl %08x head %08x tail %08x start %08x\n",
543 ring->name,
544 I915_READ_CTL(ring),
545 I915_READ_HEAD(ring),
546 I915_READ_TAIL(ring),
547 I915_READ_START(ring));
Chris Wilson9991ae72014-04-02 16:36:07 +0100548 ret = -EIO;
549 goto out;
Chris Wilson6fd0d562010-12-05 20:42:33 +0000550 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700551 }
552
Chris Wilson9991ae72014-04-02 16:36:07 +0100553 if (I915_NEED_GFX_HWS(dev))
554 intel_ring_setup_status_page(ring);
555 else
556 ring_setup_phys_status_page(ring);
557
Jiri Kosinaece4a172014-08-07 16:29:53 +0200558 /* Enforce ordering by reading HEAD register back */
559 I915_READ_HEAD(ring);
560
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200561 /* Initialize the ring. This must happen _after_ we've cleared the ring
562 * registers with the above sequence (the readback of the HEAD registers
563 * also enforces ordering), otherwise the hw might lose the new ring
564 * register values. */
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700565 I915_WRITE_START(ring, i915_gem_obj_ggtt_offset(obj));
Chris Wilson95468892014-08-07 15:39:54 +0100566
567 /* WaClearRingBufHeadRegAtInit:ctg,elk */
568 if (I915_READ_HEAD(ring))
569 DRM_DEBUG("%s initialization failed [head=%08x], fudging\n",
570 ring->name, I915_READ_HEAD(ring));
571 I915_WRITE_HEAD(ring, 0);
572 (void)I915_READ_HEAD(ring);
573
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200574 I915_WRITE_CTL(ring,
Oscar Mateo93b0a4e2014-05-22 14:13:36 +0100575 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000576 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800577
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800578 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400579 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700580 I915_READ_START(ring) == i915_gem_obj_ggtt_offset(obj) &&
Sean Paulf01db982012-03-16 12:43:22 -0400581 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000582 DRM_ERROR("%s initialization failed "
Chris Wilson48e48a02014-04-09 09:19:44 +0100583 "ctl %08x (valid? %d) head %08x tail %08x start %08x [expected %08lx]\n",
584 ring->name,
585 I915_READ_CTL(ring), I915_READ_CTL(ring) & RING_VALID,
586 I915_READ_HEAD(ring), I915_READ_TAIL(ring),
587 I915_READ_START(ring), (unsigned long)i915_gem_obj_ggtt_offset(obj));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200588 ret = -EIO;
589 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800590 }
591
Chris Wilson5c6c6002014-09-06 10:28:27 +0100592 ringbuf->head = I915_READ_HEAD(ring);
593 ringbuf->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
594 ringbuf->space = intel_ring_space(ringbuf);
595 ringbuf->last_retired_head = -1;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000596
Chris Wilson50f018d2013-06-10 11:20:19 +0100597 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
598
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200599out:
Deepak Sc8d9a592013-11-23 14:55:42 +0530600 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200601
602 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700603}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800604
Oscar Mateo9b1136d2014-07-24 17:04:24 +0100605void
606intel_fini_pipe_control(struct intel_engine_cs *ring)
607{
608 struct drm_device *dev = ring->dev;
609
610 if (ring->scratch.obj == NULL)
611 return;
612
613 if (INTEL_INFO(dev)->gen >= 5) {
614 kunmap(sg_page(ring->scratch.obj->pages->sgl));
615 i915_gem_object_ggtt_unpin(ring->scratch.obj);
616 }
617
618 drm_gem_object_unreference(&ring->scratch.obj->base);
619 ring->scratch.obj = NULL;
620}
621
622int
623intel_init_pipe_control(struct intel_engine_cs *ring)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000624{
Chris Wilsonc6df5412010-12-15 09:56:50 +0000625 int ret;
626
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100627 if (ring->scratch.obj)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000628 return 0;
629
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100630 ring->scratch.obj = i915_gem_alloc_object(ring->dev, 4096);
631 if (ring->scratch.obj == NULL) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000632 DRM_ERROR("Failed to allocate seqno page\n");
633 ret = -ENOMEM;
634 goto err;
635 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100636
Daniel Vettera9cc7262014-02-14 14:01:13 +0100637 ret = i915_gem_object_set_cache_level(ring->scratch.obj, I915_CACHE_LLC);
638 if (ret)
639 goto err_unref;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000640
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100641 ret = i915_gem_obj_ggtt_pin(ring->scratch.obj, 4096, 0);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000642 if (ret)
643 goto err_unref;
644
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100645 ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(ring->scratch.obj);
646 ring->scratch.cpu_page = kmap(sg_page(ring->scratch.obj->pages->sgl));
647 if (ring->scratch.cpu_page == NULL) {
Wei Yongjun56b085a2013-05-28 17:51:44 +0800648 ret = -ENOMEM;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000649 goto err_unpin;
Wei Yongjun56b085a2013-05-28 17:51:44 +0800650 }
Chris Wilsonc6df5412010-12-15 09:56:50 +0000651
Ville Syrjälä2b1086c2013-02-12 22:01:38 +0200652 DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100653 ring->name, ring->scratch.gtt_offset);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000654 return 0;
655
656err_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800657 i915_gem_object_ggtt_unpin(ring->scratch.obj);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000658err_unref:
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100659 drm_gem_object_unreference(&ring->scratch.obj->base);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000660err:
Chris Wilsonc6df5412010-12-15 09:56:50 +0000661 return ret;
662}
663
Michel Thierry771b9a52014-11-11 16:47:33 +0000664static int intel_ring_workarounds_emit(struct intel_engine_cs *ring,
665 struct intel_context *ctx)
Arun Siluvery86d7f232014-08-26 14:44:50 +0100666{
Mika Kuoppala72253422014-10-07 17:21:26 +0300667 int ret, i;
Arun Siluvery888b5992014-08-26 14:44:51 +0100668 struct drm_device *dev = ring->dev;
669 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala72253422014-10-07 17:21:26 +0300670 struct i915_workarounds *w = &dev_priv->workarounds;
Arun Siluvery888b5992014-08-26 14:44:51 +0100671
Mika Kuoppala72253422014-10-07 17:21:26 +0300672 if (WARN_ON(w->count == 0))
673 return 0;
Arun Siluvery888b5992014-08-26 14:44:51 +0100674
Mika Kuoppala72253422014-10-07 17:21:26 +0300675 ring->gpu_caches_dirty = true;
676 ret = intel_ring_flush_all_caches(ring);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100677 if (ret)
678 return ret;
679
Arun Siluvery22a916a2014-10-22 18:59:52 +0100680 ret = intel_ring_begin(ring, (w->count * 2 + 2));
Mika Kuoppala72253422014-10-07 17:21:26 +0300681 if (ret)
682 return ret;
683
Arun Siluvery22a916a2014-10-22 18:59:52 +0100684 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(w->count));
Mika Kuoppala72253422014-10-07 17:21:26 +0300685 for (i = 0; i < w->count; i++) {
Mika Kuoppala72253422014-10-07 17:21:26 +0300686 intel_ring_emit(ring, w->reg[i].addr);
687 intel_ring_emit(ring, w->reg[i].value);
688 }
Arun Siluvery22a916a2014-10-22 18:59:52 +0100689 intel_ring_emit(ring, MI_NOOP);
Mika Kuoppala72253422014-10-07 17:21:26 +0300690
691 intel_ring_advance(ring);
692
693 ring->gpu_caches_dirty = true;
694 ret = intel_ring_flush_all_caches(ring);
695 if (ret)
696 return ret;
697
698 DRM_DEBUG_DRIVER("Number of Workarounds emitted: %d\n", w->count);
699
700 return 0;
701}
702
703static int wa_add(struct drm_i915_private *dev_priv,
704 const u32 addr, const u32 val, const u32 mask)
705{
706 const u32 idx = dev_priv->workarounds.count;
707
708 if (WARN_ON(idx >= I915_MAX_WA_REGS))
709 return -ENOSPC;
710
711 dev_priv->workarounds.reg[idx].addr = addr;
712 dev_priv->workarounds.reg[idx].value = val;
713 dev_priv->workarounds.reg[idx].mask = mask;
714
715 dev_priv->workarounds.count++;
716
717 return 0;
718}
719
720#define WA_REG(addr, val, mask) { \
721 const int r = wa_add(dev_priv, (addr), (val), (mask)); \
722 if (r) \
723 return r; \
724 }
725
726#define WA_SET_BIT_MASKED(addr, mask) \
727 WA_REG(addr, _MASKED_BIT_ENABLE(mask), (mask) & 0xffff)
728
729#define WA_CLR_BIT_MASKED(addr, mask) \
730 WA_REG(addr, _MASKED_BIT_DISABLE(mask), (mask) & 0xffff)
731
732#define WA_SET_BIT(addr, mask) WA_REG(addr, I915_READ(addr) | (mask), mask)
733#define WA_CLR_BIT(addr, mask) WA_REG(addr, I915_READ(addr) & ~(mask), mask)
734
735#define WA_WRITE(addr, val) WA_REG(addr, val, 0xffffffff)
736
737static int bdw_init_workarounds(struct intel_engine_cs *ring)
738{
739 struct drm_device *dev = ring->dev;
740 struct drm_i915_private *dev_priv = dev->dev_private;
741
Arun Siluvery86d7f232014-08-26 14:44:50 +0100742 /* WaDisablePartialInstShootdown:bdw */
Rodrigo Vivi101b3762014-10-09 07:11:47 -0700743 /* WaDisableThreadStallDopClockGating:bdw (pre-production) */
Mika Kuoppala72253422014-10-07 17:21:26 +0300744 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
745 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE |
746 STALL_DOP_GATING_DISABLE);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100747
Rodrigo Vivi101b3762014-10-09 07:11:47 -0700748 /* WaDisableDopClockGating:bdw */
Mika Kuoppala72253422014-10-07 17:21:26 +0300749 WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2,
750 DOP_CLOCK_GATING_DISABLE);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100751
Mika Kuoppala72253422014-10-07 17:21:26 +0300752 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
753 GEN8_SAMPLER_POWER_BYPASS_DIS);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100754
755 /* Use Force Non-Coherent whenever executing a 3D context. This is a
756 * workaround for for a possible hang in the unlikely event a TLB
757 * invalidation occurs during a PSD flush.
758 */
Rodrigo Vivida096542014-09-19 20:16:27 -0400759 /* WaDisableFenceDestinationToSLM:bdw (GT3 pre-production) */
Mika Kuoppala72253422014-10-07 17:21:26 +0300760 WA_SET_BIT_MASKED(HDC_CHICKEN0,
761 HDC_FORCE_NON_COHERENT |
762 (IS_BDW_GT3(dev) ? HDC_FENCE_DEST_SLM_DISABLE : 0));
Arun Siluvery86d7f232014-08-26 14:44:50 +0100763
764 /* Wa4x4STCOptimizationDisable:bdw */
Mika Kuoppala72253422014-10-07 17:21:26 +0300765 WA_SET_BIT_MASKED(CACHE_MODE_1,
766 GEN8_4x4_STC_OPTIMIZATION_DISABLE);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100767
768 /*
769 * BSpec recommends 8x4 when MSAA is used,
770 * however in practice 16x4 seems fastest.
771 *
772 * Note that PS/WM thread counts depend on the WIZ hashing
773 * disable bit, which we don't touch here, but it's good
774 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
775 */
Mika Kuoppala72253422014-10-07 17:21:26 +0300776 WA_SET_BIT_MASKED(GEN7_GT_MODE,
777 GEN6_WIZ_HASHING_MASK | GEN6_WIZ_HASHING_16x4);
Arun Siluvery888b5992014-08-26 14:44:51 +0100778
Arun Siluvery86d7f232014-08-26 14:44:50 +0100779 return 0;
780}
781
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300782static int chv_init_workarounds(struct intel_engine_cs *ring)
783{
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300784 struct drm_device *dev = ring->dev;
785 struct drm_i915_private *dev_priv = dev->dev_private;
786
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300787 /* WaDisablePartialInstShootdown:chv */
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300788 /* WaDisableThreadStallDopClockGating:chv */
Mika Kuoppala72253422014-10-07 17:21:26 +0300789 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
Arun Siluvery605f1432014-10-28 18:33:13 +0000790 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE |
791 STALL_DOP_GATING_DISABLE);
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300792
Arun Siluvery952890092014-10-28 18:33:14 +0000793 /* Use Force Non-Coherent whenever executing a 3D context. This is a
794 * workaround for a possible hang in the unlikely event a TLB
795 * invalidation occurs during a PSD flush.
796 */
797 /* WaForceEnableNonCoherent:chv */
798 /* WaHdcDisableFetchWhenMasked:chv */
799 WA_SET_BIT_MASKED(HDC_CHICKEN0,
800 HDC_FORCE_NON_COHERENT |
801 HDC_DONOT_FETCH_MEM_WHEN_MASKED);
802
Mika Kuoppala72253422014-10-07 17:21:26 +0300803 return 0;
804}
805
Michel Thierry771b9a52014-11-11 16:47:33 +0000806int init_workarounds_ring(struct intel_engine_cs *ring)
Mika Kuoppala72253422014-10-07 17:21:26 +0300807{
808 struct drm_device *dev = ring->dev;
809 struct drm_i915_private *dev_priv = dev->dev_private;
810
811 WARN_ON(ring->id != RCS);
812
813 dev_priv->workarounds.count = 0;
814
815 if (IS_BROADWELL(dev))
816 return bdw_init_workarounds(ring);
817
818 if (IS_CHERRYVIEW(dev))
819 return chv_init_workarounds(ring);
Ville Syrjälä00e1e622014-08-27 17:33:12 +0300820
821 return 0;
822}
823
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100824static int init_render_ring(struct intel_engine_cs *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800825{
Chris Wilson78501ea2010-10-27 12:18:21 +0100826 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000827 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100828 int ret = init_ring_common(ring);
Konrad Zapalowicz9c33baa2014-06-19 19:07:15 +0200829 if (ret)
830 return ret;
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800831
Akash Goel61a563a2014-03-25 18:01:50 +0530832 /* WaTimedSingleVertexDispatch:cl,bw,ctg,elk,ilk,snb */
833 if (INTEL_INFO(dev)->gen >= 4 && INTEL_INFO(dev)->gen < 7)
Daniel Vetter6b26c862012-04-24 14:04:12 +0200834 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000835
836 /* We need to disable the AsyncFlip performance optimisations in order
837 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
838 * programmed to '1' on all products.
Damien Lespiau8693a822013-05-03 18:48:11 +0100839 *
Ville Syrjäläb3f797a2014-04-28 14:31:09 +0300840 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000841 */
Imre Deakfbdcb062013-02-13 15:27:34 +0000842 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 9)
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000843 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
844
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000845 /* Required for the hardware to program scanline values for waiting */
Akash Goel01fa0302014-03-24 23:00:04 +0530846 /* WaEnableFlushTlbInvalidationMode:snb */
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000847 if (INTEL_INFO(dev)->gen == 6)
848 I915_WRITE(GFX_MODE,
Chris Wilsonaa83e302014-03-21 17:18:54 +0000849 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT));
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000850
Akash Goel01fa0302014-03-24 23:00:04 +0530851 /* WaBCSVCSTlbInvalidationMode:ivb,vlv,hsw */
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000852 if (IS_GEN7(dev))
853 I915_WRITE(GFX_MODE_GEN7,
Akash Goel01fa0302014-03-24 23:00:04 +0530854 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT) |
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000855 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Chris Wilson78501ea2010-10-27 12:18:21 +0100856
Jesse Barnes8d315282011-10-16 10:23:31 +0200857 if (INTEL_INFO(dev)->gen >= 5) {
Oscar Mateo9b1136d2014-07-24 17:04:24 +0100858 ret = intel_init_pipe_control(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000859 if (ret)
860 return ret;
861 }
862
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200863 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700864 /* From the Sandybridge PRM, volume 1 part 3, page 24:
865 * "If this bit is set, STCunit will have LRA as replacement
866 * policy. [...] This bit must be reset. LRA replacement
867 * policy is not supported."
868 */
869 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200870 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky84f9f932011-12-12 19:21:58 -0800871 }
872
Daniel Vetter6b26c862012-04-24 14:04:12 +0200873 if (INTEL_INFO(dev)->gen >= 6)
874 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000875
Ben Widawsky040d2ba2013-09-19 11:01:40 -0700876 if (HAS_L3_DPF(dev))
Ben Widawsky35a85ac2013-09-19 11:13:41 -0700877 I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
Ben Widawsky15b9f802012-05-25 16:56:23 -0700878
Mika Kuoppala72253422014-10-07 17:21:26 +0300879 return init_workarounds_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800880}
881
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100882static void render_ring_cleanup(struct intel_engine_cs *ring)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000883{
Daniel Vetterb45305f2012-12-17 16:21:27 +0100884 struct drm_device *dev = ring->dev;
Ben Widawsky3e789982014-06-30 09:53:37 -0700885 struct drm_i915_private *dev_priv = dev->dev_private;
886
887 if (dev_priv->semaphore_obj) {
888 i915_gem_object_ggtt_unpin(dev_priv->semaphore_obj);
889 drm_gem_object_unreference(&dev_priv->semaphore_obj->base);
890 dev_priv->semaphore_obj = NULL;
891 }
Daniel Vetterb45305f2012-12-17 16:21:27 +0100892
Oscar Mateo9b1136d2014-07-24 17:04:24 +0100893 intel_fini_pipe_control(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000894}
895
Ben Widawsky3e789982014-06-30 09:53:37 -0700896static int gen8_rcs_signal(struct intel_engine_cs *signaller,
897 unsigned int num_dwords)
898{
899#define MBOX_UPDATE_DWORDS 8
900 struct drm_device *dev = signaller->dev;
901 struct drm_i915_private *dev_priv = dev->dev_private;
902 struct intel_engine_cs *waiter;
903 int i, ret, num_rings;
904
905 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
906 num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
907#undef MBOX_UPDATE_DWORDS
908
909 ret = intel_ring_begin(signaller, num_dwords);
910 if (ret)
911 return ret;
912
913 for_each_ring(waiter, dev_priv, i) {
John Harrison6259cea2014-11-24 18:49:29 +0000914 u32 seqno;
Ben Widawsky3e789982014-06-30 09:53:37 -0700915 u64 gtt_offset = signaller->semaphore.signal_ggtt[i];
916 if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
917 continue;
918
John Harrison6259cea2014-11-24 18:49:29 +0000919 seqno = i915_gem_request_get_seqno(
920 signaller->outstanding_lazy_request);
Ben Widawsky3e789982014-06-30 09:53:37 -0700921 intel_ring_emit(signaller, GFX_OP_PIPE_CONTROL(6));
922 intel_ring_emit(signaller, PIPE_CONTROL_GLOBAL_GTT_IVB |
923 PIPE_CONTROL_QW_WRITE |
924 PIPE_CONTROL_FLUSH_ENABLE);
925 intel_ring_emit(signaller, lower_32_bits(gtt_offset));
926 intel_ring_emit(signaller, upper_32_bits(gtt_offset));
John Harrison6259cea2014-11-24 18:49:29 +0000927 intel_ring_emit(signaller, seqno);
Ben Widawsky3e789982014-06-30 09:53:37 -0700928 intel_ring_emit(signaller, 0);
929 intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
930 MI_SEMAPHORE_TARGET(waiter->id));
931 intel_ring_emit(signaller, 0);
932 }
933
934 return 0;
935}
936
937static int gen8_xcs_signal(struct intel_engine_cs *signaller,
938 unsigned int num_dwords)
939{
940#define MBOX_UPDATE_DWORDS 6
941 struct drm_device *dev = signaller->dev;
942 struct drm_i915_private *dev_priv = dev->dev_private;
943 struct intel_engine_cs *waiter;
944 int i, ret, num_rings;
945
946 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
947 num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
948#undef MBOX_UPDATE_DWORDS
949
950 ret = intel_ring_begin(signaller, num_dwords);
951 if (ret)
952 return ret;
953
954 for_each_ring(waiter, dev_priv, i) {
John Harrison6259cea2014-11-24 18:49:29 +0000955 u32 seqno;
Ben Widawsky3e789982014-06-30 09:53:37 -0700956 u64 gtt_offset = signaller->semaphore.signal_ggtt[i];
957 if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
958 continue;
959
John Harrison6259cea2014-11-24 18:49:29 +0000960 seqno = i915_gem_request_get_seqno(
961 signaller->outstanding_lazy_request);
Ben Widawsky3e789982014-06-30 09:53:37 -0700962 intel_ring_emit(signaller, (MI_FLUSH_DW + 1) |
963 MI_FLUSH_DW_OP_STOREDW);
964 intel_ring_emit(signaller, lower_32_bits(gtt_offset) |
965 MI_FLUSH_DW_USE_GTT);
966 intel_ring_emit(signaller, upper_32_bits(gtt_offset));
John Harrison6259cea2014-11-24 18:49:29 +0000967 intel_ring_emit(signaller, seqno);
Ben Widawsky3e789982014-06-30 09:53:37 -0700968 intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
969 MI_SEMAPHORE_TARGET(waiter->id));
970 intel_ring_emit(signaller, 0);
971 }
972
973 return 0;
974}
975
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100976static int gen6_signal(struct intel_engine_cs *signaller,
Ben Widawsky024a43e2014-04-29 14:52:30 -0700977 unsigned int num_dwords)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000978{
Ben Widawsky024a43e2014-04-29 14:52:30 -0700979 struct drm_device *dev = signaller->dev;
980 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100981 struct intel_engine_cs *useless;
Ben Widawskya1444b72014-06-30 09:53:35 -0700982 int i, ret, num_rings;
Ben Widawsky78325f22014-04-29 14:52:29 -0700983
Ben Widawskya1444b72014-06-30 09:53:35 -0700984#define MBOX_UPDATE_DWORDS 3
985 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
986 num_dwords += round_up((num_rings-1) * MBOX_UPDATE_DWORDS, 2);
987#undef MBOX_UPDATE_DWORDS
Ben Widawsky024a43e2014-04-29 14:52:30 -0700988
989 ret = intel_ring_begin(signaller, num_dwords);
990 if (ret)
991 return ret;
Ben Widawsky024a43e2014-04-29 14:52:30 -0700992
Ben Widawsky78325f22014-04-29 14:52:29 -0700993 for_each_ring(useless, dev_priv, i) {
994 u32 mbox_reg = signaller->semaphore.mbox.signal[i];
995 if (mbox_reg != GEN6_NOSYNC) {
John Harrison6259cea2014-11-24 18:49:29 +0000996 u32 seqno = i915_gem_request_get_seqno(
997 signaller->outstanding_lazy_request);
Ben Widawsky78325f22014-04-29 14:52:29 -0700998 intel_ring_emit(signaller, MI_LOAD_REGISTER_IMM(1));
999 intel_ring_emit(signaller, mbox_reg);
John Harrison6259cea2014-11-24 18:49:29 +00001000 intel_ring_emit(signaller, seqno);
Ben Widawsky78325f22014-04-29 14:52:29 -07001001 }
1002 }
Ben Widawsky024a43e2014-04-29 14:52:30 -07001003
Ben Widawskya1444b72014-06-30 09:53:35 -07001004 /* If num_dwords was rounded, make sure the tail pointer is correct */
1005 if (num_rings % 2 == 0)
1006 intel_ring_emit(signaller, MI_NOOP);
1007
Ben Widawsky024a43e2014-04-29 14:52:30 -07001008 return 0;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001009}
1010
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001011/**
1012 * gen6_add_request - Update the semaphore mailbox registers
1013 *
1014 * @ring - ring that is adding a request
1015 * @seqno - return seqno stuck into the ring
1016 *
1017 * Update the mailbox registers in the *other* rings with the current seqno.
1018 * This acts like a signal in the canonical semaphore.
1019 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001020static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001021gen6_add_request(struct intel_engine_cs *ring)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001022{
Ben Widawsky024a43e2014-04-29 14:52:30 -07001023 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001024
Ben Widawsky707d9cf2014-06-30 09:53:36 -07001025 if (ring->semaphore.signal)
1026 ret = ring->semaphore.signal(ring, 4);
1027 else
1028 ret = intel_ring_begin(ring, 4);
1029
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001030 if (ret)
1031 return ret;
1032
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001033 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
1034 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
John Harrison6259cea2014-11-24 18:49:29 +00001035 intel_ring_emit(ring,
1036 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001037 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson09246732013-08-10 22:16:32 +01001038 __intel_ring_advance(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001039
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001040 return 0;
1041}
1042
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02001043static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev,
1044 u32 seqno)
1045{
1046 struct drm_i915_private *dev_priv = dev->dev_private;
1047 return dev_priv->last_seqno < seqno;
1048}
1049
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001050/**
1051 * intel_ring_sync - sync the waiter to the signaller on seqno
1052 *
1053 * @waiter - ring that is waiting
1054 * @signaller - ring which has, or will signal
1055 * @seqno - seqno which the waiter will block on
1056 */
Ben Widawsky5ee426c2014-06-30 09:53:38 -07001057
1058static int
1059gen8_ring_sync(struct intel_engine_cs *waiter,
1060 struct intel_engine_cs *signaller,
1061 u32 seqno)
1062{
1063 struct drm_i915_private *dev_priv = waiter->dev->dev_private;
1064 int ret;
1065
1066 ret = intel_ring_begin(waiter, 4);
1067 if (ret)
1068 return ret;
1069
1070 intel_ring_emit(waiter, MI_SEMAPHORE_WAIT |
1071 MI_SEMAPHORE_GLOBAL_GTT |
Ben Widawskybae4fcd2014-06-30 09:53:43 -07001072 MI_SEMAPHORE_POLL |
Ben Widawsky5ee426c2014-06-30 09:53:38 -07001073 MI_SEMAPHORE_SAD_GTE_SDD);
1074 intel_ring_emit(waiter, seqno);
1075 intel_ring_emit(waiter,
1076 lower_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
1077 intel_ring_emit(waiter,
1078 upper_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
1079 intel_ring_advance(waiter);
1080 return 0;
1081}
1082
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001083static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001084gen6_ring_sync(struct intel_engine_cs *waiter,
1085 struct intel_engine_cs *signaller,
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001086 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001087{
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001088 u32 dw1 = MI_SEMAPHORE_MBOX |
1089 MI_SEMAPHORE_COMPARE |
1090 MI_SEMAPHORE_REGISTER;
Ben Widawskyebc348b2014-04-29 14:52:28 -07001091 u32 wait_mbox = signaller->semaphore.mbox.wait[waiter->id];
1092 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001093
Ben Widawsky1500f7e2012-04-11 11:18:21 -07001094 /* Throughout all of the GEM code, seqno passed implies our current
1095 * seqno is >= the last seqno executed. However for hardware the
1096 * comparison is strictly greater than.
1097 */
1098 seqno -= 1;
1099
Ben Widawskyebc348b2014-04-29 14:52:28 -07001100 WARN_ON(wait_mbox == MI_SEMAPHORE_SYNC_INVALID);
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001101
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001102 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001103 if (ret)
1104 return ret;
1105
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02001106 /* If seqno wrap happened, omit the wait with no-ops */
1107 if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) {
Ben Widawskyebc348b2014-04-29 14:52:28 -07001108 intel_ring_emit(waiter, dw1 | wait_mbox);
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02001109 intel_ring_emit(waiter, seqno);
1110 intel_ring_emit(waiter, 0);
1111 intel_ring_emit(waiter, MI_NOOP);
1112 } else {
1113 intel_ring_emit(waiter, MI_NOOP);
1114 intel_ring_emit(waiter, MI_NOOP);
1115 intel_ring_emit(waiter, MI_NOOP);
1116 intel_ring_emit(waiter, MI_NOOP);
1117 }
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001118 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001119
1120 return 0;
1121}
1122
Chris Wilsonc6df5412010-12-15 09:56:50 +00001123#define PIPE_CONTROL_FLUSH(ring__, addr__) \
1124do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +02001125 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
1126 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +00001127 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
1128 intel_ring_emit(ring__, 0); \
1129 intel_ring_emit(ring__, 0); \
1130} while (0)
1131
1132static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001133pc_render_add_request(struct intel_engine_cs *ring)
Chris Wilsonc6df5412010-12-15 09:56:50 +00001134{
Chris Wilson18393f62014-04-09 09:19:40 +01001135 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001136 int ret;
1137
1138 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
1139 * incoherent with writes to memory, i.e. completely fubar,
1140 * so we need to use PIPE_NOTIFY instead.
1141 *
1142 * However, we also need to workaround the qword write
1143 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
1144 * memory before requesting an interrupt.
1145 */
1146 ret = intel_ring_begin(ring, 32);
1147 if (ret)
1148 return ret;
1149
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +02001150 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +02001151 PIPE_CONTROL_WRITE_FLUSH |
1152 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilson0d1aaca2013-08-26 20:58:11 +01001153 intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
John Harrison6259cea2014-11-24 18:49:29 +00001154 intel_ring_emit(ring,
1155 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Chris Wilsonc6df5412010-12-15 09:56:50 +00001156 intel_ring_emit(ring, 0);
1157 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +01001158 scratch_addr += 2 * CACHELINE_BYTES; /* write to separate cachelines */
Chris Wilsonc6df5412010-12-15 09:56:50 +00001159 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +01001160 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001161 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +01001162 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001163 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +01001164 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001165 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +01001166 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001167 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001168
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +02001169 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +02001170 PIPE_CONTROL_WRITE_FLUSH |
1171 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +00001172 PIPE_CONTROL_NOTIFY);
Chris Wilson0d1aaca2013-08-26 20:58:11 +01001173 intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
John Harrison6259cea2014-11-24 18:49:29 +00001174 intel_ring_emit(ring,
1175 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Chris Wilsonc6df5412010-12-15 09:56:50 +00001176 intel_ring_emit(ring, 0);
Chris Wilson09246732013-08-10 22:16:32 +01001177 __intel_ring_advance(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +00001178
Chris Wilsonc6df5412010-12-15 09:56:50 +00001179 return 0;
1180}
1181
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001182static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001183gen6_ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001184{
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001185 /* Workaround to force correct ordering between irq and seqno writes on
1186 * ivb (and maybe also on snb) by reading from a CS register (like
1187 * ACTHD) before reading the status page. */
Chris Wilson50877442014-03-21 12:41:53 +00001188 if (!lazy_coherency) {
1189 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1190 POSTING_READ(RING_ACTHD(ring->mmio_base));
1191 }
1192
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001193 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1194}
1195
1196static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001197ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001198{
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001199 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1200}
1201
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001202static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001203ring_set_seqno(struct intel_engine_cs *ring, u32 seqno)
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001204{
1205 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1206}
1207
Chris Wilsonc6df5412010-12-15 09:56:50 +00001208static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001209pc_render_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
Chris Wilsonc6df5412010-12-15 09:56:50 +00001210{
Chris Wilson0d1aaca2013-08-26 20:58:11 +01001211 return ring->scratch.cpu_page[0];
Chris Wilsonc6df5412010-12-15 09:56:50 +00001212}
1213
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001214static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001215pc_render_set_seqno(struct intel_engine_cs *ring, u32 seqno)
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001216{
Chris Wilson0d1aaca2013-08-26 20:58:11 +01001217 ring->scratch.cpu_page[0] = seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001218}
1219
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001220static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001221gen5_ring_get_irq(struct intel_engine_cs *ring)
Daniel Vettere48d8632012-04-11 22:12:54 +02001222{
1223 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001224 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001225 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +02001226
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001227 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Daniel Vettere48d8632012-04-11 22:12:54 +02001228 return false;
1229
Chris Wilson7338aef2012-04-24 21:48:47 +01001230 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Paulo Zanoni43eaea12013-08-06 18:57:12 -03001231 if (ring->irq_refcount++ == 0)
Daniel Vetter480c8032014-07-16 09:49:40 +02001232 gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson7338aef2012-04-24 21:48:47 +01001233 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +02001234
1235 return true;
1236}
1237
1238static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001239gen5_ring_put_irq(struct intel_engine_cs *ring)
Daniel Vettere48d8632012-04-11 22:12:54 +02001240{
1241 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001242 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001243 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +02001244
Chris Wilson7338aef2012-04-24 21:48:47 +01001245 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Paulo Zanoni43eaea12013-08-06 18:57:12 -03001246 if (--ring->irq_refcount == 0)
Daniel Vetter480c8032014-07-16 09:49:40 +02001247 gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson7338aef2012-04-24 21:48:47 +01001248 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +02001249}
1250
1251static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001252i9xx_ring_get_irq(struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001253{
Chris Wilson78501ea2010-10-27 12:18:21 +01001254 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001255 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001256 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001257
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001258 if (!intel_irqs_enabled(dev_priv))
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001259 return false;
1260
Chris Wilson7338aef2012-04-24 21:48:47 +01001261 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001262 if (ring->irq_refcount++ == 0) {
Daniel Vetterf637fde2012-04-11 22:12:59 +02001263 dev_priv->irq_mask &= ~ring->irq_enable_mask;
1264 I915_WRITE(IMR, dev_priv->irq_mask);
1265 POSTING_READ(IMR);
1266 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001267 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001268
1269 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001270}
1271
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001272static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001273i9xx_ring_put_irq(struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001274{
Chris Wilson78501ea2010-10-27 12:18:21 +01001275 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001276 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001277 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001278
Chris Wilson7338aef2012-04-24 21:48:47 +01001279 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001280 if (--ring->irq_refcount == 0) {
Daniel Vetterf637fde2012-04-11 22:12:59 +02001281 dev_priv->irq_mask |= ring->irq_enable_mask;
1282 I915_WRITE(IMR, dev_priv->irq_mask);
1283 POSTING_READ(IMR);
1284 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001285 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001286}
1287
Chris Wilsonc2798b12012-04-22 21:13:57 +01001288static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001289i8xx_ring_get_irq(struct intel_engine_cs *ring)
Chris Wilsonc2798b12012-04-22 21:13:57 +01001290{
1291 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001292 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001293 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001294
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001295 if (!intel_irqs_enabled(dev_priv))
Chris Wilsonc2798b12012-04-22 21:13:57 +01001296 return false;
1297
Chris Wilson7338aef2012-04-24 21:48:47 +01001298 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001299 if (ring->irq_refcount++ == 0) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01001300 dev_priv->irq_mask &= ~ring->irq_enable_mask;
1301 I915_WRITE16(IMR, dev_priv->irq_mask);
1302 POSTING_READ16(IMR);
1303 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001304 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +01001305
1306 return true;
1307}
1308
1309static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001310i8xx_ring_put_irq(struct intel_engine_cs *ring)
Chris Wilsonc2798b12012-04-22 21:13:57 +01001311{
1312 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001313 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001314 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001315
Chris Wilson7338aef2012-04-24 21:48:47 +01001316 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001317 if (--ring->irq_refcount == 0) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01001318 dev_priv->irq_mask |= ring->irq_enable_mask;
1319 I915_WRITE16(IMR, dev_priv->irq_mask);
1320 POSTING_READ16(IMR);
1321 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001322 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +01001323}
1324
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001325void intel_ring_setup_status_page(struct intel_engine_cs *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001326{
Eric Anholt45930102011-05-06 17:12:35 -07001327 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001328 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -07001329 u32 mmio = 0;
1330
1331 /* The ring status page addresses are no longer next to the rest of
1332 * the ring registers as of gen7.
1333 */
1334 if (IS_GEN7(dev)) {
1335 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +01001336 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -07001337 mmio = RENDER_HWS_PGA_GEN7;
1338 break;
Daniel Vetter96154f22011-12-14 13:57:00 +01001339 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -07001340 mmio = BLT_HWS_PGA_GEN7;
1341 break;
Zhao Yakui77fe2ff2014-04-17 10:37:39 +08001342 /*
1343 * VCS2 actually doesn't exist on Gen7. Only shut up
1344 * gcc switch check warning
1345 */
1346 case VCS2:
Daniel Vetter96154f22011-12-14 13:57:00 +01001347 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -07001348 mmio = BSD_HWS_PGA_GEN7;
1349 break;
Ben Widawsky4a3dd192013-05-28 19:22:19 -07001350 case VECS:
Ben Widawsky9a8a2212013-05-28 19:22:23 -07001351 mmio = VEBOX_HWS_PGA_GEN7;
1352 break;
Eric Anholt45930102011-05-06 17:12:35 -07001353 }
1354 } else if (IS_GEN6(ring->dev)) {
1355 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
1356 } else {
Ben Widawskyeb0d4b72013-11-07 21:40:50 -08001357 /* XXX: gen8 returns to sanity */
Eric Anholt45930102011-05-06 17:12:35 -07001358 mmio = RING_HWS_PGA(ring->mmio_base);
1359 }
1360
Chris Wilson78501ea2010-10-27 12:18:21 +01001361 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
1362 POSTING_READ(mmio);
Chris Wilson884020b2013-08-06 19:01:14 +01001363
Damien Lespiaudc616b82014-03-13 01:40:28 +00001364 /*
1365 * Flush the TLB for this page
1366 *
1367 * FIXME: These two bits have disappeared on gen8, so a question
1368 * arises: do we still need this and if so how should we go about
1369 * invalidating the TLB?
1370 */
1371 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) {
Chris Wilson884020b2013-08-06 19:01:14 +01001372 u32 reg = RING_INSTPM(ring->mmio_base);
Naresh Kumar Kachhi02f6a1e2014-03-12 16:39:42 +05301373
1374 /* ring should be idle before issuing a sync flush*/
1375 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
1376
Chris Wilson884020b2013-08-06 19:01:14 +01001377 I915_WRITE(reg,
1378 _MASKED_BIT_ENABLE(INSTPM_TLB_INVALIDATE |
1379 INSTPM_SYNC_FLUSH));
1380 if (wait_for((I915_READ(reg) & INSTPM_SYNC_FLUSH) == 0,
1381 1000))
1382 DRM_ERROR("%s: wait for SyncFlush to complete for TLB invalidation timed out\n",
1383 ring->name);
1384 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001385}
1386
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001387static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001388bsd_ring_flush(struct intel_engine_cs *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +01001389 u32 invalidate_domains,
1390 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001391{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001392 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001393
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001394 ret = intel_ring_begin(ring, 2);
1395 if (ret)
1396 return ret;
1397
1398 intel_ring_emit(ring, MI_FLUSH);
1399 intel_ring_emit(ring, MI_NOOP);
1400 intel_ring_advance(ring);
1401 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001402}
1403
Chris Wilson3cce4692010-10-27 16:11:02 +01001404static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001405i9xx_add_request(struct intel_engine_cs *ring)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001406{
Chris Wilson3cce4692010-10-27 16:11:02 +01001407 int ret;
1408
1409 ret = intel_ring_begin(ring, 4);
1410 if (ret)
1411 return ret;
Chris Wilson6f392d52010-08-07 11:01:22 +01001412
Chris Wilson3cce4692010-10-27 16:11:02 +01001413 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
1414 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
John Harrison6259cea2014-11-24 18:49:29 +00001415 intel_ring_emit(ring,
1416 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Chris Wilson3cce4692010-10-27 16:11:02 +01001417 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson09246732013-08-10 22:16:32 +01001418 __intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001419
Chris Wilson3cce4692010-10-27 16:11:02 +01001420 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001421}
1422
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001423static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001424gen6_ring_get_irq(struct intel_engine_cs *ring)
Chris Wilson0f468322011-01-04 17:35:21 +00001425{
1426 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001427 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001428 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +00001429
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001430 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
1431 return false;
Chris Wilson0f468322011-01-04 17:35:21 +00001432
Chris Wilson7338aef2012-04-24 21:48:47 +01001433 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001434 if (ring->irq_refcount++ == 0) {
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001435 if (HAS_L3_DPF(dev) && ring->id == RCS)
Ben Widawskycc609d52013-05-28 19:22:29 -07001436 I915_WRITE_IMR(ring,
1437 ~(ring->irq_enable_mask |
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001438 GT_PARITY_ERROR(dev)));
Ben Widawsky15b9f802012-05-25 16:56:23 -07001439 else
1440 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetter480c8032014-07-16 09:49:40 +02001441 gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson0f468322011-01-04 17:35:21 +00001442 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001443 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +00001444
1445 return true;
1446}
1447
1448static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001449gen6_ring_put_irq(struct intel_engine_cs *ring)
Chris Wilson0f468322011-01-04 17:35:21 +00001450{
1451 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001452 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001453 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +00001454
Chris Wilson7338aef2012-04-24 21:48:47 +01001455 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001456 if (--ring->irq_refcount == 0) {
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001457 if (HAS_L3_DPF(dev) && ring->id == RCS)
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001458 I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
Ben Widawsky15b9f802012-05-25 16:56:23 -07001459 else
1460 I915_WRITE_IMR(ring, ~0);
Daniel Vetter480c8032014-07-16 09:49:40 +02001461 gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001462 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001463 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001464}
1465
Ben Widawskya19d2932013-05-28 19:22:30 -07001466static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001467hsw_vebox_get_irq(struct intel_engine_cs *ring)
Ben Widawskya19d2932013-05-28 19:22:30 -07001468{
1469 struct drm_device *dev = ring->dev;
1470 struct drm_i915_private *dev_priv = dev->dev_private;
1471 unsigned long flags;
1472
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001473 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Ben Widawskya19d2932013-05-28 19:22:30 -07001474 return false;
1475
Daniel Vetter59cdb632013-07-04 23:35:28 +02001476 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001477 if (ring->irq_refcount++ == 0) {
Ben Widawskya19d2932013-05-28 19:22:30 -07001478 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetter480c8032014-07-16 09:49:40 +02001479 gen6_enable_pm_irq(dev_priv, ring->irq_enable_mask);
Ben Widawskya19d2932013-05-28 19:22:30 -07001480 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001481 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Ben Widawskya19d2932013-05-28 19:22:30 -07001482
1483 return true;
1484}
1485
1486static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001487hsw_vebox_put_irq(struct intel_engine_cs *ring)
Ben Widawskya19d2932013-05-28 19:22:30 -07001488{
1489 struct drm_device *dev = ring->dev;
1490 struct drm_i915_private *dev_priv = dev->dev_private;
1491 unsigned long flags;
1492
Daniel Vetter59cdb632013-07-04 23:35:28 +02001493 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001494 if (--ring->irq_refcount == 0) {
Ben Widawskya19d2932013-05-28 19:22:30 -07001495 I915_WRITE_IMR(ring, ~0);
Daniel Vetter480c8032014-07-16 09:49:40 +02001496 gen6_disable_pm_irq(dev_priv, ring->irq_enable_mask);
Ben Widawskya19d2932013-05-28 19:22:30 -07001497 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001498 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Ben Widawskya19d2932013-05-28 19:22:30 -07001499}
1500
Ben Widawskyabd58f02013-11-02 21:07:09 -07001501static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001502gen8_ring_get_irq(struct intel_engine_cs *ring)
Ben Widawskyabd58f02013-11-02 21:07:09 -07001503{
1504 struct drm_device *dev = ring->dev;
1505 struct drm_i915_private *dev_priv = dev->dev_private;
1506 unsigned long flags;
1507
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001508 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Ben Widawskyabd58f02013-11-02 21:07:09 -07001509 return false;
1510
1511 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1512 if (ring->irq_refcount++ == 0) {
1513 if (HAS_L3_DPF(dev) && ring->id == RCS) {
1514 I915_WRITE_IMR(ring,
1515 ~(ring->irq_enable_mask |
1516 GT_RENDER_L3_PARITY_ERROR_INTERRUPT));
1517 } else {
1518 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
1519 }
1520 POSTING_READ(RING_IMR(ring->mmio_base));
1521 }
1522 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1523
1524 return true;
1525}
1526
1527static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001528gen8_ring_put_irq(struct intel_engine_cs *ring)
Ben Widawskyabd58f02013-11-02 21:07:09 -07001529{
1530 struct drm_device *dev = ring->dev;
1531 struct drm_i915_private *dev_priv = dev->dev_private;
1532 unsigned long flags;
1533
1534 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1535 if (--ring->irq_refcount == 0) {
1536 if (HAS_L3_DPF(dev) && ring->id == RCS) {
1537 I915_WRITE_IMR(ring,
1538 ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT);
1539 } else {
1540 I915_WRITE_IMR(ring, ~0);
1541 }
1542 POSTING_READ(RING_IMR(ring->mmio_base));
1543 }
1544 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1545}
1546
Zou Nan haid1b851f2010-05-21 09:08:57 +08001547static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001548i965_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07001549 u64 offset, u32 length,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001550 unsigned flags)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001551{
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001552 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001553
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001554 ret = intel_ring_begin(ring, 2);
1555 if (ret)
1556 return ret;
1557
Chris Wilson78501ea2010-10-27 12:18:21 +01001558 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +01001559 MI_BATCH_BUFFER_START |
1560 MI_BATCH_GTT |
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001561 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001562 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +01001563 intel_ring_advance(ring);
1564
Zou Nan haid1b851f2010-05-21 09:08:57 +08001565 return 0;
1566}
1567
Daniel Vetterb45305f2012-12-17 16:21:27 +01001568/* Just userspace ABI convention to limit the wa batch bo to a resonable size */
1569#define I830_BATCH_LIMIT (256*1024)
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001570#define I830_TLB_ENTRIES (2)
1571#define I830_WA_SIZE max(I830_TLB_ENTRIES*4096, I830_BATCH_LIMIT)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001572static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001573i830_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07001574 u64 offset, u32 len,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001575 unsigned flags)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001576{
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001577 u32 cs_offset = ring->scratch.gtt_offset;
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001578 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001579
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001580 ret = intel_ring_begin(ring, 6);
1581 if (ret)
1582 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001583
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001584 /* Evict the invalid PTE TLBs */
1585 intel_ring_emit(ring, COLOR_BLT_CMD | BLT_WRITE_RGBA);
1586 intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_COLOR_COPY | 4096);
1587 intel_ring_emit(ring, I830_TLB_ENTRIES << 16 | 4); /* load each page */
1588 intel_ring_emit(ring, cs_offset);
1589 intel_ring_emit(ring, 0xdeadbeef);
1590 intel_ring_emit(ring, MI_NOOP);
1591 intel_ring_advance(ring);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001592
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001593 if ((flags & I915_DISPATCH_PINNED) == 0) {
Daniel Vetterb45305f2012-12-17 16:21:27 +01001594 if (len > I830_BATCH_LIMIT)
1595 return -ENOSPC;
1596
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001597 ret = intel_ring_begin(ring, 6 + 2);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001598 if (ret)
1599 return ret;
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001600
1601 /* Blit the batch (which has now all relocs applied) to the
1602 * stable batch scratch bo area (so that the CS never
1603 * stumbles over its tlb invalidation bug) ...
1604 */
1605 intel_ring_emit(ring, SRC_COPY_BLT_CMD | BLT_WRITE_RGBA);
1606 intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_SRC_COPY | 4096);
Chris Wilson611a7a42014-09-12 07:37:42 +01001607 intel_ring_emit(ring, DIV_ROUND_UP(len, 4096) << 16 | 4096);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001608 intel_ring_emit(ring, cs_offset);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001609 intel_ring_emit(ring, 4096);
1610 intel_ring_emit(ring, offset);
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001611
Daniel Vetterb45305f2012-12-17 16:21:27 +01001612 intel_ring_emit(ring, MI_FLUSH);
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001613 intel_ring_emit(ring, MI_NOOP);
1614 intel_ring_advance(ring);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001615
1616 /* ... and execute it. */
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001617 offset = cs_offset;
Daniel Vetterb45305f2012-12-17 16:21:27 +01001618 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001619
Chris Wilsonc4d69da2014-09-08 14:25:41 +01001620 ret = intel_ring_begin(ring, 4);
1621 if (ret)
1622 return ret;
1623
1624 intel_ring_emit(ring, MI_BATCH_BUFFER);
1625 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
1626 intel_ring_emit(ring, offset + len - 8);
1627 intel_ring_emit(ring, MI_NOOP);
1628 intel_ring_advance(ring);
1629
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001630 return 0;
1631}
1632
1633static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001634i915_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07001635 u64 offset, u32 len,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001636 unsigned flags)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001637{
1638 int ret;
1639
1640 ret = intel_ring_begin(ring, 2);
1641 if (ret)
1642 return ret;
1643
Chris Wilson65f56872012-04-17 16:38:12 +01001644 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001645 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001646 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001647
Eric Anholt62fdfea2010-05-21 13:26:39 -07001648 return 0;
1649}
1650
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001651static void cleanup_status_page(struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001652{
Chris Wilson05394f32010-11-08 19:18:58 +00001653 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001654
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001655 obj = ring->status_page.obj;
1656 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001657 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001658
Chris Wilson9da3da62012-06-01 15:20:22 +01001659 kunmap(sg_page(obj->pages->sgl));
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001660 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001661 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001662 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001663}
1664
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001665static int init_status_page(struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001666{
Chris Wilson05394f32010-11-08 19:18:58 +00001667 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001668
Chris Wilsone3efda42014-04-09 09:19:41 +01001669 if ((obj = ring->status_page.obj) == NULL) {
Chris Wilson1f767e02014-07-03 17:33:03 -04001670 unsigned flags;
Chris Wilsone3efda42014-04-09 09:19:41 +01001671 int ret;
1672
1673 obj = i915_gem_alloc_object(ring->dev, 4096);
1674 if (obj == NULL) {
1675 DRM_ERROR("Failed to allocate status page\n");
1676 return -ENOMEM;
1677 }
1678
1679 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
1680 if (ret)
1681 goto err_unref;
1682
Chris Wilson1f767e02014-07-03 17:33:03 -04001683 flags = 0;
1684 if (!HAS_LLC(ring->dev))
1685 /* On g33, we cannot place HWS above 256MiB, so
1686 * restrict its pinning to the low mappable arena.
1687 * Though this restriction is not documented for
1688 * gen4, gen5, or byt, they also behave similarly
1689 * and hang if the HWS is placed at the top of the
1690 * GTT. To generalise, it appears that all !llc
1691 * platforms have issues with us placing the HWS
1692 * above the mappable region (even though we never
1693 * actualy map it).
1694 */
1695 flags |= PIN_MAPPABLE;
1696 ret = i915_gem_obj_ggtt_pin(obj, 4096, flags);
Chris Wilsone3efda42014-04-09 09:19:41 +01001697 if (ret) {
1698err_unref:
1699 drm_gem_object_unreference(&obj->base);
1700 return ret;
1701 }
1702
1703 ring->status_page.obj = obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001704 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01001705
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001706 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01001707 ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001708 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001709
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001710 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
1711 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001712
1713 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001714}
1715
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001716static int init_phys_status_page(struct intel_engine_cs *ring)
Chris Wilson6b8294a2012-11-16 11:43:20 +00001717{
1718 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6b8294a2012-11-16 11:43:20 +00001719
1720 if (!dev_priv->status_page_dmah) {
1721 dev_priv->status_page_dmah =
1722 drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE);
1723 if (!dev_priv->status_page_dmah)
1724 return -ENOMEM;
1725 }
1726
Chris Wilson6b8294a2012-11-16 11:43:20 +00001727 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1728 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1729
1730 return 0;
1731}
1732
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001733void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
1734{
1735 iounmap(ringbuf->virtual_start);
1736 ringbuf->virtual_start = NULL;
1737 i915_gem_object_ggtt_unpin(ringbuf->obj);
1738}
1739
1740int intel_pin_and_map_ringbuffer_obj(struct drm_device *dev,
1741 struct intel_ringbuffer *ringbuf)
1742{
1743 struct drm_i915_private *dev_priv = to_i915(dev);
1744 struct drm_i915_gem_object *obj = ringbuf->obj;
1745 int ret;
1746
1747 ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE, PIN_MAPPABLE);
1748 if (ret)
1749 return ret;
1750
1751 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1752 if (ret) {
1753 i915_gem_object_ggtt_unpin(obj);
1754 return ret;
1755 }
1756
1757 ringbuf->virtual_start = ioremap_wc(dev_priv->gtt.mappable_base +
1758 i915_gem_obj_ggtt_offset(obj), ringbuf->size);
1759 if (ringbuf->virtual_start == NULL) {
1760 i915_gem_object_ggtt_unpin(obj);
1761 return -EINVAL;
1762 }
1763
1764 return 0;
1765}
1766
Oscar Mateo84c23772014-07-24 17:04:15 +01001767void intel_destroy_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
Chris Wilsone3efda42014-04-09 09:19:41 +01001768{
Oscar Mateo2919d292014-07-03 16:28:02 +01001769 drm_gem_object_unreference(&ringbuf->obj->base);
1770 ringbuf->obj = NULL;
1771}
1772
Oscar Mateo84c23772014-07-24 17:04:15 +01001773int intel_alloc_ringbuffer_obj(struct drm_device *dev,
1774 struct intel_ringbuffer *ringbuf)
Oscar Mateo2919d292014-07-03 16:28:02 +01001775{
Chris Wilsone3efda42014-04-09 09:19:41 +01001776 struct drm_i915_gem_object *obj;
Chris Wilsone3efda42014-04-09 09:19:41 +01001777
1778 obj = NULL;
1779 if (!HAS_LLC(dev))
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001780 obj = i915_gem_object_create_stolen(dev, ringbuf->size);
Chris Wilsone3efda42014-04-09 09:19:41 +01001781 if (obj == NULL)
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001782 obj = i915_gem_alloc_object(dev, ringbuf->size);
Chris Wilsone3efda42014-04-09 09:19:41 +01001783 if (obj == NULL)
1784 return -ENOMEM;
1785
Akash Goel24f3a8c2014-06-17 10:59:42 +05301786 /* mark ring buffers as read-only from GPU side by default */
1787 obj->gt_ro = 1;
1788
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001789 ringbuf->obj = obj;
Chris Wilsone3efda42014-04-09 09:19:41 +01001790
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001791 return 0;
Chris Wilsone3efda42014-04-09 09:19:41 +01001792}
1793
Ben Widawskyc43b5632012-04-16 14:07:40 -07001794static int intel_init_ring_buffer(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001795 struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001796{
Oscar Mateo8ee14972014-05-22 14:13:34 +01001797 struct intel_ringbuffer *ringbuf = ring->buffer;
Chris Wilsondd785e32010-08-07 11:01:34 +01001798 int ret;
1799
Oscar Mateo8ee14972014-05-22 14:13:34 +01001800 if (ringbuf == NULL) {
1801 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1802 if (!ringbuf)
1803 return -ENOMEM;
1804 ring->buffer = ringbuf;
1805 }
1806
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001807 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001808 INIT_LIST_HEAD(&ring->active_list);
1809 INIT_LIST_HEAD(&ring->request_list);
Oscar Mateocc9130b2014-07-24 17:04:42 +01001810 INIT_LIST_HEAD(&ring->execlist_queue);
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001811 ringbuf->size = 32 * PAGE_SIZE;
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001812 ringbuf->ring = ring;
Ben Widawskyebc348b2014-04-29 14:52:28 -07001813 memset(ring->semaphore.sync_seqno, 0, sizeof(ring->semaphore.sync_seqno));
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001814
Chris Wilsonb259f672011-03-29 13:19:09 +01001815 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001816
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001817 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001818 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001819 if (ret)
Oscar Mateo8ee14972014-05-22 14:13:34 +01001820 goto error;
Chris Wilson6b8294a2012-11-16 11:43:20 +00001821 } else {
1822 BUG_ON(ring->id != RCS);
Daniel Vetter035dc1e2013-07-03 12:56:54 +02001823 ret = init_phys_status_page(ring);
Chris Wilson6b8294a2012-11-16 11:43:20 +00001824 if (ret)
Oscar Mateo8ee14972014-05-22 14:13:34 +01001825 goto error;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001826 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001827
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001828 if (ringbuf->obj == NULL) {
1829 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1830 if (ret) {
1831 DRM_ERROR("Failed to allocate ringbuffer %s: %d\n",
1832 ring->name, ret);
1833 goto error;
1834 }
1835
1836 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1837 if (ret) {
1838 DRM_ERROR("Failed to pin and map ringbuffer %s: %d\n",
1839 ring->name, ret);
1840 intel_destroy_ringbuffer_obj(ringbuf);
1841 goto error;
1842 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001843 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001844
Chris Wilson55249ba2010-12-22 14:04:47 +00001845 /* Workaround an erratum on the i830 which causes a hang if
1846 * the TAIL pointer points to within the last 2 cachelines
1847 * of the buffer.
1848 */
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001849 ringbuf->effective_size = ringbuf->size;
Chris Wilsone3efda42014-04-09 09:19:41 +01001850 if (IS_I830(dev) || IS_845G(dev))
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001851 ringbuf->effective_size -= 2 * CACHELINE_BYTES;
Chris Wilson55249ba2010-12-22 14:04:47 +00001852
Brad Volkin44e895a2014-05-10 14:10:43 -07001853 ret = i915_cmd_parser_init_ring(ring);
1854 if (ret)
Oscar Mateo8ee14972014-05-22 14:13:34 +01001855 goto error;
Brad Volkin351e3db2014-02-18 10:15:46 -08001856
Oscar Mateo8ee14972014-05-22 14:13:34 +01001857 ret = ring->init(ring);
1858 if (ret)
1859 goto error;
1860
1861 return 0;
1862
1863error:
1864 kfree(ringbuf);
1865 ring->buffer = NULL;
1866 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001867}
1868
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001869void intel_cleanup_ring_buffer(struct intel_engine_cs *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001870{
John Harrison6402c332014-10-31 12:00:26 +00001871 struct drm_i915_private *dev_priv;
1872 struct intel_ringbuffer *ringbuf;
Chris Wilson33626e62010-10-29 16:18:36 +01001873
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001874 if (!intel_ring_initialized(ring))
Eric Anholt62fdfea2010-05-21 13:26:39 -07001875 return;
1876
John Harrison6402c332014-10-31 12:00:26 +00001877 dev_priv = to_i915(ring->dev);
1878 ringbuf = ring->buffer;
1879
Chris Wilsone3efda42014-04-09 09:19:41 +01001880 intel_stop_ring_buffer(ring);
Ville Syrjäläde8f0a52014-05-28 19:12:13 +03001881 WARN_ON(!IS_GEN2(ring->dev) && (I915_READ_MODE(ring) & MODE_IDLE) == 0);
Chris Wilson33626e62010-10-29 16:18:36 +01001882
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001883 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateo2919d292014-07-03 16:28:02 +01001884 intel_destroy_ringbuffer_obj(ringbuf);
John Harrison6259cea2014-11-24 18:49:29 +00001885 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Chris Wilson78501ea2010-10-27 12:18:21 +01001886
Zou Nan hai8d192152010-11-02 16:31:01 +08001887 if (ring->cleanup)
1888 ring->cleanup(ring);
1889
Chris Wilson78501ea2010-10-27 12:18:21 +01001890 cleanup_status_page(ring);
Brad Volkin44e895a2014-05-10 14:10:43 -07001891
1892 i915_cmd_parser_fini_ring(ring);
Oscar Mateo8ee14972014-05-22 14:13:34 +01001893
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001894 kfree(ringbuf);
Oscar Mateo8ee14972014-05-22 14:13:34 +01001895 ring->buffer = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001896}
1897
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001898static int intel_ring_wait_request(struct intel_engine_cs *ring, int n)
Chris Wilsona71d8d92012-02-15 11:25:36 +00001899{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001900 struct intel_ringbuffer *ringbuf = ring->buffer;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001901 struct drm_i915_gem_request *request;
Chris Wilson1cf0ba12014-05-05 09:07:33 +01001902 u32 seqno = 0;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001903 int ret;
1904
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001905 if (ringbuf->last_retired_head != -1) {
1906 ringbuf->head = ringbuf->last_retired_head;
1907 ringbuf->last_retired_head = -1;
Chris Wilson1f709992014-01-27 22:43:07 +00001908
Oscar Mateo82e104c2014-07-24 17:04:26 +01001909 ringbuf->space = intel_ring_space(ringbuf);
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001910 if (ringbuf->space >= n)
Chris Wilsona71d8d92012-02-15 11:25:36 +00001911 return 0;
1912 }
1913
1914 list_for_each_entry(request, &ring->request_list, list) {
Oscar Mateo82e104c2014-07-24 17:04:26 +01001915 if (__intel_ring_space(request->tail, ringbuf->tail,
1916 ringbuf->size) >= n) {
Chris Wilsona71d8d92012-02-15 11:25:36 +00001917 seqno = request->seqno;
1918 break;
1919 }
Chris Wilsona71d8d92012-02-15 11:25:36 +00001920 }
1921
1922 if (seqno == 0)
1923 return -ENOSPC;
1924
Chris Wilson1f709992014-01-27 22:43:07 +00001925 ret = i915_wait_seqno(ring, seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001926 if (ret)
1927 return ret;
1928
Chris Wilson1cf0ba12014-05-05 09:07:33 +01001929 i915_gem_retire_requests_ring(ring);
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001930 ringbuf->head = ringbuf->last_retired_head;
1931 ringbuf->last_retired_head = -1;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001932
Oscar Mateo82e104c2014-07-24 17:04:26 +01001933 ringbuf->space = intel_ring_space(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001934 return 0;
1935}
1936
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001937static int ring_wait_for_space(struct intel_engine_cs *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001938{
Chris Wilson78501ea2010-10-27 12:18:21 +01001939 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001940 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001941 struct intel_ringbuffer *ringbuf = ring->buffer;
Chris Wilson78501ea2010-10-27 12:18:21 +01001942 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001943 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001944
Chris Wilsona71d8d92012-02-15 11:25:36 +00001945 ret = intel_ring_wait_request(ring, n);
1946 if (ret != -ENOSPC)
1947 return ret;
1948
Chris Wilson09246732013-08-10 22:16:32 +01001949 /* force the tail write in case we have been skipping them */
1950 __intel_ring_advance(ring);
1951
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001952 /* With GEM the hangcheck timer should kick us out of the loop,
1953 * leaving it early runs the risk of corrupting GEM state (due
1954 * to running on almost untested codepaths). But on resume
1955 * timers don't work yet, so prevent a complete hang in that
1956 * case by choosing an insanely large timeout. */
1957 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001958
Chris Wilsondcfe0502014-05-05 09:07:32 +01001959 trace_i915_ring_wait_begin(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001960 do {
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001961 ringbuf->head = I915_READ_HEAD(ring);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001962 ringbuf->space = intel_ring_space(ringbuf);
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001963 if (ringbuf->space >= n) {
Chris Wilsondcfe0502014-05-05 09:07:32 +01001964 ret = 0;
1965 break;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001966 }
1967
Chris Wilsone60a0b12010-10-13 10:09:14 +01001968 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001969
Chris Wilsondcfe0502014-05-05 09:07:32 +01001970 if (dev_priv->mm.interruptible && signal_pending(current)) {
1971 ret = -ERESTARTSYS;
1972 break;
1973 }
1974
Daniel Vetter33196de2012-11-14 17:14:05 +01001975 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1976 dev_priv->mm.interruptible);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001977 if (ret)
Chris Wilsondcfe0502014-05-05 09:07:32 +01001978 break;
1979
1980 if (time_after(jiffies, end)) {
1981 ret = -EBUSY;
1982 break;
1983 }
1984 } while (1);
Chris Wilsondb53a302011-02-03 11:57:46 +00001985 trace_i915_ring_wait_end(ring);
Chris Wilsondcfe0502014-05-05 09:07:32 +01001986 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001987}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001988
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001989static int intel_wrap_ring_buffer(struct intel_engine_cs *ring)
Chris Wilson3e960502012-11-27 16:22:54 +00001990{
1991 uint32_t __iomem *virt;
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001992 struct intel_ringbuffer *ringbuf = ring->buffer;
1993 int rem = ringbuf->size - ringbuf->tail;
Chris Wilson3e960502012-11-27 16:22:54 +00001994
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001995 if (ringbuf->space < rem) {
Chris Wilson3e960502012-11-27 16:22:54 +00001996 int ret = ring_wait_for_space(ring, rem);
1997 if (ret)
1998 return ret;
1999 }
2000
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01002001 virt = ringbuf->virtual_start + ringbuf->tail;
Chris Wilson3e960502012-11-27 16:22:54 +00002002 rem /= 4;
2003 while (rem--)
2004 iowrite32(MI_NOOP, virt++);
2005
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01002006 ringbuf->tail = 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +01002007 ringbuf->space = intel_ring_space(ringbuf);
Chris Wilson3e960502012-11-27 16:22:54 +00002008
2009 return 0;
2010}
2011
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002012int intel_ring_idle(struct intel_engine_cs *ring)
Chris Wilson3e960502012-11-27 16:22:54 +00002013{
2014 u32 seqno;
2015 int ret;
2016
2017 /* We need to add any requests required to flush the objects and ring */
John Harrison6259cea2014-11-24 18:49:29 +00002018 if (ring->outstanding_lazy_request) {
Mika Kuoppala0025c072013-06-12 12:35:30 +03002019 ret = i915_add_request(ring, NULL);
Chris Wilson3e960502012-11-27 16:22:54 +00002020 if (ret)
2021 return ret;
2022 }
2023
2024 /* Wait upon the last request to be completed */
2025 if (list_empty(&ring->request_list))
2026 return 0;
2027
2028 seqno = list_entry(ring->request_list.prev,
2029 struct drm_i915_gem_request,
2030 list)->seqno;
2031
2032 return i915_wait_seqno(ring, seqno);
2033}
2034
Chris Wilson9d7730912012-11-27 16:22:52 +00002035static int
John Harrison6259cea2014-11-24 18:49:29 +00002036intel_ring_alloc_request(struct intel_engine_cs *ring)
Chris Wilson9d7730912012-11-27 16:22:52 +00002037{
John Harrison9eba5d42014-11-24 18:49:23 +00002038 int ret;
2039 struct drm_i915_gem_request *request;
2040
John Harrison6259cea2014-11-24 18:49:29 +00002041 if (ring->outstanding_lazy_request)
Chris Wilson9d7730912012-11-27 16:22:52 +00002042 return 0;
John Harrison9eba5d42014-11-24 18:49:23 +00002043
2044 request = kmalloc(sizeof(*request), GFP_KERNEL);
2045 if (request == NULL)
2046 return -ENOMEM;
2047
John Harrisonabfe2622014-11-24 18:49:24 +00002048 kref_init(&request->ref);
2049
John Harrison6259cea2014-11-24 18:49:29 +00002050 ret = i915_gem_get_seqno(ring->dev, &request->seqno);
John Harrison9eba5d42014-11-24 18:49:23 +00002051 if (ret) {
2052 kfree(request);
2053 return ret;
2054 }
2055
John Harrison6259cea2014-11-24 18:49:29 +00002056 ring->outstanding_lazy_request = request;
John Harrison9eba5d42014-11-24 18:49:23 +00002057 return 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002058}
2059
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002060static int __intel_ring_prepare(struct intel_engine_cs *ring,
Chris Wilson304d6952014-01-02 14:32:35 +00002061 int bytes)
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02002062{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01002063 struct intel_ringbuffer *ringbuf = ring->buffer;
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02002064 int ret;
2065
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01002066 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02002067 ret = intel_wrap_ring_buffer(ring);
2068 if (unlikely(ret))
2069 return ret;
2070 }
2071
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01002072 if (unlikely(ringbuf->space < bytes)) {
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02002073 ret = ring_wait_for_space(ring, bytes);
2074 if (unlikely(ret))
2075 return ret;
2076 }
2077
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02002078 return 0;
2079}
2080
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002081int intel_ring_begin(struct intel_engine_cs *ring,
Chris Wilsone1f99ce2010-10-27 12:45:26 +01002082 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002083{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002084 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01002085 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01002086
Daniel Vetter33196de2012-11-14 17:14:05 +01002087 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
2088 dev_priv->mm.interruptible);
Daniel Vetterde2b9982012-07-04 22:52:50 +02002089 if (ret)
2090 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00002091
Chris Wilson304d6952014-01-02 14:32:35 +00002092 ret = __intel_ring_prepare(ring, num_dwords * sizeof(uint32_t));
2093 if (ret)
2094 return ret;
2095
Chris Wilson9d7730912012-11-27 16:22:52 +00002096 /* Preallocate the olr before touching the ring */
John Harrison6259cea2014-11-24 18:49:29 +00002097 ret = intel_ring_alloc_request(ring);
Chris Wilson9d7730912012-11-27 16:22:52 +00002098 if (ret)
2099 return ret;
2100
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002101 ring->buffer->space -= num_dwords * sizeof(uint32_t);
Chris Wilson304d6952014-01-02 14:32:35 +00002102 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002103}
2104
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02002105/* Align the ring tail to a cacheline boundary */
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002106int intel_ring_cacheline_align(struct intel_engine_cs *ring)
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02002107{
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002108 int num_dwords = (ring->buffer->tail & (CACHELINE_BYTES - 1)) / sizeof(uint32_t);
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02002109 int ret;
2110
2111 if (num_dwords == 0)
2112 return 0;
2113
Chris Wilson18393f62014-04-09 09:19:40 +01002114 num_dwords = CACHELINE_BYTES / sizeof(uint32_t) - num_dwords;
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02002115 ret = intel_ring_begin(ring, num_dwords);
2116 if (ret)
2117 return ret;
2118
2119 while (num_dwords--)
2120 intel_ring_emit(ring, MI_NOOP);
2121
2122 intel_ring_advance(ring);
2123
2124 return 0;
2125}
2126
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002127void intel_ring_init_seqno(struct intel_engine_cs *ring, u32 seqno)
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002128{
Oscar Mateo3b2cc8a2014-06-11 16:17:16 +01002129 struct drm_device *dev = ring->dev;
2130 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002131
John Harrison6259cea2014-11-24 18:49:29 +00002132 BUG_ON(ring->outstanding_lazy_request);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002133
Oscar Mateo3b2cc8a2014-06-11 16:17:16 +01002134 if (INTEL_INFO(dev)->gen == 6 || INTEL_INFO(dev)->gen == 7) {
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02002135 I915_WRITE(RING_SYNC_0(ring->mmio_base), 0);
2136 I915_WRITE(RING_SYNC_1(ring->mmio_base), 0);
Oscar Mateo3b2cc8a2014-06-11 16:17:16 +01002137 if (HAS_VEBOX(dev))
Ben Widawsky50201502013-08-12 16:53:03 -07002138 I915_WRITE(RING_SYNC_2(ring->mmio_base), 0);
Chris Wilson78501ea2010-10-27 12:18:21 +01002139 }
Chris Wilson297b0c52010-10-22 17:02:41 +01002140
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02002141 ring->set_seqno(ring, seqno);
Mika Kuoppala92cab732013-05-24 17:16:07 +03002142 ring->hangcheck.seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +01002143}
2144
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002145static void gen6_bsd_ring_write_tail(struct intel_engine_cs *ring,
Chris Wilsonab6f8e32010-09-19 17:53:44 +01002146 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002147{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002148 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002149
2150 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002151
Chris Wilson12f55812012-07-05 17:14:01 +01002152 /* Disable notification that the ring is IDLE. The GT
2153 * will then assume that it is busy and bring it out of rc6.
2154 */
2155 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
2156 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
2157
2158 /* Clear the context id. Here be magic! */
2159 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
2160
2161 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04002162 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01002163 GEN6_BSD_SLEEP_INDICATOR) == 0,
2164 50))
2165 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002166
Chris Wilson12f55812012-07-05 17:14:01 +01002167 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04002168 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01002169 POSTING_READ(RING_TAIL(ring->mmio_base));
2170
2171 /* Let the ring send IDLE messages to the GT again,
2172 * and so let it sleep to conserve power when idle.
2173 */
Akshay Joshi0206e352011-08-16 15:34:10 -04002174 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01002175 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002176}
2177
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002178static int gen6_bsd_ring_flush(struct intel_engine_cs *ring,
Ben Widawskyea251322013-05-28 19:22:21 -07002179 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002180{
Chris Wilson71a77e02011-02-02 12:13:49 +00002181 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002182 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002183
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002184 ret = intel_ring_begin(ring, 4);
2185 if (ret)
2186 return ret;
2187
Chris Wilson71a77e02011-02-02 12:13:49 +00002188 cmd = MI_FLUSH_DW;
Ben Widawsky075b3bb2013-11-02 21:07:13 -07002189 if (INTEL_INFO(ring->dev)->gen >= 8)
2190 cmd += 1;
Jesse Barnes9a289772012-10-26 09:42:42 -07002191 /*
2192 * Bspec vol 1c.5 - video engine command streamer:
2193 * "If ENABLED, all TLBs will be invalidated once the flush
2194 * operation is complete. This bit is only valid when the
2195 * Post-Sync Operation field is a value of 1h or 3h."
2196 */
Chris Wilson71a77e02011-02-02 12:13:49 +00002197 if (invalidate & I915_GEM_GPU_DOMAINS)
Jesse Barnes9a289772012-10-26 09:42:42 -07002198 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
2199 MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00002200 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07002201 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Ben Widawsky075b3bb2013-11-02 21:07:13 -07002202 if (INTEL_INFO(ring->dev)->gen >= 8) {
2203 intel_ring_emit(ring, 0); /* upper addr */
2204 intel_ring_emit(ring, 0); /* value */
2205 } else {
2206 intel_ring_emit(ring, 0);
2207 intel_ring_emit(ring, MI_NOOP);
2208 }
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002209 intel_ring_advance(ring);
2210 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002211}
2212
2213static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002214gen8_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07002215 u64 offset, u32 len,
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002216 unsigned flags)
2217{
Daniel Vetter896ab1a2014-08-06 15:04:51 +02002218 bool ppgtt = USES_PPGTT(ring->dev) && !(flags & I915_DISPATCH_SECURE);
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002219 int ret;
2220
2221 ret = intel_ring_begin(ring, 4);
2222 if (ret)
2223 return ret;
2224
2225 /* FIXME(BDW): Address space and security selectors. */
Ben Widawsky28cf5412013-11-02 21:07:26 -07002226 intel_ring_emit(ring, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
Ben Widawsky9bcb1442014-04-28 19:29:25 -07002227 intel_ring_emit(ring, lower_32_bits(offset));
2228 intel_ring_emit(ring, upper_32_bits(offset));
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002229 intel_ring_emit(ring, MI_NOOP);
2230 intel_ring_advance(ring);
2231
2232 return 0;
2233}
2234
2235static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002236hsw_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07002237 u64 offset, u32 len,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002238 unsigned flags)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002239{
Akshay Joshi0206e352011-08-16 15:34:10 -04002240 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01002241
Akshay Joshi0206e352011-08-16 15:34:10 -04002242 ret = intel_ring_begin(ring, 2);
2243 if (ret)
2244 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01002245
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002246 intel_ring_emit(ring,
Chris Wilson77072252014-09-10 12:18:27 +01002247 MI_BATCH_BUFFER_START |
2248 (flags & I915_DISPATCH_SECURE ?
2249 0 : MI_BATCH_PPGTT_HSW | MI_BATCH_NON_SECURE_HSW));
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002250 /* bit0-7 is the length on GEN6+ */
2251 intel_ring_emit(ring, offset);
2252 intel_ring_advance(ring);
2253
2254 return 0;
2255}
2256
2257static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002258gen6_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
Ben Widawsky9bcb1442014-04-28 19:29:25 -07002259 u64 offset, u32 len,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002260 unsigned flags)
2261{
2262 int ret;
2263
2264 ret = intel_ring_begin(ring, 2);
2265 if (ret)
2266 return ret;
2267
2268 intel_ring_emit(ring,
2269 MI_BATCH_BUFFER_START |
2270 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Akshay Joshi0206e352011-08-16 15:34:10 -04002271 /* bit0-7 is the length on GEN6+ */
2272 intel_ring_emit(ring, offset);
2273 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01002274
Akshay Joshi0206e352011-08-16 15:34:10 -04002275 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002276}
2277
Chris Wilson549f7362010-10-19 11:19:32 +01002278/* Blitter support (SandyBridge+) */
2279
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002280static int gen6_ring_flush(struct intel_engine_cs *ring,
Ben Widawskyea251322013-05-28 19:22:21 -07002281 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08002282{
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03002283 struct drm_device *dev = ring->dev;
Rodrigo Vivi1d73c2a2014-09-24 19:50:59 -04002284 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson71a77e02011-02-02 12:13:49 +00002285 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002286 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002287
Daniel Vetter6a233c72011-12-14 13:57:07 +01002288 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002289 if (ret)
2290 return ret;
2291
Chris Wilson71a77e02011-02-02 12:13:49 +00002292 cmd = MI_FLUSH_DW;
Ben Widawsky075b3bb2013-11-02 21:07:13 -07002293 if (INTEL_INFO(ring->dev)->gen >= 8)
2294 cmd += 1;
Jesse Barnes9a289772012-10-26 09:42:42 -07002295 /*
2296 * Bspec vol 1c.3 - blitter engine command streamer:
2297 * "If ENABLED, all TLBs will be invalidated once the flush
2298 * operation is complete. This bit is only valid when the
2299 * Post-Sync Operation field is a value of 1h or 3h."
2300 */
Chris Wilson71a77e02011-02-02 12:13:49 +00002301 if (invalidate & I915_GEM_DOMAIN_RENDER)
Jesse Barnes9a289772012-10-26 09:42:42 -07002302 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
Daniel Vetterb3fcabb2012-11-04 12:24:47 +01002303 MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00002304 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07002305 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Ben Widawsky075b3bb2013-11-02 21:07:13 -07002306 if (INTEL_INFO(ring->dev)->gen >= 8) {
2307 intel_ring_emit(ring, 0); /* upper addr */
2308 intel_ring_emit(ring, 0); /* value */
2309 } else {
2310 intel_ring_emit(ring, 0);
2311 intel_ring_emit(ring, MI_NOOP);
2312 }
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002313 intel_ring_advance(ring);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03002314
Rodrigo Vivi1d73c2a2014-09-24 19:50:59 -04002315 if (!invalidate && flush) {
2316 if (IS_GEN7(dev))
2317 return gen7_ring_fbc_flush(ring, FBC_REND_CACHE_CLEAN);
2318 else if (IS_BROADWELL(dev))
2319 dev_priv->fbc.need_sw_cache_clean = true;
2320 }
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03002321
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00002322 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08002323}
2324
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002325int intel_init_render_ring_buffer(struct drm_device *dev)
2326{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002327 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002328 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Ben Widawsky3e789982014-06-30 09:53:37 -07002329 struct drm_i915_gem_object *obj;
2330 int ret;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002331
Daniel Vetter59465b52012-04-11 22:12:48 +02002332 ring->name = "render ring";
2333 ring->id = RCS;
2334 ring->mmio_base = RENDER_RING_BASE;
2335
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002336 if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky3e789982014-06-30 09:53:37 -07002337 if (i915_semaphore_is_enabled(dev)) {
2338 obj = i915_gem_alloc_object(dev, 4096);
2339 if (obj == NULL) {
2340 DRM_ERROR("Failed to allocate semaphore bo. Disabling semaphores\n");
2341 i915.semaphores = 0;
2342 } else {
2343 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
2344 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_NONBLOCK);
2345 if (ret != 0) {
2346 drm_gem_object_unreference(&obj->base);
2347 DRM_ERROR("Failed to pin semaphore bo. Disabling semaphores\n");
2348 i915.semaphores = 0;
2349 } else
2350 dev_priv->semaphore_obj = obj;
2351 }
2352 }
Mika Kuoppala72253422014-10-07 17:21:26 +03002353
2354 ring->init_context = intel_ring_workarounds_emit;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002355 ring->add_request = gen6_add_request;
2356 ring->flush = gen8_render_ring_flush;
2357 ring->irq_get = gen8_ring_get_irq;
2358 ring->irq_put = gen8_ring_put_irq;
2359 ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
2360 ring->get_seqno = gen6_ring_get_seqno;
2361 ring->set_seqno = ring_set_seqno;
2362 if (i915_semaphore_is_enabled(dev)) {
Ben Widawsky3e789982014-06-30 09:53:37 -07002363 WARN_ON(!dev_priv->semaphore_obj);
Ben Widawsky5ee426c2014-06-30 09:53:38 -07002364 ring->semaphore.sync_to = gen8_ring_sync;
Ben Widawsky3e789982014-06-30 09:53:37 -07002365 ring->semaphore.signal = gen8_rcs_signal;
2366 GEN8_RING_SEMAPHORE_INIT;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002367 }
2368 } else if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002369 ring->add_request = gen6_add_request;
Paulo Zanoni4772eae2012-08-17 18:35:41 -03002370 ring->flush = gen7_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01002371 if (INTEL_INFO(dev)->gen == 6)
Paulo Zanonib3111502012-08-17 18:35:42 -03002372 ring->flush = gen6_render_ring_flush;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002373 ring->irq_get = gen6_ring_get_irq;
2374 ring->irq_put = gen6_ring_put_irq;
Ben Widawskycc609d52013-05-28 19:22:29 -07002375 ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01002376 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002377 ring->set_seqno = ring_set_seqno;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002378 if (i915_semaphore_is_enabled(dev)) {
2379 ring->semaphore.sync_to = gen6_ring_sync;
2380 ring->semaphore.signal = gen6_signal;
2381 /*
2382 * The current semaphore is only applied on pre-gen8
2383 * platform. And there is no VCS2 ring on the pre-gen8
2384 * platform. So the semaphore between RCS and VCS2 is
2385 * initialized as INVALID. Gen8 will initialize the
2386 * sema between VCS2 and RCS later.
2387 */
2388 ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_INVALID;
2389 ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_RV;
2390 ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_RB;
2391 ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_RVE;
2392 ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2393 ring->semaphore.mbox.signal[RCS] = GEN6_NOSYNC;
2394 ring->semaphore.mbox.signal[VCS] = GEN6_VRSYNC;
2395 ring->semaphore.mbox.signal[BCS] = GEN6_BRSYNC;
2396 ring->semaphore.mbox.signal[VECS] = GEN6_VERSYNC;
2397 ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
2398 }
Chris Wilsonc6df5412010-12-15 09:56:50 +00002399 } else if (IS_GEN5(dev)) {
2400 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01002401 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00002402 ring->get_seqno = pc_render_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002403 ring->set_seqno = pc_render_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02002404 ring->irq_get = gen5_ring_get_irq;
2405 ring->irq_put = gen5_ring_put_irq;
Ben Widawskycc609d52013-05-28 19:22:29 -07002406 ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT |
2407 GT_RENDER_PIPECTL_NOTIFY_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02002408 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02002409 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01002410 if (INTEL_INFO(dev)->gen < 4)
2411 ring->flush = gen2_render_ring_flush;
2412 else
2413 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02002414 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002415 ring->set_seqno = ring_set_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002416 if (IS_GEN2(dev)) {
2417 ring->irq_get = i8xx_ring_get_irq;
2418 ring->irq_put = i8xx_ring_put_irq;
2419 } else {
2420 ring->irq_get = i9xx_ring_get_irq;
2421 ring->irq_put = i9xx_ring_put_irq;
2422 }
Daniel Vettere3670312012-04-11 22:12:53 +02002423 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002424 }
Daniel Vetter59465b52012-04-11 22:12:48 +02002425 ring->write_tail = ring_write_tail;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002426
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002427 if (IS_HASWELL(dev))
2428 ring->dispatch_execbuffer = hsw_ring_dispatch_execbuffer;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002429 else if (IS_GEN8(dev))
2430 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002431 else if (INTEL_INFO(dev)->gen >= 6)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02002432 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
2433 else if (INTEL_INFO(dev)->gen >= 4)
2434 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
2435 else if (IS_I830(dev) || IS_845G(dev))
2436 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
2437 else
2438 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02002439 ring->init = init_render_ring;
2440 ring->cleanup = render_ring_cleanup;
2441
Daniel Vetterb45305f2012-12-17 16:21:27 +01002442 /* Workaround batchbuffer to combat CS tlb bug. */
2443 if (HAS_BROKEN_CS_TLB(dev)) {
Chris Wilsonc4d69da2014-09-08 14:25:41 +01002444 obj = i915_gem_alloc_object(dev, I830_WA_SIZE);
Daniel Vetterb45305f2012-12-17 16:21:27 +01002445 if (obj == NULL) {
2446 DRM_ERROR("Failed to allocate batch bo\n");
2447 return -ENOMEM;
2448 }
2449
Daniel Vetterbe1fa122014-02-14 14:01:14 +01002450 ret = i915_gem_obj_ggtt_pin(obj, 0, 0);
Daniel Vetterb45305f2012-12-17 16:21:27 +01002451 if (ret != 0) {
2452 drm_gem_object_unreference(&obj->base);
2453 DRM_ERROR("Failed to ping batch bo\n");
2454 return ret;
2455 }
2456
Chris Wilson0d1aaca2013-08-26 20:58:11 +01002457 ring->scratch.obj = obj;
2458 ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(obj);
Daniel Vetterb45305f2012-12-17 16:21:27 +01002459 }
2460
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002461 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002462}
2463
2464int intel_init_bsd_ring_buffer(struct drm_device *dev)
2465{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002466 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002467 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002468
Daniel Vetter58fa3832012-04-11 22:12:49 +02002469 ring->name = "bsd ring";
2470 ring->id = VCS;
2471
Daniel Vetter0fd2c202012-04-11 22:12:55 +02002472 ring->write_tail = ring_write_tail;
Ben Widawsky780f18c2013-11-02 21:07:28 -07002473 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter58fa3832012-04-11 22:12:49 +02002474 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02002475 /* gen6 bsd needs a special wa for tail updates */
2476 if (IS_GEN6(dev))
2477 ring->write_tail = gen6_bsd_ring_write_tail;
Ben Widawskyea251322013-05-28 19:22:21 -07002478 ring->flush = gen6_bsd_ring_flush;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002479 ring->add_request = gen6_add_request;
2480 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002481 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002482 if (INTEL_INFO(dev)->gen >= 8) {
2483 ring->irq_enable_mask =
2484 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
2485 ring->irq_get = gen8_ring_get_irq;
2486 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002487 ring->dispatch_execbuffer =
2488 gen8_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002489 if (i915_semaphore_is_enabled(dev)) {
Ben Widawsky5ee426c2014-06-30 09:53:38 -07002490 ring->semaphore.sync_to = gen8_ring_sync;
Ben Widawsky3e789982014-06-30 09:53:37 -07002491 ring->semaphore.signal = gen8_xcs_signal;
2492 GEN8_RING_SEMAPHORE_INIT;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002493 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002494 } else {
2495 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
2496 ring->irq_get = gen6_ring_get_irq;
2497 ring->irq_put = gen6_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002498 ring->dispatch_execbuffer =
2499 gen6_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002500 if (i915_semaphore_is_enabled(dev)) {
2501 ring->semaphore.sync_to = gen6_ring_sync;
2502 ring->semaphore.signal = gen6_signal;
2503 ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VR;
2504 ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_INVALID;
2505 ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VB;
2506 ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_VVE;
2507 ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2508 ring->semaphore.mbox.signal[RCS] = GEN6_RVSYNC;
2509 ring->semaphore.mbox.signal[VCS] = GEN6_NOSYNC;
2510 ring->semaphore.mbox.signal[BCS] = GEN6_BVSYNC;
2511 ring->semaphore.mbox.signal[VECS] = GEN6_VEVSYNC;
2512 ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
2513 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002514 }
Daniel Vetter58fa3832012-04-11 22:12:49 +02002515 } else {
2516 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002517 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02002518 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002519 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002520 ring->set_seqno = ring_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02002521 if (IS_GEN5(dev)) {
Ben Widawskycc609d52013-05-28 19:22:29 -07002522 ring->irq_enable_mask = ILK_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02002523 ring->irq_get = gen5_ring_get_irq;
2524 ring->irq_put = gen5_ring_put_irq;
2525 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02002526 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02002527 ring->irq_get = i9xx_ring_get_irq;
2528 ring->irq_put = i9xx_ring_put_irq;
2529 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02002530 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002531 }
2532 ring->init = init_ring_common;
2533
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002534 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002535}
Chris Wilson549f7362010-10-19 11:19:32 +01002536
Zhao Yakui845f74a2014-04-17 10:37:37 +08002537/**
2538 * Initialize the second BSD ring for Broadwell GT3.
2539 * It is noted that this only exists on Broadwell GT3.
2540 */
2541int intel_init_bsd2_ring_buffer(struct drm_device *dev)
2542{
2543 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002544 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
Zhao Yakui845f74a2014-04-17 10:37:37 +08002545
2546 if ((INTEL_INFO(dev)->gen != 8)) {
2547 DRM_ERROR("No dual-BSD ring on non-BDW machine\n");
2548 return -EINVAL;
2549 }
2550
Rodrigo Vivif7b64232014-07-01 02:41:36 -07002551 ring->name = "bsd2 ring";
Zhao Yakui845f74a2014-04-17 10:37:37 +08002552 ring->id = VCS2;
2553
2554 ring->write_tail = ring_write_tail;
2555 ring->mmio_base = GEN8_BSD2_RING_BASE;
2556 ring->flush = gen6_bsd_ring_flush;
2557 ring->add_request = gen6_add_request;
2558 ring->get_seqno = gen6_ring_get_seqno;
2559 ring->set_seqno = ring_set_seqno;
2560 ring->irq_enable_mask =
2561 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
2562 ring->irq_get = gen8_ring_get_irq;
2563 ring->irq_put = gen8_ring_put_irq;
2564 ring->dispatch_execbuffer =
2565 gen8_ring_dispatch_execbuffer;
Ben Widawsky3e789982014-06-30 09:53:37 -07002566 if (i915_semaphore_is_enabled(dev)) {
Ben Widawsky5ee426c2014-06-30 09:53:38 -07002567 ring->semaphore.sync_to = gen8_ring_sync;
Ben Widawsky3e789982014-06-30 09:53:37 -07002568 ring->semaphore.signal = gen8_xcs_signal;
2569 GEN8_RING_SEMAPHORE_INIT;
2570 }
Zhao Yakui845f74a2014-04-17 10:37:37 +08002571 ring->init = init_ring_common;
2572
2573 return intel_init_ring_buffer(dev, ring);
2574}
2575
Chris Wilson549f7362010-10-19 11:19:32 +01002576int intel_init_blt_ring_buffer(struct drm_device *dev)
2577{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002578 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002579 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01002580
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002581 ring->name = "blitter ring";
2582 ring->id = BCS;
2583
2584 ring->mmio_base = BLT_RING_BASE;
2585 ring->write_tail = ring_write_tail;
Ben Widawskyea251322013-05-28 19:22:21 -07002586 ring->flush = gen6_ring_flush;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002587 ring->add_request = gen6_add_request;
2588 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002589 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002590 if (INTEL_INFO(dev)->gen >= 8) {
2591 ring->irq_enable_mask =
2592 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
2593 ring->irq_get = gen8_ring_get_irq;
2594 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002595 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002596 if (i915_semaphore_is_enabled(dev)) {
Ben Widawsky5ee426c2014-06-30 09:53:38 -07002597 ring->semaphore.sync_to = gen8_ring_sync;
Ben Widawsky3e789982014-06-30 09:53:37 -07002598 ring->semaphore.signal = gen8_xcs_signal;
2599 GEN8_RING_SEMAPHORE_INIT;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002600 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002601 } else {
2602 ring->irq_enable_mask = GT_BLT_USER_INTERRUPT;
2603 ring->irq_get = gen6_ring_get_irq;
2604 ring->irq_put = gen6_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002605 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002606 if (i915_semaphore_is_enabled(dev)) {
2607 ring->semaphore.signal = gen6_signal;
2608 ring->semaphore.sync_to = gen6_ring_sync;
2609 /*
2610 * The current semaphore is only applied on pre-gen8
2611 * platform. And there is no VCS2 ring on the pre-gen8
2612 * platform. So the semaphore between BCS and VCS2 is
2613 * initialized as INVALID. Gen8 will initialize the
2614 * sema between BCS and VCS2 later.
2615 */
2616 ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_BR;
2617 ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_BV;
2618 ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_INVALID;
2619 ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_BVE;
2620 ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2621 ring->semaphore.mbox.signal[RCS] = GEN6_RBSYNC;
2622 ring->semaphore.mbox.signal[VCS] = GEN6_VBSYNC;
2623 ring->semaphore.mbox.signal[BCS] = GEN6_NOSYNC;
2624 ring->semaphore.mbox.signal[VECS] = GEN6_VEBSYNC;
2625 ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
2626 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002627 }
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002628 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01002629
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002630 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002631}
Chris Wilsona7b97612012-07-20 12:41:08 +01002632
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002633int intel_init_vebox_ring_buffer(struct drm_device *dev)
2634{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002635 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002636 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002637
2638 ring->name = "video enhancement ring";
2639 ring->id = VECS;
2640
2641 ring->mmio_base = VEBOX_RING_BASE;
2642 ring->write_tail = ring_write_tail;
2643 ring->flush = gen6_ring_flush;
2644 ring->add_request = gen6_add_request;
2645 ring->get_seqno = gen6_ring_get_seqno;
2646 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002647
2648 if (INTEL_INFO(dev)->gen >= 8) {
2649 ring->irq_enable_mask =
Daniel Vetter40c499f2013-11-07 21:40:39 -08002650 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002651 ring->irq_get = gen8_ring_get_irq;
2652 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002653 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002654 if (i915_semaphore_is_enabled(dev)) {
Ben Widawsky5ee426c2014-06-30 09:53:38 -07002655 ring->semaphore.sync_to = gen8_ring_sync;
Ben Widawsky3e789982014-06-30 09:53:37 -07002656 ring->semaphore.signal = gen8_xcs_signal;
2657 GEN8_RING_SEMAPHORE_INIT;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002658 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002659 } else {
2660 ring->irq_enable_mask = PM_VEBOX_USER_INTERRUPT;
2661 ring->irq_get = hsw_vebox_get_irq;
2662 ring->irq_put = hsw_vebox_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002663 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Ben Widawsky707d9cf2014-06-30 09:53:36 -07002664 if (i915_semaphore_is_enabled(dev)) {
2665 ring->semaphore.sync_to = gen6_ring_sync;
2666 ring->semaphore.signal = gen6_signal;
2667 ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VER;
2668 ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_VEV;
2669 ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VEB;
2670 ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_INVALID;
2671 ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2672 ring->semaphore.mbox.signal[RCS] = GEN6_RVESYNC;
2673 ring->semaphore.mbox.signal[VCS] = GEN6_VVESYNC;
2674 ring->semaphore.mbox.signal[BCS] = GEN6_BVESYNC;
2675 ring->semaphore.mbox.signal[VECS] = GEN6_NOSYNC;
2676 ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
2677 }
Ben Widawskyabd58f02013-11-02 21:07:09 -07002678 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002679 ring->init = init_ring_common;
2680
2681 return intel_init_ring_buffer(dev, ring);
2682}
2683
Chris Wilsona7b97612012-07-20 12:41:08 +01002684int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002685intel_ring_flush_all_caches(struct intel_engine_cs *ring)
Chris Wilsona7b97612012-07-20 12:41:08 +01002686{
2687 int ret;
2688
2689 if (!ring->gpu_caches_dirty)
2690 return 0;
2691
2692 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
2693 if (ret)
2694 return ret;
2695
2696 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
2697
2698 ring->gpu_caches_dirty = false;
2699 return 0;
2700}
2701
2702int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002703intel_ring_invalidate_all_caches(struct intel_engine_cs *ring)
Chris Wilsona7b97612012-07-20 12:41:08 +01002704{
2705 uint32_t flush_domains;
2706 int ret;
2707
2708 flush_domains = 0;
2709 if (ring->gpu_caches_dirty)
2710 flush_domains = I915_GEM_GPU_DOMAINS;
2711
2712 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
2713 if (ret)
2714 return ret;
2715
2716 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
2717
2718 ring->gpu_caches_dirty = false;
2719 return 0;
2720}
Chris Wilsone3efda42014-04-09 09:19:41 +01002721
2722void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002723intel_stop_ring_buffer(struct intel_engine_cs *ring)
Chris Wilsone3efda42014-04-09 09:19:41 +01002724{
2725 int ret;
2726
2727 if (!intel_ring_initialized(ring))
2728 return;
2729
2730 ret = intel_ring_idle(ring);
2731 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
2732 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
2733 ring->name, ret);
2734
2735 stop_ring(ring);
2736}