blob: 414af1e2973ba0190f927414ce2149222f8e4859 [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
30#include "drmP.h"
31#include "drm.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070032#include "i915_drv.h"
Zou Nan hai8187a2b2010-05-21 09:08:55 +080033#include "i915_drm.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070034#include "i915_trace.h"
Xiang, Haihao881f47b2010-09-19 14:40:43 +010035#include "intel_drv.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070036
Jesse Barnes8d315282011-10-16 10:23:31 +020037/*
38 * 965+ support PIPE_CONTROL commands, which provide finer grained control
39 * over cache flushing.
40 */
41struct pipe_control {
42 struct drm_i915_gem_object *obj;
43 volatile u32 *cpu_page;
44 u32 gtt_offset;
45};
46
Chris Wilsonc7dca472011-01-20 17:00:10 +000047static inline int ring_space(struct intel_ring_buffer *ring)
48{
49 int space = (ring->head & HEAD_ADDR) - (ring->tail + 8);
50 if (space < 0)
51 space += ring->size;
52 return space;
53}
54
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000055static int
Chris Wilson46f0f8d2012-04-18 11:12:11 +010056gen2_render_ring_flush(struct intel_ring_buffer *ring,
57 u32 invalidate_domains,
58 u32 flush_domains)
59{
60 u32 cmd;
61 int ret;
62
63 cmd = MI_FLUSH;
Daniel Vetter31b14c92012-04-19 16:45:22 +020064 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
Chris Wilson46f0f8d2012-04-18 11:12:11 +010065 cmd |= MI_NO_WRITE_FLUSH;
66
67 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
68 cmd |= MI_READ_FLUSH;
69
70 ret = intel_ring_begin(ring, 2);
71 if (ret)
72 return ret;
73
74 intel_ring_emit(ring, cmd);
75 intel_ring_emit(ring, MI_NOOP);
76 intel_ring_advance(ring);
77
78 return 0;
79}
80
81static int
82gen4_render_ring_flush(struct intel_ring_buffer *ring,
83 u32 invalidate_domains,
84 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -070085{
Chris Wilson78501ea2010-10-27 12:18:21 +010086 struct drm_device *dev = ring->dev;
Chris Wilson6f392d5482010-08-07 11:01:22 +010087 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000088 int ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +010089
Chris Wilson36d527d2011-03-19 22:26:49 +000090 /*
91 * read/write caches:
92 *
93 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
94 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
95 * also flushed at 2d versus 3d pipeline switches.
96 *
97 * read-only caches:
98 *
99 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
100 * MI_READ_FLUSH is set, and is always flushed on 965.
101 *
102 * I915_GEM_DOMAIN_COMMAND may not exist?
103 *
104 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
105 * invalidated when MI_EXE_FLUSH is set.
106 *
107 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
108 * invalidated with every MI_FLUSH.
109 *
110 * TLBs:
111 *
112 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
113 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
114 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
115 * are flushed at any MI_FLUSH.
116 */
117
118 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100119 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
Chris Wilson36d527d2011-03-19 22:26:49 +0000120 cmd &= ~MI_NO_WRITE_FLUSH;
Chris Wilson36d527d2011-03-19 22:26:49 +0000121 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
122 cmd |= MI_EXE_FLUSH;
123
124 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
125 (IS_G4X(dev) || IS_GEN5(dev)))
126 cmd |= MI_INVALIDATE_ISP;
127
128 ret = intel_ring_begin(ring, 2);
129 if (ret)
130 return ret;
131
132 intel_ring_emit(ring, cmd);
133 intel_ring_emit(ring, MI_NOOP);
134 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000135
136 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800137}
138
Jesse Barnes8d315282011-10-16 10:23:31 +0200139/**
140 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
141 * implementing two workarounds on gen6. From section 1.4.7.1
142 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
143 *
144 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
145 * produced by non-pipelined state commands), software needs to first
146 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
147 * 0.
148 *
149 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
150 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
151 *
152 * And the workaround for these two requires this workaround first:
153 *
154 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
155 * BEFORE the pipe-control with a post-sync op and no write-cache
156 * flushes.
157 *
158 * And this last workaround is tricky because of the requirements on
159 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
160 * volume 2 part 1:
161 *
162 * "1 of the following must also be set:
163 * - Render Target Cache Flush Enable ([12] of DW1)
164 * - Depth Cache Flush Enable ([0] of DW1)
165 * - Stall at Pixel Scoreboard ([1] of DW1)
166 * - Depth Stall ([13] of DW1)
167 * - Post-Sync Operation ([13] of DW1)
168 * - Notify Enable ([8] of DW1)"
169 *
170 * The cache flushes require the workaround flush that triggered this
171 * one, so we can't use it. Depth stall would trigger the same.
172 * Post-sync nonzero is what triggered this second workaround, so we
173 * can't use that one either. Notify enable is IRQs, which aren't
174 * really our business. That leaves only stall at scoreboard.
175 */
176static int
177intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring)
178{
179 struct pipe_control *pc = ring->private;
180 u32 scratch_addr = pc->gtt_offset + 128;
181 int ret;
182
183
184 ret = intel_ring_begin(ring, 6);
185 if (ret)
186 return ret;
187
188 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
189 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
190 PIPE_CONTROL_STALL_AT_SCOREBOARD);
191 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
192 intel_ring_emit(ring, 0); /* low dword */
193 intel_ring_emit(ring, 0); /* high dword */
194 intel_ring_emit(ring, MI_NOOP);
195 intel_ring_advance(ring);
196
197 ret = intel_ring_begin(ring, 6);
198 if (ret)
199 return ret;
200
201 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
202 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
203 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
204 intel_ring_emit(ring, 0);
205 intel_ring_emit(ring, 0);
206 intel_ring_emit(ring, MI_NOOP);
207 intel_ring_advance(ring);
208
209 return 0;
210}
211
212static int
213gen6_render_ring_flush(struct intel_ring_buffer *ring,
214 u32 invalidate_domains, u32 flush_domains)
215{
216 u32 flags = 0;
217 struct pipe_control *pc = ring->private;
218 u32 scratch_addr = pc->gtt_offset + 128;
219 int ret;
220
221 /* Force SNB workarounds for PIPE_CONTROL flushes */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200222 ret = intel_emit_post_sync_nonzero_flush(ring);
223 if (ret)
224 return ret;
Jesse Barnes8d315282011-10-16 10:23:31 +0200225
226 /* Just flush everything. Experiments have shown that reducing the
227 * number of bits based on the write domains has little performance
228 * impact.
229 */
230 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
Ben Widawskycc0f6392012-06-04 14:42:49 -0700231 flags |= PIPE_CONTROL_TLB_INVALIDATE;
Jesse Barnes8d315282011-10-16 10:23:31 +0200232 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
233 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
234 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
235 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
236 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
237 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
Daniel Vetter97f209b2012-06-28 09:48:42 +0200238 /*
239 * Ensure that any following seqno writes only happen when the render
240 * cache is indeed flushed (but only if the caller actually wants that).
241 */
242 if (flush_domains)
243 flags |= PIPE_CONTROL_CS_STALL;
Jesse Barnes8d315282011-10-16 10:23:31 +0200244
245 ret = intel_ring_begin(ring, 6);
246 if (ret)
247 return ret;
248
249 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
250 intel_ring_emit(ring, flags);
251 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
252 intel_ring_emit(ring, 0); /* lower dword */
253 intel_ring_emit(ring, 0); /* uppwer dword */
254 intel_ring_emit(ring, MI_NOOP);
255 intel_ring_advance(ring);
256
257 return 0;
258}
259
Chris Wilson78501ea2010-10-27 12:18:21 +0100260static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100261 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800262{
Chris Wilson78501ea2010-10-27 12:18:21 +0100263 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100264 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800265}
266
Chris Wilson78501ea2010-10-27 12:18:21 +0100267u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800268{
Chris Wilson78501ea2010-10-27 12:18:21 +0100269 drm_i915_private_t *dev_priv = ring->dev->dev_private;
270 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200271 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800272
273 return I915_READ(acthd_reg);
274}
275
Chris Wilson78501ea2010-10-27 12:18:21 +0100276static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800277{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200278 struct drm_device *dev = ring->dev;
279 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000280 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200281 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800282 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800283
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200284 if (HAS_FORCE_WAKE(dev))
285 gen6_gt_force_wake_get(dev_priv);
286
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800287 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200288 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200289 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100290 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800291
Daniel Vetter570ef602010-08-02 17:06:23 +0200292 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800293
294 /* G45 ring initialization fails to reset head to zero */
295 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000296 DRM_DEBUG_KMS("%s head not reset to zero "
297 "ctl %08x head %08x tail %08x start %08x\n",
298 ring->name,
299 I915_READ_CTL(ring),
300 I915_READ_HEAD(ring),
301 I915_READ_TAIL(ring),
302 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800303
Daniel Vetter570ef602010-08-02 17:06:23 +0200304 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800305
Chris Wilson6fd0d562010-12-05 20:42:33 +0000306 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
307 DRM_ERROR("failed to set %s head to zero "
308 "ctl %08x head %08x tail %08x start %08x\n",
309 ring->name,
310 I915_READ_CTL(ring),
311 I915_READ_HEAD(ring),
312 I915_READ_TAIL(ring),
313 I915_READ_START(ring));
314 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700315 }
316
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200317 /* Initialize the ring. This must happen _after_ we've cleared the ring
318 * registers with the above sequence (the readback of the HEAD registers
319 * also enforces ordering), otherwise the hw might lose the new ring
320 * register values. */
321 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200322 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000323 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000324 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800325
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800326 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400327 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
328 I915_READ_START(ring) == obj->gtt_offset &&
329 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000330 DRM_ERROR("%s initialization failed "
331 "ctl %08x head %08x tail %08x start %08x\n",
332 ring->name,
333 I915_READ_CTL(ring),
334 I915_READ_HEAD(ring),
335 I915_READ_TAIL(ring),
336 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200337 ret = -EIO;
338 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800339 }
340
Chris Wilson78501ea2010-10-27 12:18:21 +0100341 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
342 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800343 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000344 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200345 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000346 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100347 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800348 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000349
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200350out:
351 if (HAS_FORCE_WAKE(dev))
352 gen6_gt_force_wake_put(dev_priv);
353
354 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700355}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800356
Chris Wilsonc6df5412010-12-15 09:56:50 +0000357static int
358init_pipe_control(struct intel_ring_buffer *ring)
359{
360 struct pipe_control *pc;
361 struct drm_i915_gem_object *obj;
362 int ret;
363
364 if (ring->private)
365 return 0;
366
367 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
368 if (!pc)
369 return -ENOMEM;
370
371 obj = i915_gem_alloc_object(ring->dev, 4096);
372 if (obj == NULL) {
373 DRM_ERROR("Failed to allocate seqno page\n");
374 ret = -ENOMEM;
375 goto err;
376 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100377
378 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000379
380 ret = i915_gem_object_pin(obj, 4096, true);
381 if (ret)
382 goto err_unref;
383
384 pc->gtt_offset = obj->gtt_offset;
385 pc->cpu_page = kmap(obj->pages[0]);
386 if (pc->cpu_page == NULL)
387 goto err_unpin;
388
389 pc->obj = obj;
390 ring->private = pc;
391 return 0;
392
393err_unpin:
394 i915_gem_object_unpin(obj);
395err_unref:
396 drm_gem_object_unreference(&obj->base);
397err:
398 kfree(pc);
399 return ret;
400}
401
402static void
403cleanup_pipe_control(struct intel_ring_buffer *ring)
404{
405 struct pipe_control *pc = ring->private;
406 struct drm_i915_gem_object *obj;
407
408 if (!ring->private)
409 return;
410
411 obj = pc->obj;
412 kunmap(obj->pages[0]);
413 i915_gem_object_unpin(obj);
414 drm_gem_object_unreference(&obj->base);
415
416 kfree(pc);
417 ring->private = NULL;
418}
419
Chris Wilson78501ea2010-10-27 12:18:21 +0100420static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800421{
Chris Wilson78501ea2010-10-27 12:18:21 +0100422 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000423 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100424 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800425
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100426 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200427 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700428 if (IS_GEN7(dev))
429 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200430 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
431 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800432 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100433
Jesse Barnes8d315282011-10-16 10:23:31 +0200434 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000435 ret = init_pipe_control(ring);
436 if (ret)
437 return ret;
438 }
439
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200440 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700441 /* From the Sandybridge PRM, volume 1 part 3, page 24:
442 * "If this bit is set, STCunit will have LRA as replacement
443 * policy. [...] This bit must be reset. LRA replacement
444 * policy is not supported."
445 */
446 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200447 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700448
449 /* This is not explicitly set for GEN6, so read the register.
450 * see intel_ring_mi_set_context() for why we care.
451 * TODO: consider explicitly setting the bit for GEN5
452 */
453 ring->itlb_before_ctx_switch =
454 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800455 }
456
Daniel Vetter6b26c862012-04-24 14:04:12 +0200457 if (INTEL_INFO(dev)->gen >= 6)
458 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000459
Ben Widawsky15b9f802012-05-25 16:56:23 -0700460 if (IS_IVYBRIDGE(dev))
461 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
462
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800463 return ret;
464}
465
Chris Wilsonc6df5412010-12-15 09:56:50 +0000466static void render_ring_cleanup(struct intel_ring_buffer *ring)
467{
468 if (!ring->private)
469 return;
470
471 cleanup_pipe_control(ring);
472}
473
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000474static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700475update_mboxes(struct intel_ring_buffer *ring,
476 u32 seqno,
477 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000478{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700479 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
480 MI_SEMAPHORE_GLOBAL_GTT |
481 MI_SEMAPHORE_REGISTER |
482 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000483 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700484 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000485}
486
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700487/**
488 * gen6_add_request - Update the semaphore mailbox registers
489 *
490 * @ring - ring that is adding a request
491 * @seqno - return seqno stuck into the ring
492 *
493 * Update the mailbox registers in the *other* rings with the current seqno.
494 * This acts like a signal in the canonical semaphore.
495 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000496static int
497gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700498 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000499{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700500 u32 mbox1_reg;
501 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000502 int ret;
503
504 ret = intel_ring_begin(ring, 10);
505 if (ret)
506 return ret;
507
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700508 mbox1_reg = ring->signal_mbox[0];
509 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000510
Daniel Vetter53d227f2012-01-25 16:32:49 +0100511 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700512
513 update_mboxes(ring, *seqno, mbox1_reg);
514 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000515 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
516 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700517 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000518 intel_ring_emit(ring, MI_USER_INTERRUPT);
519 intel_ring_advance(ring);
520
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000521 return 0;
522}
523
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700524/**
525 * intel_ring_sync - sync the waiter to the signaller on seqno
526 *
527 * @waiter - ring that is waiting
528 * @signaller - ring which has, or will signal
529 * @seqno - seqno which the waiter will block on
530 */
531static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200532gen6_ring_sync(struct intel_ring_buffer *waiter,
533 struct intel_ring_buffer *signaller,
534 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000535{
536 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700537 u32 dw1 = MI_SEMAPHORE_MBOX |
538 MI_SEMAPHORE_COMPARE |
539 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000540
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700541 /* Throughout all of the GEM code, seqno passed implies our current
542 * seqno is >= the last seqno executed. However for hardware the
543 * comparison is strictly greater than.
544 */
545 seqno -= 1;
546
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200547 WARN_ON(signaller->semaphore_register[waiter->id] ==
548 MI_SEMAPHORE_SYNC_INVALID);
549
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700550 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000551 if (ret)
552 return ret;
553
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200554 intel_ring_emit(waiter,
555 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700556 intel_ring_emit(waiter, seqno);
557 intel_ring_emit(waiter, 0);
558 intel_ring_emit(waiter, MI_NOOP);
559 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000560
561 return 0;
562}
563
Chris Wilsonc6df5412010-12-15 09:56:50 +0000564#define PIPE_CONTROL_FLUSH(ring__, addr__) \
565do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200566 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
567 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000568 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
569 intel_ring_emit(ring__, 0); \
570 intel_ring_emit(ring__, 0); \
571} while (0)
572
573static int
574pc_render_add_request(struct intel_ring_buffer *ring,
575 u32 *result)
576{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100577 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000578 struct pipe_control *pc = ring->private;
579 u32 scratch_addr = pc->gtt_offset + 128;
580 int ret;
581
582 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
583 * incoherent with writes to memory, i.e. completely fubar,
584 * so we need to use PIPE_NOTIFY instead.
585 *
586 * However, we also need to workaround the qword write
587 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
588 * memory before requesting an interrupt.
589 */
590 ret = intel_ring_begin(ring, 32);
591 if (ret)
592 return ret;
593
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200594 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200595 PIPE_CONTROL_WRITE_FLUSH |
596 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000597 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
598 intel_ring_emit(ring, seqno);
599 intel_ring_emit(ring, 0);
600 PIPE_CONTROL_FLUSH(ring, scratch_addr);
601 scratch_addr += 128; /* write to separate cachelines */
602 PIPE_CONTROL_FLUSH(ring, scratch_addr);
603 scratch_addr += 128;
604 PIPE_CONTROL_FLUSH(ring, scratch_addr);
605 scratch_addr += 128;
606 PIPE_CONTROL_FLUSH(ring, scratch_addr);
607 scratch_addr += 128;
608 PIPE_CONTROL_FLUSH(ring, scratch_addr);
609 scratch_addr += 128;
610 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000611
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200612 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200613 PIPE_CONTROL_WRITE_FLUSH |
614 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000615 PIPE_CONTROL_NOTIFY);
616 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
617 intel_ring_emit(ring, seqno);
618 intel_ring_emit(ring, 0);
619 intel_ring_advance(ring);
620
621 *result = seqno;
622 return 0;
623}
624
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800625static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100626gen6_ring_get_seqno(struct intel_ring_buffer *ring)
627{
628 struct drm_device *dev = ring->dev;
629
630 /* Workaround to force correct ordering between irq and seqno writes on
631 * ivb (and maybe also on snb) by reading from a CS register (like
632 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200633 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100634 intel_ring_get_active_head(ring);
635 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
636}
637
638static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000639ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800640{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000641 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
642}
643
Chris Wilsonc6df5412010-12-15 09:56:50 +0000644static u32
645pc_render_get_seqno(struct intel_ring_buffer *ring)
646{
647 struct pipe_control *pc = ring->private;
648 return pc->cpu_page[0];
649}
650
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000651static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200652gen5_ring_get_irq(struct intel_ring_buffer *ring)
653{
654 struct drm_device *dev = ring->dev;
655 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100656 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200657
658 if (!dev->irq_enabled)
659 return false;
660
Chris Wilson7338aef2012-04-24 21:48:47 +0100661 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200662 if (ring->irq_refcount++ == 0) {
663 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
664 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
665 POSTING_READ(GTIMR);
666 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100667 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200668
669 return true;
670}
671
672static void
673gen5_ring_put_irq(struct intel_ring_buffer *ring)
674{
675 struct drm_device *dev = ring->dev;
676 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100677 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200678
Chris Wilson7338aef2012-04-24 21:48:47 +0100679 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200680 if (--ring->irq_refcount == 0) {
681 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
682 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
683 POSTING_READ(GTIMR);
684 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100685 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200686}
687
688static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200689i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700690{
Chris Wilson78501ea2010-10-27 12:18:21 +0100691 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000692 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100693 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700694
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000695 if (!dev->irq_enabled)
696 return false;
697
Chris Wilson7338aef2012-04-24 21:48:47 +0100698 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200699 if (ring->irq_refcount++ == 0) {
700 dev_priv->irq_mask &= ~ring->irq_enable_mask;
701 I915_WRITE(IMR, dev_priv->irq_mask);
702 POSTING_READ(IMR);
703 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100704 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000705
706 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700707}
708
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800709static void
Daniel Vettere3670312012-04-11 22:12:53 +0200710i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700711{
Chris Wilson78501ea2010-10-27 12:18:21 +0100712 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000713 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100714 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700715
Chris Wilson7338aef2012-04-24 21:48:47 +0100716 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200717 if (--ring->irq_refcount == 0) {
718 dev_priv->irq_mask |= ring->irq_enable_mask;
719 I915_WRITE(IMR, dev_priv->irq_mask);
720 POSTING_READ(IMR);
721 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100722 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700723}
724
Chris Wilsonc2798b12012-04-22 21:13:57 +0100725static bool
726i8xx_ring_get_irq(struct intel_ring_buffer *ring)
727{
728 struct drm_device *dev = ring->dev;
729 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100730 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100731
732 if (!dev->irq_enabled)
733 return false;
734
Chris Wilson7338aef2012-04-24 21:48:47 +0100735 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100736 if (ring->irq_refcount++ == 0) {
737 dev_priv->irq_mask &= ~ring->irq_enable_mask;
738 I915_WRITE16(IMR, dev_priv->irq_mask);
739 POSTING_READ16(IMR);
740 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100741 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100742
743 return true;
744}
745
746static void
747i8xx_ring_put_irq(struct intel_ring_buffer *ring)
748{
749 struct drm_device *dev = ring->dev;
750 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100751 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100752
Chris Wilson7338aef2012-04-24 21:48:47 +0100753 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100754 if (--ring->irq_refcount == 0) {
755 dev_priv->irq_mask |= ring->irq_enable_mask;
756 I915_WRITE16(IMR, dev_priv->irq_mask);
757 POSTING_READ16(IMR);
758 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100759 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100760}
761
Chris Wilson78501ea2010-10-27 12:18:21 +0100762void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800763{
Eric Anholt45930102011-05-06 17:12:35 -0700764 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100765 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700766 u32 mmio = 0;
767
768 /* The ring status page addresses are no longer next to the rest of
769 * the ring registers as of gen7.
770 */
771 if (IS_GEN7(dev)) {
772 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100773 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700774 mmio = RENDER_HWS_PGA_GEN7;
775 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100776 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700777 mmio = BLT_HWS_PGA_GEN7;
778 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100779 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700780 mmio = BSD_HWS_PGA_GEN7;
781 break;
782 }
783 } else if (IS_GEN6(ring->dev)) {
784 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
785 } else {
786 mmio = RING_HWS_PGA(ring->mmio_base);
787 }
788
Chris Wilson78501ea2010-10-27 12:18:21 +0100789 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
790 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800791}
792
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000793static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100794bsd_ring_flush(struct intel_ring_buffer *ring,
795 u32 invalidate_domains,
796 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800797{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000798 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000799
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000800 ret = intel_ring_begin(ring, 2);
801 if (ret)
802 return ret;
803
804 intel_ring_emit(ring, MI_FLUSH);
805 intel_ring_emit(ring, MI_NOOP);
806 intel_ring_advance(ring);
807 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800808}
809
Chris Wilson3cce4692010-10-27 16:11:02 +0100810static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200811i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100812 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800813{
814 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100815 int ret;
816
817 ret = intel_ring_begin(ring, 4);
818 if (ret)
819 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100820
Daniel Vetter53d227f2012-01-25 16:32:49 +0100821 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100822
Chris Wilson3cce4692010-10-27 16:11:02 +0100823 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
824 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
825 intel_ring_emit(ring, seqno);
826 intel_ring_emit(ring, MI_USER_INTERRUPT);
827 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800828
Chris Wilson3cce4692010-10-27 16:11:02 +0100829 *result = seqno;
830 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800831}
832
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000833static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700834gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000835{
836 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000837 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100838 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000839
840 if (!dev->irq_enabled)
841 return false;
842
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100843 /* It looks like we need to prevent the gt from suspending while waiting
844 * for an notifiy irq, otherwise irqs seem to get lost on at least the
845 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100846 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100847
Chris Wilson7338aef2012-04-24 21:48:47 +0100848 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000849 if (ring->irq_refcount++ == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700850 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
851 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
852 GEN6_RENDER_L3_PARITY_ERROR));
853 else
854 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200855 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
856 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
857 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000858 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100859 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000860
861 return true;
862}
863
864static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700865gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000866{
867 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000868 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100869 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000870
Chris Wilson7338aef2012-04-24 21:48:47 +0100871 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000872 if (--ring->irq_refcount == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700873 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
874 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
875 else
876 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200877 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
878 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
879 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000880 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100881 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100882
Daniel Vetter99ffa162012-01-25 14:04:00 +0100883 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000884}
885
Zou Nan haid1b851f2010-05-21 09:08:57 +0800886static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200887i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800888{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100889 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100890
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100891 ret = intel_ring_begin(ring, 2);
892 if (ret)
893 return ret;
894
Chris Wilson78501ea2010-10-27 12:18:21 +0100895 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100896 MI_BATCH_BUFFER_START |
897 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100898 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000899 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100900 intel_ring_advance(ring);
901
Zou Nan haid1b851f2010-05-21 09:08:57 +0800902 return 0;
903}
904
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800905static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200906i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000907 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700908{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000909 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700910
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200911 ret = intel_ring_begin(ring, 4);
912 if (ret)
913 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700914
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200915 intel_ring_emit(ring, MI_BATCH_BUFFER);
916 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
917 intel_ring_emit(ring, offset + len - 8);
918 intel_ring_emit(ring, 0);
919 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100920
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200921 return 0;
922}
923
924static int
925i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
926 u32 offset, u32 len)
927{
928 int ret;
929
930 ret = intel_ring_begin(ring, 2);
931 if (ret)
932 return ret;
933
Chris Wilson65f56872012-04-17 16:38:12 +0100934 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200935 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000936 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700937
Eric Anholt62fdfea2010-05-21 13:26:39 -0700938 return 0;
939}
940
Chris Wilson78501ea2010-10-27 12:18:21 +0100941static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700942{
Chris Wilson05394f32010-11-08 19:18:58 +0000943 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700944
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800945 obj = ring->status_page.obj;
946 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700947 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700948
Chris Wilson05394f32010-11-08 19:18:58 +0000949 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700950 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000951 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800952 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700953}
954
Chris Wilson78501ea2010-10-27 12:18:21 +0100955static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700956{
Chris Wilson78501ea2010-10-27 12:18:21 +0100957 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000958 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700959 int ret;
960
Eric Anholt62fdfea2010-05-21 13:26:39 -0700961 obj = i915_gem_alloc_object(dev, 4096);
962 if (obj == NULL) {
963 DRM_ERROR("Failed to allocate status page\n");
964 ret = -ENOMEM;
965 goto err;
966 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100967
968 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700969
Daniel Vetter75e9e912010-11-04 17:11:09 +0100970 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700971 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700972 goto err_unref;
973 }
974
Chris Wilson05394f32010-11-08 19:18:58 +0000975 ring->status_page.gfx_addr = obj->gtt_offset;
976 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800977 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -0700978 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700979 goto err_unpin;
980 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800981 ring->status_page.obj = obj;
982 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700983
Chris Wilson78501ea2010-10-27 12:18:21 +0100984 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800985 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
986 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700987
988 return 0;
989
990err_unpin:
991 i915_gem_object_unpin(obj);
992err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000993 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700994err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800995 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700996}
997
Ben Widawskyc43b5632012-04-16 14:07:40 -0700998static int intel_init_ring_buffer(struct drm_device *dev,
999 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001000{
Chris Wilson05394f32010-11-08 19:18:58 +00001001 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001002 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001003 int ret;
1004
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001005 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001006 INIT_LIST_HEAD(&ring->active_list);
1007 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01001008 INIT_LIST_HEAD(&ring->gpu_write_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001009 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001010
Chris Wilsonb259f672011-03-29 13:19:09 +01001011 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001012
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001013 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001014 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001015 if (ret)
1016 return ret;
1017 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001018
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001019 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001020 if (obj == NULL) {
1021 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001022 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001023 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001024 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001025
Chris Wilson05394f32010-11-08 19:18:58 +00001026 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001027
Daniel Vetter75e9e912010-11-04 17:11:09 +01001028 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +01001029 if (ret)
1030 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001031
Chris Wilson3eef8912012-06-04 17:05:40 +01001032 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1033 if (ret)
1034 goto err_unpin;
1035
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001036 ring->virtual_start =
1037 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1038 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001039 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001041 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001042 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001043 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001044
Chris Wilson78501ea2010-10-27 12:18:21 +01001045 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001046 if (ret)
1047 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001048
Chris Wilson55249ba2010-12-22 14:04:47 +00001049 /* Workaround an erratum on the i830 which causes a hang if
1050 * the TAIL pointer points to within the last 2 cachelines
1051 * of the buffer.
1052 */
1053 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001054 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001055 ring->effective_size -= 128;
1056
Chris Wilsonc584fe42010-10-29 18:15:52 +01001057 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001058
1059err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001060 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001061err_unpin:
1062 i915_gem_object_unpin(obj);
1063err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001064 drm_gem_object_unreference(&obj->base);
1065 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001066err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001067 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001068 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001069}
1070
Chris Wilson78501ea2010-10-27 12:18:21 +01001071void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001072{
Chris Wilson33626e62010-10-29 16:18:36 +01001073 struct drm_i915_private *dev_priv;
1074 int ret;
1075
Chris Wilson05394f32010-11-08 19:18:58 +00001076 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001077 return;
1078
Chris Wilson33626e62010-10-29 16:18:36 +01001079 /* Disable the ring buffer. The ring must be idle at this point */
1080 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001081 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001082 if (ret)
1083 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1084 ring->name, ret);
1085
Chris Wilson33626e62010-10-29 16:18:36 +01001086 I915_WRITE_CTL(ring, 0);
1087
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001088 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001089
Chris Wilson05394f32010-11-08 19:18:58 +00001090 i915_gem_object_unpin(ring->obj);
1091 drm_gem_object_unreference(&ring->obj->base);
1092 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001093
Zou Nan hai8d192152010-11-02 16:31:01 +08001094 if (ring->cleanup)
1095 ring->cleanup(ring);
1096
Chris Wilson78501ea2010-10-27 12:18:21 +01001097 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001098}
1099
Chris Wilson78501ea2010-10-27 12:18:21 +01001100static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001101{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001102 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001103 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001104
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001105 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001106 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001107 if (ret)
1108 return ret;
1109 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001110
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001111 virt = ring->virtual_start + ring->tail;
1112 rem /= 4;
1113 while (rem--)
1114 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001115
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001116 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001117 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001118
1119 return 0;
1120}
1121
Chris Wilsona71d8d92012-02-15 11:25:36 +00001122static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1123{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001124 int ret;
1125
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001126 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001127 if (!ret)
1128 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001129
1130 return ret;
1131}
1132
1133static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1134{
1135 struct drm_i915_gem_request *request;
1136 u32 seqno = 0;
1137 int ret;
1138
1139 i915_gem_retire_requests_ring(ring);
1140
1141 if (ring->last_retired_head != -1) {
1142 ring->head = ring->last_retired_head;
1143 ring->last_retired_head = -1;
1144 ring->space = ring_space(ring);
1145 if (ring->space >= n)
1146 return 0;
1147 }
1148
1149 list_for_each_entry(request, &ring->request_list, list) {
1150 int space;
1151
1152 if (request->tail == -1)
1153 continue;
1154
1155 space = request->tail - (ring->tail + 8);
1156 if (space < 0)
1157 space += ring->size;
1158 if (space >= n) {
1159 seqno = request->seqno;
1160 break;
1161 }
1162
1163 /* Consume this request in case we need more space than
1164 * is available and so need to prevent a race between
1165 * updating last_retired_head and direct reads of
1166 * I915_RING_HEAD. It also provides a nice sanity check.
1167 */
1168 request->tail = -1;
1169 }
1170
1171 if (seqno == 0)
1172 return -ENOSPC;
1173
1174 ret = intel_ring_wait_seqno(ring, seqno);
1175 if (ret)
1176 return ret;
1177
1178 if (WARN_ON(ring->last_retired_head == -1))
1179 return -ENOSPC;
1180
1181 ring->head = ring->last_retired_head;
1182 ring->last_retired_head = -1;
1183 ring->space = ring_space(ring);
1184 if (WARN_ON(ring->space < n))
1185 return -ENOSPC;
1186
1187 return 0;
1188}
1189
Chris Wilson78501ea2010-10-27 12:18:21 +01001190int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001191{
Chris Wilson78501ea2010-10-27 12:18:21 +01001192 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001193 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001194 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001195 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001196
Chris Wilsona71d8d92012-02-15 11:25:36 +00001197 ret = intel_ring_wait_request(ring, n);
1198 if (ret != -ENOSPC)
1199 return ret;
1200
Chris Wilsondb53a302011-02-03 11:57:46 +00001201 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001202 /* With GEM the hangcheck timer should kick us out of the loop,
1203 * leaving it early runs the risk of corrupting GEM state (due
1204 * to running on almost untested codepaths). But on resume
1205 * timers don't work yet, so prevent a complete hang in that
1206 * case by choosing an insanely large timeout. */
1207 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001208
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001209 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001210 ring->head = I915_READ_HEAD(ring);
1211 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001212 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001213 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001214 return 0;
1215 }
1216
1217 if (dev->primary->master) {
1218 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1219 if (master_priv->sarea_priv)
1220 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1221 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001222
Chris Wilsone60a0b12010-10-13 10:09:14 +01001223 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001224
1225 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1226 if (ret)
1227 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001228 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001229 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001230 return -EBUSY;
1231}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001232
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001233int intel_ring_begin(struct intel_ring_buffer *ring,
1234 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001235{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001236 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001237 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001238 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001239
Daniel Vetterde2b9982012-07-04 22:52:50 +02001240 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1241 if (ret)
1242 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001243
Chris Wilson55249ba2010-12-22 14:04:47 +00001244 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001245 ret = intel_wrap_ring_buffer(ring);
1246 if (unlikely(ret))
1247 return ret;
1248 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001249
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001250 if (unlikely(ring->space < n)) {
1251 ret = intel_wait_ring_buffer(ring, n);
1252 if (unlikely(ret))
1253 return ret;
1254 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001255
1256 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001257 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001258}
1259
Chris Wilson78501ea2010-10-27 12:18:21 +01001260void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001261{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001262 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1263
Chris Wilsond97ed332010-08-04 15:18:13 +01001264 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001265 if (dev_priv->stop_rings & intel_ring_flag(ring))
1266 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001267 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001268}
1269
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001270
Chris Wilson78501ea2010-10-27 12:18:21 +01001271static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001272 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001273{
Akshay Joshi0206e352011-08-16 15:34:10 -04001274 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001275
1276 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001277
Chris Wilson12f55812012-07-05 17:14:01 +01001278 /* Disable notification that the ring is IDLE. The GT
1279 * will then assume that it is busy and bring it out of rc6.
1280 */
1281 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1282 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1283
1284 /* Clear the context id. Here be magic! */
1285 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1286
1287 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001288 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001289 GEN6_BSD_SLEEP_INDICATOR) == 0,
1290 50))
1291 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001292
Chris Wilson12f55812012-07-05 17:14:01 +01001293 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001294 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001295 POSTING_READ(RING_TAIL(ring->mmio_base));
1296
1297 /* Let the ring send IDLE messages to the GT again,
1298 * and so let it sleep to conserve power when idle.
1299 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001300 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001301 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001302}
1303
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001304static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001305 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001306{
Chris Wilson71a77e02011-02-02 12:13:49 +00001307 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001308 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001309
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001310 ret = intel_ring_begin(ring, 4);
1311 if (ret)
1312 return ret;
1313
Chris Wilson71a77e02011-02-02 12:13:49 +00001314 cmd = MI_FLUSH_DW;
1315 if (invalidate & I915_GEM_GPU_DOMAINS)
1316 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1317 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001318 intel_ring_emit(ring, 0);
1319 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001320 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001321 intel_ring_advance(ring);
1322 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001323}
1324
1325static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001326gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001327 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001328{
Akshay Joshi0206e352011-08-16 15:34:10 -04001329 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001330
Akshay Joshi0206e352011-08-16 15:34:10 -04001331 ret = intel_ring_begin(ring, 2);
1332 if (ret)
1333 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001334
Akshay Joshi0206e352011-08-16 15:34:10 -04001335 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1336 /* bit0-7 is the length on GEN6+ */
1337 intel_ring_emit(ring, offset);
1338 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001339
Akshay Joshi0206e352011-08-16 15:34:10 -04001340 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001341}
1342
Chris Wilson549f7362010-10-19 11:19:32 +01001343/* Blitter support (SandyBridge+) */
1344
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001345static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001346 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001347{
Chris Wilson71a77e02011-02-02 12:13:49 +00001348 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001349 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001350
Daniel Vetter6a233c72011-12-14 13:57:07 +01001351 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001352 if (ret)
1353 return ret;
1354
Chris Wilson71a77e02011-02-02 12:13:49 +00001355 cmd = MI_FLUSH_DW;
1356 if (invalidate & I915_GEM_DOMAIN_RENDER)
1357 cmd |= MI_INVALIDATE_TLB;
1358 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001359 intel_ring_emit(ring, 0);
1360 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001361 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001362 intel_ring_advance(ring);
1363 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001364}
1365
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001366int intel_init_render_ring_buffer(struct drm_device *dev)
1367{
1368 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001369 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001370
Daniel Vetter59465b52012-04-11 22:12:48 +02001371 ring->name = "render ring";
1372 ring->id = RCS;
1373 ring->mmio_base = RENDER_RING_BASE;
1374
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001375 if (INTEL_INFO(dev)->gen >= 6) {
1376 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001377 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001378 ring->irq_get = gen6_ring_get_irq;
1379 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001380 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001381 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001382 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001383 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1384 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1385 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1386 ring->signal_mbox[0] = GEN6_VRSYNC;
1387 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001388 } else if (IS_GEN5(dev)) {
1389 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001390 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001391 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001392 ring->irq_get = gen5_ring_get_irq;
1393 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001394 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001395 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001396 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001397 if (INTEL_INFO(dev)->gen < 4)
1398 ring->flush = gen2_render_ring_flush;
1399 else
1400 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001401 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001402 if (IS_GEN2(dev)) {
1403 ring->irq_get = i8xx_ring_get_irq;
1404 ring->irq_put = i8xx_ring_put_irq;
1405 } else {
1406 ring->irq_get = i9xx_ring_get_irq;
1407 ring->irq_put = i9xx_ring_put_irq;
1408 }
Daniel Vettere3670312012-04-11 22:12:53 +02001409 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001410 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001411 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001412 if (INTEL_INFO(dev)->gen >= 6)
1413 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1414 else if (INTEL_INFO(dev)->gen >= 4)
1415 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1416 else if (IS_I830(dev) || IS_845G(dev))
1417 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1418 else
1419 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001420 ring->init = init_render_ring;
1421 ring->cleanup = render_ring_cleanup;
1422
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001423
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001424 if (!I915_NEED_GFX_HWS(dev)) {
1425 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1426 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1427 }
1428
1429 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001430}
1431
Chris Wilsone8616b62011-01-20 09:57:11 +00001432int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1433{
1434 drm_i915_private_t *dev_priv = dev->dev_private;
1435 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1436
Daniel Vetter59465b52012-04-11 22:12:48 +02001437 ring->name = "render ring";
1438 ring->id = RCS;
1439 ring->mmio_base = RENDER_RING_BASE;
1440
Chris Wilsone8616b62011-01-20 09:57:11 +00001441 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001442 /* non-kms not supported on gen6+ */
1443 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001444 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001445
1446 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1447 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1448 * the special gen5 functions. */
1449 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001450 if (INTEL_INFO(dev)->gen < 4)
1451 ring->flush = gen2_render_ring_flush;
1452 else
1453 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001454 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001455 if (IS_GEN2(dev)) {
1456 ring->irq_get = i8xx_ring_get_irq;
1457 ring->irq_put = i8xx_ring_put_irq;
1458 } else {
1459 ring->irq_get = i9xx_ring_get_irq;
1460 ring->irq_put = i9xx_ring_put_irq;
1461 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001462 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001463 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001464 if (INTEL_INFO(dev)->gen >= 4)
1465 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1466 else if (IS_I830(dev) || IS_845G(dev))
1467 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1468 else
1469 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001470 ring->init = init_render_ring;
1471 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001472
Keith Packardf3234702011-07-22 10:44:39 -07001473 if (!I915_NEED_GFX_HWS(dev))
1474 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1475
Chris Wilsone8616b62011-01-20 09:57:11 +00001476 ring->dev = dev;
1477 INIT_LIST_HEAD(&ring->active_list);
1478 INIT_LIST_HEAD(&ring->request_list);
1479 INIT_LIST_HEAD(&ring->gpu_write_list);
1480
1481 ring->size = size;
1482 ring->effective_size = ring->size;
1483 if (IS_I830(ring->dev))
1484 ring->effective_size -= 128;
1485
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001486 ring->virtual_start = ioremap_wc(start, size);
1487 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001488 DRM_ERROR("can not ioremap virtual address for"
1489 " ring buffer\n");
1490 return -ENOMEM;
1491 }
1492
Chris Wilsone8616b62011-01-20 09:57:11 +00001493 return 0;
1494}
1495
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001496int intel_init_bsd_ring_buffer(struct drm_device *dev)
1497{
1498 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001499 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001500
Daniel Vetter58fa3832012-04-11 22:12:49 +02001501 ring->name = "bsd ring";
1502 ring->id = VCS;
1503
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001504 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001505 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1506 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001507 /* gen6 bsd needs a special wa for tail updates */
1508 if (IS_GEN6(dev))
1509 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001510 ring->flush = gen6_ring_flush;
1511 ring->add_request = gen6_add_request;
1512 ring->get_seqno = gen6_ring_get_seqno;
1513 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1514 ring->irq_get = gen6_ring_get_irq;
1515 ring->irq_put = gen6_ring_put_irq;
1516 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001517 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001518 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1519 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1520 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1521 ring->signal_mbox[0] = GEN6_RVSYNC;
1522 ring->signal_mbox[1] = GEN6_BVSYNC;
1523 } else {
1524 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001525 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001526 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001527 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001528 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001529 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001530 ring->irq_get = gen5_ring_get_irq;
1531 ring->irq_put = gen5_ring_put_irq;
1532 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001533 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001534 ring->irq_get = i9xx_ring_get_irq;
1535 ring->irq_put = i9xx_ring_put_irq;
1536 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001537 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001538 }
1539 ring->init = init_ring_common;
1540
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001541
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001542 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001543}
Chris Wilson549f7362010-10-19 11:19:32 +01001544
1545int intel_init_blt_ring_buffer(struct drm_device *dev)
1546{
1547 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001548 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001549
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001550 ring->name = "blitter ring";
1551 ring->id = BCS;
1552
1553 ring->mmio_base = BLT_RING_BASE;
1554 ring->write_tail = ring_write_tail;
1555 ring->flush = blt_ring_flush;
1556 ring->add_request = gen6_add_request;
1557 ring->get_seqno = gen6_ring_get_seqno;
1558 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1559 ring->irq_get = gen6_ring_get_irq;
1560 ring->irq_put = gen6_ring_put_irq;
1561 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001562 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001563 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1564 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1565 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1566 ring->signal_mbox[0] = GEN6_RBSYNC;
1567 ring->signal_mbox[1] = GEN6_VBSYNC;
1568 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001569
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001570 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001571}