blob: ac93643731aad1947d9ea1e2c7cc20fb19f69105 [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
Jesse Barnes8d315282011-10-16 10:23:31 +0200221 /* Just flush everything. Experiments have shown that reducing the
222 * number of bits based on the write domains has little performance
223 * impact.
224 */
Chris Wilson7d54a902012-08-10 10:18:10 +0100225 if (flush_domains) {
226 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
227 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
228 /*
229 * Ensure that any following seqno writes only happen
230 * when the render cache is indeed flushed.
231 */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200232 flags |= PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100233 }
234 if (invalidate_domains) {
235 flags |= PIPE_CONTROL_TLB_INVALIDATE;
236 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
237 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
238 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
239 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
240 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
241 /*
242 * TLB invalidate requires a post-sync write.
243 */
244 flags |= PIPE_CONTROL_QW_WRITE;
245 }
Jesse Barnes8d315282011-10-16 10:23:31 +0200246
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100247 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200248 if (ret)
249 return ret;
250
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100251 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200252 intel_ring_emit(ring, flags);
253 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100254 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200255 intel_ring_advance(ring);
256
257 return 0;
258}
259
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100260static int
261gen6_render_ring_flush__wa(struct intel_ring_buffer *ring,
262 u32 invalidate_domains, u32 flush_domains)
263{
264 int ret;
265
266 /* Force SNB workarounds for PIPE_CONTROL flushes */
267 ret = intel_emit_post_sync_nonzero_flush(ring);
268 if (ret)
269 return ret;
270
271 return gen6_render_ring_flush(ring, invalidate_domains, flush_domains);
272}
273
Chris Wilson78501ea2010-10-27 12:18:21 +0100274static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100275 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800276{
Chris Wilson78501ea2010-10-27 12:18:21 +0100277 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100278 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800279}
280
Chris Wilson78501ea2010-10-27 12:18:21 +0100281u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800282{
Chris Wilson78501ea2010-10-27 12:18:21 +0100283 drm_i915_private_t *dev_priv = ring->dev->dev_private;
284 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200285 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800286
287 return I915_READ(acthd_reg);
288}
289
Chris Wilson78501ea2010-10-27 12:18:21 +0100290static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800291{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200292 struct drm_device *dev = ring->dev;
293 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000294 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200295 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800296 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800297
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200298 if (HAS_FORCE_WAKE(dev))
299 gen6_gt_force_wake_get(dev_priv);
300
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800301 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200302 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200303 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100304 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800305
Daniel Vetter570ef602010-08-02 17:06:23 +0200306 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800307
308 /* G45 ring initialization fails to reset head to zero */
309 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000310 DRM_DEBUG_KMS("%s head not reset to zero "
311 "ctl %08x head %08x tail %08x start %08x\n",
312 ring->name,
313 I915_READ_CTL(ring),
314 I915_READ_HEAD(ring),
315 I915_READ_TAIL(ring),
316 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800317
Daniel Vetter570ef602010-08-02 17:06:23 +0200318 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800319
Chris Wilson6fd0d562010-12-05 20:42:33 +0000320 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
321 DRM_ERROR("failed to set %s head to zero "
322 "ctl %08x head %08x tail %08x start %08x\n",
323 ring->name,
324 I915_READ_CTL(ring),
325 I915_READ_HEAD(ring),
326 I915_READ_TAIL(ring),
327 I915_READ_START(ring));
328 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700329 }
330
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200331 /* Initialize the ring. This must happen _after_ we've cleared the ring
332 * registers with the above sequence (the readback of the HEAD registers
333 * also enforces ordering), otherwise the hw might lose the new ring
334 * register values. */
335 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200336 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000337 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000338 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800339
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800340 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400341 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
342 I915_READ_START(ring) == obj->gtt_offset &&
343 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000344 DRM_ERROR("%s initialization failed "
345 "ctl %08x head %08x tail %08x start %08x\n",
346 ring->name,
347 I915_READ_CTL(ring),
348 I915_READ_HEAD(ring),
349 I915_READ_TAIL(ring),
350 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200351 ret = -EIO;
352 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800353 }
354
Chris Wilson78501ea2010-10-27 12:18:21 +0100355 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
356 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800357 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000358 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200359 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000360 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100361 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800362 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000363
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200364out:
365 if (HAS_FORCE_WAKE(dev))
366 gen6_gt_force_wake_put(dev_priv);
367
368 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700369}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800370
Chris Wilsonc6df5412010-12-15 09:56:50 +0000371static int
372init_pipe_control(struct intel_ring_buffer *ring)
373{
374 struct pipe_control *pc;
375 struct drm_i915_gem_object *obj;
376 int ret;
377
378 if (ring->private)
379 return 0;
380
381 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
382 if (!pc)
383 return -ENOMEM;
384
385 obj = i915_gem_alloc_object(ring->dev, 4096);
386 if (obj == NULL) {
387 DRM_ERROR("Failed to allocate seqno page\n");
388 ret = -ENOMEM;
389 goto err;
390 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100391
392 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000393
Chris Wilson86a1ee22012-08-11 15:41:04 +0100394 ret = i915_gem_object_pin(obj, 4096, true, false);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000395 if (ret)
396 goto err_unref;
397
398 pc->gtt_offset = obj->gtt_offset;
399 pc->cpu_page = kmap(obj->pages[0]);
400 if (pc->cpu_page == NULL)
401 goto err_unpin;
402
403 pc->obj = obj;
404 ring->private = pc;
405 return 0;
406
407err_unpin:
408 i915_gem_object_unpin(obj);
409err_unref:
410 drm_gem_object_unreference(&obj->base);
411err:
412 kfree(pc);
413 return ret;
414}
415
416static void
417cleanup_pipe_control(struct intel_ring_buffer *ring)
418{
419 struct pipe_control *pc = ring->private;
420 struct drm_i915_gem_object *obj;
421
422 if (!ring->private)
423 return;
424
425 obj = pc->obj;
426 kunmap(obj->pages[0]);
427 i915_gem_object_unpin(obj);
428 drm_gem_object_unreference(&obj->base);
429
430 kfree(pc);
431 ring->private = NULL;
432}
433
Chris Wilson78501ea2010-10-27 12:18:21 +0100434static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800435{
Chris Wilson78501ea2010-10-27 12:18:21 +0100436 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000437 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100438 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800439
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100440 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200441 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700442 if (IS_GEN7(dev))
443 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200444 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
445 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800446 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100447
Jesse Barnes8d315282011-10-16 10:23:31 +0200448 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000449 ret = init_pipe_control(ring);
450 if (ret)
451 return ret;
452 }
453
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200454 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700455 /* From the Sandybridge PRM, volume 1 part 3, page 24:
456 * "If this bit is set, STCunit will have LRA as replacement
457 * policy. [...] This bit must be reset. LRA replacement
458 * policy is not supported."
459 */
460 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200461 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700462
463 /* This is not explicitly set for GEN6, so read the register.
464 * see intel_ring_mi_set_context() for why we care.
465 * TODO: consider explicitly setting the bit for GEN5
466 */
467 ring->itlb_before_ctx_switch =
468 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800469 }
470
Daniel Vetter6b26c862012-04-24 14:04:12 +0200471 if (INTEL_INFO(dev)->gen >= 6)
472 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000473
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700474 if (HAS_L3_GPU_CACHE(dev))
Ben Widawsky15b9f802012-05-25 16:56:23 -0700475 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
476
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800477 return ret;
478}
479
Chris Wilsonc6df5412010-12-15 09:56:50 +0000480static void render_ring_cleanup(struct intel_ring_buffer *ring)
481{
482 if (!ring->private)
483 return;
484
485 cleanup_pipe_control(ring);
486}
487
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000488static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700489update_mboxes(struct intel_ring_buffer *ring,
490 u32 seqno,
491 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000492{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700493 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
494 MI_SEMAPHORE_GLOBAL_GTT |
495 MI_SEMAPHORE_REGISTER |
496 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000497 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700498 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000499}
500
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700501/**
502 * gen6_add_request - Update the semaphore mailbox registers
503 *
504 * @ring - ring that is adding a request
505 * @seqno - return seqno stuck into the ring
506 *
507 * Update the mailbox registers in the *other* rings with the current seqno.
508 * This acts like a signal in the canonical semaphore.
509 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000510static int
511gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700512 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000513{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700514 u32 mbox1_reg;
515 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000516 int ret;
517
518 ret = intel_ring_begin(ring, 10);
519 if (ret)
520 return ret;
521
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700522 mbox1_reg = ring->signal_mbox[0];
523 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000524
Daniel Vetter53d227f2012-01-25 16:32:49 +0100525 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700526
527 update_mboxes(ring, *seqno, mbox1_reg);
528 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000529 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
530 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700531 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000532 intel_ring_emit(ring, MI_USER_INTERRUPT);
533 intel_ring_advance(ring);
534
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000535 return 0;
536}
537
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700538/**
539 * intel_ring_sync - sync the waiter to the signaller on seqno
540 *
541 * @waiter - ring that is waiting
542 * @signaller - ring which has, or will signal
543 * @seqno - seqno which the waiter will block on
544 */
545static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200546gen6_ring_sync(struct intel_ring_buffer *waiter,
547 struct intel_ring_buffer *signaller,
548 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000549{
550 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700551 u32 dw1 = MI_SEMAPHORE_MBOX |
552 MI_SEMAPHORE_COMPARE |
553 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000554
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700555 /* Throughout all of the GEM code, seqno passed implies our current
556 * seqno is >= the last seqno executed. However for hardware the
557 * comparison is strictly greater than.
558 */
559 seqno -= 1;
560
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200561 WARN_ON(signaller->semaphore_register[waiter->id] ==
562 MI_SEMAPHORE_SYNC_INVALID);
563
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700564 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000565 if (ret)
566 return ret;
567
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200568 intel_ring_emit(waiter,
569 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700570 intel_ring_emit(waiter, seqno);
571 intel_ring_emit(waiter, 0);
572 intel_ring_emit(waiter, MI_NOOP);
573 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000574
575 return 0;
576}
577
Chris Wilsonc6df5412010-12-15 09:56:50 +0000578#define PIPE_CONTROL_FLUSH(ring__, addr__) \
579do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200580 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
581 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000582 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
583 intel_ring_emit(ring__, 0); \
584 intel_ring_emit(ring__, 0); \
585} while (0)
586
587static int
588pc_render_add_request(struct intel_ring_buffer *ring,
589 u32 *result)
590{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100591 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000592 struct pipe_control *pc = ring->private;
593 u32 scratch_addr = pc->gtt_offset + 128;
594 int ret;
595
596 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
597 * incoherent with writes to memory, i.e. completely fubar,
598 * so we need to use PIPE_NOTIFY instead.
599 *
600 * However, we also need to workaround the qword write
601 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
602 * memory before requesting an interrupt.
603 */
604 ret = intel_ring_begin(ring, 32);
605 if (ret)
606 return ret;
607
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200608 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200609 PIPE_CONTROL_WRITE_FLUSH |
610 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000611 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
612 intel_ring_emit(ring, seqno);
613 intel_ring_emit(ring, 0);
614 PIPE_CONTROL_FLUSH(ring, scratch_addr);
615 scratch_addr += 128; /* write to separate cachelines */
616 PIPE_CONTROL_FLUSH(ring, scratch_addr);
617 scratch_addr += 128;
618 PIPE_CONTROL_FLUSH(ring, scratch_addr);
619 scratch_addr += 128;
620 PIPE_CONTROL_FLUSH(ring, scratch_addr);
621 scratch_addr += 128;
622 PIPE_CONTROL_FLUSH(ring, scratch_addr);
623 scratch_addr += 128;
624 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000625
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200626 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200627 PIPE_CONTROL_WRITE_FLUSH |
628 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000629 PIPE_CONTROL_NOTIFY);
630 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
631 intel_ring_emit(ring, seqno);
632 intel_ring_emit(ring, 0);
633 intel_ring_advance(ring);
634
635 *result = seqno;
636 return 0;
637}
638
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800639static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100640gen6_ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100641{
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100642 /* Workaround to force correct ordering between irq and seqno writes on
643 * ivb (and maybe also on snb) by reading from a CS register (like
644 * ACTHD) before reading the status page. */
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100645 if (!lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100646 intel_ring_get_active_head(ring);
647 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
648}
649
650static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100651ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800652{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000653 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
654}
655
Chris Wilsonc6df5412010-12-15 09:56:50 +0000656static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100657pc_render_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000658{
659 struct pipe_control *pc = ring->private;
660 return pc->cpu_page[0];
661}
662
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000663static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200664gen5_ring_get_irq(struct intel_ring_buffer *ring)
665{
666 struct drm_device *dev = ring->dev;
667 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100668 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200669
670 if (!dev->irq_enabled)
671 return false;
672
Chris Wilson7338aef2012-04-24 21:48:47 +0100673 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200674 if (ring->irq_refcount++ == 0) {
675 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
676 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
677 POSTING_READ(GTIMR);
678 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100679 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200680
681 return true;
682}
683
684static void
685gen5_ring_put_irq(struct intel_ring_buffer *ring)
686{
687 struct drm_device *dev = ring->dev;
688 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100689 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200690
Chris Wilson7338aef2012-04-24 21:48:47 +0100691 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200692 if (--ring->irq_refcount == 0) {
693 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
694 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
695 POSTING_READ(GTIMR);
696 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100697 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200698}
699
700static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200701i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700702{
Chris Wilson78501ea2010-10-27 12:18:21 +0100703 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000704 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100705 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700706
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000707 if (!dev->irq_enabled)
708 return false;
709
Chris Wilson7338aef2012-04-24 21:48:47 +0100710 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200711 if (ring->irq_refcount++ == 0) {
712 dev_priv->irq_mask &= ~ring->irq_enable_mask;
713 I915_WRITE(IMR, dev_priv->irq_mask);
714 POSTING_READ(IMR);
715 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100716 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000717
718 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700719}
720
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800721static void
Daniel Vettere3670312012-04-11 22:12:53 +0200722i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700723{
Chris Wilson78501ea2010-10-27 12:18:21 +0100724 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000725 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100726 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700727
Chris Wilson7338aef2012-04-24 21:48:47 +0100728 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200729 if (--ring->irq_refcount == 0) {
730 dev_priv->irq_mask |= ring->irq_enable_mask;
731 I915_WRITE(IMR, dev_priv->irq_mask);
732 POSTING_READ(IMR);
733 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100734 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700735}
736
Chris Wilsonc2798b12012-04-22 21:13:57 +0100737static bool
738i8xx_ring_get_irq(struct intel_ring_buffer *ring)
739{
740 struct drm_device *dev = ring->dev;
741 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100742 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100743
744 if (!dev->irq_enabled)
745 return false;
746
Chris Wilson7338aef2012-04-24 21:48:47 +0100747 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100748 if (ring->irq_refcount++ == 0) {
749 dev_priv->irq_mask &= ~ring->irq_enable_mask;
750 I915_WRITE16(IMR, dev_priv->irq_mask);
751 POSTING_READ16(IMR);
752 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100753 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100754
755 return true;
756}
757
758static void
759i8xx_ring_put_irq(struct intel_ring_buffer *ring)
760{
761 struct drm_device *dev = ring->dev;
762 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100763 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100764
Chris Wilson7338aef2012-04-24 21:48:47 +0100765 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100766 if (--ring->irq_refcount == 0) {
767 dev_priv->irq_mask |= ring->irq_enable_mask;
768 I915_WRITE16(IMR, dev_priv->irq_mask);
769 POSTING_READ16(IMR);
770 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100771 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100772}
773
Chris Wilson78501ea2010-10-27 12:18:21 +0100774void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800775{
Eric Anholt45930102011-05-06 17:12:35 -0700776 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100777 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700778 u32 mmio = 0;
779
780 /* The ring status page addresses are no longer next to the rest of
781 * the ring registers as of gen7.
782 */
783 if (IS_GEN7(dev)) {
784 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100785 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700786 mmio = RENDER_HWS_PGA_GEN7;
787 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100788 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700789 mmio = BLT_HWS_PGA_GEN7;
790 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100791 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700792 mmio = BSD_HWS_PGA_GEN7;
793 break;
794 }
795 } else if (IS_GEN6(ring->dev)) {
796 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
797 } else {
798 mmio = RING_HWS_PGA(ring->mmio_base);
799 }
800
Chris Wilson78501ea2010-10-27 12:18:21 +0100801 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
802 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800803}
804
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000805static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100806bsd_ring_flush(struct intel_ring_buffer *ring,
807 u32 invalidate_domains,
808 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800809{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000810 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000811
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000812 ret = intel_ring_begin(ring, 2);
813 if (ret)
814 return ret;
815
816 intel_ring_emit(ring, MI_FLUSH);
817 intel_ring_emit(ring, MI_NOOP);
818 intel_ring_advance(ring);
819 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800820}
821
Chris Wilson3cce4692010-10-27 16:11:02 +0100822static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200823i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100824 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800825{
826 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100827 int ret;
828
829 ret = intel_ring_begin(ring, 4);
830 if (ret)
831 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100832
Daniel Vetter53d227f2012-01-25 16:32:49 +0100833 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100834
Chris Wilson3cce4692010-10-27 16:11:02 +0100835 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
836 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
837 intel_ring_emit(ring, seqno);
838 intel_ring_emit(ring, MI_USER_INTERRUPT);
839 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800840
Chris Wilson3cce4692010-10-27 16:11:02 +0100841 *result = seqno;
842 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800843}
844
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000845static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700846gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000847{
848 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000849 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100850 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000851
852 if (!dev->irq_enabled)
853 return false;
854
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100855 /* It looks like we need to prevent the gt from suspending while waiting
856 * for an notifiy irq, otherwise irqs seem to get lost on at least the
857 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100858 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100859
Chris Wilson7338aef2012-04-24 21:48:47 +0100860 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000861 if (ring->irq_refcount++ == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700862 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700863 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
864 GEN6_RENDER_L3_PARITY_ERROR));
865 else
866 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200867 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
868 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
869 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000870 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100871 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000872
873 return true;
874}
875
876static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700877gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000878{
879 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000880 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100881 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000882
Chris Wilson7338aef2012-04-24 21:48:47 +0100883 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000884 if (--ring->irq_refcount == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700885 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700886 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
887 else
888 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200889 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
890 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
891 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000892 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100893 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100894
Daniel Vetter99ffa162012-01-25 14:04:00 +0100895 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000896}
897
Zou Nan haid1b851f2010-05-21 09:08:57 +0800898static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200899i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800900{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100901 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100902
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100903 ret = intel_ring_begin(ring, 2);
904 if (ret)
905 return ret;
906
Chris Wilson78501ea2010-10-27 12:18:21 +0100907 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100908 MI_BATCH_BUFFER_START |
909 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100910 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000911 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100912 intel_ring_advance(ring);
913
Zou Nan haid1b851f2010-05-21 09:08:57 +0800914 return 0;
915}
916
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800917static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200918i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000919 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700920{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000921 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700922
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200923 ret = intel_ring_begin(ring, 4);
924 if (ret)
925 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700926
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200927 intel_ring_emit(ring, MI_BATCH_BUFFER);
928 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
929 intel_ring_emit(ring, offset + len - 8);
930 intel_ring_emit(ring, 0);
931 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100932
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200933 return 0;
934}
935
936static int
937i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
938 u32 offset, u32 len)
939{
940 int ret;
941
942 ret = intel_ring_begin(ring, 2);
943 if (ret)
944 return ret;
945
Chris Wilson65f56872012-04-17 16:38:12 +0100946 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200947 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000948 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700949
Eric Anholt62fdfea2010-05-21 13:26:39 -0700950 return 0;
951}
952
Chris Wilson78501ea2010-10-27 12:18:21 +0100953static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700954{
Chris Wilson05394f32010-11-08 19:18:58 +0000955 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700956
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800957 obj = ring->status_page.obj;
958 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700959 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700960
Chris Wilson05394f32010-11-08 19:18:58 +0000961 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700962 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000963 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800964 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700965}
966
Chris Wilson78501ea2010-10-27 12:18:21 +0100967static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700968{
Chris Wilson78501ea2010-10-27 12:18:21 +0100969 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000970 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700971 int ret;
972
Eric Anholt62fdfea2010-05-21 13:26:39 -0700973 obj = i915_gem_alloc_object(dev, 4096);
974 if (obj == NULL) {
975 DRM_ERROR("Failed to allocate status page\n");
976 ret = -ENOMEM;
977 goto err;
978 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100979
980 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700981
Chris Wilson86a1ee22012-08-11 15:41:04 +0100982 ret = i915_gem_object_pin(obj, 4096, true, false);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700983 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700984 goto err_unref;
985 }
986
Chris Wilson05394f32010-11-08 19:18:58 +0000987 ring->status_page.gfx_addr = obj->gtt_offset;
988 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800989 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -0700990 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700991 goto err_unpin;
992 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800993 ring->status_page.obj = obj;
994 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700995
Chris Wilson78501ea2010-10-27 12:18:21 +0100996 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800997 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
998 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700999
1000 return 0;
1001
1002err_unpin:
1003 i915_gem_object_unpin(obj);
1004err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001005 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001006err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001007 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001008}
1009
Ben Widawskyc43b5632012-04-16 14:07:40 -07001010static int intel_init_ring_buffer(struct drm_device *dev,
1011 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001012{
Chris Wilson05394f32010-11-08 19:18:58 +00001013 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001014 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001015 int ret;
1016
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001017 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001018 INIT_LIST_HEAD(&ring->active_list);
1019 INIT_LIST_HEAD(&ring->request_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001020 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001021
Chris Wilsonb259f672011-03-29 13:19:09 +01001022 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001023
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001024 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001025 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001026 if (ret)
1027 return ret;
1028 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001029
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001030 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001031 if (obj == NULL) {
1032 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001033 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001034 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001035 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001036
Chris Wilson05394f32010-11-08 19:18:58 +00001037 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001038
Chris Wilson86a1ee22012-08-11 15:41:04 +01001039 ret = i915_gem_object_pin(obj, PAGE_SIZE, true, false);
Chris Wilsondd785e32010-08-07 11:01:34 +01001040 if (ret)
1041 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001042
Chris Wilson3eef8912012-06-04 17:05:40 +01001043 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1044 if (ret)
1045 goto err_unpin;
1046
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001047 ring->virtual_start =
1048 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1049 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001050 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001051 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001052 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001053 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001054 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001055
Chris Wilson78501ea2010-10-27 12:18:21 +01001056 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001057 if (ret)
1058 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001059
Chris Wilson55249ba2010-12-22 14:04:47 +00001060 /* Workaround an erratum on the i830 which causes a hang if
1061 * the TAIL pointer points to within the last 2 cachelines
1062 * of the buffer.
1063 */
1064 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001065 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001066 ring->effective_size -= 128;
1067
Chris Wilsonc584fe42010-10-29 18:15:52 +01001068 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001069
1070err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001071 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001072err_unpin:
1073 i915_gem_object_unpin(obj);
1074err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001075 drm_gem_object_unreference(&obj->base);
1076 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001077err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001078 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001079 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001080}
1081
Chris Wilson78501ea2010-10-27 12:18:21 +01001082void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001083{
Chris Wilson33626e62010-10-29 16:18:36 +01001084 struct drm_i915_private *dev_priv;
1085 int ret;
1086
Chris Wilson05394f32010-11-08 19:18:58 +00001087 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001088 return;
1089
Chris Wilson33626e62010-10-29 16:18:36 +01001090 /* Disable the ring buffer. The ring must be idle at this point */
1091 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001092 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001093 if (ret)
1094 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1095 ring->name, ret);
1096
Chris Wilson33626e62010-10-29 16:18:36 +01001097 I915_WRITE_CTL(ring, 0);
1098
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001099 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001100
Chris Wilson05394f32010-11-08 19:18:58 +00001101 i915_gem_object_unpin(ring->obj);
1102 drm_gem_object_unreference(&ring->obj->base);
1103 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001104
Zou Nan hai8d192152010-11-02 16:31:01 +08001105 if (ring->cleanup)
1106 ring->cleanup(ring);
1107
Chris Wilson78501ea2010-10-27 12:18:21 +01001108 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001109}
1110
Chris Wilson78501ea2010-10-27 12:18:21 +01001111static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001112{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001113 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001114 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001115
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001116 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001117 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001118 if (ret)
1119 return ret;
1120 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001121
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001122 virt = ring->virtual_start + ring->tail;
1123 rem /= 4;
1124 while (rem--)
1125 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001126
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001127 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001128 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001129
1130 return 0;
1131}
1132
Chris Wilsona71d8d92012-02-15 11:25:36 +00001133static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1134{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001135 int ret;
1136
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001137 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001138 if (!ret)
1139 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001140
1141 return ret;
1142}
1143
1144static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1145{
1146 struct drm_i915_gem_request *request;
1147 u32 seqno = 0;
1148 int ret;
1149
1150 i915_gem_retire_requests_ring(ring);
1151
1152 if (ring->last_retired_head != -1) {
1153 ring->head = ring->last_retired_head;
1154 ring->last_retired_head = -1;
1155 ring->space = ring_space(ring);
1156 if (ring->space >= n)
1157 return 0;
1158 }
1159
1160 list_for_each_entry(request, &ring->request_list, list) {
1161 int space;
1162
1163 if (request->tail == -1)
1164 continue;
1165
1166 space = request->tail - (ring->tail + 8);
1167 if (space < 0)
1168 space += ring->size;
1169 if (space >= n) {
1170 seqno = request->seqno;
1171 break;
1172 }
1173
1174 /* Consume this request in case we need more space than
1175 * is available and so need to prevent a race between
1176 * updating last_retired_head and direct reads of
1177 * I915_RING_HEAD. It also provides a nice sanity check.
1178 */
1179 request->tail = -1;
1180 }
1181
1182 if (seqno == 0)
1183 return -ENOSPC;
1184
1185 ret = intel_ring_wait_seqno(ring, seqno);
1186 if (ret)
1187 return ret;
1188
1189 if (WARN_ON(ring->last_retired_head == -1))
1190 return -ENOSPC;
1191
1192 ring->head = ring->last_retired_head;
1193 ring->last_retired_head = -1;
1194 ring->space = ring_space(ring);
1195 if (WARN_ON(ring->space < n))
1196 return -ENOSPC;
1197
1198 return 0;
1199}
1200
Chris Wilson78501ea2010-10-27 12:18:21 +01001201int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001202{
Chris Wilson78501ea2010-10-27 12:18:21 +01001203 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001204 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001205 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001206 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001207
Chris Wilsona71d8d92012-02-15 11:25:36 +00001208 ret = intel_ring_wait_request(ring, n);
1209 if (ret != -ENOSPC)
1210 return ret;
1211
Chris Wilsondb53a302011-02-03 11:57:46 +00001212 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001213 /* With GEM the hangcheck timer should kick us out of the loop,
1214 * leaving it early runs the risk of corrupting GEM state (due
1215 * to running on almost untested codepaths). But on resume
1216 * timers don't work yet, so prevent a complete hang in that
1217 * case by choosing an insanely large timeout. */
1218 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001219
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001220 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001221 ring->head = I915_READ_HEAD(ring);
1222 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001223 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001224 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001225 return 0;
1226 }
1227
1228 if (dev->primary->master) {
1229 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1230 if (master_priv->sarea_priv)
1231 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1232 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001233
Chris Wilsone60a0b12010-10-13 10:09:14 +01001234 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001235
1236 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1237 if (ret)
1238 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001239 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001240 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001241 return -EBUSY;
1242}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001243
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001244int intel_ring_begin(struct intel_ring_buffer *ring,
1245 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001246{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001247 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001248 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001249 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001250
Daniel Vetterde2b9982012-07-04 22:52:50 +02001251 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1252 if (ret)
1253 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001254
Chris Wilson55249ba2010-12-22 14:04:47 +00001255 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001256 ret = intel_wrap_ring_buffer(ring);
1257 if (unlikely(ret))
1258 return ret;
1259 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001260
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001261 if (unlikely(ring->space < n)) {
1262 ret = intel_wait_ring_buffer(ring, n);
1263 if (unlikely(ret))
1264 return ret;
1265 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001266
1267 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001268 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001269}
1270
Chris Wilson78501ea2010-10-27 12:18:21 +01001271void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001272{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001273 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1274
Chris Wilsond97ed332010-08-04 15:18:13 +01001275 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001276 if (dev_priv->stop_rings & intel_ring_flag(ring))
1277 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001278 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001279}
1280
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001281
Chris Wilson78501ea2010-10-27 12:18:21 +01001282static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001283 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001284{
Akshay Joshi0206e352011-08-16 15:34:10 -04001285 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001286
1287 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001288
Chris Wilson12f55812012-07-05 17:14:01 +01001289 /* Disable notification that the ring is IDLE. The GT
1290 * will then assume that it is busy and bring it out of rc6.
1291 */
1292 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1293 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1294
1295 /* Clear the context id. Here be magic! */
1296 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1297
1298 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001299 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001300 GEN6_BSD_SLEEP_INDICATOR) == 0,
1301 50))
1302 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001303
Chris Wilson12f55812012-07-05 17:14:01 +01001304 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001305 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001306 POSTING_READ(RING_TAIL(ring->mmio_base));
1307
1308 /* Let the ring send IDLE messages to the GT again,
1309 * and so let it sleep to conserve power when idle.
1310 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001311 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001312 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001313}
1314
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001315static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001316 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001317{
Chris Wilson71a77e02011-02-02 12:13:49 +00001318 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001319 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001320
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001321 ret = intel_ring_begin(ring, 4);
1322 if (ret)
1323 return ret;
1324
Chris Wilson71a77e02011-02-02 12:13:49 +00001325 cmd = MI_FLUSH_DW;
1326 if (invalidate & I915_GEM_GPU_DOMAINS)
1327 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1328 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001329 intel_ring_emit(ring, 0);
1330 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001331 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001332 intel_ring_advance(ring);
1333 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001334}
1335
1336static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001337gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001338 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001339{
Akshay Joshi0206e352011-08-16 15:34:10 -04001340 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001341
Akshay Joshi0206e352011-08-16 15:34:10 -04001342 ret = intel_ring_begin(ring, 2);
1343 if (ret)
1344 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001345
Akshay Joshi0206e352011-08-16 15:34:10 -04001346 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1347 /* bit0-7 is the length on GEN6+ */
1348 intel_ring_emit(ring, offset);
1349 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001350
Akshay Joshi0206e352011-08-16 15:34:10 -04001351 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001352}
1353
Chris Wilson549f7362010-10-19 11:19:32 +01001354/* Blitter support (SandyBridge+) */
1355
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001356static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001357 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001358{
Chris Wilson71a77e02011-02-02 12:13:49 +00001359 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001360 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001361
Daniel Vetter6a233c72011-12-14 13:57:07 +01001362 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001363 if (ret)
1364 return ret;
1365
Chris Wilson71a77e02011-02-02 12:13:49 +00001366 cmd = MI_FLUSH_DW;
1367 if (invalidate & I915_GEM_DOMAIN_RENDER)
1368 cmd |= MI_INVALIDATE_TLB;
1369 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001370 intel_ring_emit(ring, 0);
1371 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001372 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001373 intel_ring_advance(ring);
1374 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001375}
1376
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001377int intel_init_render_ring_buffer(struct drm_device *dev)
1378{
1379 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001380 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001381
Daniel Vetter59465b52012-04-11 22:12:48 +02001382 ring->name = "render ring";
1383 ring->id = RCS;
1384 ring->mmio_base = RENDER_RING_BASE;
1385
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001386 if (INTEL_INFO(dev)->gen >= 6) {
1387 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001388 ring->flush = gen6_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01001389 if (INTEL_INFO(dev)->gen == 6)
1390 ring->flush = gen6_render_ring_flush__wa;
Ben Widawsky25c06302012-03-29 19:11:27 -07001391 ring->irq_get = gen6_ring_get_irq;
1392 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001393 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001394 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001395 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001396 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1397 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1398 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1399 ring->signal_mbox[0] = GEN6_VRSYNC;
1400 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001401 } else if (IS_GEN5(dev)) {
1402 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001403 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001404 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001405 ring->irq_get = gen5_ring_get_irq;
1406 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001407 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001408 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001409 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001410 if (INTEL_INFO(dev)->gen < 4)
1411 ring->flush = gen2_render_ring_flush;
1412 else
1413 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001414 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001415 if (IS_GEN2(dev)) {
1416 ring->irq_get = i8xx_ring_get_irq;
1417 ring->irq_put = i8xx_ring_put_irq;
1418 } else {
1419 ring->irq_get = i9xx_ring_get_irq;
1420 ring->irq_put = i9xx_ring_put_irq;
1421 }
Daniel Vettere3670312012-04-11 22:12:53 +02001422 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001423 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001424 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001425 if (INTEL_INFO(dev)->gen >= 6)
1426 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1427 else if (INTEL_INFO(dev)->gen >= 4)
1428 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1429 else if (IS_I830(dev) || IS_845G(dev))
1430 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1431 else
1432 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001433 ring->init = init_render_ring;
1434 ring->cleanup = render_ring_cleanup;
1435
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001436
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001437 if (!I915_NEED_GFX_HWS(dev)) {
1438 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1439 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1440 }
1441
1442 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001443}
1444
Chris Wilsone8616b62011-01-20 09:57:11 +00001445int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1446{
1447 drm_i915_private_t *dev_priv = dev->dev_private;
1448 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1449
Daniel Vetter59465b52012-04-11 22:12:48 +02001450 ring->name = "render ring";
1451 ring->id = RCS;
1452 ring->mmio_base = RENDER_RING_BASE;
1453
Chris Wilsone8616b62011-01-20 09:57:11 +00001454 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001455 /* non-kms not supported on gen6+ */
1456 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001457 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001458
1459 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1460 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1461 * the special gen5 functions. */
1462 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001463 if (INTEL_INFO(dev)->gen < 4)
1464 ring->flush = gen2_render_ring_flush;
1465 else
1466 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001467 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001468 if (IS_GEN2(dev)) {
1469 ring->irq_get = i8xx_ring_get_irq;
1470 ring->irq_put = i8xx_ring_put_irq;
1471 } else {
1472 ring->irq_get = i9xx_ring_get_irq;
1473 ring->irq_put = i9xx_ring_put_irq;
1474 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001475 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001476 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001477 if (INTEL_INFO(dev)->gen >= 4)
1478 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1479 else if (IS_I830(dev) || IS_845G(dev))
1480 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1481 else
1482 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001483 ring->init = init_render_ring;
1484 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001485
Keith Packardf3234702011-07-22 10:44:39 -07001486 if (!I915_NEED_GFX_HWS(dev))
1487 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1488
Chris Wilsone8616b62011-01-20 09:57:11 +00001489 ring->dev = dev;
1490 INIT_LIST_HEAD(&ring->active_list);
1491 INIT_LIST_HEAD(&ring->request_list);
Chris Wilsone8616b62011-01-20 09:57:11 +00001492
1493 ring->size = size;
1494 ring->effective_size = ring->size;
1495 if (IS_I830(ring->dev))
1496 ring->effective_size -= 128;
1497
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001498 ring->virtual_start = ioremap_wc(start, size);
1499 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001500 DRM_ERROR("can not ioremap virtual address for"
1501 " ring buffer\n");
1502 return -ENOMEM;
1503 }
1504
Chris Wilsone8616b62011-01-20 09:57:11 +00001505 return 0;
1506}
1507
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001508int intel_init_bsd_ring_buffer(struct drm_device *dev)
1509{
1510 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001511 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001512
Daniel Vetter58fa3832012-04-11 22:12:49 +02001513 ring->name = "bsd ring";
1514 ring->id = VCS;
1515
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001516 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001517 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1518 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001519 /* gen6 bsd needs a special wa for tail updates */
1520 if (IS_GEN6(dev))
1521 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001522 ring->flush = gen6_ring_flush;
1523 ring->add_request = gen6_add_request;
1524 ring->get_seqno = gen6_ring_get_seqno;
1525 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1526 ring->irq_get = gen6_ring_get_irq;
1527 ring->irq_put = gen6_ring_put_irq;
1528 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001529 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001530 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1531 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1532 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1533 ring->signal_mbox[0] = GEN6_RVSYNC;
1534 ring->signal_mbox[1] = GEN6_BVSYNC;
1535 } else {
1536 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001537 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001538 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001539 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001540 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001541 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001542 ring->irq_get = gen5_ring_get_irq;
1543 ring->irq_put = gen5_ring_put_irq;
1544 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001545 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001546 ring->irq_get = i9xx_ring_get_irq;
1547 ring->irq_put = i9xx_ring_put_irq;
1548 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001549 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001550 }
1551 ring->init = init_ring_common;
1552
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001553
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001554 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001555}
Chris Wilson549f7362010-10-19 11:19:32 +01001556
1557int intel_init_blt_ring_buffer(struct drm_device *dev)
1558{
1559 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001560 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001561
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001562 ring->name = "blitter ring";
1563 ring->id = BCS;
1564
1565 ring->mmio_base = BLT_RING_BASE;
1566 ring->write_tail = ring_write_tail;
1567 ring->flush = blt_ring_flush;
1568 ring->add_request = gen6_add_request;
1569 ring->get_seqno = gen6_ring_get_seqno;
1570 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1571 ring->irq_get = gen6_ring_get_irq;
1572 ring->irq_put = gen6_ring_put_irq;
1573 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001574 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001575 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1576 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1577 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1578 ring->signal_mbox[0] = GEN6_RBSYNC;
1579 ring->signal_mbox[1] = GEN6_VBSYNC;
1580 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001581
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001582 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001583}
Chris Wilsona7b97612012-07-20 12:41:08 +01001584
1585int
1586intel_ring_flush_all_caches(struct intel_ring_buffer *ring)
1587{
1588 int ret;
1589
1590 if (!ring->gpu_caches_dirty)
1591 return 0;
1592
1593 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
1594 if (ret)
1595 return ret;
1596
1597 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
1598
1599 ring->gpu_caches_dirty = false;
1600 return 0;
1601}
1602
1603int
1604intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring)
1605{
1606 uint32_t flush_domains;
1607 int ret;
1608
1609 flush_domains = 0;
1610 if (ring->gpu_caches_dirty)
1611 flush_domains = I915_GEM_GPU_DOMAINS;
1612
1613 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1614 if (ret)
1615 return ret;
1616
1617 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1618
1619 ring->gpu_caches_dirty = false;
1620 return 0;
1621}