blob: 8733da529edf43fdf50aa3e33a531c7397356767 [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;
Jesse Barnes8d315282011-10-16 10:23:31 +0200217 int ret;
218
Jesse Barnes8d315282011-10-16 10:23:31 +0200219 /* Just flush everything. Experiments have shown that reducing the
220 * number of bits based on the write domains has little performance
221 * impact.
222 */
223 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
Ben Widawskycc0f6392012-06-04 14:42:49 -0700224 flags |= PIPE_CONTROL_TLB_INVALIDATE;
Jesse Barnes8d315282011-10-16 10:23:31 +0200225 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
226 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
227 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
228 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
229 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
230 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
Daniel Vetter97f209b2012-06-28 09:48:42 +0200231 /*
232 * Ensure that any following seqno writes only happen when the render
233 * cache is indeed flushed (but only if the caller actually wants that).
234 */
235 if (flush_domains)
236 flags |= PIPE_CONTROL_CS_STALL;
Jesse Barnes8d315282011-10-16 10:23:31 +0200237
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100238 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200239 if (ret)
240 return ret;
241
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100242 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200243 intel_ring_emit(ring, flags);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100244 intel_ring_emit(ring, 0);
245 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200246 intel_ring_advance(ring);
247
248 return 0;
249}
250
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100251static int
252gen6_render_ring_flush__wa(struct intel_ring_buffer *ring,
253 u32 invalidate_domains, u32 flush_domains)
254{
255 int ret;
256
257 /* Force SNB workarounds for PIPE_CONTROL flushes */
258 ret = intel_emit_post_sync_nonzero_flush(ring);
259 if (ret)
260 return ret;
261
262 return gen6_render_ring_flush(ring, invalidate_domains, flush_domains);
263}
264
Chris Wilson78501ea2010-10-27 12:18:21 +0100265static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100266 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800267{
Chris Wilson78501ea2010-10-27 12:18:21 +0100268 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100269 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800270}
271
Chris Wilson78501ea2010-10-27 12:18:21 +0100272u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800273{
Chris Wilson78501ea2010-10-27 12:18:21 +0100274 drm_i915_private_t *dev_priv = ring->dev->dev_private;
275 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200276 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800277
278 return I915_READ(acthd_reg);
279}
280
Chris Wilson78501ea2010-10-27 12:18:21 +0100281static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800282{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200283 struct drm_device *dev = ring->dev;
284 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000285 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200286 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800287 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800288
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200289 if (HAS_FORCE_WAKE(dev))
290 gen6_gt_force_wake_get(dev_priv);
291
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800292 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200293 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200294 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100295 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800296
297 /* Initialize the ring. */
Chris Wilson05394f32010-11-08 19:18:58 +0000298 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter570ef602010-08-02 17:06:23 +0200299 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800300
301 /* G45 ring initialization fails to reset head to zero */
302 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000303 DRM_DEBUG_KMS("%s head not reset to zero "
304 "ctl %08x head %08x tail %08x start %08x\n",
305 ring->name,
306 I915_READ_CTL(ring),
307 I915_READ_HEAD(ring),
308 I915_READ_TAIL(ring),
309 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800310
Daniel Vetter570ef602010-08-02 17:06:23 +0200311 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800312
Chris Wilson6fd0d562010-12-05 20:42:33 +0000313 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
314 DRM_ERROR("failed to set %s head to zero "
315 "ctl %08x head %08x tail %08x start %08x\n",
316 ring->name,
317 I915_READ_CTL(ring),
318 I915_READ_HEAD(ring),
319 I915_READ_TAIL(ring),
320 I915_READ_START(ring));
321 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700322 }
323
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200324 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000325 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000326 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800327
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800328 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400329 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
330 I915_READ_START(ring) == obj->gtt_offset &&
331 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000332 DRM_ERROR("%s initialization failed "
333 "ctl %08x head %08x tail %08x start %08x\n",
334 ring->name,
335 I915_READ_CTL(ring),
336 I915_READ_HEAD(ring),
337 I915_READ_TAIL(ring),
338 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200339 ret = -EIO;
340 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800341 }
342
Chris Wilson78501ea2010-10-27 12:18:21 +0100343 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
344 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800345 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000346 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200347 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000348 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100349 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800350 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000351
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200352out:
353 if (HAS_FORCE_WAKE(dev))
354 gen6_gt_force_wake_put(dev_priv);
355
356 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700357}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800358
Chris Wilsonc6df5412010-12-15 09:56:50 +0000359static int
360init_pipe_control(struct intel_ring_buffer *ring)
361{
362 struct pipe_control *pc;
363 struct drm_i915_gem_object *obj;
364 int ret;
365
366 if (ring->private)
367 return 0;
368
369 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
370 if (!pc)
371 return -ENOMEM;
372
373 obj = i915_gem_alloc_object(ring->dev, 4096);
374 if (obj == NULL) {
375 DRM_ERROR("Failed to allocate seqno page\n");
376 ret = -ENOMEM;
377 goto err;
378 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100379
380 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000381
382 ret = i915_gem_object_pin(obj, 4096, true);
383 if (ret)
384 goto err_unref;
385
386 pc->gtt_offset = obj->gtt_offset;
387 pc->cpu_page = kmap(obj->pages[0]);
388 if (pc->cpu_page == NULL)
389 goto err_unpin;
390
391 pc->obj = obj;
392 ring->private = pc;
393 return 0;
394
395err_unpin:
396 i915_gem_object_unpin(obj);
397err_unref:
398 drm_gem_object_unreference(&obj->base);
399err:
400 kfree(pc);
401 return ret;
402}
403
404static void
405cleanup_pipe_control(struct intel_ring_buffer *ring)
406{
407 struct pipe_control *pc = ring->private;
408 struct drm_i915_gem_object *obj;
409
410 if (!ring->private)
411 return;
412
413 obj = pc->obj;
414 kunmap(obj->pages[0]);
415 i915_gem_object_unpin(obj);
416 drm_gem_object_unreference(&obj->base);
417
418 kfree(pc);
419 ring->private = NULL;
420}
421
Chris Wilson78501ea2010-10-27 12:18:21 +0100422static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800423{
Chris Wilson78501ea2010-10-27 12:18:21 +0100424 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000425 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100426 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800427
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100428 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200429 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700430 if (IS_GEN7(dev))
431 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200432 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
433 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800434 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100435
Jesse Barnes8d315282011-10-16 10:23:31 +0200436 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000437 ret = init_pipe_control(ring);
438 if (ret)
439 return ret;
440 }
441
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200442 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700443 /* From the Sandybridge PRM, volume 1 part 3, page 24:
444 * "If this bit is set, STCunit will have LRA as replacement
445 * policy. [...] This bit must be reset. LRA replacement
446 * policy is not supported."
447 */
448 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200449 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700450
451 /* This is not explicitly set for GEN6, so read the register.
452 * see intel_ring_mi_set_context() for why we care.
453 * TODO: consider explicitly setting the bit for GEN5
454 */
455 ring->itlb_before_ctx_switch =
456 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800457 }
458
Daniel Vetter6b26c862012-04-24 14:04:12 +0200459 if (INTEL_INFO(dev)->gen >= 6)
460 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000461
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700462 if (HAS_L3_GPU_CACHE(dev))
Ben Widawsky15b9f802012-05-25 16:56:23 -0700463 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
464
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800465 return ret;
466}
467
Chris Wilsonc6df5412010-12-15 09:56:50 +0000468static void render_ring_cleanup(struct intel_ring_buffer *ring)
469{
470 if (!ring->private)
471 return;
472
473 cleanup_pipe_control(ring);
474}
475
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000476static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700477update_mboxes(struct intel_ring_buffer *ring,
478 u32 seqno,
479 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000480{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700481 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
482 MI_SEMAPHORE_GLOBAL_GTT |
483 MI_SEMAPHORE_REGISTER |
484 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000485 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700486 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000487}
488
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700489/**
490 * gen6_add_request - Update the semaphore mailbox registers
491 *
492 * @ring - ring that is adding a request
493 * @seqno - return seqno stuck into the ring
494 *
495 * Update the mailbox registers in the *other* rings with the current seqno.
496 * This acts like a signal in the canonical semaphore.
497 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000498static int
499gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700500 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000501{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700502 u32 mbox1_reg;
503 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000504 int ret;
505
506 ret = intel_ring_begin(ring, 10);
507 if (ret)
508 return ret;
509
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700510 mbox1_reg = ring->signal_mbox[0];
511 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000512
Daniel Vetter53d227f2012-01-25 16:32:49 +0100513 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700514
515 update_mboxes(ring, *seqno, mbox1_reg);
516 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000517 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
518 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700519 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000520 intel_ring_emit(ring, MI_USER_INTERRUPT);
521 intel_ring_advance(ring);
522
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000523 return 0;
524}
525
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700526/**
527 * intel_ring_sync - sync the waiter to the signaller on seqno
528 *
529 * @waiter - ring that is waiting
530 * @signaller - ring which has, or will signal
531 * @seqno - seqno which the waiter will block on
532 */
533static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200534gen6_ring_sync(struct intel_ring_buffer *waiter,
535 struct intel_ring_buffer *signaller,
536 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000537{
538 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700539 u32 dw1 = MI_SEMAPHORE_MBOX |
540 MI_SEMAPHORE_COMPARE |
541 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000542
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700543 /* Throughout all of the GEM code, seqno passed implies our current
544 * seqno is >= the last seqno executed. However for hardware the
545 * comparison is strictly greater than.
546 */
547 seqno -= 1;
548
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200549 WARN_ON(signaller->semaphore_register[waiter->id] ==
550 MI_SEMAPHORE_SYNC_INVALID);
551
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700552 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000553 if (ret)
554 return ret;
555
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200556 intel_ring_emit(waiter,
557 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700558 intel_ring_emit(waiter, seqno);
559 intel_ring_emit(waiter, 0);
560 intel_ring_emit(waiter, MI_NOOP);
561 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000562
563 return 0;
564}
565
Chris Wilsonc6df5412010-12-15 09:56:50 +0000566#define PIPE_CONTROL_FLUSH(ring__, addr__) \
567do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200568 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
569 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000570 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
571 intel_ring_emit(ring__, 0); \
572 intel_ring_emit(ring__, 0); \
573} while (0)
574
575static int
576pc_render_add_request(struct intel_ring_buffer *ring,
577 u32 *result)
578{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100579 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000580 struct pipe_control *pc = ring->private;
581 u32 scratch_addr = pc->gtt_offset + 128;
582 int ret;
583
584 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
585 * incoherent with writes to memory, i.e. completely fubar,
586 * so we need to use PIPE_NOTIFY instead.
587 *
588 * However, we also need to workaround the qword write
589 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
590 * memory before requesting an interrupt.
591 */
592 ret = intel_ring_begin(ring, 32);
593 if (ret)
594 return ret;
595
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200596 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200597 PIPE_CONTROL_WRITE_FLUSH |
598 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000599 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
600 intel_ring_emit(ring, seqno);
601 intel_ring_emit(ring, 0);
602 PIPE_CONTROL_FLUSH(ring, scratch_addr);
603 scratch_addr += 128; /* write to separate cachelines */
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);
611 scratch_addr += 128;
612 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000613
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200614 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200615 PIPE_CONTROL_WRITE_FLUSH |
616 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000617 PIPE_CONTROL_NOTIFY);
618 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
619 intel_ring_emit(ring, seqno);
620 intel_ring_emit(ring, 0);
621 intel_ring_advance(ring);
622
623 *result = seqno;
624 return 0;
625}
626
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800627static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100628gen6_ring_get_seqno(struct intel_ring_buffer *ring)
629{
630 struct drm_device *dev = ring->dev;
631
632 /* Workaround to force correct ordering between irq and seqno writes on
633 * ivb (and maybe also on snb) by reading from a CS register (like
634 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200635 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100636 intel_ring_get_active_head(ring);
637 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
638}
639
640static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000641ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800642{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000643 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
644}
645
Chris Wilsonc6df5412010-12-15 09:56:50 +0000646static u32
647pc_render_get_seqno(struct intel_ring_buffer *ring)
648{
649 struct pipe_control *pc = ring->private;
650 return pc->cpu_page[0];
651}
652
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000653static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200654gen5_ring_get_irq(struct intel_ring_buffer *ring)
655{
656 struct drm_device *dev = ring->dev;
657 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100658 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200659
660 if (!dev->irq_enabled)
661 return false;
662
Chris Wilson7338aef2012-04-24 21:48:47 +0100663 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200664 if (ring->irq_refcount++ == 0) {
665 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
666 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
667 POSTING_READ(GTIMR);
668 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100669 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200670
671 return true;
672}
673
674static void
675gen5_ring_put_irq(struct intel_ring_buffer *ring)
676{
677 struct drm_device *dev = ring->dev;
678 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100679 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200680
Chris Wilson7338aef2012-04-24 21:48:47 +0100681 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200682 if (--ring->irq_refcount == 0) {
683 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
684 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
685 POSTING_READ(GTIMR);
686 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100687 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200688}
689
690static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200691i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700692{
Chris Wilson78501ea2010-10-27 12:18:21 +0100693 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000694 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100695 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700696
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000697 if (!dev->irq_enabled)
698 return false;
699
Chris Wilson7338aef2012-04-24 21:48:47 +0100700 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200701 if (ring->irq_refcount++ == 0) {
702 dev_priv->irq_mask &= ~ring->irq_enable_mask;
703 I915_WRITE(IMR, dev_priv->irq_mask);
704 POSTING_READ(IMR);
705 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100706 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000707
708 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700709}
710
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800711static void
Daniel Vettere3670312012-04-11 22:12:53 +0200712i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700713{
Chris Wilson78501ea2010-10-27 12:18:21 +0100714 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000715 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100716 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700717
Chris Wilson7338aef2012-04-24 21:48:47 +0100718 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200719 if (--ring->irq_refcount == 0) {
720 dev_priv->irq_mask |= ring->irq_enable_mask;
721 I915_WRITE(IMR, dev_priv->irq_mask);
722 POSTING_READ(IMR);
723 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100724 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700725}
726
Chris Wilsonc2798b12012-04-22 21:13:57 +0100727static bool
728i8xx_ring_get_irq(struct intel_ring_buffer *ring)
729{
730 struct drm_device *dev = ring->dev;
731 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100732 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100733
734 if (!dev->irq_enabled)
735 return false;
736
Chris Wilson7338aef2012-04-24 21:48:47 +0100737 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100738 if (ring->irq_refcount++ == 0) {
739 dev_priv->irq_mask &= ~ring->irq_enable_mask;
740 I915_WRITE16(IMR, dev_priv->irq_mask);
741 POSTING_READ16(IMR);
742 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100743 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100744
745 return true;
746}
747
748static void
749i8xx_ring_put_irq(struct intel_ring_buffer *ring)
750{
751 struct drm_device *dev = ring->dev;
752 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100753 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100754
Chris Wilson7338aef2012-04-24 21:48:47 +0100755 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100756 if (--ring->irq_refcount == 0) {
757 dev_priv->irq_mask |= ring->irq_enable_mask;
758 I915_WRITE16(IMR, dev_priv->irq_mask);
759 POSTING_READ16(IMR);
760 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100761 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100762}
763
Chris Wilson78501ea2010-10-27 12:18:21 +0100764void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800765{
Eric Anholt45930102011-05-06 17:12:35 -0700766 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100767 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700768 u32 mmio = 0;
769
770 /* The ring status page addresses are no longer next to the rest of
771 * the ring registers as of gen7.
772 */
773 if (IS_GEN7(dev)) {
774 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100775 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700776 mmio = RENDER_HWS_PGA_GEN7;
777 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100778 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700779 mmio = BLT_HWS_PGA_GEN7;
780 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100781 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700782 mmio = BSD_HWS_PGA_GEN7;
783 break;
784 }
785 } else if (IS_GEN6(ring->dev)) {
786 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
787 } else {
788 mmio = RING_HWS_PGA(ring->mmio_base);
789 }
790
Chris Wilson78501ea2010-10-27 12:18:21 +0100791 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
792 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800793}
794
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000795static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100796bsd_ring_flush(struct intel_ring_buffer *ring,
797 u32 invalidate_domains,
798 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800799{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000800 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000801
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000802 ret = intel_ring_begin(ring, 2);
803 if (ret)
804 return ret;
805
806 intel_ring_emit(ring, MI_FLUSH);
807 intel_ring_emit(ring, MI_NOOP);
808 intel_ring_advance(ring);
809 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800810}
811
Chris Wilson3cce4692010-10-27 16:11:02 +0100812static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200813i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100814 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800815{
816 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100817 int ret;
818
819 ret = intel_ring_begin(ring, 4);
820 if (ret)
821 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100822
Daniel Vetter53d227f2012-01-25 16:32:49 +0100823 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100824
Chris Wilson3cce4692010-10-27 16:11:02 +0100825 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
826 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
827 intel_ring_emit(ring, seqno);
828 intel_ring_emit(ring, MI_USER_INTERRUPT);
829 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800830
Chris Wilson3cce4692010-10-27 16:11:02 +0100831 *result = seqno;
832 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800833}
834
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000835static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700836gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000837{
838 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000839 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100840 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000841
842 if (!dev->irq_enabled)
843 return false;
844
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100845 /* It looks like we need to prevent the gt from suspending while waiting
846 * for an notifiy irq, otherwise irqs seem to get lost on at least the
847 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100848 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100849
Chris Wilson7338aef2012-04-24 21:48:47 +0100850 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000851 if (ring->irq_refcount++ == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700852 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700853 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
854 GEN6_RENDER_L3_PARITY_ERROR));
855 else
856 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200857 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
858 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
859 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000860 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100861 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000862
863 return true;
864}
865
866static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700867gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000868{
869 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000870 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100871 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000872
Chris Wilson7338aef2012-04-24 21:48:47 +0100873 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000874 if (--ring->irq_refcount == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700875 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700876 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
877 else
878 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200879 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
880 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
881 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000882 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100883 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100884
Daniel Vetter99ffa162012-01-25 14:04:00 +0100885 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000886}
887
Zou Nan haid1b851f2010-05-21 09:08:57 +0800888static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200889i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800890{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100891 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100892
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100893 ret = intel_ring_begin(ring, 2);
894 if (ret)
895 return ret;
896
Chris Wilson78501ea2010-10-27 12:18:21 +0100897 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100898 MI_BATCH_BUFFER_START |
899 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100900 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000901 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100902 intel_ring_advance(ring);
903
Zou Nan haid1b851f2010-05-21 09:08:57 +0800904 return 0;
905}
906
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800907static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200908i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000909 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700910{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000911 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700912
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200913 ret = intel_ring_begin(ring, 4);
914 if (ret)
915 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700916
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200917 intel_ring_emit(ring, MI_BATCH_BUFFER);
918 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
919 intel_ring_emit(ring, offset + len - 8);
920 intel_ring_emit(ring, 0);
921 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100922
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200923 return 0;
924}
925
926static int
927i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
928 u32 offset, u32 len)
929{
930 int ret;
931
932 ret = intel_ring_begin(ring, 2);
933 if (ret)
934 return ret;
935
Chris Wilson65f56872012-04-17 16:38:12 +0100936 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200937 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000938 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700939
Eric Anholt62fdfea2010-05-21 13:26:39 -0700940 return 0;
941}
942
Chris Wilson78501ea2010-10-27 12:18:21 +0100943static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700944{
Chris Wilson05394f32010-11-08 19:18:58 +0000945 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700946
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800947 obj = ring->status_page.obj;
948 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700949 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700950
Chris Wilson05394f32010-11-08 19:18:58 +0000951 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700952 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000953 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800954 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700955}
956
Chris Wilson78501ea2010-10-27 12:18:21 +0100957static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700958{
Chris Wilson78501ea2010-10-27 12:18:21 +0100959 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000960 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700961 int ret;
962
Eric Anholt62fdfea2010-05-21 13:26:39 -0700963 obj = i915_gem_alloc_object(dev, 4096);
964 if (obj == NULL) {
965 DRM_ERROR("Failed to allocate status page\n");
966 ret = -ENOMEM;
967 goto err;
968 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100969
970 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700971
Daniel Vetter75e9e912010-11-04 17:11:09 +0100972 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700973 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700974 goto err_unref;
975 }
976
Chris Wilson05394f32010-11-08 19:18:58 +0000977 ring->status_page.gfx_addr = obj->gtt_offset;
978 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800979 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -0700980 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700981 goto err_unpin;
982 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800983 ring->status_page.obj = obj;
984 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700985
Chris Wilson78501ea2010-10-27 12:18:21 +0100986 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800987 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
988 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700989
990 return 0;
991
992err_unpin:
993 i915_gem_object_unpin(obj);
994err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000995 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700996err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800997 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700998}
999
Ben Widawskyc43b5632012-04-16 14:07:40 -07001000static int intel_init_ring_buffer(struct drm_device *dev,
1001 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001002{
Chris Wilson05394f32010-11-08 19:18:58 +00001003 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001004 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001005 int ret;
1006
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001007 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001008 INIT_LIST_HEAD(&ring->active_list);
1009 INIT_LIST_HEAD(&ring->request_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001010 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001011
Chris Wilsonb259f672011-03-29 13:19:09 +01001012 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001013
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001014 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001015 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001016 if (ret)
1017 return ret;
1018 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001019
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001020 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001021 if (obj == NULL) {
1022 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001023 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001024 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001025 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001026
Chris Wilson05394f32010-11-08 19:18:58 +00001027 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001028
Daniel Vetter75e9e912010-11-04 17:11:09 +01001029 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +01001030 if (ret)
1031 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001032
Chris Wilson3eef8912012-06-04 17:05:40 +01001033 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1034 if (ret)
1035 goto err_unpin;
1036
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001037 ring->virtual_start =
1038 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1039 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001040 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001041 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001042 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001043 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001044 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001045
Chris Wilson78501ea2010-10-27 12:18:21 +01001046 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001047 if (ret)
1048 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001049
Chris Wilson55249ba2010-12-22 14:04:47 +00001050 /* Workaround an erratum on the i830 which causes a hang if
1051 * the TAIL pointer points to within the last 2 cachelines
1052 * of the buffer.
1053 */
1054 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001055 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001056 ring->effective_size -= 128;
1057
Chris Wilsonc584fe42010-10-29 18:15:52 +01001058 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001059
1060err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001061 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001062err_unpin:
1063 i915_gem_object_unpin(obj);
1064err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001065 drm_gem_object_unreference(&obj->base);
1066 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001067err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001068 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001069 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001070}
1071
Chris Wilson78501ea2010-10-27 12:18:21 +01001072void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001073{
Chris Wilson33626e62010-10-29 16:18:36 +01001074 struct drm_i915_private *dev_priv;
1075 int ret;
1076
Chris Wilson05394f32010-11-08 19:18:58 +00001077 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001078 return;
1079
Chris Wilson33626e62010-10-29 16:18:36 +01001080 /* Disable the ring buffer. The ring must be idle at this point */
1081 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001082 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001083 if (ret)
1084 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1085 ring->name, ret);
1086
Chris Wilson33626e62010-10-29 16:18:36 +01001087 I915_WRITE_CTL(ring, 0);
1088
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001089 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001090
Chris Wilson05394f32010-11-08 19:18:58 +00001091 i915_gem_object_unpin(ring->obj);
1092 drm_gem_object_unreference(&ring->obj->base);
1093 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001094
Zou Nan hai8d192152010-11-02 16:31:01 +08001095 if (ring->cleanup)
1096 ring->cleanup(ring);
1097
Chris Wilson78501ea2010-10-27 12:18:21 +01001098 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001099}
1100
Chris Wilson78501ea2010-10-27 12:18:21 +01001101static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001102{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001103 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001104 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001105
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001106 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001107 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001108 if (ret)
1109 return ret;
1110 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001111
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001112 virt = ring->virtual_start + ring->tail;
1113 rem /= 4;
1114 while (rem--)
1115 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001116
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001117 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001118 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001119
1120 return 0;
1121}
1122
Chris Wilsona71d8d92012-02-15 11:25:36 +00001123static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1124{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001125 int ret;
1126
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001127 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001128 if (!ret)
1129 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001130
1131 return ret;
1132}
1133
1134static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1135{
1136 struct drm_i915_gem_request *request;
1137 u32 seqno = 0;
1138 int ret;
1139
1140 i915_gem_retire_requests_ring(ring);
1141
1142 if (ring->last_retired_head != -1) {
1143 ring->head = ring->last_retired_head;
1144 ring->last_retired_head = -1;
1145 ring->space = ring_space(ring);
1146 if (ring->space >= n)
1147 return 0;
1148 }
1149
1150 list_for_each_entry(request, &ring->request_list, list) {
1151 int space;
1152
1153 if (request->tail == -1)
1154 continue;
1155
1156 space = request->tail - (ring->tail + 8);
1157 if (space < 0)
1158 space += ring->size;
1159 if (space >= n) {
1160 seqno = request->seqno;
1161 break;
1162 }
1163
1164 /* Consume this request in case we need more space than
1165 * is available and so need to prevent a race between
1166 * updating last_retired_head and direct reads of
1167 * I915_RING_HEAD. It also provides a nice sanity check.
1168 */
1169 request->tail = -1;
1170 }
1171
1172 if (seqno == 0)
1173 return -ENOSPC;
1174
1175 ret = intel_ring_wait_seqno(ring, seqno);
1176 if (ret)
1177 return ret;
1178
1179 if (WARN_ON(ring->last_retired_head == -1))
1180 return -ENOSPC;
1181
1182 ring->head = ring->last_retired_head;
1183 ring->last_retired_head = -1;
1184 ring->space = ring_space(ring);
1185 if (WARN_ON(ring->space < n))
1186 return -ENOSPC;
1187
1188 return 0;
1189}
1190
Chris Wilson78501ea2010-10-27 12:18:21 +01001191int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001192{
Chris Wilson78501ea2010-10-27 12:18:21 +01001193 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001194 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001195 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001196 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001197
Chris Wilsona71d8d92012-02-15 11:25:36 +00001198 ret = intel_ring_wait_request(ring, n);
1199 if (ret != -ENOSPC)
1200 return ret;
1201
Chris Wilsondb53a302011-02-03 11:57:46 +00001202 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001203 /* With GEM the hangcheck timer should kick us out of the loop,
1204 * leaving it early runs the risk of corrupting GEM state (due
1205 * to running on almost untested codepaths). But on resume
1206 * timers don't work yet, so prevent a complete hang in that
1207 * case by choosing an insanely large timeout. */
1208 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001209
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001210 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001211 ring->head = I915_READ_HEAD(ring);
1212 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001213 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001214 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001215 return 0;
1216 }
1217
1218 if (dev->primary->master) {
1219 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1220 if (master_priv->sarea_priv)
1221 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1222 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001223
Chris Wilsone60a0b12010-10-13 10:09:14 +01001224 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001225
1226 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1227 if (ret)
1228 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001229 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001230 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001231 return -EBUSY;
1232}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001233
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001234int intel_ring_begin(struct intel_ring_buffer *ring,
1235 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001236{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001237 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001238 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001239 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001240
Daniel Vetterde2b9982012-07-04 22:52:50 +02001241 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1242 if (ret)
1243 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001244
Chris Wilson55249ba2010-12-22 14:04:47 +00001245 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001246 ret = intel_wrap_ring_buffer(ring);
1247 if (unlikely(ret))
1248 return ret;
1249 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001250
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001251 if (unlikely(ring->space < n)) {
1252 ret = intel_wait_ring_buffer(ring, n);
1253 if (unlikely(ret))
1254 return ret;
1255 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001256
1257 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001258 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001259}
1260
Chris Wilson78501ea2010-10-27 12:18:21 +01001261void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001262{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001263 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1264
Chris Wilsond97ed332010-08-04 15:18:13 +01001265 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001266 if (dev_priv->stop_rings & intel_ring_flag(ring))
1267 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001268 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001269}
1270
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001271
Chris Wilson78501ea2010-10-27 12:18:21 +01001272static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001273 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001274{
Akshay Joshi0206e352011-08-16 15:34:10 -04001275 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001276
1277 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001278
Chris Wilson12f55812012-07-05 17:14:01 +01001279 /* Disable notification that the ring is IDLE. The GT
1280 * will then assume that it is busy and bring it out of rc6.
1281 */
1282 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1283 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1284
1285 /* Clear the context id. Here be magic! */
1286 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1287
1288 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001289 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001290 GEN6_BSD_SLEEP_INDICATOR) == 0,
1291 50))
1292 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001293
Chris Wilson12f55812012-07-05 17:14:01 +01001294 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001295 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001296 POSTING_READ(RING_TAIL(ring->mmio_base));
1297
1298 /* Let the ring send IDLE messages to the GT again,
1299 * and so let it sleep to conserve power when idle.
1300 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001301 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001302 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001303}
1304
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001305static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001306 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001307{
Chris Wilson71a77e02011-02-02 12:13:49 +00001308 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001309 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001310
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001311 ret = intel_ring_begin(ring, 4);
1312 if (ret)
1313 return ret;
1314
Chris Wilson71a77e02011-02-02 12:13:49 +00001315 cmd = MI_FLUSH_DW;
1316 if (invalidate & I915_GEM_GPU_DOMAINS)
1317 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1318 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001319 intel_ring_emit(ring, 0);
1320 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001321 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001322 intel_ring_advance(ring);
1323 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001324}
1325
1326static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001327gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001328 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001329{
Akshay Joshi0206e352011-08-16 15:34:10 -04001330 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001331
Akshay Joshi0206e352011-08-16 15:34:10 -04001332 ret = intel_ring_begin(ring, 2);
1333 if (ret)
1334 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001335
Akshay Joshi0206e352011-08-16 15:34:10 -04001336 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1337 /* bit0-7 is the length on GEN6+ */
1338 intel_ring_emit(ring, offset);
1339 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001340
Akshay Joshi0206e352011-08-16 15:34:10 -04001341 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001342}
1343
Chris Wilson549f7362010-10-19 11:19:32 +01001344/* Blitter support (SandyBridge+) */
1345
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001346static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001347 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001348{
Chris Wilson71a77e02011-02-02 12:13:49 +00001349 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001350 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001351
Daniel Vetter6a233c72011-12-14 13:57:07 +01001352 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001353 if (ret)
1354 return ret;
1355
Chris Wilson71a77e02011-02-02 12:13:49 +00001356 cmd = MI_FLUSH_DW;
1357 if (invalidate & I915_GEM_DOMAIN_RENDER)
1358 cmd |= MI_INVALIDATE_TLB;
1359 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001360 intel_ring_emit(ring, 0);
1361 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001362 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001363 intel_ring_advance(ring);
1364 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001365}
1366
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001367int intel_init_render_ring_buffer(struct drm_device *dev)
1368{
1369 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001370 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001371
Daniel Vetter59465b52012-04-11 22:12:48 +02001372 ring->name = "render ring";
1373 ring->id = RCS;
1374 ring->mmio_base = RENDER_RING_BASE;
1375
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001376 if (INTEL_INFO(dev)->gen >= 6) {
1377 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001378 ring->flush = gen6_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01001379 if (INTEL_INFO(dev)->gen == 6)
1380 ring->flush = gen6_render_ring_flush__wa;
Ben Widawsky25c06302012-03-29 19:11:27 -07001381 ring->irq_get = gen6_ring_get_irq;
1382 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001383 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001384 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001385 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001386 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1387 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1388 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1389 ring->signal_mbox[0] = GEN6_VRSYNC;
1390 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001391 } else if (IS_GEN5(dev)) {
1392 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001393 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001394 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001395 ring->irq_get = gen5_ring_get_irq;
1396 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001397 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001398 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001399 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001400 if (INTEL_INFO(dev)->gen < 4)
1401 ring->flush = gen2_render_ring_flush;
1402 else
1403 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001404 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001405 if (IS_GEN2(dev)) {
1406 ring->irq_get = i8xx_ring_get_irq;
1407 ring->irq_put = i8xx_ring_put_irq;
1408 } else {
1409 ring->irq_get = i9xx_ring_get_irq;
1410 ring->irq_put = i9xx_ring_put_irq;
1411 }
Daniel Vettere3670312012-04-11 22:12:53 +02001412 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001413 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001414 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001415 if (INTEL_INFO(dev)->gen >= 6)
1416 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1417 else if (INTEL_INFO(dev)->gen >= 4)
1418 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1419 else if (IS_I830(dev) || IS_845G(dev))
1420 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1421 else
1422 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001423 ring->init = init_render_ring;
1424 ring->cleanup = render_ring_cleanup;
1425
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001426
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001427 if (!I915_NEED_GFX_HWS(dev)) {
1428 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1429 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1430 }
1431
1432 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001433}
1434
Chris Wilsone8616b62011-01-20 09:57:11 +00001435int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1436{
1437 drm_i915_private_t *dev_priv = dev->dev_private;
1438 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1439
Daniel Vetter59465b52012-04-11 22:12:48 +02001440 ring->name = "render ring";
1441 ring->id = RCS;
1442 ring->mmio_base = RENDER_RING_BASE;
1443
Chris Wilsone8616b62011-01-20 09:57:11 +00001444 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001445 /* non-kms not supported on gen6+ */
1446 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001447 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001448
1449 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1450 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1451 * the special gen5 functions. */
1452 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001453 if (INTEL_INFO(dev)->gen < 4)
1454 ring->flush = gen2_render_ring_flush;
1455 else
1456 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001457 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001458 if (IS_GEN2(dev)) {
1459 ring->irq_get = i8xx_ring_get_irq;
1460 ring->irq_put = i8xx_ring_put_irq;
1461 } else {
1462 ring->irq_get = i9xx_ring_get_irq;
1463 ring->irq_put = i9xx_ring_put_irq;
1464 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001465 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001466 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001467 if (INTEL_INFO(dev)->gen >= 4)
1468 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1469 else if (IS_I830(dev) || IS_845G(dev))
1470 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1471 else
1472 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001473 ring->init = init_render_ring;
1474 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001475
Keith Packardf3234702011-07-22 10:44:39 -07001476 if (!I915_NEED_GFX_HWS(dev))
1477 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1478
Chris Wilsone8616b62011-01-20 09:57:11 +00001479 ring->dev = dev;
1480 INIT_LIST_HEAD(&ring->active_list);
1481 INIT_LIST_HEAD(&ring->request_list);
Chris Wilsone8616b62011-01-20 09:57:11 +00001482
1483 ring->size = size;
1484 ring->effective_size = ring->size;
1485 if (IS_I830(ring->dev))
1486 ring->effective_size -= 128;
1487
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001488 ring->virtual_start = ioremap_wc(start, size);
1489 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001490 DRM_ERROR("can not ioremap virtual address for"
1491 " ring buffer\n");
1492 return -ENOMEM;
1493 }
1494
Chris Wilsone8616b62011-01-20 09:57:11 +00001495 return 0;
1496}
1497
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001498int intel_init_bsd_ring_buffer(struct drm_device *dev)
1499{
1500 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001501 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001502
Daniel Vetter58fa3832012-04-11 22:12:49 +02001503 ring->name = "bsd ring";
1504 ring->id = VCS;
1505
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001506 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001507 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1508 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001509 /* gen6 bsd needs a special wa for tail updates */
1510 if (IS_GEN6(dev))
1511 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001512 ring->flush = gen6_ring_flush;
1513 ring->add_request = gen6_add_request;
1514 ring->get_seqno = gen6_ring_get_seqno;
1515 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1516 ring->irq_get = gen6_ring_get_irq;
1517 ring->irq_put = gen6_ring_put_irq;
1518 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001519 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001520 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1521 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1522 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1523 ring->signal_mbox[0] = GEN6_RVSYNC;
1524 ring->signal_mbox[1] = GEN6_BVSYNC;
1525 } else {
1526 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001527 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001528 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001529 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001530 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001531 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001532 ring->irq_get = gen5_ring_get_irq;
1533 ring->irq_put = gen5_ring_put_irq;
1534 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001535 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001536 ring->irq_get = i9xx_ring_get_irq;
1537 ring->irq_put = i9xx_ring_put_irq;
1538 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001539 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001540 }
1541 ring->init = init_ring_common;
1542
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001543
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001544 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001545}
Chris Wilson549f7362010-10-19 11:19:32 +01001546
1547int intel_init_blt_ring_buffer(struct drm_device *dev)
1548{
1549 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001550 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001551
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001552 ring->name = "blitter ring";
1553 ring->id = BCS;
1554
1555 ring->mmio_base = BLT_RING_BASE;
1556 ring->write_tail = ring_write_tail;
1557 ring->flush = blt_ring_flush;
1558 ring->add_request = gen6_add_request;
1559 ring->get_seqno = gen6_ring_get_seqno;
1560 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1561 ring->irq_get = gen6_ring_get_irq;
1562 ring->irq_put = gen6_ring_put_irq;
1563 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001564 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001565 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1566 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1567 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1568 ring->signal_mbox[0] = GEN6_RBSYNC;
1569 ring->signal_mbox[1] = GEN6_VBSYNC;
1570 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001571
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001572 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001573}
Chris Wilsona7b97612012-07-20 12:41:08 +01001574
1575int
1576intel_ring_flush_all_caches(struct intel_ring_buffer *ring)
1577{
1578 int ret;
1579
1580 if (!ring->gpu_caches_dirty)
1581 return 0;
1582
1583 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
1584 if (ret)
1585 return ret;
1586
1587 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
1588
1589 ring->gpu_caches_dirty = false;
1590 return 0;
1591}
1592
1593int
1594intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring)
1595{
1596 uint32_t flush_domains;
1597 int ret;
1598
1599 flush_domains = 0;
1600 if (ring->gpu_caches_dirty)
1601 flush_domains = I915_GEM_GPU_DOMAINS;
1602
1603 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1604 if (ret)
1605 return ret;
1606
1607 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1608
1609 ring->gpu_caches_dirty = false;
1610 return 0;
1611}