blob: bf0195a96d5308c48d273cb492081a8d415ba188 [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
292 /* Initialize the ring. */
Chris Wilson05394f32010-11-08 19:18:58 +0000293 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter570ef602010-08-02 17:06:23 +0200294 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800295
296 /* G45 ring initialization fails to reset head to zero */
297 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000298 DRM_DEBUG_KMS("%s head not reset to zero "
299 "ctl %08x head %08x tail %08x start %08x\n",
300 ring->name,
301 I915_READ_CTL(ring),
302 I915_READ_HEAD(ring),
303 I915_READ_TAIL(ring),
304 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800305
Daniel Vetter570ef602010-08-02 17:06:23 +0200306 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800307
Chris Wilson6fd0d562010-12-05 20:42:33 +0000308 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
309 DRM_ERROR("failed to set %s head to zero "
310 "ctl %08x head %08x tail %08x start %08x\n",
311 ring->name,
312 I915_READ_CTL(ring),
313 I915_READ_HEAD(ring),
314 I915_READ_TAIL(ring),
315 I915_READ_START(ring));
316 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700317 }
318
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200319 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000320 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000321 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800322
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800323 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400324 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
325 I915_READ_START(ring) == obj->gtt_offset &&
326 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000327 DRM_ERROR("%s initialization failed "
328 "ctl %08x head %08x tail %08x start %08x\n",
329 ring->name,
330 I915_READ_CTL(ring),
331 I915_READ_HEAD(ring),
332 I915_READ_TAIL(ring),
333 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200334 ret = -EIO;
335 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800336 }
337
Chris Wilson78501ea2010-10-27 12:18:21 +0100338 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
339 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800340 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000341 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200342 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000343 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100344 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800345 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000346
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200347out:
348 if (HAS_FORCE_WAKE(dev))
349 gen6_gt_force_wake_put(dev_priv);
350
351 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700352}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800353
Chris Wilsonc6df5412010-12-15 09:56:50 +0000354static int
355init_pipe_control(struct intel_ring_buffer *ring)
356{
357 struct pipe_control *pc;
358 struct drm_i915_gem_object *obj;
359 int ret;
360
361 if (ring->private)
362 return 0;
363
364 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
365 if (!pc)
366 return -ENOMEM;
367
368 obj = i915_gem_alloc_object(ring->dev, 4096);
369 if (obj == NULL) {
370 DRM_ERROR("Failed to allocate seqno page\n");
371 ret = -ENOMEM;
372 goto err;
373 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100374
375 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000376
377 ret = i915_gem_object_pin(obj, 4096, true);
378 if (ret)
379 goto err_unref;
380
381 pc->gtt_offset = obj->gtt_offset;
382 pc->cpu_page = kmap(obj->pages[0]);
383 if (pc->cpu_page == NULL)
384 goto err_unpin;
385
386 pc->obj = obj;
387 ring->private = pc;
388 return 0;
389
390err_unpin:
391 i915_gem_object_unpin(obj);
392err_unref:
393 drm_gem_object_unreference(&obj->base);
394err:
395 kfree(pc);
396 return ret;
397}
398
399static void
400cleanup_pipe_control(struct intel_ring_buffer *ring)
401{
402 struct pipe_control *pc = ring->private;
403 struct drm_i915_gem_object *obj;
404
405 if (!ring->private)
406 return;
407
408 obj = pc->obj;
409 kunmap(obj->pages[0]);
410 i915_gem_object_unpin(obj);
411 drm_gem_object_unreference(&obj->base);
412
413 kfree(pc);
414 ring->private = NULL;
415}
416
Chris Wilson78501ea2010-10-27 12:18:21 +0100417static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800418{
Chris Wilson78501ea2010-10-27 12:18:21 +0100419 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000420 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100421 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800422
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100423 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200424 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700425 if (IS_GEN7(dev))
426 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200427 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
428 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800429 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100430
Jesse Barnes8d315282011-10-16 10:23:31 +0200431 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000432 ret = init_pipe_control(ring);
433 if (ret)
434 return ret;
435 }
436
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200437 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700438 /* From the Sandybridge PRM, volume 1 part 3, page 24:
439 * "If this bit is set, STCunit will have LRA as replacement
440 * policy. [...] This bit must be reset. LRA replacement
441 * policy is not supported."
442 */
443 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200444 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700445
446 /* This is not explicitly set for GEN6, so read the register.
447 * see intel_ring_mi_set_context() for why we care.
448 * TODO: consider explicitly setting the bit for GEN5
449 */
450 ring->itlb_before_ctx_switch =
451 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800452 }
453
Daniel Vetter6b26c862012-04-24 14:04:12 +0200454 if (INTEL_INFO(dev)->gen >= 6)
455 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000456
Ben Widawsky15b9f802012-05-25 16:56:23 -0700457 if (IS_IVYBRIDGE(dev))
458 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
459
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800460 return ret;
461}
462
Chris Wilsonc6df5412010-12-15 09:56:50 +0000463static void render_ring_cleanup(struct intel_ring_buffer *ring)
464{
465 if (!ring->private)
466 return;
467
468 cleanup_pipe_control(ring);
469}
470
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000471static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700472update_mboxes(struct intel_ring_buffer *ring,
473 u32 seqno,
474 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000475{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700476 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
477 MI_SEMAPHORE_GLOBAL_GTT |
478 MI_SEMAPHORE_REGISTER |
479 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000480 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700481 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000482}
483
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700484/**
485 * gen6_add_request - Update the semaphore mailbox registers
486 *
487 * @ring - ring that is adding a request
488 * @seqno - return seqno stuck into the ring
489 *
490 * Update the mailbox registers in the *other* rings with the current seqno.
491 * This acts like a signal in the canonical semaphore.
492 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000493static int
494gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700495 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000496{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700497 u32 mbox1_reg;
498 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000499 int ret;
500
501 ret = intel_ring_begin(ring, 10);
502 if (ret)
503 return ret;
504
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700505 mbox1_reg = ring->signal_mbox[0];
506 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000507
Daniel Vetter53d227f2012-01-25 16:32:49 +0100508 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700509
510 update_mboxes(ring, *seqno, mbox1_reg);
511 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000512 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
513 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700514 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000515 intel_ring_emit(ring, MI_USER_INTERRUPT);
516 intel_ring_advance(ring);
517
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000518 return 0;
519}
520
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700521/**
522 * intel_ring_sync - sync the waiter to the signaller on seqno
523 *
524 * @waiter - ring that is waiting
525 * @signaller - ring which has, or will signal
526 * @seqno - seqno which the waiter will block on
527 */
528static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200529gen6_ring_sync(struct intel_ring_buffer *waiter,
530 struct intel_ring_buffer *signaller,
531 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000532{
533 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700534 u32 dw1 = MI_SEMAPHORE_MBOX |
535 MI_SEMAPHORE_COMPARE |
536 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000537
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700538 /* Throughout all of the GEM code, seqno passed implies our current
539 * seqno is >= the last seqno executed. However for hardware the
540 * comparison is strictly greater than.
541 */
542 seqno -= 1;
543
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200544 WARN_ON(signaller->semaphore_register[waiter->id] ==
545 MI_SEMAPHORE_SYNC_INVALID);
546
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700547 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000548 if (ret)
549 return ret;
550
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200551 intel_ring_emit(waiter,
552 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700553 intel_ring_emit(waiter, seqno);
554 intel_ring_emit(waiter, 0);
555 intel_ring_emit(waiter, MI_NOOP);
556 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000557
558 return 0;
559}
560
Chris Wilsonc6df5412010-12-15 09:56:50 +0000561#define PIPE_CONTROL_FLUSH(ring__, addr__) \
562do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200563 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
564 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000565 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
566 intel_ring_emit(ring__, 0); \
567 intel_ring_emit(ring__, 0); \
568} while (0)
569
570static int
571pc_render_add_request(struct intel_ring_buffer *ring,
572 u32 *result)
573{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100574 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000575 struct pipe_control *pc = ring->private;
576 u32 scratch_addr = pc->gtt_offset + 128;
577 int ret;
578
579 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
580 * incoherent with writes to memory, i.e. completely fubar,
581 * so we need to use PIPE_NOTIFY instead.
582 *
583 * However, we also need to workaround the qword write
584 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
585 * memory before requesting an interrupt.
586 */
587 ret = intel_ring_begin(ring, 32);
588 if (ret)
589 return ret;
590
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200591 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200592 PIPE_CONTROL_WRITE_FLUSH |
593 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000594 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
595 intel_ring_emit(ring, seqno);
596 intel_ring_emit(ring, 0);
597 PIPE_CONTROL_FLUSH(ring, scratch_addr);
598 scratch_addr += 128; /* write to separate cachelines */
599 PIPE_CONTROL_FLUSH(ring, scratch_addr);
600 scratch_addr += 128;
601 PIPE_CONTROL_FLUSH(ring, scratch_addr);
602 scratch_addr += 128;
603 PIPE_CONTROL_FLUSH(ring, scratch_addr);
604 scratch_addr += 128;
605 PIPE_CONTROL_FLUSH(ring, scratch_addr);
606 scratch_addr += 128;
607 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000608
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200609 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200610 PIPE_CONTROL_WRITE_FLUSH |
611 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000612 PIPE_CONTROL_NOTIFY);
613 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
614 intel_ring_emit(ring, seqno);
615 intel_ring_emit(ring, 0);
616 intel_ring_advance(ring);
617
618 *result = seqno;
619 return 0;
620}
621
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800622static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100623gen6_ring_get_seqno(struct intel_ring_buffer *ring)
624{
625 struct drm_device *dev = ring->dev;
626
627 /* Workaround to force correct ordering between irq and seqno writes on
628 * ivb (and maybe also on snb) by reading from a CS register (like
629 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200630 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100631 intel_ring_get_active_head(ring);
632 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
633}
634
635static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000636ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800637{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000638 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
639}
640
Chris Wilsonc6df5412010-12-15 09:56:50 +0000641static u32
642pc_render_get_seqno(struct intel_ring_buffer *ring)
643{
644 struct pipe_control *pc = ring->private;
645 return pc->cpu_page[0];
646}
647
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000648static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200649gen5_ring_get_irq(struct intel_ring_buffer *ring)
650{
651 struct drm_device *dev = ring->dev;
652 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100653 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200654
655 if (!dev->irq_enabled)
656 return false;
657
Chris Wilson7338aef2012-04-24 21:48:47 +0100658 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200659 if (ring->irq_refcount++ == 0) {
660 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
661 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
662 POSTING_READ(GTIMR);
663 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100664 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200665
666 return true;
667}
668
669static void
670gen5_ring_put_irq(struct intel_ring_buffer *ring)
671{
672 struct drm_device *dev = ring->dev;
673 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100674 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200675
Chris Wilson7338aef2012-04-24 21:48:47 +0100676 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200677 if (--ring->irq_refcount == 0) {
678 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
679 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
680 POSTING_READ(GTIMR);
681 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100682 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200683}
684
685static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200686i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700687{
Chris Wilson78501ea2010-10-27 12:18:21 +0100688 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000689 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100690 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700691
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000692 if (!dev->irq_enabled)
693 return false;
694
Chris Wilson7338aef2012-04-24 21:48:47 +0100695 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200696 if (ring->irq_refcount++ == 0) {
697 dev_priv->irq_mask &= ~ring->irq_enable_mask;
698 I915_WRITE(IMR, dev_priv->irq_mask);
699 POSTING_READ(IMR);
700 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100701 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000702
703 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700704}
705
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800706static void
Daniel Vettere3670312012-04-11 22:12:53 +0200707i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700708{
Chris Wilson78501ea2010-10-27 12:18:21 +0100709 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000710 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100711 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700712
Chris Wilson7338aef2012-04-24 21:48:47 +0100713 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200714 if (--ring->irq_refcount == 0) {
715 dev_priv->irq_mask |= ring->irq_enable_mask;
716 I915_WRITE(IMR, dev_priv->irq_mask);
717 POSTING_READ(IMR);
718 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100719 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700720}
721
Chris Wilsonc2798b12012-04-22 21:13:57 +0100722static bool
723i8xx_ring_get_irq(struct intel_ring_buffer *ring)
724{
725 struct drm_device *dev = ring->dev;
726 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100727 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100728
729 if (!dev->irq_enabled)
730 return false;
731
Chris Wilson7338aef2012-04-24 21:48:47 +0100732 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100733 if (ring->irq_refcount++ == 0) {
734 dev_priv->irq_mask &= ~ring->irq_enable_mask;
735 I915_WRITE16(IMR, dev_priv->irq_mask);
736 POSTING_READ16(IMR);
737 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100738 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100739
740 return true;
741}
742
743static void
744i8xx_ring_put_irq(struct intel_ring_buffer *ring)
745{
746 struct drm_device *dev = ring->dev;
747 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100748 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100749
Chris Wilson7338aef2012-04-24 21:48:47 +0100750 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100751 if (--ring->irq_refcount == 0) {
752 dev_priv->irq_mask |= ring->irq_enable_mask;
753 I915_WRITE16(IMR, dev_priv->irq_mask);
754 POSTING_READ16(IMR);
755 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100756 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100757}
758
Chris Wilson78501ea2010-10-27 12:18:21 +0100759void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800760{
Eric Anholt45930102011-05-06 17:12:35 -0700761 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100762 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700763 u32 mmio = 0;
764
765 /* The ring status page addresses are no longer next to the rest of
766 * the ring registers as of gen7.
767 */
768 if (IS_GEN7(dev)) {
769 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100770 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700771 mmio = RENDER_HWS_PGA_GEN7;
772 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100773 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700774 mmio = BLT_HWS_PGA_GEN7;
775 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100776 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700777 mmio = BSD_HWS_PGA_GEN7;
778 break;
779 }
780 } else if (IS_GEN6(ring->dev)) {
781 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
782 } else {
783 mmio = RING_HWS_PGA(ring->mmio_base);
784 }
785
Chris Wilson78501ea2010-10-27 12:18:21 +0100786 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
787 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800788}
789
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000790static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100791bsd_ring_flush(struct intel_ring_buffer *ring,
792 u32 invalidate_domains,
793 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800794{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000795 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000796
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000797 ret = intel_ring_begin(ring, 2);
798 if (ret)
799 return ret;
800
801 intel_ring_emit(ring, MI_FLUSH);
802 intel_ring_emit(ring, MI_NOOP);
803 intel_ring_advance(ring);
804 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800805}
806
Chris Wilson3cce4692010-10-27 16:11:02 +0100807static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200808i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100809 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800810{
811 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100812 int ret;
813
814 ret = intel_ring_begin(ring, 4);
815 if (ret)
816 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100817
Daniel Vetter53d227f2012-01-25 16:32:49 +0100818 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100819
Chris Wilson3cce4692010-10-27 16:11:02 +0100820 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
821 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
822 intel_ring_emit(ring, seqno);
823 intel_ring_emit(ring, MI_USER_INTERRUPT);
824 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800825
Chris Wilson3cce4692010-10-27 16:11:02 +0100826 *result = seqno;
827 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800828}
829
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000830static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700831gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000832{
833 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000834 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100835 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000836
837 if (!dev->irq_enabled)
838 return false;
839
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100840 /* It looks like we need to prevent the gt from suspending while waiting
841 * for an notifiy irq, otherwise irqs seem to get lost on at least the
842 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100843 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100844
Chris Wilson7338aef2012-04-24 21:48:47 +0100845 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000846 if (ring->irq_refcount++ == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700847 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
848 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
849 GEN6_RENDER_L3_PARITY_ERROR));
850 else
851 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200852 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
853 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
854 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000855 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100856 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000857
858 return true;
859}
860
861static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700862gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000863{
864 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000865 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100866 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000867
Chris Wilson7338aef2012-04-24 21:48:47 +0100868 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000869 if (--ring->irq_refcount == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700870 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
871 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
872 else
873 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200874 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
875 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
876 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000877 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100878 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100879
Daniel Vetter99ffa162012-01-25 14:04:00 +0100880 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000881}
882
Zou Nan haid1b851f2010-05-21 09:08:57 +0800883static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200884i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800885{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100886 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100887
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100888 ret = intel_ring_begin(ring, 2);
889 if (ret)
890 return ret;
891
Chris Wilson78501ea2010-10-27 12:18:21 +0100892 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100893 MI_BATCH_BUFFER_START |
894 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100895 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000896 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100897 intel_ring_advance(ring);
898
Zou Nan haid1b851f2010-05-21 09:08:57 +0800899 return 0;
900}
901
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800902static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200903i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000904 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700905{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000906 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700907
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200908 ret = intel_ring_begin(ring, 4);
909 if (ret)
910 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700911
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200912 intel_ring_emit(ring, MI_BATCH_BUFFER);
913 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
914 intel_ring_emit(ring, offset + len - 8);
915 intel_ring_emit(ring, 0);
916 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100917
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200918 return 0;
919}
920
921static int
922i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
923 u32 offset, u32 len)
924{
925 int ret;
926
927 ret = intel_ring_begin(ring, 2);
928 if (ret)
929 return ret;
930
Chris Wilson65f56872012-04-17 16:38:12 +0100931 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200932 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000933 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700934
Eric Anholt62fdfea2010-05-21 13:26:39 -0700935 return 0;
936}
937
Chris Wilson78501ea2010-10-27 12:18:21 +0100938static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700939{
Chris Wilson05394f32010-11-08 19:18:58 +0000940 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700941
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800942 obj = ring->status_page.obj;
943 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700944 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700945
Chris Wilson05394f32010-11-08 19:18:58 +0000946 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700947 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000948 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800949 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700950}
951
Chris Wilson78501ea2010-10-27 12:18:21 +0100952static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700953{
Chris Wilson78501ea2010-10-27 12:18:21 +0100954 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000955 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700956 int ret;
957
Eric Anholt62fdfea2010-05-21 13:26:39 -0700958 obj = i915_gem_alloc_object(dev, 4096);
959 if (obj == NULL) {
960 DRM_ERROR("Failed to allocate status page\n");
961 ret = -ENOMEM;
962 goto err;
963 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100964
965 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700966
Daniel Vetter75e9e912010-11-04 17:11:09 +0100967 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700968 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700969 goto err_unref;
970 }
971
Chris Wilson05394f32010-11-08 19:18:58 +0000972 ring->status_page.gfx_addr = obj->gtt_offset;
973 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800974 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -0700975 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700976 goto err_unpin;
977 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800978 ring->status_page.obj = obj;
979 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700980
Chris Wilson78501ea2010-10-27 12:18:21 +0100981 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800982 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
983 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700984
985 return 0;
986
987err_unpin:
988 i915_gem_object_unpin(obj);
989err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000990 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700991err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800992 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700993}
994
Ben Widawskyc43b5632012-04-16 14:07:40 -0700995static int intel_init_ring_buffer(struct drm_device *dev,
996 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700997{
Chris Wilson05394f32010-11-08 19:18:58 +0000998 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +0200999 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001000 int ret;
1001
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001002 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001003 INIT_LIST_HEAD(&ring->active_list);
1004 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01001005 INIT_LIST_HEAD(&ring->gpu_write_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001006 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001007
Chris Wilsonb259f672011-03-29 13:19:09 +01001008 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001009
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001010 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001011 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001012 if (ret)
1013 return ret;
1014 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001015
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001016 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001017 if (obj == NULL) {
1018 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001019 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001020 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001021 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001022
Chris Wilson05394f32010-11-08 19:18:58 +00001023 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001024
Daniel Vetter75e9e912010-11-04 17:11:09 +01001025 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +01001026 if (ret)
1027 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001028
Chris Wilson3eef8912012-06-04 17:05:40 +01001029 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1030 if (ret)
1031 goto err_unpin;
1032
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001033 ring->virtual_start =
1034 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1035 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001036 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001037 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001038 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001039 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001041
Chris Wilson78501ea2010-10-27 12:18:21 +01001042 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001043 if (ret)
1044 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001045
Chris Wilson55249ba2010-12-22 14:04:47 +00001046 /* Workaround an erratum on the i830 which causes a hang if
1047 * the TAIL pointer points to within the last 2 cachelines
1048 * of the buffer.
1049 */
1050 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001051 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001052 ring->effective_size -= 128;
1053
Chris Wilsonc584fe42010-10-29 18:15:52 +01001054 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001055
1056err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001057 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001058err_unpin:
1059 i915_gem_object_unpin(obj);
1060err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001061 drm_gem_object_unreference(&obj->base);
1062 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001063err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001064 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001065 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001066}
1067
Chris Wilson78501ea2010-10-27 12:18:21 +01001068void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001069{
Chris Wilson33626e62010-10-29 16:18:36 +01001070 struct drm_i915_private *dev_priv;
1071 int ret;
1072
Chris Wilson05394f32010-11-08 19:18:58 +00001073 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001074 return;
1075
Chris Wilson33626e62010-10-29 16:18:36 +01001076 /* Disable the ring buffer. The ring must be idle at this point */
1077 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001078 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001079 if (ret)
1080 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1081 ring->name, ret);
1082
Chris Wilson33626e62010-10-29 16:18:36 +01001083 I915_WRITE_CTL(ring, 0);
1084
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001085 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001086
Chris Wilson05394f32010-11-08 19:18:58 +00001087 i915_gem_object_unpin(ring->obj);
1088 drm_gem_object_unreference(&ring->obj->base);
1089 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001090
Zou Nan hai8d192152010-11-02 16:31:01 +08001091 if (ring->cleanup)
1092 ring->cleanup(ring);
1093
Chris Wilson78501ea2010-10-27 12:18:21 +01001094 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001095}
1096
Chris Wilson78501ea2010-10-27 12:18:21 +01001097static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001098{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001099 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001100 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001101
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001102 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001103 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001104 if (ret)
1105 return ret;
1106 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001107
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001108 virt = ring->virtual_start + ring->tail;
1109 rem /= 4;
1110 while (rem--)
1111 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001112
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001113 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001114 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001115
1116 return 0;
1117}
1118
Chris Wilsona71d8d92012-02-15 11:25:36 +00001119static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1120{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001121 int ret;
1122
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001123 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001124 if (!ret)
1125 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001126
1127 return ret;
1128}
1129
1130static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1131{
1132 struct drm_i915_gem_request *request;
1133 u32 seqno = 0;
1134 int ret;
1135
1136 i915_gem_retire_requests_ring(ring);
1137
1138 if (ring->last_retired_head != -1) {
1139 ring->head = ring->last_retired_head;
1140 ring->last_retired_head = -1;
1141 ring->space = ring_space(ring);
1142 if (ring->space >= n)
1143 return 0;
1144 }
1145
1146 list_for_each_entry(request, &ring->request_list, list) {
1147 int space;
1148
1149 if (request->tail == -1)
1150 continue;
1151
1152 space = request->tail - (ring->tail + 8);
1153 if (space < 0)
1154 space += ring->size;
1155 if (space >= n) {
1156 seqno = request->seqno;
1157 break;
1158 }
1159
1160 /* Consume this request in case we need more space than
1161 * is available and so need to prevent a race between
1162 * updating last_retired_head and direct reads of
1163 * I915_RING_HEAD. It also provides a nice sanity check.
1164 */
1165 request->tail = -1;
1166 }
1167
1168 if (seqno == 0)
1169 return -ENOSPC;
1170
1171 ret = intel_ring_wait_seqno(ring, seqno);
1172 if (ret)
1173 return ret;
1174
1175 if (WARN_ON(ring->last_retired_head == -1))
1176 return -ENOSPC;
1177
1178 ring->head = ring->last_retired_head;
1179 ring->last_retired_head = -1;
1180 ring->space = ring_space(ring);
1181 if (WARN_ON(ring->space < n))
1182 return -ENOSPC;
1183
1184 return 0;
1185}
1186
Chris Wilson78501ea2010-10-27 12:18:21 +01001187int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001188{
Chris Wilson78501ea2010-10-27 12:18:21 +01001189 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001190 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001191 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001192 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001193
Chris Wilsona71d8d92012-02-15 11:25:36 +00001194 ret = intel_ring_wait_request(ring, n);
1195 if (ret != -ENOSPC)
1196 return ret;
1197
Chris Wilsondb53a302011-02-03 11:57:46 +00001198 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001199 /* With GEM the hangcheck timer should kick us out of the loop,
1200 * leaving it early runs the risk of corrupting GEM state (due
1201 * to running on almost untested codepaths). But on resume
1202 * timers don't work yet, so prevent a complete hang in that
1203 * case by choosing an insanely large timeout. */
1204 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001205
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001206 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001207 ring->head = I915_READ_HEAD(ring);
1208 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001209 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001210 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001211 return 0;
1212 }
1213
1214 if (dev->primary->master) {
1215 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1216 if (master_priv->sarea_priv)
1217 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1218 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001219
Chris Wilsone60a0b12010-10-13 10:09:14 +01001220 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001221
1222 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1223 if (ret)
1224 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001225 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001226 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001227 return -EBUSY;
1228}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001229
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001230int intel_ring_begin(struct intel_ring_buffer *ring,
1231 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001232{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001233 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001234 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001235 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001236
Daniel Vetterde2b9982012-07-04 22:52:50 +02001237 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1238 if (ret)
1239 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001240
Chris Wilson55249ba2010-12-22 14:04:47 +00001241 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001242 ret = intel_wrap_ring_buffer(ring);
1243 if (unlikely(ret))
1244 return ret;
1245 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001246
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001247 if (unlikely(ring->space < n)) {
1248 ret = intel_wait_ring_buffer(ring, n);
1249 if (unlikely(ret))
1250 return ret;
1251 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001252
1253 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001254 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001255}
1256
Chris Wilson78501ea2010-10-27 12:18:21 +01001257void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001258{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001259 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1260
Chris Wilsond97ed332010-08-04 15:18:13 +01001261 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001262 if (dev_priv->stop_rings & intel_ring_flag(ring))
1263 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001264 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001265}
1266
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001267
Chris Wilson78501ea2010-10-27 12:18:21 +01001268static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001269 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001270{
Akshay Joshi0206e352011-08-16 15:34:10 -04001271 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001272
1273 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001274
Chris Wilson12f55812012-07-05 17:14:01 +01001275 /* Disable notification that the ring is IDLE. The GT
1276 * will then assume that it is busy and bring it out of rc6.
1277 */
1278 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1279 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1280
1281 /* Clear the context id. Here be magic! */
1282 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1283
1284 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001285 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001286 GEN6_BSD_SLEEP_INDICATOR) == 0,
1287 50))
1288 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001289
Chris Wilson12f55812012-07-05 17:14:01 +01001290 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001291 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001292 POSTING_READ(RING_TAIL(ring->mmio_base));
1293
1294 /* Let the ring send IDLE messages to the GT again,
1295 * and so let it sleep to conserve power when idle.
1296 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001297 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001298 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001299}
1300
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001301static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001302 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001303{
Chris Wilson71a77e02011-02-02 12:13:49 +00001304 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001305 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001306
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001307 ret = intel_ring_begin(ring, 4);
1308 if (ret)
1309 return ret;
1310
Chris Wilson71a77e02011-02-02 12:13:49 +00001311 cmd = MI_FLUSH_DW;
1312 if (invalidate & I915_GEM_GPU_DOMAINS)
1313 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1314 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001315 intel_ring_emit(ring, 0);
1316 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001317 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001318 intel_ring_advance(ring);
1319 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001320}
1321
1322static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001323gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001324 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001325{
Akshay Joshi0206e352011-08-16 15:34:10 -04001326 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001327
Akshay Joshi0206e352011-08-16 15:34:10 -04001328 ret = intel_ring_begin(ring, 2);
1329 if (ret)
1330 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001331
Akshay Joshi0206e352011-08-16 15:34:10 -04001332 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1333 /* bit0-7 is the length on GEN6+ */
1334 intel_ring_emit(ring, offset);
1335 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001336
Akshay Joshi0206e352011-08-16 15:34:10 -04001337 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001338}
1339
Chris Wilson549f7362010-10-19 11:19:32 +01001340/* Blitter support (SandyBridge+) */
1341
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001342static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001343 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001344{
Chris Wilson71a77e02011-02-02 12:13:49 +00001345 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001346 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001347
Daniel Vetter6a233c72011-12-14 13:57:07 +01001348 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001349 if (ret)
1350 return ret;
1351
Chris Wilson71a77e02011-02-02 12:13:49 +00001352 cmd = MI_FLUSH_DW;
1353 if (invalidate & I915_GEM_DOMAIN_RENDER)
1354 cmd |= MI_INVALIDATE_TLB;
1355 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001356 intel_ring_emit(ring, 0);
1357 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001358 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001359 intel_ring_advance(ring);
1360 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001361}
1362
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001363int intel_init_render_ring_buffer(struct drm_device *dev)
1364{
1365 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001366 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001367
Daniel Vetter59465b52012-04-11 22:12:48 +02001368 ring->name = "render ring";
1369 ring->id = RCS;
1370 ring->mmio_base = RENDER_RING_BASE;
1371
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001372 if (INTEL_INFO(dev)->gen >= 6) {
1373 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001374 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001375 ring->irq_get = gen6_ring_get_irq;
1376 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001377 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001378 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001379 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001380 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1381 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1382 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1383 ring->signal_mbox[0] = GEN6_VRSYNC;
1384 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001385 } else if (IS_GEN5(dev)) {
1386 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001387 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001388 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001389 ring->irq_get = gen5_ring_get_irq;
1390 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001391 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001392 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001393 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001394 if (INTEL_INFO(dev)->gen < 4)
1395 ring->flush = gen2_render_ring_flush;
1396 else
1397 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001398 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001399 if (IS_GEN2(dev)) {
1400 ring->irq_get = i8xx_ring_get_irq;
1401 ring->irq_put = i8xx_ring_put_irq;
1402 } else {
1403 ring->irq_get = i9xx_ring_get_irq;
1404 ring->irq_put = i9xx_ring_put_irq;
1405 }
Daniel Vettere3670312012-04-11 22:12:53 +02001406 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001407 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001408 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001409 if (INTEL_INFO(dev)->gen >= 6)
1410 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1411 else if (INTEL_INFO(dev)->gen >= 4)
1412 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1413 else if (IS_I830(dev) || IS_845G(dev))
1414 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1415 else
1416 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001417 ring->init = init_render_ring;
1418 ring->cleanup = render_ring_cleanup;
1419
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001420
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001421 if (!I915_NEED_GFX_HWS(dev)) {
1422 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1423 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1424 }
1425
1426 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001427}
1428
Chris Wilsone8616b62011-01-20 09:57:11 +00001429int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1430{
1431 drm_i915_private_t *dev_priv = dev->dev_private;
1432 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1433
Daniel Vetter59465b52012-04-11 22:12:48 +02001434 ring->name = "render ring";
1435 ring->id = RCS;
1436 ring->mmio_base = RENDER_RING_BASE;
1437
Chris Wilsone8616b62011-01-20 09:57:11 +00001438 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001439 /* non-kms not supported on gen6+ */
1440 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001441 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001442
1443 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1444 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1445 * the special gen5 functions. */
1446 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001447 if (INTEL_INFO(dev)->gen < 4)
1448 ring->flush = gen2_render_ring_flush;
1449 else
1450 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001451 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001452 if (IS_GEN2(dev)) {
1453 ring->irq_get = i8xx_ring_get_irq;
1454 ring->irq_put = i8xx_ring_put_irq;
1455 } else {
1456 ring->irq_get = i9xx_ring_get_irq;
1457 ring->irq_put = i9xx_ring_put_irq;
1458 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001459 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001460 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001461 if (INTEL_INFO(dev)->gen >= 4)
1462 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1463 else if (IS_I830(dev) || IS_845G(dev))
1464 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1465 else
1466 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001467 ring->init = init_render_ring;
1468 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001469
Keith Packardf3234702011-07-22 10:44:39 -07001470 if (!I915_NEED_GFX_HWS(dev))
1471 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1472
Chris Wilsone8616b62011-01-20 09:57:11 +00001473 ring->dev = dev;
1474 INIT_LIST_HEAD(&ring->active_list);
1475 INIT_LIST_HEAD(&ring->request_list);
1476 INIT_LIST_HEAD(&ring->gpu_write_list);
1477
1478 ring->size = size;
1479 ring->effective_size = ring->size;
1480 if (IS_I830(ring->dev))
1481 ring->effective_size -= 128;
1482
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001483 ring->virtual_start = ioremap_wc(start, size);
1484 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001485 DRM_ERROR("can not ioremap virtual address for"
1486 " ring buffer\n");
1487 return -ENOMEM;
1488 }
1489
Chris Wilsone8616b62011-01-20 09:57:11 +00001490 return 0;
1491}
1492
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001493int intel_init_bsd_ring_buffer(struct drm_device *dev)
1494{
1495 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001496 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001497
Daniel Vetter58fa3832012-04-11 22:12:49 +02001498 ring->name = "bsd ring";
1499 ring->id = VCS;
1500
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001501 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001502 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1503 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001504 /* gen6 bsd needs a special wa for tail updates */
1505 if (IS_GEN6(dev))
1506 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001507 ring->flush = gen6_ring_flush;
1508 ring->add_request = gen6_add_request;
1509 ring->get_seqno = gen6_ring_get_seqno;
1510 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1511 ring->irq_get = gen6_ring_get_irq;
1512 ring->irq_put = gen6_ring_put_irq;
1513 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001514 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001515 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1516 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1517 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1518 ring->signal_mbox[0] = GEN6_RVSYNC;
1519 ring->signal_mbox[1] = GEN6_BVSYNC;
1520 } else {
1521 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001522 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001523 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001524 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001525 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001526 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001527 ring->irq_get = gen5_ring_get_irq;
1528 ring->irq_put = gen5_ring_put_irq;
1529 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001530 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001531 ring->irq_get = i9xx_ring_get_irq;
1532 ring->irq_put = i9xx_ring_put_irq;
1533 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001534 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001535 }
1536 ring->init = init_ring_common;
1537
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001538
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001539 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001540}
Chris Wilson549f7362010-10-19 11:19:32 +01001541
1542int intel_init_blt_ring_buffer(struct drm_device *dev)
1543{
1544 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001545 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001546
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001547 ring->name = "blitter ring";
1548 ring->id = BCS;
1549
1550 ring->mmio_base = BLT_RING_BASE;
1551 ring->write_tail = ring_write_tail;
1552 ring->flush = blt_ring_flush;
1553 ring->add_request = gen6_add_request;
1554 ring->get_seqno = gen6_ring_get_seqno;
1555 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1556 ring->irq_get = gen6_ring_get_irq;
1557 ring->irq_put = gen6_ring_put_irq;
1558 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001559 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001560 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1561 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1562 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1563 ring->signal_mbox[0] = GEN6_RBSYNC;
1564 ring->signal_mbox[1] = GEN6_VBSYNC;
1565 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001566
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001567 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001568}