blob: 984a0c5fbf5d9113d275a12af9674e0a45e809d6 [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
Paulo Zanonib3111502012-08-17 18:35:42 -0300221 /* Force SNB workarounds for PIPE_CONTROL flushes */
222 ret = intel_emit_post_sync_nonzero_flush(ring);
223 if (ret)
224 return ret;
225
Jesse Barnes8d315282011-10-16 10:23:31 +0200226 /* Just flush everything. Experiments have shown that reducing the
227 * number of bits based on the write domains has little performance
228 * impact.
229 */
Chris Wilson7d54a902012-08-10 10:18:10 +0100230 if (flush_domains) {
231 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
232 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
233 /*
234 * Ensure that any following seqno writes only happen
235 * when the render cache is indeed flushed.
236 */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200237 flags |= PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100238 }
239 if (invalidate_domains) {
240 flags |= PIPE_CONTROL_TLB_INVALIDATE;
241 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
242 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
243 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
244 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
245 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
246 /*
247 * TLB invalidate requires a post-sync write.
248 */
249 flags |= PIPE_CONTROL_QW_WRITE;
250 }
Jesse Barnes8d315282011-10-16 10:23:31 +0200251
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100252 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200253 if (ret)
254 return ret;
255
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100256 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200257 intel_ring_emit(ring, flags);
258 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100259 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200260 intel_ring_advance(ring);
261
262 return 0;
263}
264
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100265static int
Paulo Zanonif3987632012-08-17 18:35:43 -0300266gen7_render_ring_cs_stall_wa(struct intel_ring_buffer *ring)
267{
268 int ret;
269
270 ret = intel_ring_begin(ring, 4);
271 if (ret)
272 return ret;
273
274 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
275 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
276 PIPE_CONTROL_STALL_AT_SCOREBOARD);
277 intel_ring_emit(ring, 0);
278 intel_ring_emit(ring, 0);
279 intel_ring_advance(ring);
280
281 return 0;
282}
283
284static int
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300285gen7_render_ring_flush(struct intel_ring_buffer *ring,
286 u32 invalidate_domains, u32 flush_domains)
287{
288 u32 flags = 0;
289 struct pipe_control *pc = ring->private;
290 u32 scratch_addr = pc->gtt_offset + 128;
291 int ret;
292
Paulo Zanonif3987632012-08-17 18:35:43 -0300293 /*
294 * Ensure that any following seqno writes only happen when the render
295 * cache is indeed flushed.
296 *
297 * Workaround: 4th PIPE_CONTROL command (except the ones with only
298 * read-cache invalidate bits set) must have the CS_STALL bit set. We
299 * don't try to be clever and just set it unconditionally.
300 */
301 flags |= PIPE_CONTROL_CS_STALL;
302
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300303 /* Just flush everything. Experiments have shown that reducing the
304 * number of bits based on the write domains has little performance
305 * impact.
306 */
307 if (flush_domains) {
308 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
309 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300310 }
311 if (invalidate_domains) {
312 flags |= PIPE_CONTROL_TLB_INVALIDATE;
313 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
314 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
315 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
316 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
317 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
318 /*
319 * TLB invalidate requires a post-sync write.
320 */
321 flags |= PIPE_CONTROL_QW_WRITE;
Paulo Zanonif3987632012-08-17 18:35:43 -0300322
323 /* Workaround: we must issue a pipe_control with CS-stall bit
324 * set before a pipe_control command that has the state cache
325 * invalidate bit set. */
326 gen7_render_ring_cs_stall_wa(ring);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300327 }
328
329 ret = intel_ring_begin(ring, 4);
330 if (ret)
331 return ret;
332
333 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
334 intel_ring_emit(ring, flags);
335 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
336 intel_ring_emit(ring, 0);
337 intel_ring_advance(ring);
338
339 return 0;
340}
341
Chris Wilson78501ea2010-10-27 12:18:21 +0100342static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100343 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800344{
Chris Wilson78501ea2010-10-27 12:18:21 +0100345 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100346 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800347}
348
Chris Wilson78501ea2010-10-27 12:18:21 +0100349u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800350{
Chris Wilson78501ea2010-10-27 12:18:21 +0100351 drm_i915_private_t *dev_priv = ring->dev->dev_private;
352 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200353 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800354
355 return I915_READ(acthd_reg);
356}
357
Chris Wilson78501ea2010-10-27 12:18:21 +0100358static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800359{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200360 struct drm_device *dev = ring->dev;
361 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000362 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200363 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800364 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800365
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200366 if (HAS_FORCE_WAKE(dev))
367 gen6_gt_force_wake_get(dev_priv);
368
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800369 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200370 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200371 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100372 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800373
Daniel Vetter570ef602010-08-02 17:06:23 +0200374 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800375
376 /* G45 ring initialization fails to reset head to zero */
377 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000378 DRM_DEBUG_KMS("%s head not reset to zero "
379 "ctl %08x head %08x tail %08x start %08x\n",
380 ring->name,
381 I915_READ_CTL(ring),
382 I915_READ_HEAD(ring),
383 I915_READ_TAIL(ring),
384 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800385
Daniel Vetter570ef602010-08-02 17:06:23 +0200386 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800387
Chris Wilson6fd0d562010-12-05 20:42:33 +0000388 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
389 DRM_ERROR("failed to set %s head to zero "
390 "ctl %08x head %08x tail %08x start %08x\n",
391 ring->name,
392 I915_READ_CTL(ring),
393 I915_READ_HEAD(ring),
394 I915_READ_TAIL(ring),
395 I915_READ_START(ring));
396 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700397 }
398
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200399 /* Initialize the ring. This must happen _after_ we've cleared the ring
400 * registers with the above sequence (the readback of the HEAD registers
401 * also enforces ordering), otherwise the hw might lose the new ring
402 * register values. */
403 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200404 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000405 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000406 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800407
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800408 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400409 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
410 I915_READ_START(ring) == obj->gtt_offset &&
411 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000412 DRM_ERROR("%s initialization failed "
413 "ctl %08x head %08x tail %08x start %08x\n",
414 ring->name,
415 I915_READ_CTL(ring),
416 I915_READ_HEAD(ring),
417 I915_READ_TAIL(ring),
418 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200419 ret = -EIO;
420 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800421 }
422
Chris Wilson78501ea2010-10-27 12:18:21 +0100423 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
424 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800425 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000426 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200427 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000428 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100429 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800430 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000431
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200432out:
433 if (HAS_FORCE_WAKE(dev))
434 gen6_gt_force_wake_put(dev_priv);
435
436 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700437}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800438
Chris Wilsonc6df5412010-12-15 09:56:50 +0000439static int
440init_pipe_control(struct intel_ring_buffer *ring)
441{
442 struct pipe_control *pc;
443 struct drm_i915_gem_object *obj;
444 int ret;
445
446 if (ring->private)
447 return 0;
448
449 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
450 if (!pc)
451 return -ENOMEM;
452
453 obj = i915_gem_alloc_object(ring->dev, 4096);
454 if (obj == NULL) {
455 DRM_ERROR("Failed to allocate seqno page\n");
456 ret = -ENOMEM;
457 goto err;
458 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100459
460 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000461
Chris Wilson86a1ee22012-08-11 15:41:04 +0100462 ret = i915_gem_object_pin(obj, 4096, true, false);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000463 if (ret)
464 goto err_unref;
465
466 pc->gtt_offset = obj->gtt_offset;
Chris Wilson9da3da62012-06-01 15:20:22 +0100467 pc->cpu_page = kmap(sg_page(obj->pages->sgl));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000468 if (pc->cpu_page == NULL)
469 goto err_unpin;
470
471 pc->obj = obj;
472 ring->private = pc;
473 return 0;
474
475err_unpin:
476 i915_gem_object_unpin(obj);
477err_unref:
478 drm_gem_object_unreference(&obj->base);
479err:
480 kfree(pc);
481 return ret;
482}
483
484static void
485cleanup_pipe_control(struct intel_ring_buffer *ring)
486{
487 struct pipe_control *pc = ring->private;
488 struct drm_i915_gem_object *obj;
489
490 if (!ring->private)
491 return;
492
493 obj = pc->obj;
Chris Wilson9da3da62012-06-01 15:20:22 +0100494
495 kunmap(sg_page(obj->pages->sgl));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000496 i915_gem_object_unpin(obj);
497 drm_gem_object_unreference(&obj->base);
498
499 kfree(pc);
500 ring->private = NULL;
501}
502
Chris Wilson78501ea2010-10-27 12:18:21 +0100503static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800504{
Chris Wilson78501ea2010-10-27 12:18:21 +0100505 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000506 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100507 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800508
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100509 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200510 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700511 if (IS_GEN7(dev))
512 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200513 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
514 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800515 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100516
Jesse Barnes8d315282011-10-16 10:23:31 +0200517 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000518 ret = init_pipe_control(ring);
519 if (ret)
520 return ret;
521 }
522
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200523 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700524 /* From the Sandybridge PRM, volume 1 part 3, page 24:
525 * "If this bit is set, STCunit will have LRA as replacement
526 * policy. [...] This bit must be reset. LRA replacement
527 * policy is not supported."
528 */
529 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200530 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700531
532 /* This is not explicitly set for GEN6, so read the register.
533 * see intel_ring_mi_set_context() for why we care.
534 * TODO: consider explicitly setting the bit for GEN5
535 */
536 ring->itlb_before_ctx_switch =
537 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800538 }
539
Daniel Vetter6b26c862012-04-24 14:04:12 +0200540 if (INTEL_INFO(dev)->gen >= 6)
541 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000542
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700543 if (HAS_L3_GPU_CACHE(dev))
Ben Widawsky15b9f802012-05-25 16:56:23 -0700544 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
545
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800546 return ret;
547}
548
Chris Wilsonc6df5412010-12-15 09:56:50 +0000549static void render_ring_cleanup(struct intel_ring_buffer *ring)
550{
551 if (!ring->private)
552 return;
553
554 cleanup_pipe_control(ring);
555}
556
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000557static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700558update_mboxes(struct intel_ring_buffer *ring,
559 u32 seqno,
560 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000561{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700562 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
563 MI_SEMAPHORE_GLOBAL_GTT |
564 MI_SEMAPHORE_REGISTER |
565 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000566 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700567 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000568}
569
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700570/**
571 * gen6_add_request - Update the semaphore mailbox registers
572 *
573 * @ring - ring that is adding a request
574 * @seqno - return seqno stuck into the ring
575 *
576 * Update the mailbox registers in the *other* rings with the current seqno.
577 * This acts like a signal in the canonical semaphore.
578 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000579static int
580gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700581 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000582{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700583 u32 mbox1_reg;
584 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000585 int ret;
586
587 ret = intel_ring_begin(ring, 10);
588 if (ret)
589 return ret;
590
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700591 mbox1_reg = ring->signal_mbox[0];
592 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000593
Daniel Vetter53d227f2012-01-25 16:32:49 +0100594 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700595
596 update_mboxes(ring, *seqno, mbox1_reg);
597 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000598 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
599 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700600 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000601 intel_ring_emit(ring, MI_USER_INTERRUPT);
602 intel_ring_advance(ring);
603
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000604 return 0;
605}
606
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700607/**
608 * intel_ring_sync - sync the waiter to the signaller on seqno
609 *
610 * @waiter - ring that is waiting
611 * @signaller - ring which has, or will signal
612 * @seqno - seqno which the waiter will block on
613 */
614static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200615gen6_ring_sync(struct intel_ring_buffer *waiter,
616 struct intel_ring_buffer *signaller,
617 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000618{
619 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700620 u32 dw1 = MI_SEMAPHORE_MBOX |
621 MI_SEMAPHORE_COMPARE |
622 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000623
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700624 /* Throughout all of the GEM code, seqno passed implies our current
625 * seqno is >= the last seqno executed. However for hardware the
626 * comparison is strictly greater than.
627 */
628 seqno -= 1;
629
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200630 WARN_ON(signaller->semaphore_register[waiter->id] ==
631 MI_SEMAPHORE_SYNC_INVALID);
632
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700633 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000634 if (ret)
635 return ret;
636
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200637 intel_ring_emit(waiter,
638 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700639 intel_ring_emit(waiter, seqno);
640 intel_ring_emit(waiter, 0);
641 intel_ring_emit(waiter, MI_NOOP);
642 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000643
644 return 0;
645}
646
Chris Wilsonc6df5412010-12-15 09:56:50 +0000647#define PIPE_CONTROL_FLUSH(ring__, addr__) \
648do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200649 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
650 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000651 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
652 intel_ring_emit(ring__, 0); \
653 intel_ring_emit(ring__, 0); \
654} while (0)
655
656static int
657pc_render_add_request(struct intel_ring_buffer *ring,
658 u32 *result)
659{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100660 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000661 struct pipe_control *pc = ring->private;
662 u32 scratch_addr = pc->gtt_offset + 128;
663 int ret;
664
665 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
666 * incoherent with writes to memory, i.e. completely fubar,
667 * so we need to use PIPE_NOTIFY instead.
668 *
669 * However, we also need to workaround the qword write
670 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
671 * memory before requesting an interrupt.
672 */
673 ret = intel_ring_begin(ring, 32);
674 if (ret)
675 return ret;
676
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200677 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200678 PIPE_CONTROL_WRITE_FLUSH |
679 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000680 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
681 intel_ring_emit(ring, seqno);
682 intel_ring_emit(ring, 0);
683 PIPE_CONTROL_FLUSH(ring, scratch_addr);
684 scratch_addr += 128; /* write to separate cachelines */
685 PIPE_CONTROL_FLUSH(ring, scratch_addr);
686 scratch_addr += 128;
687 PIPE_CONTROL_FLUSH(ring, scratch_addr);
688 scratch_addr += 128;
689 PIPE_CONTROL_FLUSH(ring, scratch_addr);
690 scratch_addr += 128;
691 PIPE_CONTROL_FLUSH(ring, scratch_addr);
692 scratch_addr += 128;
693 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000694
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200695 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200696 PIPE_CONTROL_WRITE_FLUSH |
697 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000698 PIPE_CONTROL_NOTIFY);
699 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
700 intel_ring_emit(ring, seqno);
701 intel_ring_emit(ring, 0);
702 intel_ring_advance(ring);
703
704 *result = seqno;
705 return 0;
706}
707
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800708static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100709gen6_ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100710{
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100711 /* Workaround to force correct ordering between irq and seqno writes on
712 * ivb (and maybe also on snb) by reading from a CS register (like
713 * ACTHD) before reading the status page. */
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100714 if (!lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100715 intel_ring_get_active_head(ring);
716 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
717}
718
719static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100720ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800721{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000722 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
723}
724
Chris Wilsonc6df5412010-12-15 09:56:50 +0000725static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100726pc_render_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000727{
728 struct pipe_control *pc = ring->private;
729 return pc->cpu_page[0];
730}
731
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000732static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200733gen5_ring_get_irq(struct intel_ring_buffer *ring)
734{
735 struct drm_device *dev = ring->dev;
736 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100737 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200738
739 if (!dev->irq_enabled)
740 return false;
741
Chris Wilson7338aef2012-04-24 21:48:47 +0100742 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200743 if (ring->irq_refcount++ == 0) {
744 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
745 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
746 POSTING_READ(GTIMR);
747 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100748 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200749
750 return true;
751}
752
753static void
754gen5_ring_put_irq(struct intel_ring_buffer *ring)
755{
756 struct drm_device *dev = ring->dev;
757 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100758 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200759
Chris Wilson7338aef2012-04-24 21:48:47 +0100760 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200761 if (--ring->irq_refcount == 0) {
762 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
763 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
764 POSTING_READ(GTIMR);
765 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100766 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200767}
768
769static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200770i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700771{
Chris Wilson78501ea2010-10-27 12:18:21 +0100772 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000773 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100774 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700775
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000776 if (!dev->irq_enabled)
777 return false;
778
Chris Wilson7338aef2012-04-24 21:48:47 +0100779 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200780 if (ring->irq_refcount++ == 0) {
781 dev_priv->irq_mask &= ~ring->irq_enable_mask;
782 I915_WRITE(IMR, dev_priv->irq_mask);
783 POSTING_READ(IMR);
784 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100785 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000786
787 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700788}
789
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800790static void
Daniel Vettere3670312012-04-11 22:12:53 +0200791i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700792{
Chris Wilson78501ea2010-10-27 12:18:21 +0100793 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000794 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100795 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700796
Chris Wilson7338aef2012-04-24 21:48:47 +0100797 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200798 if (--ring->irq_refcount == 0) {
799 dev_priv->irq_mask |= ring->irq_enable_mask;
800 I915_WRITE(IMR, dev_priv->irq_mask);
801 POSTING_READ(IMR);
802 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100803 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700804}
805
Chris Wilsonc2798b12012-04-22 21:13:57 +0100806static bool
807i8xx_ring_get_irq(struct intel_ring_buffer *ring)
808{
809 struct drm_device *dev = ring->dev;
810 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100811 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100812
813 if (!dev->irq_enabled)
814 return false;
815
Chris Wilson7338aef2012-04-24 21:48:47 +0100816 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100817 if (ring->irq_refcount++ == 0) {
818 dev_priv->irq_mask &= ~ring->irq_enable_mask;
819 I915_WRITE16(IMR, dev_priv->irq_mask);
820 POSTING_READ16(IMR);
821 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100822 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100823
824 return true;
825}
826
827static void
828i8xx_ring_put_irq(struct intel_ring_buffer *ring)
829{
830 struct drm_device *dev = ring->dev;
831 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100832 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100833
Chris Wilson7338aef2012-04-24 21:48:47 +0100834 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100835 if (--ring->irq_refcount == 0) {
836 dev_priv->irq_mask |= ring->irq_enable_mask;
837 I915_WRITE16(IMR, dev_priv->irq_mask);
838 POSTING_READ16(IMR);
839 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100840 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100841}
842
Chris Wilson78501ea2010-10-27 12:18:21 +0100843void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800844{
Eric Anholt45930102011-05-06 17:12:35 -0700845 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100846 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700847 u32 mmio = 0;
848
849 /* The ring status page addresses are no longer next to the rest of
850 * the ring registers as of gen7.
851 */
852 if (IS_GEN7(dev)) {
853 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100854 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700855 mmio = RENDER_HWS_PGA_GEN7;
856 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100857 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700858 mmio = BLT_HWS_PGA_GEN7;
859 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100860 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700861 mmio = BSD_HWS_PGA_GEN7;
862 break;
863 }
864 } else if (IS_GEN6(ring->dev)) {
865 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
866 } else {
867 mmio = RING_HWS_PGA(ring->mmio_base);
868 }
869
Chris Wilson78501ea2010-10-27 12:18:21 +0100870 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
871 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800872}
873
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000874static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100875bsd_ring_flush(struct intel_ring_buffer *ring,
876 u32 invalidate_domains,
877 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800878{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000879 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000880
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000881 ret = intel_ring_begin(ring, 2);
882 if (ret)
883 return ret;
884
885 intel_ring_emit(ring, MI_FLUSH);
886 intel_ring_emit(ring, MI_NOOP);
887 intel_ring_advance(ring);
888 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800889}
890
Chris Wilson3cce4692010-10-27 16:11:02 +0100891static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200892i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100893 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800894{
895 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100896 int ret;
897
898 ret = intel_ring_begin(ring, 4);
899 if (ret)
900 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100901
Daniel Vetter53d227f2012-01-25 16:32:49 +0100902 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100903
Chris Wilson3cce4692010-10-27 16:11:02 +0100904 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
905 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
906 intel_ring_emit(ring, seqno);
907 intel_ring_emit(ring, MI_USER_INTERRUPT);
908 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800909
Chris Wilson3cce4692010-10-27 16:11:02 +0100910 *result = seqno;
911 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800912}
913
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000914static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700915gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000916{
917 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000918 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100919 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000920
921 if (!dev->irq_enabled)
922 return false;
923
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100924 /* It looks like we need to prevent the gt from suspending while waiting
925 * for an notifiy irq, otherwise irqs seem to get lost on at least the
926 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100927 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100928
Chris Wilson7338aef2012-04-24 21:48:47 +0100929 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000930 if (ring->irq_refcount++ == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700931 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700932 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
933 GEN6_RENDER_L3_PARITY_ERROR));
934 else
935 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200936 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
937 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
938 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000939 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100940 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000941
942 return true;
943}
944
945static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700946gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000947{
948 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000949 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100950 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000951
Chris Wilson7338aef2012-04-24 21:48:47 +0100952 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000953 if (--ring->irq_refcount == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700954 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700955 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
956 else
957 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200958 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
959 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
960 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000961 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100962 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100963
Daniel Vetter99ffa162012-01-25 14:04:00 +0100964 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000965}
966
Zou Nan haid1b851f2010-05-21 09:08:57 +0800967static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200968i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800969{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100970 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100971
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100972 ret = intel_ring_begin(ring, 2);
973 if (ret)
974 return ret;
975
Chris Wilson78501ea2010-10-27 12:18:21 +0100976 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100977 MI_BATCH_BUFFER_START |
978 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100979 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000980 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100981 intel_ring_advance(ring);
982
Zou Nan haid1b851f2010-05-21 09:08:57 +0800983 return 0;
984}
985
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800986static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200987i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000988 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700989{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000990 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700991
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200992 ret = intel_ring_begin(ring, 4);
993 if (ret)
994 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700995
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200996 intel_ring_emit(ring, MI_BATCH_BUFFER);
997 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
998 intel_ring_emit(ring, offset + len - 8);
999 intel_ring_emit(ring, 0);
1000 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001001
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001002 return 0;
1003}
1004
1005static int
1006i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
1007 u32 offset, u32 len)
1008{
1009 int ret;
1010
1011 ret = intel_ring_begin(ring, 2);
1012 if (ret)
1013 return ret;
1014
Chris Wilson65f56872012-04-17 16:38:12 +01001015 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001016 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001017 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001018
Eric Anholt62fdfea2010-05-21 13:26:39 -07001019 return 0;
1020}
1021
Chris Wilson78501ea2010-10-27 12:18:21 +01001022static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001023{
Chris Wilson05394f32010-11-08 19:18:58 +00001024 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001025
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001026 obj = ring->status_page.obj;
1027 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001028 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001029
Chris Wilson9da3da62012-06-01 15:20:22 +01001030 kunmap(sg_page(obj->pages->sgl));
Eric Anholt62fdfea2010-05-21 13:26:39 -07001031 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001032 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001033 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001034}
1035
Chris Wilson78501ea2010-10-27 12:18:21 +01001036static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001037{
Chris Wilson78501ea2010-10-27 12:18:21 +01001038 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +00001039 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040 int ret;
1041
Eric Anholt62fdfea2010-05-21 13:26:39 -07001042 obj = i915_gem_alloc_object(dev, 4096);
1043 if (obj == NULL) {
1044 DRM_ERROR("Failed to allocate status page\n");
1045 ret = -ENOMEM;
1046 goto err;
1047 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01001048
1049 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001050
Chris Wilson86a1ee22012-08-11 15:41:04 +01001051 ret = i915_gem_object_pin(obj, 4096, true, false);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001052 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001053 goto err_unref;
1054 }
1055
Chris Wilson05394f32010-11-08 19:18:58 +00001056 ring->status_page.gfx_addr = obj->gtt_offset;
Chris Wilson9da3da62012-06-01 15:20:22 +01001057 ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001058 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -07001059 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001060 goto err_unpin;
1061 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001062 ring->status_page.obj = obj;
1063 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001064
Chris Wilson78501ea2010-10-27 12:18:21 +01001065 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001066 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
1067 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001068
1069 return 0;
1070
1071err_unpin:
1072 i915_gem_object_unpin(obj);
1073err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001074 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001075err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001076 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001077}
1078
Ben Widawskyc43b5632012-04-16 14:07:40 -07001079static int intel_init_ring_buffer(struct drm_device *dev,
1080 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001081{
Chris Wilson05394f32010-11-08 19:18:58 +00001082 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001083 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001084 int ret;
1085
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001086 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001087 INIT_LIST_HEAD(&ring->active_list);
1088 INIT_LIST_HEAD(&ring->request_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001089 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001090
Chris Wilsonb259f672011-03-29 13:19:09 +01001091 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001092
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001093 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001094 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001095 if (ret)
1096 return ret;
1097 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001098
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001099 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001100 if (obj == NULL) {
1101 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001102 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001103 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001104 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001105
Chris Wilson05394f32010-11-08 19:18:58 +00001106 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001107
Chris Wilson86a1ee22012-08-11 15:41:04 +01001108 ret = i915_gem_object_pin(obj, PAGE_SIZE, true, false);
Chris Wilsondd785e32010-08-07 11:01:34 +01001109 if (ret)
1110 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001111
Chris Wilson3eef8912012-06-04 17:05:40 +01001112 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1113 if (ret)
1114 goto err_unpin;
1115
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001116 ring->virtual_start =
1117 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1118 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001119 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001120 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001121 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001122 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001123 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001124
Chris Wilson78501ea2010-10-27 12:18:21 +01001125 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001126 if (ret)
1127 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001128
Chris Wilson55249ba2010-12-22 14:04:47 +00001129 /* Workaround an erratum on the i830 which causes a hang if
1130 * the TAIL pointer points to within the last 2 cachelines
1131 * of the buffer.
1132 */
1133 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001134 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001135 ring->effective_size -= 128;
1136
Chris Wilsonc584fe42010-10-29 18:15:52 +01001137 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001138
1139err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001140 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001141err_unpin:
1142 i915_gem_object_unpin(obj);
1143err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001144 drm_gem_object_unreference(&obj->base);
1145 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001146err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001147 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001148 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001149}
1150
Chris Wilson78501ea2010-10-27 12:18:21 +01001151void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001152{
Chris Wilson33626e62010-10-29 16:18:36 +01001153 struct drm_i915_private *dev_priv;
1154 int ret;
1155
Chris Wilson05394f32010-11-08 19:18:58 +00001156 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001157 return;
1158
Chris Wilson33626e62010-10-29 16:18:36 +01001159 /* Disable the ring buffer. The ring must be idle at this point */
1160 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001161 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001162 if (ret)
1163 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1164 ring->name, ret);
1165
Chris Wilson33626e62010-10-29 16:18:36 +01001166 I915_WRITE_CTL(ring, 0);
1167
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001168 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001169
Chris Wilson05394f32010-11-08 19:18:58 +00001170 i915_gem_object_unpin(ring->obj);
1171 drm_gem_object_unreference(&ring->obj->base);
1172 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001173
Zou Nan hai8d192152010-11-02 16:31:01 +08001174 if (ring->cleanup)
1175 ring->cleanup(ring);
1176
Chris Wilson78501ea2010-10-27 12:18:21 +01001177 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001178}
1179
Chris Wilson78501ea2010-10-27 12:18:21 +01001180static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001181{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001182 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001183 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001184
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001185 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001186 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001187 if (ret)
1188 return ret;
1189 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001190
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001191 virt = ring->virtual_start + ring->tail;
1192 rem /= 4;
1193 while (rem--)
1194 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001195
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001196 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001197 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001198
1199 return 0;
1200}
1201
Chris Wilsona71d8d92012-02-15 11:25:36 +00001202static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1203{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001204 int ret;
1205
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001206 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001207 if (!ret)
1208 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001209
1210 return ret;
1211}
1212
1213static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1214{
1215 struct drm_i915_gem_request *request;
1216 u32 seqno = 0;
1217 int ret;
1218
1219 i915_gem_retire_requests_ring(ring);
1220
1221 if (ring->last_retired_head != -1) {
1222 ring->head = ring->last_retired_head;
1223 ring->last_retired_head = -1;
1224 ring->space = ring_space(ring);
1225 if (ring->space >= n)
1226 return 0;
1227 }
1228
1229 list_for_each_entry(request, &ring->request_list, list) {
1230 int space;
1231
1232 if (request->tail == -1)
1233 continue;
1234
1235 space = request->tail - (ring->tail + 8);
1236 if (space < 0)
1237 space += ring->size;
1238 if (space >= n) {
1239 seqno = request->seqno;
1240 break;
1241 }
1242
1243 /* Consume this request in case we need more space than
1244 * is available and so need to prevent a race between
1245 * updating last_retired_head and direct reads of
1246 * I915_RING_HEAD. It also provides a nice sanity check.
1247 */
1248 request->tail = -1;
1249 }
1250
1251 if (seqno == 0)
1252 return -ENOSPC;
1253
1254 ret = intel_ring_wait_seqno(ring, seqno);
1255 if (ret)
1256 return ret;
1257
1258 if (WARN_ON(ring->last_retired_head == -1))
1259 return -ENOSPC;
1260
1261 ring->head = ring->last_retired_head;
1262 ring->last_retired_head = -1;
1263 ring->space = ring_space(ring);
1264 if (WARN_ON(ring->space < n))
1265 return -ENOSPC;
1266
1267 return 0;
1268}
1269
Chris Wilson78501ea2010-10-27 12:18:21 +01001270int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001271{
Chris Wilson78501ea2010-10-27 12:18:21 +01001272 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001273 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001274 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001275 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001276
Chris Wilsona71d8d92012-02-15 11:25:36 +00001277 ret = intel_ring_wait_request(ring, n);
1278 if (ret != -ENOSPC)
1279 return ret;
1280
Chris Wilsondb53a302011-02-03 11:57:46 +00001281 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001282 /* With GEM the hangcheck timer should kick us out of the loop,
1283 * leaving it early runs the risk of corrupting GEM state (due
1284 * to running on almost untested codepaths). But on resume
1285 * timers don't work yet, so prevent a complete hang in that
1286 * case by choosing an insanely large timeout. */
1287 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001288
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001289 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001290 ring->head = I915_READ_HEAD(ring);
1291 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001292 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001293 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001294 return 0;
1295 }
1296
1297 if (dev->primary->master) {
1298 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1299 if (master_priv->sarea_priv)
1300 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1301 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001302
Chris Wilsone60a0b12010-10-13 10:09:14 +01001303 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001304
1305 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1306 if (ret)
1307 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001308 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001309 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001310 return -EBUSY;
1311}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001312
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001313int intel_ring_begin(struct intel_ring_buffer *ring,
1314 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001315{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001316 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001317 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001318 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001319
Daniel Vetterde2b9982012-07-04 22:52:50 +02001320 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1321 if (ret)
1322 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001323
Chris Wilson55249ba2010-12-22 14:04:47 +00001324 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001325 ret = intel_wrap_ring_buffer(ring);
1326 if (unlikely(ret))
1327 return ret;
1328 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001329
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001330 if (unlikely(ring->space < n)) {
1331 ret = intel_wait_ring_buffer(ring, n);
1332 if (unlikely(ret))
1333 return ret;
1334 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001335
1336 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001337 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001338}
1339
Chris Wilson78501ea2010-10-27 12:18:21 +01001340void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001341{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001342 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1343
Chris Wilsond97ed332010-08-04 15:18:13 +01001344 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001345 if (dev_priv->stop_rings & intel_ring_flag(ring))
1346 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001347 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001348}
1349
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001350
Chris Wilson78501ea2010-10-27 12:18:21 +01001351static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001352 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001353{
Akshay Joshi0206e352011-08-16 15:34:10 -04001354 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001355
1356 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001357
Chris Wilson12f55812012-07-05 17:14:01 +01001358 /* Disable notification that the ring is IDLE. The GT
1359 * will then assume that it is busy and bring it out of rc6.
1360 */
1361 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1362 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1363
1364 /* Clear the context id. Here be magic! */
1365 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1366
1367 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001368 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001369 GEN6_BSD_SLEEP_INDICATOR) == 0,
1370 50))
1371 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001372
Chris Wilson12f55812012-07-05 17:14:01 +01001373 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001374 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001375 POSTING_READ(RING_TAIL(ring->mmio_base));
1376
1377 /* Let the ring send IDLE messages to the GT again,
1378 * and so let it sleep to conserve power when idle.
1379 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001380 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001381 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001382}
1383
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001384static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001385 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001386{
Chris Wilson71a77e02011-02-02 12:13:49 +00001387 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001388 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001389
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001390 ret = intel_ring_begin(ring, 4);
1391 if (ret)
1392 return ret;
1393
Chris Wilson71a77e02011-02-02 12:13:49 +00001394 cmd = MI_FLUSH_DW;
1395 if (invalidate & I915_GEM_GPU_DOMAINS)
1396 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1397 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001398 intel_ring_emit(ring, 0);
1399 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001400 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001401 intel_ring_advance(ring);
1402 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001403}
1404
1405static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001406gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001407 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001408{
Akshay Joshi0206e352011-08-16 15:34:10 -04001409 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001410
Akshay Joshi0206e352011-08-16 15:34:10 -04001411 ret = intel_ring_begin(ring, 2);
1412 if (ret)
1413 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001414
Akshay Joshi0206e352011-08-16 15:34:10 -04001415 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1416 /* bit0-7 is the length on GEN6+ */
1417 intel_ring_emit(ring, offset);
1418 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001419
Akshay Joshi0206e352011-08-16 15:34:10 -04001420 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001421}
1422
Chris Wilson549f7362010-10-19 11:19:32 +01001423/* Blitter support (SandyBridge+) */
1424
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001425static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001426 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001427{
Chris Wilson71a77e02011-02-02 12:13:49 +00001428 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001429 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001430
Daniel Vetter6a233c72011-12-14 13:57:07 +01001431 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001432 if (ret)
1433 return ret;
1434
Chris Wilson71a77e02011-02-02 12:13:49 +00001435 cmd = MI_FLUSH_DW;
1436 if (invalidate & I915_GEM_DOMAIN_RENDER)
1437 cmd |= MI_INVALIDATE_TLB;
1438 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001439 intel_ring_emit(ring, 0);
1440 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001441 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001442 intel_ring_advance(ring);
1443 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001444}
1445
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001446int intel_init_render_ring_buffer(struct drm_device *dev)
1447{
1448 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001449 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001450
Daniel Vetter59465b52012-04-11 22:12:48 +02001451 ring->name = "render ring";
1452 ring->id = RCS;
1453 ring->mmio_base = RENDER_RING_BASE;
1454
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001455 if (INTEL_INFO(dev)->gen >= 6) {
1456 ring->add_request = gen6_add_request;
Paulo Zanoni4772eae2012-08-17 18:35:41 -03001457 ring->flush = gen7_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01001458 if (INTEL_INFO(dev)->gen == 6)
Paulo Zanonib3111502012-08-17 18:35:42 -03001459 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001460 ring->irq_get = gen6_ring_get_irq;
1461 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001462 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001463 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001464 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001465 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1466 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1467 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1468 ring->signal_mbox[0] = GEN6_VRSYNC;
1469 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001470 } else if (IS_GEN5(dev)) {
1471 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001472 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001473 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001474 ring->irq_get = gen5_ring_get_irq;
1475 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001476 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001477 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001478 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001479 if (INTEL_INFO(dev)->gen < 4)
1480 ring->flush = gen2_render_ring_flush;
1481 else
1482 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001483 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001484 if (IS_GEN2(dev)) {
1485 ring->irq_get = i8xx_ring_get_irq;
1486 ring->irq_put = i8xx_ring_put_irq;
1487 } else {
1488 ring->irq_get = i9xx_ring_get_irq;
1489 ring->irq_put = i9xx_ring_put_irq;
1490 }
Daniel Vettere3670312012-04-11 22:12:53 +02001491 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001492 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001493 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001494 if (INTEL_INFO(dev)->gen >= 6)
1495 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1496 else if (INTEL_INFO(dev)->gen >= 4)
1497 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1498 else if (IS_I830(dev) || IS_845G(dev))
1499 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1500 else
1501 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001502 ring->init = init_render_ring;
1503 ring->cleanup = render_ring_cleanup;
1504
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001505
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001506 if (!I915_NEED_GFX_HWS(dev)) {
1507 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1508 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1509 }
1510
1511 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001512}
1513
Chris Wilsone8616b62011-01-20 09:57:11 +00001514int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1515{
1516 drm_i915_private_t *dev_priv = dev->dev_private;
1517 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1518
Daniel Vetter59465b52012-04-11 22:12:48 +02001519 ring->name = "render ring";
1520 ring->id = RCS;
1521 ring->mmio_base = RENDER_RING_BASE;
1522
Chris Wilsone8616b62011-01-20 09:57:11 +00001523 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001524 /* non-kms not supported on gen6+ */
1525 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001526 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001527
1528 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1529 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1530 * the special gen5 functions. */
1531 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001532 if (INTEL_INFO(dev)->gen < 4)
1533 ring->flush = gen2_render_ring_flush;
1534 else
1535 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001536 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001537 if (IS_GEN2(dev)) {
1538 ring->irq_get = i8xx_ring_get_irq;
1539 ring->irq_put = i8xx_ring_put_irq;
1540 } else {
1541 ring->irq_get = i9xx_ring_get_irq;
1542 ring->irq_put = i9xx_ring_put_irq;
1543 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001544 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001545 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001546 if (INTEL_INFO(dev)->gen >= 4)
1547 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1548 else if (IS_I830(dev) || IS_845G(dev))
1549 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1550 else
1551 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001552 ring->init = init_render_ring;
1553 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001554
Keith Packardf3234702011-07-22 10:44:39 -07001555 if (!I915_NEED_GFX_HWS(dev))
1556 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1557
Chris Wilsone8616b62011-01-20 09:57:11 +00001558 ring->dev = dev;
1559 INIT_LIST_HEAD(&ring->active_list);
1560 INIT_LIST_HEAD(&ring->request_list);
Chris Wilsone8616b62011-01-20 09:57:11 +00001561
1562 ring->size = size;
1563 ring->effective_size = ring->size;
1564 if (IS_I830(ring->dev))
1565 ring->effective_size -= 128;
1566
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001567 ring->virtual_start = ioremap_wc(start, size);
1568 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001569 DRM_ERROR("can not ioremap virtual address for"
1570 " ring buffer\n");
1571 return -ENOMEM;
1572 }
1573
Chris Wilsone8616b62011-01-20 09:57:11 +00001574 return 0;
1575}
1576
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001577int intel_init_bsd_ring_buffer(struct drm_device *dev)
1578{
1579 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001580 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001581
Daniel Vetter58fa3832012-04-11 22:12:49 +02001582 ring->name = "bsd ring";
1583 ring->id = VCS;
1584
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001585 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001586 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1587 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001588 /* gen6 bsd needs a special wa for tail updates */
1589 if (IS_GEN6(dev))
1590 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001591 ring->flush = gen6_ring_flush;
1592 ring->add_request = gen6_add_request;
1593 ring->get_seqno = gen6_ring_get_seqno;
1594 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1595 ring->irq_get = gen6_ring_get_irq;
1596 ring->irq_put = gen6_ring_put_irq;
1597 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001598 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001599 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1600 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1601 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1602 ring->signal_mbox[0] = GEN6_RVSYNC;
1603 ring->signal_mbox[1] = GEN6_BVSYNC;
1604 } else {
1605 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001606 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001607 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001608 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001609 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001610 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001611 ring->irq_get = gen5_ring_get_irq;
1612 ring->irq_put = gen5_ring_put_irq;
1613 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001614 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001615 ring->irq_get = i9xx_ring_get_irq;
1616 ring->irq_put = i9xx_ring_put_irq;
1617 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001618 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001619 }
1620 ring->init = init_ring_common;
1621
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001622
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001623 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001624}
Chris Wilson549f7362010-10-19 11:19:32 +01001625
1626int intel_init_blt_ring_buffer(struct drm_device *dev)
1627{
1628 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001629 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001630
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001631 ring->name = "blitter ring";
1632 ring->id = BCS;
1633
1634 ring->mmio_base = BLT_RING_BASE;
1635 ring->write_tail = ring_write_tail;
1636 ring->flush = blt_ring_flush;
1637 ring->add_request = gen6_add_request;
1638 ring->get_seqno = gen6_ring_get_seqno;
1639 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1640 ring->irq_get = gen6_ring_get_irq;
1641 ring->irq_put = gen6_ring_put_irq;
1642 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001643 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001644 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1645 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1646 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1647 ring->signal_mbox[0] = GEN6_RBSYNC;
1648 ring->signal_mbox[1] = GEN6_VBSYNC;
1649 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001650
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001651 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001652}
Chris Wilsona7b97612012-07-20 12:41:08 +01001653
1654int
1655intel_ring_flush_all_caches(struct intel_ring_buffer *ring)
1656{
1657 int ret;
1658
1659 if (!ring->gpu_caches_dirty)
1660 return 0;
1661
1662 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
1663 if (ret)
1664 return ret;
1665
1666 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
1667
1668 ring->gpu_caches_dirty = false;
1669 return 0;
1670}
1671
1672int
1673intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring)
1674{
1675 uint32_t flush_domains;
1676 int ret;
1677
1678 flush_domains = 0;
1679 if (ring->gpu_caches_dirty)
1680 flush_domains = I915_GEM_GPU_DOMAINS;
1681
1682 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1683 if (ret)
1684 return ret;
1685
1686 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1687
1688 ring->gpu_caches_dirty = false;
1689 return 0;
1690}