blob: ab22d70733bf905a8ae5abc0f7bc980ff35244f2 [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
Chris Wilson18393f62014-04-09 09:19:40 +010036/* Early gen2 devices have a cacheline of just 32 bytes, using 64 is overkill,
37 * but keeps the logic simple. Indeed, the whole purpose of this macro is just
38 * to give some inclination as to some of the magic values used in the various
39 * workarounds!
40 */
41#define CACHELINE_BYTES 64
42
Chris Wilsonc7dca472011-01-20 17:00:10 +000043static inline int ring_space(struct intel_ring_buffer *ring)
44{
Ville Syrjälä633cf8f2012-12-03 18:43:32 +020045 int space = (ring->head & HEAD_ADDR) - (ring->tail + I915_RING_FREE_SPACE);
Chris Wilsonc7dca472011-01-20 17:00:10 +000046 if (space < 0)
47 space += ring->size;
48 return space;
49}
50
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020051static bool intel_ring_stopped(struct intel_ring_buffer *ring)
Chris Wilson09246732013-08-10 22:16:32 +010052{
53 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020054 return dev_priv->gpu_error.stop_rings & intel_ring_flag(ring);
55}
Chris Wilson09246732013-08-10 22:16:32 +010056
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020057void __intel_ring_advance(struct intel_ring_buffer *ring)
58{
Chris Wilson09246732013-08-10 22:16:32 +010059 ring->tail &= ring->size - 1;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +020060 if (intel_ring_stopped(ring))
Chris Wilson09246732013-08-10 22:16:32 +010061 return;
62 ring->write_tail(ring, ring->tail);
63}
64
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000065static int
Chris Wilson46f0f8d2012-04-18 11:12:11 +010066gen2_render_ring_flush(struct intel_ring_buffer *ring,
67 u32 invalidate_domains,
68 u32 flush_domains)
69{
70 u32 cmd;
71 int ret;
72
73 cmd = MI_FLUSH;
Daniel Vetter31b14c92012-04-19 16:45:22 +020074 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
Chris Wilson46f0f8d2012-04-18 11:12:11 +010075 cmd |= MI_NO_WRITE_FLUSH;
76
77 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
78 cmd |= MI_READ_FLUSH;
79
80 ret = intel_ring_begin(ring, 2);
81 if (ret)
82 return ret;
83
84 intel_ring_emit(ring, cmd);
85 intel_ring_emit(ring, MI_NOOP);
86 intel_ring_advance(ring);
87
88 return 0;
89}
90
91static int
92gen4_render_ring_flush(struct intel_ring_buffer *ring,
93 u32 invalidate_domains,
94 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -070095{
Chris Wilson78501ea2010-10-27 12:18:21 +010096 struct drm_device *dev = ring->dev;
Chris Wilson6f392d5482010-08-07 11:01:22 +010097 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000098 int ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +010099
Chris Wilson36d527d2011-03-19 22:26:49 +0000100 /*
101 * read/write caches:
102 *
103 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
104 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
105 * also flushed at 2d versus 3d pipeline switches.
106 *
107 * read-only caches:
108 *
109 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
110 * MI_READ_FLUSH is set, and is always flushed on 965.
111 *
112 * I915_GEM_DOMAIN_COMMAND may not exist?
113 *
114 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
115 * invalidated when MI_EXE_FLUSH is set.
116 *
117 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
118 * invalidated with every MI_FLUSH.
119 *
120 * TLBs:
121 *
122 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
123 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
124 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
125 * are flushed at any MI_FLUSH.
126 */
127
128 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100129 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
Chris Wilson36d527d2011-03-19 22:26:49 +0000130 cmd &= ~MI_NO_WRITE_FLUSH;
Chris Wilson36d527d2011-03-19 22:26:49 +0000131 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
132 cmd |= MI_EXE_FLUSH;
133
134 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
135 (IS_G4X(dev) || IS_GEN5(dev)))
136 cmd |= MI_INVALIDATE_ISP;
137
138 ret = intel_ring_begin(ring, 2);
139 if (ret)
140 return ret;
141
142 intel_ring_emit(ring, cmd);
143 intel_ring_emit(ring, MI_NOOP);
144 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000145
146 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800147}
148
Jesse Barnes8d315282011-10-16 10:23:31 +0200149/**
150 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
151 * implementing two workarounds on gen6. From section 1.4.7.1
152 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
153 *
154 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
155 * produced by non-pipelined state commands), software needs to first
156 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
157 * 0.
158 *
159 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
160 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
161 *
162 * And the workaround for these two requires this workaround first:
163 *
164 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
165 * BEFORE the pipe-control with a post-sync op and no write-cache
166 * flushes.
167 *
168 * And this last workaround is tricky because of the requirements on
169 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
170 * volume 2 part 1:
171 *
172 * "1 of the following must also be set:
173 * - Render Target Cache Flush Enable ([12] of DW1)
174 * - Depth Cache Flush Enable ([0] of DW1)
175 * - Stall at Pixel Scoreboard ([1] of DW1)
176 * - Depth Stall ([13] of DW1)
177 * - Post-Sync Operation ([13] of DW1)
178 * - Notify Enable ([8] of DW1)"
179 *
180 * The cache flushes require the workaround flush that triggered this
181 * one, so we can't use it. Depth stall would trigger the same.
182 * Post-sync nonzero is what triggered this second workaround, so we
183 * can't use that one either. Notify enable is IRQs, which aren't
184 * really our business. That leaves only stall at scoreboard.
185 */
186static int
187intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring)
188{
Chris Wilson18393f62014-04-09 09:19:40 +0100189 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Jesse Barnes8d315282011-10-16 10:23:31 +0200190 int ret;
191
192
193 ret = intel_ring_begin(ring, 6);
194 if (ret)
195 return ret;
196
197 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
198 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
199 PIPE_CONTROL_STALL_AT_SCOREBOARD);
200 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
201 intel_ring_emit(ring, 0); /* low dword */
202 intel_ring_emit(ring, 0); /* high dword */
203 intel_ring_emit(ring, MI_NOOP);
204 intel_ring_advance(ring);
205
206 ret = intel_ring_begin(ring, 6);
207 if (ret)
208 return ret;
209
210 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
211 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
212 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
213 intel_ring_emit(ring, 0);
214 intel_ring_emit(ring, 0);
215 intel_ring_emit(ring, MI_NOOP);
216 intel_ring_advance(ring);
217
218 return 0;
219}
220
221static int
222gen6_render_ring_flush(struct intel_ring_buffer *ring,
223 u32 invalidate_domains, u32 flush_domains)
224{
225 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100226 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Jesse Barnes8d315282011-10-16 10:23:31 +0200227 int ret;
228
Paulo Zanonib3111502012-08-17 18:35:42 -0300229 /* Force SNB workarounds for PIPE_CONTROL flushes */
230 ret = intel_emit_post_sync_nonzero_flush(ring);
231 if (ret)
232 return ret;
233
Jesse Barnes8d315282011-10-16 10:23:31 +0200234 /* Just flush everything. Experiments have shown that reducing the
235 * number of bits based on the write domains has little performance
236 * impact.
237 */
Chris Wilson7d54a902012-08-10 10:18:10 +0100238 if (flush_domains) {
239 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
240 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
241 /*
242 * Ensure that any following seqno writes only happen
243 * when the render cache is indeed flushed.
244 */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200245 flags |= PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100246 }
247 if (invalidate_domains) {
248 flags |= PIPE_CONTROL_TLB_INVALIDATE;
249 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
250 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
251 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
252 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
253 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
254 /*
255 * TLB invalidate requires a post-sync write.
256 */
Jesse Barnes3ac78312012-10-25 12:15:47 -0700257 flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100258 }
Jesse Barnes8d315282011-10-16 10:23:31 +0200259
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100260 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200261 if (ret)
262 return ret;
263
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100264 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200265 intel_ring_emit(ring, flags);
266 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100267 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200268 intel_ring_advance(ring);
269
270 return 0;
271}
272
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100273static int
Paulo Zanonif3987632012-08-17 18:35:43 -0300274gen7_render_ring_cs_stall_wa(struct intel_ring_buffer *ring)
275{
276 int ret;
277
278 ret = intel_ring_begin(ring, 4);
279 if (ret)
280 return ret;
281
282 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
283 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
284 PIPE_CONTROL_STALL_AT_SCOREBOARD);
285 intel_ring_emit(ring, 0);
286 intel_ring_emit(ring, 0);
287 intel_ring_advance(ring);
288
289 return 0;
290}
291
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300292static int gen7_ring_fbc_flush(struct intel_ring_buffer *ring, u32 value)
293{
294 int ret;
295
296 if (!ring->fbc_dirty)
297 return 0;
298
Ville Syrjälä37c1d942013-11-06 23:02:20 +0200299 ret = intel_ring_begin(ring, 6);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300300 if (ret)
301 return ret;
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300302 /* WaFbcNukeOn3DBlt:ivb/hsw */
303 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
304 intel_ring_emit(ring, MSG_FBC_REND_STATE);
305 intel_ring_emit(ring, value);
Ville Syrjälä37c1d942013-11-06 23:02:20 +0200306 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) | MI_SRM_LRM_GLOBAL_GTT);
307 intel_ring_emit(ring, MSG_FBC_REND_STATE);
308 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300309 intel_ring_advance(ring);
310
311 ring->fbc_dirty = false;
312 return 0;
313}
314
Paulo Zanonif3987632012-08-17 18:35:43 -0300315static int
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300316gen7_render_ring_flush(struct intel_ring_buffer *ring,
317 u32 invalidate_domains, u32 flush_domains)
318{
319 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100320 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300321 int ret;
322
Paulo Zanonif3987632012-08-17 18:35:43 -0300323 /*
324 * Ensure that any following seqno writes only happen when the render
325 * cache is indeed flushed.
326 *
327 * Workaround: 4th PIPE_CONTROL command (except the ones with only
328 * read-cache invalidate bits set) must have the CS_STALL bit set. We
329 * don't try to be clever and just set it unconditionally.
330 */
331 flags |= PIPE_CONTROL_CS_STALL;
332
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300333 /* Just flush everything. Experiments have shown that reducing the
334 * number of bits based on the write domains has little performance
335 * impact.
336 */
337 if (flush_domains) {
338 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
339 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300340 }
341 if (invalidate_domains) {
342 flags |= PIPE_CONTROL_TLB_INVALIDATE;
343 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
344 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
345 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
346 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
347 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
348 /*
349 * TLB invalidate requires a post-sync write.
350 */
351 flags |= PIPE_CONTROL_QW_WRITE;
Ville Syrjäläb9e1faa2013-02-14 21:53:51 +0200352 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Paulo Zanonif3987632012-08-17 18:35:43 -0300353
354 /* Workaround: we must issue a pipe_control with CS-stall bit
355 * set before a pipe_control command that has the state cache
356 * invalidate bit set. */
357 gen7_render_ring_cs_stall_wa(ring);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300358 }
359
360 ret = intel_ring_begin(ring, 4);
361 if (ret)
362 return ret;
363
364 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
365 intel_ring_emit(ring, flags);
Ville Syrjäläb9e1faa2013-02-14 21:53:51 +0200366 intel_ring_emit(ring, scratch_addr);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300367 intel_ring_emit(ring, 0);
368 intel_ring_advance(ring);
369
Ville Syrjälä9688eca2013-11-06 23:02:19 +0200370 if (!invalidate_domains && flush_domains)
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -0300371 return gen7_ring_fbc_flush(ring, FBC_REND_NUKE);
372
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300373 return 0;
374}
375
Ben Widawskya5f3d682013-11-02 21:07:27 -0700376static int
377gen8_render_ring_flush(struct intel_ring_buffer *ring,
378 u32 invalidate_domains, u32 flush_domains)
379{
380 u32 flags = 0;
Chris Wilson18393f62014-04-09 09:19:40 +0100381 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Ben Widawskya5f3d682013-11-02 21:07:27 -0700382 int ret;
383
384 flags |= PIPE_CONTROL_CS_STALL;
385
386 if (flush_domains) {
387 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
388 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
389 }
390 if (invalidate_domains) {
391 flags |= PIPE_CONTROL_TLB_INVALIDATE;
392 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
393 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
394 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
395 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
396 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
397 flags |= PIPE_CONTROL_QW_WRITE;
398 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
399 }
400
401 ret = intel_ring_begin(ring, 6);
402 if (ret)
403 return ret;
404
405 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(6));
406 intel_ring_emit(ring, flags);
407 intel_ring_emit(ring, scratch_addr);
408 intel_ring_emit(ring, 0);
409 intel_ring_emit(ring, 0);
410 intel_ring_emit(ring, 0);
411 intel_ring_advance(ring);
412
413 return 0;
414
415}
416
Chris Wilson78501ea2010-10-27 12:18:21 +0100417static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100418 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800419{
Jani Nikula4640c4f2014-03-31 14:27:19 +0300420 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100421 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800422}
423
Chris Wilson50877442014-03-21 12:41:53 +0000424u64 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800425{
Jani Nikula4640c4f2014-03-31 14:27:19 +0300426 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson50877442014-03-21 12:41:53 +0000427 u64 acthd;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800428
Chris Wilson50877442014-03-21 12:41:53 +0000429 if (INTEL_INFO(ring->dev)->gen >= 8)
430 acthd = I915_READ64_2x32(RING_ACTHD(ring->mmio_base),
431 RING_ACTHD_UDW(ring->mmio_base));
432 else if (INTEL_INFO(ring->dev)->gen >= 4)
433 acthd = I915_READ(RING_ACTHD(ring->mmio_base));
434 else
435 acthd = I915_READ(ACTHD);
436
437 return acthd;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800438}
439
Daniel Vetter035dc1e2013-07-03 12:56:54 +0200440static void ring_setup_phys_status_page(struct intel_ring_buffer *ring)
441{
442 struct drm_i915_private *dev_priv = ring->dev->dev_private;
443 u32 addr;
444
445 addr = dev_priv->status_page_dmah->busaddr;
446 if (INTEL_INFO(ring->dev)->gen >= 4)
447 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
448 I915_WRITE(HWS_PGA, addr);
449}
450
Chris Wilson9991ae72014-04-02 16:36:07 +0100451static bool stop_ring(struct intel_ring_buffer *ring)
452{
453 struct drm_i915_private *dev_priv = to_i915(ring->dev);
454
455 if (!IS_GEN2(ring->dev)) {
456 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
457 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
458 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
459 return false;
460 }
461 }
462
463 I915_WRITE_CTL(ring, 0);
464 I915_WRITE_HEAD(ring, 0);
465 ring->write_tail(ring, 0);
466
467 if (!IS_GEN2(ring->dev)) {
468 (void)I915_READ_CTL(ring);
469 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
470 }
471
472 return (I915_READ_HEAD(ring) & HEAD_ADDR) == 0;
473}
474
Chris Wilson78501ea2010-10-27 12:18:21 +0100475static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800476{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200477 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300478 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000479 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200480 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800481
Deepak Sc8d9a592013-11-23 14:55:42 +0530482 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200483
Chris Wilson9991ae72014-04-02 16:36:07 +0100484 if (!stop_ring(ring)) {
485 /* G45 ring initialization often fails to reset head to zero */
Chris Wilson6fd0d562010-12-05 20:42:33 +0000486 DRM_DEBUG_KMS("%s head not reset to zero "
487 "ctl %08x head %08x tail %08x start %08x\n",
488 ring->name,
489 I915_READ_CTL(ring),
490 I915_READ_HEAD(ring),
491 I915_READ_TAIL(ring),
492 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800493
Chris Wilson9991ae72014-04-02 16:36:07 +0100494 if (!stop_ring(ring)) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000495 DRM_ERROR("failed to set %s head to zero "
496 "ctl %08x head %08x tail %08x start %08x\n",
497 ring->name,
498 I915_READ_CTL(ring),
499 I915_READ_HEAD(ring),
500 I915_READ_TAIL(ring),
501 I915_READ_START(ring));
Chris Wilson9991ae72014-04-02 16:36:07 +0100502 ret = -EIO;
503 goto out;
Chris Wilson6fd0d562010-12-05 20:42:33 +0000504 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700505 }
506
Chris Wilson9991ae72014-04-02 16:36:07 +0100507 if (I915_NEED_GFX_HWS(dev))
508 intel_ring_setup_status_page(ring);
509 else
510 ring_setup_phys_status_page(ring);
511
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200512 /* Initialize the ring. This must happen _after_ we've cleared the ring
513 * registers with the above sequence (the readback of the HEAD registers
514 * also enforces ordering), otherwise the hw might lose the new ring
515 * register values. */
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700516 I915_WRITE_START(ring, i915_gem_obj_ggtt_offset(obj));
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200517 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000518 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000519 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800520
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800521 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400522 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700523 I915_READ_START(ring) == i915_gem_obj_ggtt_offset(obj) &&
Sean Paulf01db982012-03-16 12:43:22 -0400524 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000525 DRM_ERROR("%s initialization failed "
Chris Wilson48e48a02014-04-09 09:19:44 +0100526 "ctl %08x (valid? %d) head %08x tail %08x start %08x [expected %08lx]\n",
527 ring->name,
528 I915_READ_CTL(ring), I915_READ_CTL(ring) & RING_VALID,
529 I915_READ_HEAD(ring), I915_READ_TAIL(ring),
530 I915_READ_START(ring), (unsigned long)i915_gem_obj_ggtt_offset(obj));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200531 ret = -EIO;
532 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800533 }
534
Chris Wilson78501ea2010-10-27 12:18:21 +0100535 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
536 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800537 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000538 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200539 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000540 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100541 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800542 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000543
Chris Wilson50f018d2013-06-10 11:20:19 +0100544 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
545
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200546out:
Deepak Sc8d9a592013-11-23 14:55:42 +0530547 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200548
549 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700550}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800551
Chris Wilsonc6df5412010-12-15 09:56:50 +0000552static int
553init_pipe_control(struct intel_ring_buffer *ring)
554{
Chris Wilsonc6df5412010-12-15 09:56:50 +0000555 int ret;
556
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100557 if (ring->scratch.obj)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000558 return 0;
559
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100560 ring->scratch.obj = i915_gem_alloc_object(ring->dev, 4096);
561 if (ring->scratch.obj == NULL) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000562 DRM_ERROR("Failed to allocate seqno page\n");
563 ret = -ENOMEM;
564 goto err;
565 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100566
Daniel Vettera9cc7262014-02-14 14:01:13 +0100567 ret = i915_gem_object_set_cache_level(ring->scratch.obj, I915_CACHE_LLC);
568 if (ret)
569 goto err_unref;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000570
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100571 ret = i915_gem_obj_ggtt_pin(ring->scratch.obj, 4096, 0);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000572 if (ret)
573 goto err_unref;
574
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100575 ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(ring->scratch.obj);
576 ring->scratch.cpu_page = kmap(sg_page(ring->scratch.obj->pages->sgl));
577 if (ring->scratch.cpu_page == NULL) {
Wei Yongjun56b085a2013-05-28 17:51:44 +0800578 ret = -ENOMEM;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000579 goto err_unpin;
Wei Yongjun56b085a2013-05-28 17:51:44 +0800580 }
Chris Wilsonc6df5412010-12-15 09:56:50 +0000581
Ville Syrjälä2b1086c2013-02-12 22:01:38 +0200582 DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100583 ring->name, ring->scratch.gtt_offset);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000584 return 0;
585
586err_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800587 i915_gem_object_ggtt_unpin(ring->scratch.obj);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000588err_unref:
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100589 drm_gem_object_unreference(&ring->scratch.obj->base);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000590err:
Chris Wilsonc6df5412010-12-15 09:56:50 +0000591 return ret;
592}
593
Chris Wilson78501ea2010-10-27 12:18:21 +0100594static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800595{
Chris Wilson78501ea2010-10-27 12:18:21 +0100596 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000597 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100598 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800599
Akash Goel61a563a2014-03-25 18:01:50 +0530600 /* WaTimedSingleVertexDispatch:cl,bw,ctg,elk,ilk,snb */
601 if (INTEL_INFO(dev)->gen >= 4 && INTEL_INFO(dev)->gen < 7)
Daniel Vetter6b26c862012-04-24 14:04:12 +0200602 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000603
604 /* We need to disable the AsyncFlip performance optimisations in order
605 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
606 * programmed to '1' on all products.
Damien Lespiau8693a822013-05-03 18:48:11 +0100607 *
Ville Syrjälä82852222014-02-27 21:59:03 +0200608 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000609 */
610 if (INTEL_INFO(dev)->gen >= 6)
611 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
612
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000613 /* Required for the hardware to program scanline values for waiting */
Akash Goel01fa0302014-03-24 23:00:04 +0530614 /* WaEnableFlushTlbInvalidationMode:snb */
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000615 if (INTEL_INFO(dev)->gen == 6)
616 I915_WRITE(GFX_MODE,
Chris Wilsonaa83e302014-03-21 17:18:54 +0000617 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT));
Chris Wilsonf05bb0c2013-01-20 16:33:32 +0000618
Akash Goel01fa0302014-03-24 23:00:04 +0530619 /* WaBCSVCSTlbInvalidationMode:ivb,vlv,hsw */
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000620 if (IS_GEN7(dev))
621 I915_WRITE(GFX_MODE_GEN7,
Akash Goel01fa0302014-03-24 23:00:04 +0530622 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT) |
Chris Wilson1c8c38c2013-01-20 16:11:20 +0000623 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Chris Wilson78501ea2010-10-27 12:18:21 +0100624
Jesse Barnes8d315282011-10-16 10:23:31 +0200625 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000626 ret = init_pipe_control(ring);
627 if (ret)
628 return ret;
629 }
630
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200631 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700632 /* From the Sandybridge PRM, volume 1 part 3, page 24:
633 * "If this bit is set, STCunit will have LRA as replacement
634 * policy. [...] This bit must be reset. LRA replacement
635 * policy is not supported."
636 */
637 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200638 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky84f9f932011-12-12 19:21:58 -0800639 }
640
Daniel Vetter6b26c862012-04-24 14:04:12 +0200641 if (INTEL_INFO(dev)->gen >= 6)
642 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000643
Ben Widawsky040d2ba2013-09-19 11:01:40 -0700644 if (HAS_L3_DPF(dev))
Ben Widawsky35a85ac2013-09-19 11:13:41 -0700645 I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
Ben Widawsky15b9f802012-05-25 16:56:23 -0700646
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800647 return ret;
648}
649
Chris Wilsonc6df5412010-12-15 09:56:50 +0000650static void render_ring_cleanup(struct intel_ring_buffer *ring)
651{
Daniel Vetterb45305f2012-12-17 16:21:27 +0100652 struct drm_device *dev = ring->dev;
653
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100654 if (ring->scratch.obj == NULL)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000655 return;
656
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100657 if (INTEL_INFO(dev)->gen >= 5) {
658 kunmap(sg_page(ring->scratch.obj->pages->sgl));
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800659 i915_gem_object_ggtt_unpin(ring->scratch.obj);
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100660 }
Daniel Vetterb45305f2012-12-17 16:21:27 +0100661
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100662 drm_gem_object_unreference(&ring->scratch.obj->base);
663 ring->scratch.obj = NULL;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000664}
665
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000666static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700667update_mboxes(struct intel_ring_buffer *ring,
Chris Wilson9d7730912012-11-27 16:22:52 +0000668 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000669{
Ben Widawskyad776f82013-05-28 19:22:18 -0700670/* NB: In order to be able to do semaphore MBOX updates for varying number
671 * of rings, it's easiest if we round up each individual update to a
672 * multiple of 2 (since ring updates must always be a multiple of 2)
673 * even though the actual update only requires 3 dwords.
674 */
675#define MBOX_UPDATE_DWORDS 4
Chris Wilson1c8b46f2012-11-14 09:15:14 +0000676 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700677 intel_ring_emit(ring, mmio_offset);
Chris Wilson18235212013-09-04 10:45:51 +0100678 intel_ring_emit(ring, ring->outstanding_lazy_seqno);
Ben Widawskyad776f82013-05-28 19:22:18 -0700679 intel_ring_emit(ring, MI_NOOP);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000680}
681
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700682/**
683 * gen6_add_request - Update the semaphore mailbox registers
684 *
685 * @ring - ring that is adding a request
686 * @seqno - return seqno stuck into the ring
687 *
688 * Update the mailbox registers in the *other* rings with the current seqno.
689 * This acts like a signal in the canonical semaphore.
690 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000691static int
Chris Wilson9d7730912012-11-27 16:22:52 +0000692gen6_add_request(struct intel_ring_buffer *ring)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000693{
Ben Widawskyad776f82013-05-28 19:22:18 -0700694 struct drm_device *dev = ring->dev;
695 struct drm_i915_private *dev_priv = dev->dev_private;
696 struct intel_ring_buffer *useless;
Ben Widawsky52ed2322013-12-16 20:50:38 -0800697 int i, ret, num_dwords = 4;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000698
Ben Widawsky52ed2322013-12-16 20:50:38 -0800699 if (i915_semaphore_is_enabled(dev))
700 num_dwords += ((I915_NUM_RINGS-1) * MBOX_UPDATE_DWORDS);
701#undef MBOX_UPDATE_DWORDS
702
703 ret = intel_ring_begin(ring, num_dwords);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000704 if (ret)
705 return ret;
706
Ben Widawskyf0a9f742013-12-17 20:06:00 -0800707 if (i915_semaphore_is_enabled(dev)) {
708 for_each_ring(useless, dev_priv, i) {
709 u32 mbox_reg = ring->signal_mbox[i];
710 if (mbox_reg != GEN6_NOSYNC)
711 update_mboxes(ring, mbox_reg);
712 }
Ben Widawskyad776f82013-05-28 19:22:18 -0700713 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000714
715 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
716 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Chris Wilson18235212013-09-04 10:45:51 +0100717 intel_ring_emit(ring, ring->outstanding_lazy_seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000718 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson09246732013-08-10 22:16:32 +0100719 __intel_ring_advance(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000720
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000721 return 0;
722}
723
Mika Kuoppalaf72b3432012-12-10 15:41:48 +0200724static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev,
725 u32 seqno)
726{
727 struct drm_i915_private *dev_priv = dev->dev_private;
728 return dev_priv->last_seqno < seqno;
729}
730
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700731/**
732 * intel_ring_sync - sync the waiter to the signaller on seqno
733 *
734 * @waiter - ring that is waiting
735 * @signaller - ring which has, or will signal
736 * @seqno - seqno which the waiter will block on
737 */
738static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200739gen6_ring_sync(struct intel_ring_buffer *waiter,
740 struct intel_ring_buffer *signaller,
741 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000742{
743 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700744 u32 dw1 = MI_SEMAPHORE_MBOX |
745 MI_SEMAPHORE_COMPARE |
746 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000747
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700748 /* Throughout all of the GEM code, seqno passed implies our current
749 * seqno is >= the last seqno executed. However for hardware the
750 * comparison is strictly greater than.
751 */
752 seqno -= 1;
753
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200754 WARN_ON(signaller->semaphore_register[waiter->id] ==
755 MI_SEMAPHORE_SYNC_INVALID);
756
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700757 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000758 if (ret)
759 return ret;
760
Mika Kuoppalaf72b3432012-12-10 15:41:48 +0200761 /* If seqno wrap happened, omit the wait with no-ops */
762 if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) {
763 intel_ring_emit(waiter,
764 dw1 |
765 signaller->semaphore_register[waiter->id]);
766 intel_ring_emit(waiter, seqno);
767 intel_ring_emit(waiter, 0);
768 intel_ring_emit(waiter, MI_NOOP);
769 } else {
770 intel_ring_emit(waiter, MI_NOOP);
771 intel_ring_emit(waiter, MI_NOOP);
772 intel_ring_emit(waiter, MI_NOOP);
773 intel_ring_emit(waiter, MI_NOOP);
774 }
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700775 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000776
777 return 0;
778}
779
Chris Wilsonc6df5412010-12-15 09:56:50 +0000780#define PIPE_CONTROL_FLUSH(ring__, addr__) \
781do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200782 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
783 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000784 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
785 intel_ring_emit(ring__, 0); \
786 intel_ring_emit(ring__, 0); \
787} while (0)
788
789static int
Chris Wilson9d7730912012-11-27 16:22:52 +0000790pc_render_add_request(struct intel_ring_buffer *ring)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000791{
Chris Wilson18393f62014-04-09 09:19:40 +0100792 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000793 int ret;
794
795 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
796 * incoherent with writes to memory, i.e. completely fubar,
797 * so we need to use PIPE_NOTIFY instead.
798 *
799 * However, we also need to workaround the qword write
800 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
801 * memory before requesting an interrupt.
802 */
803 ret = intel_ring_begin(ring, 32);
804 if (ret)
805 return ret;
806
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200807 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200808 PIPE_CONTROL_WRITE_FLUSH |
809 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100810 intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson18235212013-09-04 10:45:51 +0100811 intel_ring_emit(ring, ring->outstanding_lazy_seqno);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000812 intel_ring_emit(ring, 0);
813 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +0100814 scratch_addr += 2 * CACHELINE_BYTES; /* write to separate cachelines */
Chris Wilsonc6df5412010-12-15 09:56:50 +0000815 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +0100816 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000817 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +0100818 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000819 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +0100820 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000821 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilson18393f62014-04-09 09:19:40 +0100822 scratch_addr += 2 * CACHELINE_BYTES;
Chris Wilsonc6df5412010-12-15 09:56:50 +0000823 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000824
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200825 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200826 PIPE_CONTROL_WRITE_FLUSH |
827 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000828 PIPE_CONTROL_NOTIFY);
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100829 intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson18235212013-09-04 10:45:51 +0100830 intel_ring_emit(ring, ring->outstanding_lazy_seqno);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000831 intel_ring_emit(ring, 0);
Chris Wilson09246732013-08-10 22:16:32 +0100832 __intel_ring_advance(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000833
Chris Wilsonc6df5412010-12-15 09:56:50 +0000834 return 0;
835}
836
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800837static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100838gen6_ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100839{
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100840 /* Workaround to force correct ordering between irq and seqno writes on
841 * ivb (and maybe also on snb) by reading from a CS register (like
842 * ACTHD) before reading the status page. */
Chris Wilson50877442014-03-21 12:41:53 +0000843 if (!lazy_coherency) {
844 struct drm_i915_private *dev_priv = ring->dev->dev_private;
845 POSTING_READ(RING_ACTHD(ring->mmio_base));
846 }
847
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100848 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
849}
850
851static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100852ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800853{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000854 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
855}
856
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200857static void
858ring_set_seqno(struct intel_ring_buffer *ring, u32 seqno)
859{
860 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
861}
862
Chris Wilsonc6df5412010-12-15 09:56:50 +0000863static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100864pc_render_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000865{
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100866 return ring->scratch.cpu_page[0];
Chris Wilsonc6df5412010-12-15 09:56:50 +0000867}
868
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200869static void
870pc_render_set_seqno(struct intel_ring_buffer *ring, u32 seqno)
871{
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100872 ring->scratch.cpu_page[0] = seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200873}
874
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000875static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200876gen5_ring_get_irq(struct intel_ring_buffer *ring)
877{
878 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300879 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100880 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200881
882 if (!dev->irq_enabled)
883 return false;
884
Chris Wilson7338aef2012-04-24 21:48:47 +0100885 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300886 if (ring->irq_refcount++ == 0)
887 ilk_enable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson7338aef2012-04-24 21:48:47 +0100888 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200889
890 return true;
891}
892
893static void
894gen5_ring_put_irq(struct intel_ring_buffer *ring)
895{
896 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300897 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100898 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200899
Chris Wilson7338aef2012-04-24 21:48:47 +0100900 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300901 if (--ring->irq_refcount == 0)
902 ilk_disable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson7338aef2012-04-24 21:48:47 +0100903 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200904}
905
906static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200907i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700908{
Chris Wilson78501ea2010-10-27 12:18:21 +0100909 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300910 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100911 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700912
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000913 if (!dev->irq_enabled)
914 return false;
915
Chris Wilson7338aef2012-04-24 21:48:47 +0100916 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +0200917 if (ring->irq_refcount++ == 0) {
Daniel Vetterf637fde2012-04-11 22:12:59 +0200918 dev_priv->irq_mask &= ~ring->irq_enable_mask;
919 I915_WRITE(IMR, dev_priv->irq_mask);
920 POSTING_READ(IMR);
921 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100922 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000923
924 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700925}
926
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800927static void
Daniel Vettere3670312012-04-11 22:12:53 +0200928i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700929{
Chris Wilson78501ea2010-10-27 12:18:21 +0100930 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300931 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100932 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700933
Chris Wilson7338aef2012-04-24 21:48:47 +0100934 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +0200935 if (--ring->irq_refcount == 0) {
Daniel Vetterf637fde2012-04-11 22:12:59 +0200936 dev_priv->irq_mask |= ring->irq_enable_mask;
937 I915_WRITE(IMR, dev_priv->irq_mask);
938 POSTING_READ(IMR);
939 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100940 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700941}
942
Chris Wilsonc2798b12012-04-22 21:13:57 +0100943static bool
944i8xx_ring_get_irq(struct intel_ring_buffer *ring)
945{
946 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300947 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100948 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100949
950 if (!dev->irq_enabled)
951 return false;
952
Chris Wilson7338aef2012-04-24 21:48:47 +0100953 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +0200954 if (ring->irq_refcount++ == 0) {
Chris Wilsonc2798b12012-04-22 21:13:57 +0100955 dev_priv->irq_mask &= ~ring->irq_enable_mask;
956 I915_WRITE16(IMR, dev_priv->irq_mask);
957 POSTING_READ16(IMR);
958 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100959 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100960
961 return true;
962}
963
964static void
965i8xx_ring_put_irq(struct intel_ring_buffer *ring)
966{
967 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300968 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100969 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100970
Chris Wilson7338aef2012-04-24 21:48:47 +0100971 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +0200972 if (--ring->irq_refcount == 0) {
Chris Wilsonc2798b12012-04-22 21:13:57 +0100973 dev_priv->irq_mask |= ring->irq_enable_mask;
974 I915_WRITE16(IMR, dev_priv->irq_mask);
975 POSTING_READ16(IMR);
976 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100977 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100978}
979
Chris Wilson78501ea2010-10-27 12:18:21 +0100980void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800981{
Eric Anholt45930102011-05-06 17:12:35 -0700982 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +0300983 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700984 u32 mmio = 0;
985
986 /* The ring status page addresses are no longer next to the rest of
987 * the ring registers as of gen7.
988 */
989 if (IS_GEN7(dev)) {
990 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100991 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700992 mmio = RENDER_HWS_PGA_GEN7;
993 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100994 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700995 mmio = BLT_HWS_PGA_GEN7;
996 break;
Zhao Yakui77fe2ff2014-04-17 10:37:39 +0800997 /*
998 * VCS2 actually doesn't exist on Gen7. Only shut up
999 * gcc switch check warning
1000 */
1001 case VCS2:
Daniel Vetter96154f22011-12-14 13:57:00 +01001002 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -07001003 mmio = BSD_HWS_PGA_GEN7;
1004 break;
Ben Widawsky4a3dd192013-05-28 19:22:19 -07001005 case VECS:
Ben Widawsky9a8a2212013-05-28 19:22:23 -07001006 mmio = VEBOX_HWS_PGA_GEN7;
1007 break;
Eric Anholt45930102011-05-06 17:12:35 -07001008 }
1009 } else if (IS_GEN6(ring->dev)) {
1010 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
1011 } else {
Ben Widawskyeb0d4b72013-11-07 21:40:50 -08001012 /* XXX: gen8 returns to sanity */
Eric Anholt45930102011-05-06 17:12:35 -07001013 mmio = RING_HWS_PGA(ring->mmio_base);
1014 }
1015
Chris Wilson78501ea2010-10-27 12:18:21 +01001016 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
1017 POSTING_READ(mmio);
Chris Wilson884020b2013-08-06 19:01:14 +01001018
Damien Lespiaudc616b82014-03-13 01:40:28 +00001019 /*
1020 * Flush the TLB for this page
1021 *
1022 * FIXME: These two bits have disappeared on gen8, so a question
1023 * arises: do we still need this and if so how should we go about
1024 * invalidating the TLB?
1025 */
1026 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) {
Chris Wilson884020b2013-08-06 19:01:14 +01001027 u32 reg = RING_INSTPM(ring->mmio_base);
Naresh Kumar Kachhi02f6a1e2014-03-12 16:39:42 +05301028
1029 /* ring should be idle before issuing a sync flush*/
1030 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
1031
Chris Wilson884020b2013-08-06 19:01:14 +01001032 I915_WRITE(reg,
1033 _MASKED_BIT_ENABLE(INSTPM_TLB_INVALIDATE |
1034 INSTPM_SYNC_FLUSH));
1035 if (wait_for((I915_READ(reg) & INSTPM_SYNC_FLUSH) == 0,
1036 1000))
1037 DRM_ERROR("%s: wait for SyncFlush to complete for TLB invalidation timed out\n",
1038 ring->name);
1039 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001040}
1041
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001042static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001043bsd_ring_flush(struct intel_ring_buffer *ring,
1044 u32 invalidate_domains,
1045 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001046{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001047 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001048
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001049 ret = intel_ring_begin(ring, 2);
1050 if (ret)
1051 return ret;
1052
1053 intel_ring_emit(ring, MI_FLUSH);
1054 intel_ring_emit(ring, MI_NOOP);
1055 intel_ring_advance(ring);
1056 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001057}
1058
Chris Wilson3cce4692010-10-27 16:11:02 +01001059static int
Chris Wilson9d7730912012-11-27 16:22:52 +00001060i9xx_add_request(struct intel_ring_buffer *ring)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001061{
Chris Wilson3cce4692010-10-27 16:11:02 +01001062 int ret;
1063
1064 ret = intel_ring_begin(ring, 4);
1065 if (ret)
1066 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +01001067
Chris Wilson3cce4692010-10-27 16:11:02 +01001068 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
1069 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Chris Wilson18235212013-09-04 10:45:51 +01001070 intel_ring_emit(ring, ring->outstanding_lazy_seqno);
Chris Wilson3cce4692010-10-27 16:11:02 +01001071 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson09246732013-08-10 22:16:32 +01001072 __intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001073
Chris Wilson3cce4692010-10-27 16:11:02 +01001074 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +08001075}
1076
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001077static bool
Ben Widawsky25c06302012-03-29 19:11:27 -07001078gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +00001079{
1080 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001081 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001082 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +00001083
1084 if (!dev->irq_enabled)
1085 return false;
1086
Chris Wilson7338aef2012-04-24 21:48:47 +01001087 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001088 if (ring->irq_refcount++ == 0) {
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001089 if (HAS_L3_DPF(dev) && ring->id == RCS)
Ben Widawskycc609d52013-05-28 19:22:29 -07001090 I915_WRITE_IMR(ring,
1091 ~(ring->irq_enable_mask |
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001092 GT_PARITY_ERROR(dev)));
Ben Widawsky15b9f802012-05-25 16:56:23 -07001093 else
1094 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Paulo Zanoni43eaea12013-08-06 18:57:12 -03001095 ilk_enable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson0f468322011-01-04 17:35:21 +00001096 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001097 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +00001098
1099 return true;
1100}
1101
1102static void
Ben Widawsky25c06302012-03-29 19:11:27 -07001103gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +00001104{
1105 struct drm_device *dev = ring->dev;
Jani Nikula4640c4f2014-03-31 14:27:19 +03001106 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +01001107 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +00001108
Chris Wilson7338aef2012-04-24 21:48:47 +01001109 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001110 if (--ring->irq_refcount == 0) {
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001111 if (HAS_L3_DPF(dev) && ring->id == RCS)
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001112 I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
Ben Widawsky15b9f802012-05-25 16:56:23 -07001113 else
1114 I915_WRITE_IMR(ring, ~0);
Paulo Zanoni43eaea12013-08-06 18:57:12 -03001115 ilk_disable_gt_irq(dev_priv, ring->irq_enable_mask);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001116 }
Chris Wilson7338aef2012-04-24 21:48:47 +01001117 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001118}
1119
Ben Widawskya19d2932013-05-28 19:22:30 -07001120static bool
1121hsw_vebox_get_irq(struct intel_ring_buffer *ring)
1122{
1123 struct drm_device *dev = ring->dev;
1124 struct drm_i915_private *dev_priv = dev->dev_private;
1125 unsigned long flags;
1126
1127 if (!dev->irq_enabled)
1128 return false;
1129
Daniel Vetter59cdb632013-07-04 23:35:28 +02001130 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001131 if (ring->irq_refcount++ == 0) {
Ben Widawskya19d2932013-05-28 19:22:30 -07001132 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001133 snb_enable_pm_irq(dev_priv, ring->irq_enable_mask);
Ben Widawskya19d2932013-05-28 19:22:30 -07001134 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001135 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Ben Widawskya19d2932013-05-28 19:22:30 -07001136
1137 return true;
1138}
1139
1140static void
1141hsw_vebox_put_irq(struct intel_ring_buffer *ring)
1142{
1143 struct drm_device *dev = ring->dev;
1144 struct drm_i915_private *dev_priv = dev->dev_private;
1145 unsigned long flags;
1146
1147 if (!dev->irq_enabled)
1148 return;
1149
Daniel Vetter59cdb632013-07-04 23:35:28 +02001150 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterc7113cc2013-07-04 23:35:29 +02001151 if (--ring->irq_refcount == 0) {
Ben Widawskya19d2932013-05-28 19:22:30 -07001152 I915_WRITE_IMR(ring, ~0);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001153 snb_disable_pm_irq(dev_priv, ring->irq_enable_mask);
Ben Widawskya19d2932013-05-28 19:22:30 -07001154 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001155 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Ben Widawskya19d2932013-05-28 19:22:30 -07001156}
1157
Ben Widawskyabd58f02013-11-02 21:07:09 -07001158static bool
1159gen8_ring_get_irq(struct intel_ring_buffer *ring)
1160{
1161 struct drm_device *dev = ring->dev;
1162 struct drm_i915_private *dev_priv = dev->dev_private;
1163 unsigned long flags;
1164
1165 if (!dev->irq_enabled)
1166 return false;
1167
1168 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1169 if (ring->irq_refcount++ == 0) {
1170 if (HAS_L3_DPF(dev) && ring->id == RCS) {
1171 I915_WRITE_IMR(ring,
1172 ~(ring->irq_enable_mask |
1173 GT_RENDER_L3_PARITY_ERROR_INTERRUPT));
1174 } else {
1175 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
1176 }
1177 POSTING_READ(RING_IMR(ring->mmio_base));
1178 }
1179 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1180
1181 return true;
1182}
1183
1184static void
1185gen8_ring_put_irq(struct intel_ring_buffer *ring)
1186{
1187 struct drm_device *dev = ring->dev;
1188 struct drm_i915_private *dev_priv = dev->dev_private;
1189 unsigned long flags;
1190
1191 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1192 if (--ring->irq_refcount == 0) {
1193 if (HAS_L3_DPF(dev) && ring->id == RCS) {
1194 I915_WRITE_IMR(ring,
1195 ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT);
1196 } else {
1197 I915_WRITE_IMR(ring, ~0);
1198 }
1199 POSTING_READ(RING_IMR(ring->mmio_base));
1200 }
1201 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1202}
1203
Zou Nan haid1b851f2010-05-21 09:08:57 +08001204static int
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001205i965_dispatch_execbuffer(struct intel_ring_buffer *ring,
1206 u32 offset, u32 length,
1207 unsigned flags)
Zou Nan haid1b851f2010-05-21 09:08:57 +08001208{
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001209 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001210
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001211 ret = intel_ring_begin(ring, 2);
1212 if (ret)
1213 return ret;
1214
Chris Wilson78501ea2010-10-27 12:18:21 +01001215 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +01001216 MI_BATCH_BUFFER_START |
1217 MI_BATCH_GTT |
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001218 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001219 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +01001220 intel_ring_advance(ring);
1221
Zou Nan haid1b851f2010-05-21 09:08:57 +08001222 return 0;
1223}
1224
Daniel Vetterb45305f2012-12-17 16:21:27 +01001225/* Just userspace ABI convention to limit the wa batch bo to a resonable size */
1226#define I830_BATCH_LIMIT (256*1024)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001227static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001228i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001229 u32 offset, u32 len,
1230 unsigned flags)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001231{
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001232 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001233
Daniel Vetterb45305f2012-12-17 16:21:27 +01001234 if (flags & I915_DISPATCH_PINNED) {
1235 ret = intel_ring_begin(ring, 4);
1236 if (ret)
1237 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001238
Daniel Vetterb45305f2012-12-17 16:21:27 +01001239 intel_ring_emit(ring, MI_BATCH_BUFFER);
1240 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
1241 intel_ring_emit(ring, offset + len - 8);
1242 intel_ring_emit(ring, MI_NOOP);
1243 intel_ring_advance(ring);
1244 } else {
Chris Wilson0d1aaca2013-08-26 20:58:11 +01001245 u32 cs_offset = ring->scratch.gtt_offset;
Daniel Vetterb45305f2012-12-17 16:21:27 +01001246
1247 if (len > I830_BATCH_LIMIT)
1248 return -ENOSPC;
1249
1250 ret = intel_ring_begin(ring, 9+3);
1251 if (ret)
1252 return ret;
1253 /* Blit the batch (which has now all relocs applied) to the stable batch
1254 * scratch bo area (so that the CS never stumbles over its tlb
1255 * invalidation bug) ... */
1256 intel_ring_emit(ring, XY_SRC_COPY_BLT_CMD |
1257 XY_SRC_COPY_BLT_WRITE_ALPHA |
1258 XY_SRC_COPY_BLT_WRITE_RGB);
1259 intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_GXCOPY | 4096);
1260 intel_ring_emit(ring, 0);
1261 intel_ring_emit(ring, (DIV_ROUND_UP(len, 4096) << 16) | 1024);
1262 intel_ring_emit(ring, cs_offset);
1263 intel_ring_emit(ring, 0);
1264 intel_ring_emit(ring, 4096);
1265 intel_ring_emit(ring, offset);
1266 intel_ring_emit(ring, MI_FLUSH);
1267
1268 /* ... and execute it. */
1269 intel_ring_emit(ring, MI_BATCH_BUFFER);
1270 intel_ring_emit(ring, cs_offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
1271 intel_ring_emit(ring, cs_offset + len - 8);
1272 intel_ring_advance(ring);
1273 }
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001274
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001275 return 0;
1276}
1277
1278static int
1279i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001280 u32 offset, u32 len,
1281 unsigned flags)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001282{
1283 int ret;
1284
1285 ret = intel_ring_begin(ring, 2);
1286 if (ret)
1287 return ret;
1288
Chris Wilson65f56872012-04-17 16:38:12 +01001289 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001290 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001291 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001292
Eric Anholt62fdfea2010-05-21 13:26:39 -07001293 return 0;
1294}
1295
Chris Wilson78501ea2010-10-27 12:18:21 +01001296static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001297{
Chris Wilson05394f32010-11-08 19:18:58 +00001298 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001299
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001300 obj = ring->status_page.obj;
1301 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001302 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001303
Chris Wilson9da3da62012-06-01 15:20:22 +01001304 kunmap(sg_page(obj->pages->sgl));
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001305 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001306 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001307 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001308}
1309
Chris Wilson78501ea2010-10-27 12:18:21 +01001310static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001311{
Chris Wilson05394f32010-11-08 19:18:58 +00001312 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001313
Chris Wilsone3efda42014-04-09 09:19:41 +01001314 if ((obj = ring->status_page.obj) == NULL) {
1315 int ret;
1316
1317 obj = i915_gem_alloc_object(ring->dev, 4096);
1318 if (obj == NULL) {
1319 DRM_ERROR("Failed to allocate status page\n");
1320 return -ENOMEM;
1321 }
1322
1323 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
1324 if (ret)
1325 goto err_unref;
1326
1327 ret = i915_gem_obj_ggtt_pin(obj, 4096, 0);
1328 if (ret) {
1329err_unref:
1330 drm_gem_object_unreference(&obj->base);
1331 return ret;
1332 }
1333
1334 ring->status_page.obj = obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001335 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01001336
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001337 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01001338 ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001339 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001340
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001341 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
1342 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001343
1344 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001345}
1346
Daniel Vetter035dc1e2013-07-03 12:56:54 +02001347static int init_phys_status_page(struct intel_ring_buffer *ring)
Chris Wilson6b8294a2012-11-16 11:43:20 +00001348{
1349 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6b8294a2012-11-16 11:43:20 +00001350
1351 if (!dev_priv->status_page_dmah) {
1352 dev_priv->status_page_dmah =
1353 drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE);
1354 if (!dev_priv->status_page_dmah)
1355 return -ENOMEM;
1356 }
1357
Chris Wilson6b8294a2012-11-16 11:43:20 +00001358 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1359 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1360
1361 return 0;
1362}
1363
Chris Wilsone3efda42014-04-09 09:19:41 +01001364static int allocate_ring_buffer(struct intel_ring_buffer *ring)
1365{
1366 struct drm_device *dev = ring->dev;
1367 struct drm_i915_private *dev_priv = to_i915(dev);
1368 struct drm_i915_gem_object *obj;
1369 int ret;
1370
1371 if (ring->obj)
1372 return 0;
1373
1374 obj = NULL;
1375 if (!HAS_LLC(dev))
1376 obj = i915_gem_object_create_stolen(dev, ring->size);
1377 if (obj == NULL)
1378 obj = i915_gem_alloc_object(dev, ring->size);
1379 if (obj == NULL)
1380 return -ENOMEM;
1381
1382 ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE, PIN_MAPPABLE);
1383 if (ret)
1384 goto err_unref;
1385
1386 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1387 if (ret)
1388 goto err_unpin;
1389
1390 ring->virtual_start =
1391 ioremap_wc(dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj),
1392 ring->size);
1393 if (ring->virtual_start == NULL) {
1394 ret = -EINVAL;
1395 goto err_unpin;
1396 }
1397
1398 ring->obj = obj;
1399 return 0;
1400
1401err_unpin:
1402 i915_gem_object_ggtt_unpin(obj);
1403err_unref:
1404 drm_gem_object_unreference(&obj->base);
1405 return ret;
1406}
1407
Ben Widawskyc43b5632012-04-16 14:07:40 -07001408static int intel_init_ring_buffer(struct drm_device *dev,
1409 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001410{
Chris Wilsondd785e32010-08-07 11:01:34 +01001411 int ret;
1412
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001413 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001414 INIT_LIST_HEAD(&ring->active_list);
1415 INIT_LIST_HEAD(&ring->request_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001416 ring->size = 32 * PAGE_SIZE;
Chris Wilson9d7730912012-11-27 16:22:52 +00001417 memset(ring->sync_seqno, 0, sizeof(ring->sync_seqno));
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001418
Chris Wilsonb259f672011-03-29 13:19:09 +01001419 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001420
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001421 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001422 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001423 if (ret)
1424 return ret;
Chris Wilson6b8294a2012-11-16 11:43:20 +00001425 } else {
1426 BUG_ON(ring->id != RCS);
Daniel Vetter035dc1e2013-07-03 12:56:54 +02001427 ret = init_phys_status_page(ring);
Chris Wilson6b8294a2012-11-16 11:43:20 +00001428 if (ret)
1429 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001430 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001431
Chris Wilsone3efda42014-04-09 09:19:41 +01001432 ret = allocate_ring_buffer(ring);
1433 if (ret) {
1434 DRM_ERROR("Failed to allocate ringbuffer %s: %d\n", ring->name, ret);
1435 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001436 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001437
Chris Wilson55249ba2010-12-22 14:04:47 +00001438 /* Workaround an erratum on the i830 which causes a hang if
1439 * the TAIL pointer points to within the last 2 cachelines
1440 * of the buffer.
1441 */
1442 ring->effective_size = ring->size;
Chris Wilsone3efda42014-04-09 09:19:41 +01001443 if (IS_I830(dev) || IS_845G(dev))
Chris Wilson18393f62014-04-09 09:19:40 +01001444 ring->effective_size -= 2 * CACHELINE_BYTES;
Chris Wilson55249ba2010-12-22 14:04:47 +00001445
Brad Volkin351e3db2014-02-18 10:15:46 -08001446 i915_cmd_parser_init_ring(ring);
1447
Chris Wilsone3efda42014-04-09 09:19:41 +01001448 return ring->init(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001449}
1450
Chris Wilson78501ea2010-10-27 12:18:21 +01001451void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001452{
Chris Wilsone3efda42014-04-09 09:19:41 +01001453 struct drm_i915_private *dev_priv = to_i915(ring->dev);
Chris Wilson33626e62010-10-29 16:18:36 +01001454
Chris Wilson05394f32010-11-08 19:18:58 +00001455 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001456 return;
1457
Chris Wilsone3efda42014-04-09 09:19:41 +01001458 intel_stop_ring_buffer(ring);
1459 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
Chris Wilson33626e62010-10-29 16:18:36 +01001460
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001461 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001462
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001463 i915_gem_object_ggtt_unpin(ring->obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001464 drm_gem_object_unreference(&ring->obj->base);
1465 ring->obj = NULL;
Ben Widawsky3d57e5b2013-10-14 10:01:36 -07001466 ring->preallocated_lazy_request = NULL;
1467 ring->outstanding_lazy_seqno = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01001468
Zou Nan hai8d192152010-11-02 16:31:01 +08001469 if (ring->cleanup)
1470 ring->cleanup(ring);
1471
Chris Wilson78501ea2010-10-27 12:18:21 +01001472 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001473}
1474
Chris Wilsona71d8d92012-02-15 11:25:36 +00001475static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1476{
1477 struct drm_i915_gem_request *request;
Chris Wilson1f709992014-01-27 22:43:07 +00001478 u32 seqno = 0, tail;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001479 int ret;
1480
Chris Wilsona71d8d92012-02-15 11:25:36 +00001481 if (ring->last_retired_head != -1) {
1482 ring->head = ring->last_retired_head;
1483 ring->last_retired_head = -1;
Chris Wilson1f709992014-01-27 22:43:07 +00001484
Chris Wilsona71d8d92012-02-15 11:25:36 +00001485 ring->space = ring_space(ring);
1486 if (ring->space >= n)
1487 return 0;
1488 }
1489
1490 list_for_each_entry(request, &ring->request_list, list) {
1491 int space;
1492
1493 if (request->tail == -1)
1494 continue;
1495
Ville Syrjälä633cf8f2012-12-03 18:43:32 +02001496 space = request->tail - (ring->tail + I915_RING_FREE_SPACE);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001497 if (space < 0)
1498 space += ring->size;
1499 if (space >= n) {
1500 seqno = request->seqno;
Chris Wilson1f709992014-01-27 22:43:07 +00001501 tail = request->tail;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001502 break;
1503 }
1504
1505 /* Consume this request in case we need more space than
1506 * is available and so need to prevent a race between
1507 * updating last_retired_head and direct reads of
1508 * I915_RING_HEAD. It also provides a nice sanity check.
1509 */
1510 request->tail = -1;
1511 }
1512
1513 if (seqno == 0)
1514 return -ENOSPC;
1515
Chris Wilson1f709992014-01-27 22:43:07 +00001516 ret = i915_wait_seqno(ring, seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001517 if (ret)
1518 return ret;
1519
Chris Wilson1f709992014-01-27 22:43:07 +00001520 ring->head = tail;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001521 ring->space = ring_space(ring);
1522 if (WARN_ON(ring->space < n))
1523 return -ENOSPC;
1524
1525 return 0;
1526}
1527
Chris Wilson3e960502012-11-27 16:22:54 +00001528static int ring_wait_for_space(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001529{
Chris Wilson78501ea2010-10-27 12:18:21 +01001530 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001531 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001532 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001533 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001534
Chris Wilsona71d8d92012-02-15 11:25:36 +00001535 ret = intel_ring_wait_request(ring, n);
1536 if (ret != -ENOSPC)
1537 return ret;
1538
Chris Wilson09246732013-08-10 22:16:32 +01001539 /* force the tail write in case we have been skipping them */
1540 __intel_ring_advance(ring);
1541
Chris Wilsondb53a302011-02-03 11:57:46 +00001542 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001543 /* With GEM the hangcheck timer should kick us out of the loop,
1544 * leaving it early runs the risk of corrupting GEM state (due
1545 * to running on almost untested codepaths). But on resume
1546 * timers don't work yet, so prevent a complete hang in that
1547 * case by choosing an insanely large timeout. */
1548 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001549
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001550 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001551 ring->head = I915_READ_HEAD(ring);
1552 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001553 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001554 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001555 return 0;
1556 }
1557
Daniel Vetterfb19e2a2014-02-12 23:44:34 +01001558 if (!drm_core_check_feature(dev, DRIVER_MODESET) &&
1559 dev->primary->master) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001560 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1561 if (master_priv->sarea_priv)
1562 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1563 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001564
Chris Wilsone60a0b12010-10-13 10:09:14 +01001565 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001566
Daniel Vetter33196de2012-11-14 17:14:05 +01001567 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1568 dev_priv->mm.interruptible);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001569 if (ret)
1570 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001571 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001572 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001573 return -EBUSY;
1574}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001575
Chris Wilson3e960502012-11-27 16:22:54 +00001576static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
1577{
1578 uint32_t __iomem *virt;
1579 int rem = ring->size - ring->tail;
1580
1581 if (ring->space < rem) {
1582 int ret = ring_wait_for_space(ring, rem);
1583 if (ret)
1584 return ret;
1585 }
1586
1587 virt = ring->virtual_start + ring->tail;
1588 rem /= 4;
1589 while (rem--)
1590 iowrite32(MI_NOOP, virt++);
1591
1592 ring->tail = 0;
1593 ring->space = ring_space(ring);
1594
1595 return 0;
1596}
1597
1598int intel_ring_idle(struct intel_ring_buffer *ring)
1599{
1600 u32 seqno;
1601 int ret;
1602
1603 /* We need to add any requests required to flush the objects and ring */
Chris Wilson18235212013-09-04 10:45:51 +01001604 if (ring->outstanding_lazy_seqno) {
Mika Kuoppala0025c072013-06-12 12:35:30 +03001605 ret = i915_add_request(ring, NULL);
Chris Wilson3e960502012-11-27 16:22:54 +00001606 if (ret)
1607 return ret;
1608 }
1609
1610 /* Wait upon the last request to be completed */
1611 if (list_empty(&ring->request_list))
1612 return 0;
1613
1614 seqno = list_entry(ring->request_list.prev,
1615 struct drm_i915_gem_request,
1616 list)->seqno;
1617
1618 return i915_wait_seqno(ring, seqno);
1619}
1620
Chris Wilson9d7730912012-11-27 16:22:52 +00001621static int
1622intel_ring_alloc_seqno(struct intel_ring_buffer *ring)
1623{
Chris Wilson18235212013-09-04 10:45:51 +01001624 if (ring->outstanding_lazy_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00001625 return 0;
1626
Chris Wilson3c0e2342013-09-04 10:45:52 +01001627 if (ring->preallocated_lazy_request == NULL) {
1628 struct drm_i915_gem_request *request;
1629
1630 request = kmalloc(sizeof(*request), GFP_KERNEL);
1631 if (request == NULL)
1632 return -ENOMEM;
1633
1634 ring->preallocated_lazy_request = request;
1635 }
1636
Chris Wilson18235212013-09-04 10:45:51 +01001637 return i915_gem_get_seqno(ring->dev, &ring->outstanding_lazy_seqno);
Chris Wilson9d7730912012-11-27 16:22:52 +00001638}
1639
Chris Wilson304d6952014-01-02 14:32:35 +00001640static int __intel_ring_prepare(struct intel_ring_buffer *ring,
1641 int bytes)
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02001642{
1643 int ret;
1644
1645 if (unlikely(ring->tail + bytes > ring->effective_size)) {
1646 ret = intel_wrap_ring_buffer(ring);
1647 if (unlikely(ret))
1648 return ret;
1649 }
1650
1651 if (unlikely(ring->space < bytes)) {
1652 ret = ring_wait_for_space(ring, bytes);
1653 if (unlikely(ret))
1654 return ret;
1655 }
1656
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02001657 return 0;
1658}
1659
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001660int intel_ring_begin(struct intel_ring_buffer *ring,
1661 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001662{
Jani Nikula4640c4f2014-03-31 14:27:19 +03001663 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001664 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001665
Daniel Vetter33196de2012-11-14 17:14:05 +01001666 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1667 dev_priv->mm.interruptible);
Daniel Vetterde2b9982012-07-04 22:52:50 +02001668 if (ret)
1669 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001670
Chris Wilson304d6952014-01-02 14:32:35 +00001671 ret = __intel_ring_prepare(ring, num_dwords * sizeof(uint32_t));
1672 if (ret)
1673 return ret;
1674
Chris Wilson9d7730912012-11-27 16:22:52 +00001675 /* Preallocate the olr before touching the ring */
1676 ret = intel_ring_alloc_seqno(ring);
1677 if (ret)
1678 return ret;
1679
Chris Wilson304d6952014-01-02 14:32:35 +00001680 ring->space -= num_dwords * sizeof(uint32_t);
1681 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001682}
1683
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02001684/* Align the ring tail to a cacheline boundary */
1685int intel_ring_cacheline_align(struct intel_ring_buffer *ring)
1686{
Chris Wilson18393f62014-04-09 09:19:40 +01001687 int num_dwords = (ring->tail & (CACHELINE_BYTES - 1)) / sizeof(uint32_t);
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02001688 int ret;
1689
1690 if (num_dwords == 0)
1691 return 0;
1692
Chris Wilson18393f62014-04-09 09:19:40 +01001693 num_dwords = CACHELINE_BYTES / sizeof(uint32_t) - num_dwords;
Ville Syrjälä753b1ad2014-02-11 19:52:05 +02001694 ret = intel_ring_begin(ring, num_dwords);
1695 if (ret)
1696 return ret;
1697
1698 while (num_dwords--)
1699 intel_ring_emit(ring, MI_NOOP);
1700
1701 intel_ring_advance(ring);
1702
1703 return 0;
1704}
1705
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02001706void intel_ring_init_seqno(struct intel_ring_buffer *ring, u32 seqno)
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001707{
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02001708 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001709
Chris Wilson18235212013-09-04 10:45:51 +01001710 BUG_ON(ring->outstanding_lazy_seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001711
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02001712 if (INTEL_INFO(ring->dev)->gen >= 6) {
1713 I915_WRITE(RING_SYNC_0(ring->mmio_base), 0);
1714 I915_WRITE(RING_SYNC_1(ring->mmio_base), 0);
Ben Widawsky50201502013-08-12 16:53:03 -07001715 if (HAS_VEBOX(ring->dev))
1716 I915_WRITE(RING_SYNC_2(ring->mmio_base), 0);
Chris Wilson78501ea2010-10-27 12:18:21 +01001717 }
Chris Wilson297b0c52010-10-22 17:02:41 +01001718
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +02001719 ring->set_seqno(ring, seqno);
Mika Kuoppala92cab732013-05-24 17:16:07 +03001720 ring->hangcheck.seqno = seqno;
Chris Wilson549f7362010-10-19 11:19:32 +01001721}
1722
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001723static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
1724 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001725{
Jani Nikula4640c4f2014-03-31 14:27:19 +03001726 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001727
1728 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001729
Chris Wilson12f55812012-07-05 17:14:01 +01001730 /* Disable notification that the ring is IDLE. The GT
1731 * will then assume that it is busy and bring it out of rc6.
1732 */
1733 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1734 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1735
1736 /* Clear the context id. Here be magic! */
1737 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1738
1739 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001740 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001741 GEN6_BSD_SLEEP_INDICATOR) == 0,
1742 50))
1743 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001744
Chris Wilson12f55812012-07-05 17:14:01 +01001745 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001746 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001747 POSTING_READ(RING_TAIL(ring->mmio_base));
1748
1749 /* Let the ring send IDLE messages to the GT again,
1750 * and so let it sleep to conserve power when idle.
1751 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001752 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001753 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001754}
1755
Ben Widawskyea251322013-05-28 19:22:21 -07001756static int gen6_bsd_ring_flush(struct intel_ring_buffer *ring,
1757 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001758{
Chris Wilson71a77e02011-02-02 12:13:49 +00001759 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001760 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001761
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001762 ret = intel_ring_begin(ring, 4);
1763 if (ret)
1764 return ret;
1765
Chris Wilson71a77e02011-02-02 12:13:49 +00001766 cmd = MI_FLUSH_DW;
Ben Widawsky075b3bb2013-11-02 21:07:13 -07001767 if (INTEL_INFO(ring->dev)->gen >= 8)
1768 cmd += 1;
Jesse Barnes9a289772012-10-26 09:42:42 -07001769 /*
1770 * Bspec vol 1c.5 - video engine command streamer:
1771 * "If ENABLED, all TLBs will be invalidated once the flush
1772 * operation is complete. This bit is only valid when the
1773 * Post-Sync Operation field is a value of 1h or 3h."
1774 */
Chris Wilson71a77e02011-02-02 12:13:49 +00001775 if (invalidate & I915_GEM_GPU_DOMAINS)
Jesse Barnes9a289772012-10-26 09:42:42 -07001776 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
1777 MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00001778 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07001779 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Ben Widawsky075b3bb2013-11-02 21:07:13 -07001780 if (INTEL_INFO(ring->dev)->gen >= 8) {
1781 intel_ring_emit(ring, 0); /* upper addr */
1782 intel_ring_emit(ring, 0); /* value */
1783 } else {
1784 intel_ring_emit(ring, 0);
1785 intel_ring_emit(ring, MI_NOOP);
1786 }
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001787 intel_ring_advance(ring);
1788 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001789}
1790
1791static int
Ben Widawsky1c7a0622013-11-02 21:07:12 -07001792gen8_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
1793 u32 offset, u32 len,
1794 unsigned flags)
1795{
Ben Widawsky28cf5412013-11-02 21:07:26 -07001796 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1797 bool ppgtt = dev_priv->mm.aliasing_ppgtt != NULL &&
1798 !(flags & I915_DISPATCH_SECURE);
Ben Widawsky1c7a0622013-11-02 21:07:12 -07001799 int ret;
1800
1801 ret = intel_ring_begin(ring, 4);
1802 if (ret)
1803 return ret;
1804
1805 /* FIXME(BDW): Address space and security selectors. */
Ben Widawsky28cf5412013-11-02 21:07:26 -07001806 intel_ring_emit(ring, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
Ben Widawsky1c7a0622013-11-02 21:07:12 -07001807 intel_ring_emit(ring, offset);
1808 intel_ring_emit(ring, 0);
1809 intel_ring_emit(ring, MI_NOOP);
1810 intel_ring_advance(ring);
1811
1812 return 0;
1813}
1814
1815static int
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001816hsw_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
1817 u32 offset, u32 len,
1818 unsigned flags)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001819{
Akshay Joshi0206e352011-08-16 15:34:10 -04001820 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001821
Akshay Joshi0206e352011-08-16 15:34:10 -04001822 ret = intel_ring_begin(ring, 2);
1823 if (ret)
1824 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001825
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001826 intel_ring_emit(ring,
1827 MI_BATCH_BUFFER_START | MI_BATCH_PPGTT_HSW |
1828 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_HSW));
1829 /* bit0-7 is the length on GEN6+ */
1830 intel_ring_emit(ring, offset);
1831 intel_ring_advance(ring);
1832
1833 return 0;
1834}
1835
1836static int
1837gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
1838 u32 offset, u32 len,
1839 unsigned flags)
1840{
1841 int ret;
1842
1843 ret = intel_ring_begin(ring, 2);
1844 if (ret)
1845 return ret;
1846
1847 intel_ring_emit(ring,
1848 MI_BATCH_BUFFER_START |
1849 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Akshay Joshi0206e352011-08-16 15:34:10 -04001850 /* bit0-7 is the length on GEN6+ */
1851 intel_ring_emit(ring, offset);
1852 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001853
Akshay Joshi0206e352011-08-16 15:34:10 -04001854 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001855}
1856
Chris Wilson549f7362010-10-19 11:19:32 +01001857/* Blitter support (SandyBridge+) */
1858
Ben Widawskyea251322013-05-28 19:22:21 -07001859static int gen6_ring_flush(struct intel_ring_buffer *ring,
1860 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001861{
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03001862 struct drm_device *dev = ring->dev;
Chris Wilson71a77e02011-02-02 12:13:49 +00001863 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001864 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001865
Daniel Vetter6a233c72011-12-14 13:57:07 +01001866 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001867 if (ret)
1868 return ret;
1869
Chris Wilson71a77e02011-02-02 12:13:49 +00001870 cmd = MI_FLUSH_DW;
Ben Widawsky075b3bb2013-11-02 21:07:13 -07001871 if (INTEL_INFO(ring->dev)->gen >= 8)
1872 cmd += 1;
Jesse Barnes9a289772012-10-26 09:42:42 -07001873 /*
1874 * Bspec vol 1c.3 - blitter engine command streamer:
1875 * "If ENABLED, all TLBs will be invalidated once the flush
1876 * operation is complete. This bit is only valid when the
1877 * Post-Sync Operation field is a value of 1h or 3h."
1878 */
Chris Wilson71a77e02011-02-02 12:13:49 +00001879 if (invalidate & I915_GEM_DOMAIN_RENDER)
Jesse Barnes9a289772012-10-26 09:42:42 -07001880 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
Daniel Vetterb3fcabb2012-11-04 12:24:47 +01001881 MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00001882 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07001883 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Ben Widawsky075b3bb2013-11-02 21:07:13 -07001884 if (INTEL_INFO(ring->dev)->gen >= 8) {
1885 intel_ring_emit(ring, 0); /* upper addr */
1886 intel_ring_emit(ring, 0); /* value */
1887 } else {
1888 intel_ring_emit(ring, 0);
1889 intel_ring_emit(ring, MI_NOOP);
1890 }
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001891 intel_ring_advance(ring);
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03001892
Ville Syrjälä9688eca2013-11-06 23:02:19 +02001893 if (IS_GEN7(dev) && !invalidate && flush)
Rodrigo Vivifd3da6c2013-06-06 16:58:16 -03001894 return gen7_ring_fbc_flush(ring, FBC_REND_CACHE_CLEAN);
1895
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001896 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001897}
1898
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001899int intel_init_render_ring_buffer(struct drm_device *dev)
1900{
Jani Nikula4640c4f2014-03-31 14:27:19 +03001901 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001902 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001903
Daniel Vetter59465b52012-04-11 22:12:48 +02001904 ring->name = "render ring";
1905 ring->id = RCS;
1906 ring->mmio_base = RENDER_RING_BASE;
1907
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001908 if (INTEL_INFO(dev)->gen >= 6) {
1909 ring->add_request = gen6_add_request;
Paulo Zanoni4772eae2012-08-17 18:35:41 -03001910 ring->flush = gen7_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01001911 if (INTEL_INFO(dev)->gen == 6)
Paulo Zanonib3111502012-08-17 18:35:42 -03001912 ring->flush = gen6_render_ring_flush;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001913 if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawskya5f3d682013-11-02 21:07:27 -07001914 ring->flush = gen8_render_ring_flush;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001915 ring->irq_get = gen8_ring_get_irq;
1916 ring->irq_put = gen8_ring_put_irq;
1917 } else {
1918 ring->irq_get = gen6_ring_get_irq;
1919 ring->irq_put = gen6_ring_put_irq;
1920 }
Ben Widawskycc609d52013-05-28 19:22:29 -07001921 ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001922 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001923 ring->set_seqno = ring_set_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001924 ring->sync_to = gen6_ring_sync;
Zhao Yakui845f74a2014-04-17 10:37:37 +08001925 /*
1926 * The current semaphore is only applied on pre-gen8 platform.
1927 * And there is no VCS2 ring on the pre-gen8 platform. So the
1928 * semaphore between RCS and VCS2 is initialized as INVALID.
1929 * Gen8 will initialize the sema between VCS2 and RCS later.
1930 */
Ben Widawsky55861812013-05-28 19:22:17 -07001931 ring->semaphore_register[RCS] = MI_SEMAPHORE_SYNC_INVALID;
1932 ring->semaphore_register[VCS] = MI_SEMAPHORE_SYNC_RV;
1933 ring->semaphore_register[BCS] = MI_SEMAPHORE_SYNC_RB;
Ben Widawsky1950de12013-05-28 19:22:20 -07001934 ring->semaphore_register[VECS] = MI_SEMAPHORE_SYNC_RVE;
Zhao Yakui845f74a2014-04-17 10:37:37 +08001935 ring->semaphore_register[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
Ben Widawskyad776f82013-05-28 19:22:18 -07001936 ring->signal_mbox[RCS] = GEN6_NOSYNC;
1937 ring->signal_mbox[VCS] = GEN6_VRSYNC;
1938 ring->signal_mbox[BCS] = GEN6_BRSYNC;
Ben Widawsky1950de12013-05-28 19:22:20 -07001939 ring->signal_mbox[VECS] = GEN6_VERSYNC;
Zhao Yakui845f74a2014-04-17 10:37:37 +08001940 ring->signal_mbox[VCS2] = GEN6_NOSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001941 } else if (IS_GEN5(dev)) {
1942 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001943 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001944 ring->get_seqno = pc_render_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001945 ring->set_seqno = pc_render_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001946 ring->irq_get = gen5_ring_get_irq;
1947 ring->irq_put = gen5_ring_put_irq;
Ben Widawskycc609d52013-05-28 19:22:29 -07001948 ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT |
1949 GT_RENDER_PIPECTL_NOTIFY_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001950 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001951 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001952 if (INTEL_INFO(dev)->gen < 4)
1953 ring->flush = gen2_render_ring_flush;
1954 else
1955 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001956 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001957 ring->set_seqno = ring_set_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001958 if (IS_GEN2(dev)) {
1959 ring->irq_get = i8xx_ring_get_irq;
1960 ring->irq_put = i8xx_ring_put_irq;
1961 } else {
1962 ring->irq_get = i9xx_ring_get_irq;
1963 ring->irq_put = i9xx_ring_put_irq;
1964 }
Daniel Vettere3670312012-04-11 22:12:53 +02001965 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001966 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001967 ring->write_tail = ring_write_tail;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001968 if (IS_HASWELL(dev))
1969 ring->dispatch_execbuffer = hsw_ring_dispatch_execbuffer;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07001970 else if (IS_GEN8(dev))
1971 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001972 else if (INTEL_INFO(dev)->gen >= 6)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001973 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1974 else if (INTEL_INFO(dev)->gen >= 4)
1975 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1976 else if (IS_I830(dev) || IS_845G(dev))
1977 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1978 else
1979 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001980 ring->init = init_render_ring;
1981 ring->cleanup = render_ring_cleanup;
1982
Daniel Vetterb45305f2012-12-17 16:21:27 +01001983 /* Workaround batchbuffer to combat CS tlb bug. */
1984 if (HAS_BROKEN_CS_TLB(dev)) {
1985 struct drm_i915_gem_object *obj;
1986 int ret;
1987
1988 obj = i915_gem_alloc_object(dev, I830_BATCH_LIMIT);
1989 if (obj == NULL) {
1990 DRM_ERROR("Failed to allocate batch bo\n");
1991 return -ENOMEM;
1992 }
1993
Daniel Vetterbe1fa122014-02-14 14:01:14 +01001994 ret = i915_gem_obj_ggtt_pin(obj, 0, 0);
Daniel Vetterb45305f2012-12-17 16:21:27 +01001995 if (ret != 0) {
1996 drm_gem_object_unreference(&obj->base);
1997 DRM_ERROR("Failed to ping batch bo\n");
1998 return ret;
1999 }
2000
Chris Wilson0d1aaca2013-08-26 20:58:11 +01002001 ring->scratch.obj = obj;
2002 ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(obj);
Daniel Vetterb45305f2012-12-17 16:21:27 +01002003 }
2004
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002005 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002006}
2007
Chris Wilsone8616b62011-01-20 09:57:11 +00002008int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
2009{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002010 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone8616b62011-01-20 09:57:11 +00002011 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson6b8294a2012-11-16 11:43:20 +00002012 int ret;
Chris Wilsone8616b62011-01-20 09:57:11 +00002013
Daniel Vetter59465b52012-04-11 22:12:48 +02002014 ring->name = "render ring";
2015 ring->id = RCS;
2016 ring->mmio_base = RENDER_RING_BASE;
2017
Chris Wilsone8616b62011-01-20 09:57:11 +00002018 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02002019 /* non-kms not supported on gen6+ */
2020 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00002021 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02002022
2023 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
2024 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
2025 * the special gen5 functions. */
2026 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01002027 if (INTEL_INFO(dev)->gen < 4)
2028 ring->flush = gen2_render_ring_flush;
2029 else
2030 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02002031 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002032 ring->set_seqno = ring_set_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002033 if (IS_GEN2(dev)) {
2034 ring->irq_get = i8xx_ring_get_irq;
2035 ring->irq_put = i8xx_ring_put_irq;
2036 } else {
2037 ring->irq_get = i9xx_ring_get_irq;
2038 ring->irq_put = i9xx_ring_put_irq;
2039 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02002040 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02002041 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02002042 if (INTEL_INFO(dev)->gen >= 4)
2043 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
2044 else if (IS_I830(dev) || IS_845G(dev))
2045 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
2046 else
2047 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02002048 ring->init = init_render_ring;
2049 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00002050
2051 ring->dev = dev;
2052 INIT_LIST_HEAD(&ring->active_list);
2053 INIT_LIST_HEAD(&ring->request_list);
Chris Wilsone8616b62011-01-20 09:57:11 +00002054
2055 ring->size = size;
2056 ring->effective_size = ring->size;
Mika Kuoppala17f10fd2012-10-29 16:59:26 +02002057 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson18393f62014-04-09 09:19:40 +01002058 ring->effective_size -= 2 * CACHELINE_BYTES;
Chris Wilsone8616b62011-01-20 09:57:11 +00002059
Daniel Vetter4225d0f2012-04-26 23:28:16 +02002060 ring->virtual_start = ioremap_wc(start, size);
2061 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00002062 DRM_ERROR("can not ioremap virtual address for"
2063 " ring buffer\n");
2064 return -ENOMEM;
2065 }
2066
Chris Wilson6b8294a2012-11-16 11:43:20 +00002067 if (!I915_NEED_GFX_HWS(dev)) {
Daniel Vetter035dc1e2013-07-03 12:56:54 +02002068 ret = init_phys_status_page(ring);
Chris Wilson6b8294a2012-11-16 11:43:20 +00002069 if (ret)
2070 return ret;
2071 }
2072
Chris Wilsone8616b62011-01-20 09:57:11 +00002073 return 0;
2074}
2075
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002076int intel_init_bsd_ring_buffer(struct drm_device *dev)
2077{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002078 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002079 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002080
Daniel Vetter58fa3832012-04-11 22:12:49 +02002081 ring->name = "bsd ring";
2082 ring->id = VCS;
2083
Daniel Vetter0fd2c202012-04-11 22:12:55 +02002084 ring->write_tail = ring_write_tail;
Ben Widawsky780f18c2013-11-02 21:07:28 -07002085 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter58fa3832012-04-11 22:12:49 +02002086 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02002087 /* gen6 bsd needs a special wa for tail updates */
2088 if (IS_GEN6(dev))
2089 ring->write_tail = gen6_bsd_ring_write_tail;
Ben Widawskyea251322013-05-28 19:22:21 -07002090 ring->flush = gen6_bsd_ring_flush;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002091 ring->add_request = gen6_add_request;
2092 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002093 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002094 if (INTEL_INFO(dev)->gen >= 8) {
2095 ring->irq_enable_mask =
2096 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
2097 ring->irq_get = gen8_ring_get_irq;
2098 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002099 ring->dispatch_execbuffer =
2100 gen8_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002101 } else {
2102 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
2103 ring->irq_get = gen6_ring_get_irq;
2104 ring->irq_put = gen6_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002105 ring->dispatch_execbuffer =
2106 gen6_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002107 }
Daniel Vetter686cb5f2012-04-11 22:12:52 +02002108 ring->sync_to = gen6_ring_sync;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002109 /*
2110 * The current semaphore is only applied on pre-gen8 platform.
2111 * And there is no VCS2 ring on the pre-gen8 platform. So the
2112 * semaphore between VCS and VCS2 is initialized as INVALID.
2113 * Gen8 will initialize the sema between VCS2 and VCS later.
2114 */
Ben Widawsky55861812013-05-28 19:22:17 -07002115 ring->semaphore_register[RCS] = MI_SEMAPHORE_SYNC_VR;
2116 ring->semaphore_register[VCS] = MI_SEMAPHORE_SYNC_INVALID;
2117 ring->semaphore_register[BCS] = MI_SEMAPHORE_SYNC_VB;
Ben Widawsky1950de12013-05-28 19:22:20 -07002118 ring->semaphore_register[VECS] = MI_SEMAPHORE_SYNC_VVE;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002119 ring->semaphore_register[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
Ben Widawskyad776f82013-05-28 19:22:18 -07002120 ring->signal_mbox[RCS] = GEN6_RVSYNC;
2121 ring->signal_mbox[VCS] = GEN6_NOSYNC;
2122 ring->signal_mbox[BCS] = GEN6_BVSYNC;
Ben Widawsky1950de12013-05-28 19:22:20 -07002123 ring->signal_mbox[VECS] = GEN6_VEVSYNC;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002124 ring->signal_mbox[VCS2] = GEN6_NOSYNC;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002125 } else {
2126 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002127 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02002128 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002129 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002130 ring->set_seqno = ring_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02002131 if (IS_GEN5(dev)) {
Ben Widawskycc609d52013-05-28 19:22:29 -07002132 ring->irq_enable_mask = ILK_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02002133 ring->irq_get = gen5_ring_get_irq;
2134 ring->irq_put = gen5_ring_put_irq;
2135 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02002136 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02002137 ring->irq_get = i9xx_ring_get_irq;
2138 ring->irq_put = i9xx_ring_put_irq;
2139 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02002140 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02002141 }
2142 ring->init = init_ring_common;
2143
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002144 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08002145}
Chris Wilson549f7362010-10-19 11:19:32 +01002146
Zhao Yakui845f74a2014-04-17 10:37:37 +08002147/**
2148 * Initialize the second BSD ring for Broadwell GT3.
2149 * It is noted that this only exists on Broadwell GT3.
2150 */
2151int intel_init_bsd2_ring_buffer(struct drm_device *dev)
2152{
2153 struct drm_i915_private *dev_priv = dev->dev_private;
2154 struct intel_ring_buffer *ring = &dev_priv->ring[VCS2];
2155
2156 if ((INTEL_INFO(dev)->gen != 8)) {
2157 DRM_ERROR("No dual-BSD ring on non-BDW machine\n");
2158 return -EINVAL;
2159 }
2160
2161 ring->name = "bds2_ring";
2162 ring->id = VCS2;
2163
2164 ring->write_tail = ring_write_tail;
2165 ring->mmio_base = GEN8_BSD2_RING_BASE;
2166 ring->flush = gen6_bsd_ring_flush;
2167 ring->add_request = gen6_add_request;
2168 ring->get_seqno = gen6_ring_get_seqno;
2169 ring->set_seqno = ring_set_seqno;
2170 ring->irq_enable_mask =
2171 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
2172 ring->irq_get = gen8_ring_get_irq;
2173 ring->irq_put = gen8_ring_put_irq;
2174 ring->dispatch_execbuffer =
2175 gen8_ring_dispatch_execbuffer;
2176 ring->sync_to = gen6_ring_sync;
2177 /*
2178 * The current semaphore is only applied on the pre-gen8. And there
2179 * is no bsd2 ring on the pre-gen8. So now the semaphore_register
2180 * between VCS2 and other ring is initialized as invalid.
2181 * Gen8 will initialize the sema between VCS2 and other ring later.
2182 */
2183 ring->semaphore_register[RCS] = MI_SEMAPHORE_SYNC_INVALID;
2184 ring->semaphore_register[VCS] = MI_SEMAPHORE_SYNC_INVALID;
2185 ring->semaphore_register[BCS] = MI_SEMAPHORE_SYNC_INVALID;
2186 ring->semaphore_register[VECS] = MI_SEMAPHORE_SYNC_INVALID;
2187 ring->semaphore_register[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2188 ring->signal_mbox[RCS] = GEN6_NOSYNC;
2189 ring->signal_mbox[VCS] = GEN6_NOSYNC;
2190 ring->signal_mbox[BCS] = GEN6_NOSYNC;
2191 ring->signal_mbox[VECS] = GEN6_NOSYNC;
2192 ring->signal_mbox[VCS2] = GEN6_NOSYNC;
2193
2194 ring->init = init_ring_common;
2195
2196 return intel_init_ring_buffer(dev, ring);
2197}
2198
Chris Wilson549f7362010-10-19 11:19:32 +01002199int intel_init_blt_ring_buffer(struct drm_device *dev)
2200{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002201 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002202 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01002203
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002204 ring->name = "blitter ring";
2205 ring->id = BCS;
2206
2207 ring->mmio_base = BLT_RING_BASE;
2208 ring->write_tail = ring_write_tail;
Ben Widawskyea251322013-05-28 19:22:21 -07002209 ring->flush = gen6_ring_flush;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002210 ring->add_request = gen6_add_request;
2211 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02002212 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002213 if (INTEL_INFO(dev)->gen >= 8) {
2214 ring->irq_enable_mask =
2215 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
2216 ring->irq_get = gen8_ring_get_irq;
2217 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002218 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002219 } else {
2220 ring->irq_enable_mask = GT_BLT_USER_INTERRUPT;
2221 ring->irq_get = gen6_ring_get_irq;
2222 ring->irq_put = gen6_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002223 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002224 }
Daniel Vetter686cb5f2012-04-11 22:12:52 +02002225 ring->sync_to = gen6_ring_sync;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002226 /*
2227 * The current semaphore is only applied on pre-gen8 platform. And
2228 * there is no VCS2 ring on the pre-gen8 platform. So the semaphore
2229 * between BCS and VCS2 is initialized as INVALID.
2230 * Gen8 will initialize the sema between BCS and VCS2 later.
2231 */
Ben Widawsky55861812013-05-28 19:22:17 -07002232 ring->semaphore_register[RCS] = MI_SEMAPHORE_SYNC_BR;
2233 ring->semaphore_register[VCS] = MI_SEMAPHORE_SYNC_BV;
2234 ring->semaphore_register[BCS] = MI_SEMAPHORE_SYNC_INVALID;
Ben Widawsky1950de12013-05-28 19:22:20 -07002235 ring->semaphore_register[VECS] = MI_SEMAPHORE_SYNC_BVE;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002236 ring->semaphore_register[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
Ben Widawskyad776f82013-05-28 19:22:18 -07002237 ring->signal_mbox[RCS] = GEN6_RBSYNC;
2238 ring->signal_mbox[VCS] = GEN6_VBSYNC;
2239 ring->signal_mbox[BCS] = GEN6_NOSYNC;
Ben Widawsky1950de12013-05-28 19:22:20 -07002240 ring->signal_mbox[VECS] = GEN6_VEBSYNC;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002241 ring->signal_mbox[VCS2] = GEN6_NOSYNC;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02002242 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01002243
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002244 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002245}
Chris Wilsona7b97612012-07-20 12:41:08 +01002246
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002247int intel_init_vebox_ring_buffer(struct drm_device *dev)
2248{
Jani Nikula4640c4f2014-03-31 14:27:19 +03002249 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002250 struct intel_ring_buffer *ring = &dev_priv->ring[VECS];
2251
2252 ring->name = "video enhancement ring";
2253 ring->id = VECS;
2254
2255 ring->mmio_base = VEBOX_RING_BASE;
2256 ring->write_tail = ring_write_tail;
2257 ring->flush = gen6_ring_flush;
2258 ring->add_request = gen6_add_request;
2259 ring->get_seqno = gen6_ring_get_seqno;
2260 ring->set_seqno = ring_set_seqno;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002261
2262 if (INTEL_INFO(dev)->gen >= 8) {
2263 ring->irq_enable_mask =
Daniel Vetter40c499f2013-11-07 21:40:39 -08002264 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002265 ring->irq_get = gen8_ring_get_irq;
2266 ring->irq_put = gen8_ring_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002267 ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002268 } else {
2269 ring->irq_enable_mask = PM_VEBOX_USER_INTERRUPT;
2270 ring->irq_get = hsw_vebox_get_irq;
2271 ring->irq_put = hsw_vebox_put_irq;
Ben Widawsky1c7a0622013-11-02 21:07:12 -07002272 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002273 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002274 ring->sync_to = gen6_ring_sync;
2275 ring->semaphore_register[RCS] = MI_SEMAPHORE_SYNC_VER;
2276 ring->semaphore_register[VCS] = MI_SEMAPHORE_SYNC_VEV;
2277 ring->semaphore_register[BCS] = MI_SEMAPHORE_SYNC_VEB;
2278 ring->semaphore_register[VECS] = MI_SEMAPHORE_SYNC_INVALID;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002279 ring->semaphore_register[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002280 ring->signal_mbox[RCS] = GEN6_RVESYNC;
2281 ring->signal_mbox[VCS] = GEN6_VVESYNC;
2282 ring->signal_mbox[BCS] = GEN6_BVESYNC;
2283 ring->signal_mbox[VECS] = GEN6_NOSYNC;
Zhao Yakui845f74a2014-04-17 10:37:37 +08002284 ring->signal_mbox[VCS2] = GEN6_NOSYNC;
Ben Widawsky9a8a2212013-05-28 19:22:23 -07002285 ring->init = init_ring_common;
2286
2287 return intel_init_ring_buffer(dev, ring);
2288}
2289
Chris Wilsona7b97612012-07-20 12:41:08 +01002290int
2291intel_ring_flush_all_caches(struct intel_ring_buffer *ring)
2292{
2293 int ret;
2294
2295 if (!ring->gpu_caches_dirty)
2296 return 0;
2297
2298 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
2299 if (ret)
2300 return ret;
2301
2302 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
2303
2304 ring->gpu_caches_dirty = false;
2305 return 0;
2306}
2307
2308int
2309intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring)
2310{
2311 uint32_t flush_domains;
2312 int ret;
2313
2314 flush_domains = 0;
2315 if (ring->gpu_caches_dirty)
2316 flush_domains = I915_GEM_GPU_DOMAINS;
2317
2318 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
2319 if (ret)
2320 return ret;
2321
2322 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
2323
2324 ring->gpu_caches_dirty = false;
2325 return 0;
2326}
Chris Wilsone3efda42014-04-09 09:19:41 +01002327
2328void
2329intel_stop_ring_buffer(struct intel_ring_buffer *ring)
2330{
2331 int ret;
2332
2333 if (!intel_ring_initialized(ring))
2334 return;
2335
2336 ret = intel_ring_idle(ring);
2337 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
2338 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
2339 ring->name, ret);
2340
2341 stop_ring(ring);
2342}