blob: f536a9951ab314a6e04a5d805fa32bd2dea10d8f [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
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Eric Anholt62fdfea2010-05-21 13:26:39 -070031#include "i915_drv.h"
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/i915_drm.h>
Eric Anholt62fdfea2010-05-21 13:26:39 -070033#include "i915_trace.h"
Xiang, Haihao881f47b2010-09-19 14:40:43 +010034#include "intel_drv.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070035
Jesse Barnes8d315282011-10-16 10:23:31 +020036/*
37 * 965+ support PIPE_CONTROL commands, which provide finer grained control
38 * over cache flushing.
39 */
40struct pipe_control {
41 struct drm_i915_gem_object *obj;
42 volatile u32 *cpu_page;
43 u32 gtt_offset;
44};
45
Chris Wilsonc7dca472011-01-20 17:00:10 +000046static inline int ring_space(struct intel_ring_buffer *ring)
47{
48 int space = (ring->head & HEAD_ADDR) - (ring->tail + 8);
49 if (space < 0)
50 space += ring->size;
51 return space;
52}
53
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000054static int
Chris Wilson46f0f8d2012-04-18 11:12:11 +010055gen2_render_ring_flush(struct intel_ring_buffer *ring,
56 u32 invalidate_domains,
57 u32 flush_domains)
58{
59 u32 cmd;
60 int ret;
61
62 cmd = MI_FLUSH;
Daniel Vetter31b14c92012-04-19 16:45:22 +020063 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
Chris Wilson46f0f8d2012-04-18 11:12:11 +010064 cmd |= MI_NO_WRITE_FLUSH;
65
66 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
67 cmd |= MI_READ_FLUSH;
68
69 ret = intel_ring_begin(ring, 2);
70 if (ret)
71 return ret;
72
73 intel_ring_emit(ring, cmd);
74 intel_ring_emit(ring, MI_NOOP);
75 intel_ring_advance(ring);
76
77 return 0;
78}
79
80static int
81gen4_render_ring_flush(struct intel_ring_buffer *ring,
82 u32 invalidate_domains,
83 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -070084{
Chris Wilson78501ea2010-10-27 12:18:21 +010085 struct drm_device *dev = ring->dev;
Chris Wilson6f392d52010-08-07 11:01:22 +010086 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000087 int ret;
Chris Wilson6f392d52010-08-07 11:01:22 +010088
Chris Wilson36d527d2011-03-19 22:26:49 +000089 /*
90 * read/write caches:
91 *
92 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
93 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
94 * also flushed at 2d versus 3d pipeline switches.
95 *
96 * read-only caches:
97 *
98 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
99 * MI_READ_FLUSH is set, and is always flushed on 965.
100 *
101 * I915_GEM_DOMAIN_COMMAND may not exist?
102 *
103 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
104 * invalidated when MI_EXE_FLUSH is set.
105 *
106 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
107 * invalidated with every MI_FLUSH.
108 *
109 * TLBs:
110 *
111 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
112 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
113 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
114 * are flushed at any MI_FLUSH.
115 */
116
117 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100118 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
Chris Wilson36d527d2011-03-19 22:26:49 +0000119 cmd &= ~MI_NO_WRITE_FLUSH;
Chris Wilson36d527d2011-03-19 22:26:49 +0000120 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
121 cmd |= MI_EXE_FLUSH;
122
123 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
124 (IS_G4X(dev) || IS_GEN5(dev)))
125 cmd |= MI_INVALIDATE_ISP;
126
127 ret = intel_ring_begin(ring, 2);
128 if (ret)
129 return ret;
130
131 intel_ring_emit(ring, cmd);
132 intel_ring_emit(ring, MI_NOOP);
133 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000134
135 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800136}
137
Jesse Barnes8d315282011-10-16 10:23:31 +0200138/**
139 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
140 * implementing two workarounds on gen6. From section 1.4.7.1
141 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
142 *
143 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
144 * produced by non-pipelined state commands), software needs to first
145 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
146 * 0.
147 *
148 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
149 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
150 *
151 * And the workaround for these two requires this workaround first:
152 *
153 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
154 * BEFORE the pipe-control with a post-sync op and no write-cache
155 * flushes.
156 *
157 * And this last workaround is tricky because of the requirements on
158 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
159 * volume 2 part 1:
160 *
161 * "1 of the following must also be set:
162 * - Render Target Cache Flush Enable ([12] of DW1)
163 * - Depth Cache Flush Enable ([0] of DW1)
164 * - Stall at Pixel Scoreboard ([1] of DW1)
165 * - Depth Stall ([13] of DW1)
166 * - Post-Sync Operation ([13] of DW1)
167 * - Notify Enable ([8] of DW1)"
168 *
169 * The cache flushes require the workaround flush that triggered this
170 * one, so we can't use it. Depth stall would trigger the same.
171 * Post-sync nonzero is what triggered this second workaround, so we
172 * can't use that one either. Notify enable is IRQs, which aren't
173 * really our business. That leaves only stall at scoreboard.
174 */
175static int
176intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring)
177{
178 struct pipe_control *pc = ring->private;
179 u32 scratch_addr = pc->gtt_offset + 128;
180 int ret;
181
182
183 ret = intel_ring_begin(ring, 6);
184 if (ret)
185 return ret;
186
187 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
188 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
189 PIPE_CONTROL_STALL_AT_SCOREBOARD);
190 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
191 intel_ring_emit(ring, 0); /* low dword */
192 intel_ring_emit(ring, 0); /* high dword */
193 intel_ring_emit(ring, MI_NOOP);
194 intel_ring_advance(ring);
195
196 ret = intel_ring_begin(ring, 6);
197 if (ret)
198 return ret;
199
200 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
201 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
202 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
203 intel_ring_emit(ring, 0);
204 intel_ring_emit(ring, 0);
205 intel_ring_emit(ring, MI_NOOP);
206 intel_ring_advance(ring);
207
208 return 0;
209}
210
211static int
212gen6_render_ring_flush(struct intel_ring_buffer *ring,
213 u32 invalidate_domains, u32 flush_domains)
214{
215 u32 flags = 0;
216 struct pipe_control *pc = ring->private;
217 u32 scratch_addr = pc->gtt_offset + 128;
218 int ret;
219
Paulo Zanonib3111502012-08-17 18:35:42 -0300220 /* Force SNB workarounds for PIPE_CONTROL flushes */
221 ret = intel_emit_post_sync_nonzero_flush(ring);
222 if (ret)
223 return ret;
224
Jesse Barnes8d315282011-10-16 10:23:31 +0200225 /* Just flush everything. Experiments have shown that reducing the
226 * number of bits based on the write domains has little performance
227 * impact.
228 */
Chris Wilson7d54a902012-08-10 10:18:10 +0100229 if (flush_domains) {
230 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
231 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
232 /*
233 * Ensure that any following seqno writes only happen
234 * when the render cache is indeed flushed.
235 */
Daniel Vetter97f209b2012-06-28 09:48:42 +0200236 flags |= PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100237 }
238 if (invalidate_domains) {
239 flags |= PIPE_CONTROL_TLB_INVALIDATE;
240 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
241 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
242 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
243 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
244 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
245 /*
246 * TLB invalidate requires a post-sync write.
247 */
Jesse Barnes3ac78312012-10-25 12:15:47 -0700248 flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL;
Chris Wilson7d54a902012-08-10 10:18:10 +0100249 }
Jesse Barnes8d315282011-10-16 10:23:31 +0200250
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100251 ret = intel_ring_begin(ring, 4);
Jesse Barnes8d315282011-10-16 10:23:31 +0200252 if (ret)
253 return ret;
254
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100255 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
Jesse Barnes8d315282011-10-16 10:23:31 +0200256 intel_ring_emit(ring, flags);
257 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100258 intel_ring_emit(ring, 0);
Jesse Barnes8d315282011-10-16 10:23:31 +0200259 intel_ring_advance(ring);
260
261 return 0;
262}
263
Chris Wilson6c6cf5a2012-07-20 18:02:28 +0100264static int
Paulo Zanonif3987632012-08-17 18:35:43 -0300265gen7_render_ring_cs_stall_wa(struct intel_ring_buffer *ring)
266{
267 int ret;
268
269 ret = intel_ring_begin(ring, 4);
270 if (ret)
271 return ret;
272
273 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
274 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
275 PIPE_CONTROL_STALL_AT_SCOREBOARD);
276 intel_ring_emit(ring, 0);
277 intel_ring_emit(ring, 0);
278 intel_ring_advance(ring);
279
280 return 0;
281}
282
283static int
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300284gen7_render_ring_flush(struct intel_ring_buffer *ring,
285 u32 invalidate_domains, u32 flush_domains)
286{
287 u32 flags = 0;
288 struct pipe_control *pc = ring->private;
289 u32 scratch_addr = pc->gtt_offset + 128;
290 int ret;
291
Paulo Zanonif3987632012-08-17 18:35:43 -0300292 /*
293 * Ensure that any following seqno writes only happen when the render
294 * cache is indeed flushed.
295 *
296 * Workaround: 4th PIPE_CONTROL command (except the ones with only
297 * read-cache invalidate bits set) must have the CS_STALL bit set. We
298 * don't try to be clever and just set it unconditionally.
299 */
300 flags |= PIPE_CONTROL_CS_STALL;
301
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300302 /* Just flush everything. Experiments have shown that reducing the
303 * number of bits based on the write domains has little performance
304 * impact.
305 */
306 if (flush_domains) {
307 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
308 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300309 }
310 if (invalidate_domains) {
311 flags |= PIPE_CONTROL_TLB_INVALIDATE;
312 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
313 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
314 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
315 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
316 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
317 /*
318 * TLB invalidate requires a post-sync write.
319 */
320 flags |= PIPE_CONTROL_QW_WRITE;
Paulo Zanonif3987632012-08-17 18:35:43 -0300321
322 /* Workaround: we must issue a pipe_control with CS-stall bit
323 * set before a pipe_control command that has the state cache
324 * invalidate bit set. */
325 gen7_render_ring_cs_stall_wa(ring);
Paulo Zanoni4772eae2012-08-17 18:35:41 -0300326 }
327
328 ret = intel_ring_begin(ring, 4);
329 if (ret)
330 return ret;
331
332 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
333 intel_ring_emit(ring, flags);
334 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
335 intel_ring_emit(ring, 0);
336 intel_ring_advance(ring);
337
338 return 0;
339}
340
Chris Wilson78501ea2010-10-27 12:18:21 +0100341static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100342 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800343{
Chris Wilson78501ea2010-10-27 12:18:21 +0100344 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100345 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800346}
347
Chris Wilson78501ea2010-10-27 12:18:21 +0100348u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800349{
Chris Wilson78501ea2010-10-27 12:18:21 +0100350 drm_i915_private_t *dev_priv = ring->dev->dev_private;
351 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200352 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800353
354 return I915_READ(acthd_reg);
355}
356
Chris Wilson78501ea2010-10-27 12:18:21 +0100357static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800358{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200359 struct drm_device *dev = ring->dev;
360 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000361 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200362 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800363 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800364
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200365 if (HAS_FORCE_WAKE(dev))
366 gen6_gt_force_wake_get(dev_priv);
367
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800368 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200369 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200370 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100371 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800372
Daniel Vetter570ef602010-08-02 17:06:23 +0200373 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800374
375 /* G45 ring initialization fails to reset head to zero */
376 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000377 DRM_DEBUG_KMS("%s head not reset to zero "
378 "ctl %08x head %08x tail %08x start %08x\n",
379 ring->name,
380 I915_READ_CTL(ring),
381 I915_READ_HEAD(ring),
382 I915_READ_TAIL(ring),
383 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800384
Daniel Vetter570ef602010-08-02 17:06:23 +0200385 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800386
Chris Wilson6fd0d562010-12-05 20:42:33 +0000387 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
388 DRM_ERROR("failed to set %s head to zero "
389 "ctl %08x head %08x tail %08x start %08x\n",
390 ring->name,
391 I915_READ_CTL(ring),
392 I915_READ_HEAD(ring),
393 I915_READ_TAIL(ring),
394 I915_READ_START(ring));
395 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700396 }
397
Daniel Vetter0d8957c2012-08-07 09:54:14 +0200398 /* Initialize the ring. This must happen _after_ we've cleared the ring
399 * registers with the above sequence (the readback of the HEAD registers
400 * also enforces ordering), otherwise the hw might lose the new ring
401 * register values. */
402 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200403 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000404 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000405 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800406
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800407 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400408 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
409 I915_READ_START(ring) == obj->gtt_offset &&
410 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000411 DRM_ERROR("%s initialization failed "
412 "ctl %08x head %08x tail %08x start %08x\n",
413 ring->name,
414 I915_READ_CTL(ring),
415 I915_READ_HEAD(ring),
416 I915_READ_TAIL(ring),
417 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200418 ret = -EIO;
419 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800420 }
421
Chris Wilson78501ea2010-10-27 12:18:21 +0100422 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
423 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800424 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000425 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200426 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000427 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100428 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800429 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000430
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200431out:
432 if (HAS_FORCE_WAKE(dev))
433 gen6_gt_force_wake_put(dev_priv);
434
435 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700436}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800437
Chris Wilsonc6df5412010-12-15 09:56:50 +0000438static int
439init_pipe_control(struct intel_ring_buffer *ring)
440{
441 struct pipe_control *pc;
442 struct drm_i915_gem_object *obj;
443 int ret;
444
445 if (ring->private)
446 return 0;
447
448 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
449 if (!pc)
450 return -ENOMEM;
451
452 obj = i915_gem_alloc_object(ring->dev, 4096);
453 if (obj == NULL) {
454 DRM_ERROR("Failed to allocate seqno page\n");
455 ret = -ENOMEM;
456 goto err;
457 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100458
459 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000460
Chris Wilson86a1ee22012-08-11 15:41:04 +0100461 ret = i915_gem_object_pin(obj, 4096, true, false);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000462 if (ret)
463 goto err_unref;
464
465 pc->gtt_offset = obj->gtt_offset;
Chris Wilson9da3da62012-06-01 15:20:22 +0100466 pc->cpu_page = kmap(sg_page(obj->pages->sgl));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000467 if (pc->cpu_page == NULL)
468 goto err_unpin;
469
470 pc->obj = obj;
471 ring->private = pc;
472 return 0;
473
474err_unpin:
475 i915_gem_object_unpin(obj);
476err_unref:
477 drm_gem_object_unreference(&obj->base);
478err:
479 kfree(pc);
480 return ret;
481}
482
483static void
484cleanup_pipe_control(struct intel_ring_buffer *ring)
485{
486 struct pipe_control *pc = ring->private;
487 struct drm_i915_gem_object *obj;
488
489 if (!ring->private)
490 return;
491
492 obj = pc->obj;
Chris Wilson9da3da62012-06-01 15:20:22 +0100493
494 kunmap(sg_page(obj->pages->sgl));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000495 i915_gem_object_unpin(obj);
496 drm_gem_object_unreference(&obj->base);
497
498 kfree(pc);
499 ring->private = NULL;
500}
501
Chris Wilson78501ea2010-10-27 12:18:21 +0100502static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800503{
Chris Wilson78501ea2010-10-27 12:18:21 +0100504 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000505 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100506 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800507
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100508 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200509 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700510 if (IS_GEN7(dev))
511 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200512 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
513 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800514 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100515
Jesse Barnes8d315282011-10-16 10:23:31 +0200516 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000517 ret = init_pipe_control(ring);
518 if (ret)
519 return ret;
520 }
521
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200522 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700523 /* From the Sandybridge PRM, volume 1 part 3, page 24:
524 * "If this bit is set, STCunit will have LRA as replacement
525 * policy. [...] This bit must be reset. LRA replacement
526 * policy is not supported."
527 */
528 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200529 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky12b02862012-06-04 14:42:50 -0700530
531 /* This is not explicitly set for GEN6, so read the register.
532 * see intel_ring_mi_set_context() for why we care.
533 * TODO: consider explicitly setting the bit for GEN5
534 */
535 ring->itlb_before_ctx_switch =
536 !!(I915_READ(GFX_MODE) & GFX_TLB_INVALIDATE_ALWAYS);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800537 }
538
Daniel Vetter6b26c862012-04-24 14:04:12 +0200539 if (INTEL_INFO(dev)->gen >= 6)
540 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000541
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700542 if (HAS_L3_GPU_CACHE(dev))
Ben Widawsky15b9f802012-05-25 16:56:23 -0700543 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
544
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800545 return ret;
546}
547
Chris Wilsonc6df5412010-12-15 09:56:50 +0000548static void render_ring_cleanup(struct intel_ring_buffer *ring)
549{
550 if (!ring->private)
551 return;
552
553 cleanup_pipe_control(ring);
554}
555
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000556static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700557update_mboxes(struct intel_ring_buffer *ring,
Chris Wilson9d7730912012-11-27 16:22:52 +0000558 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000559{
Chris Wilson1c8b46f2012-11-14 09:15:14 +0000560 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700561 intel_ring_emit(ring, mmio_offset);
Chris Wilson9d7730912012-11-27 16:22:52 +0000562 intel_ring_emit(ring, ring->outstanding_lazy_request);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000563}
564
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700565/**
566 * gen6_add_request - Update the semaphore mailbox registers
567 *
568 * @ring - ring that is adding a request
569 * @seqno - return seqno stuck into the ring
570 *
571 * Update the mailbox registers in the *other* rings with the current seqno.
572 * This acts like a signal in the canonical semaphore.
573 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000574static int
Chris Wilson9d7730912012-11-27 16:22:52 +0000575gen6_add_request(struct intel_ring_buffer *ring)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000576{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700577 u32 mbox1_reg;
578 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000579 int ret;
580
581 ret = intel_ring_begin(ring, 10);
582 if (ret)
583 return ret;
584
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700585 mbox1_reg = ring->signal_mbox[0];
586 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000587
Chris Wilson9d7730912012-11-27 16:22:52 +0000588 update_mboxes(ring, mbox1_reg);
589 update_mboxes(ring, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000590 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
591 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Chris Wilson9d7730912012-11-27 16:22:52 +0000592 intel_ring_emit(ring, ring->outstanding_lazy_request);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000593 intel_ring_emit(ring, MI_USER_INTERRUPT);
594 intel_ring_advance(ring);
595
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000596 return 0;
597}
598
Mika Kuoppalaf72b3432012-12-10 15:41:48 +0200599static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev,
600 u32 seqno)
601{
602 struct drm_i915_private *dev_priv = dev->dev_private;
603 return dev_priv->last_seqno < seqno;
604}
605
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700606/**
607 * intel_ring_sync - sync the waiter to the signaller on seqno
608 *
609 * @waiter - ring that is waiting
610 * @signaller - ring which has, or will signal
611 * @seqno - seqno which the waiter will block on
612 */
613static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200614gen6_ring_sync(struct intel_ring_buffer *waiter,
615 struct intel_ring_buffer *signaller,
616 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000617{
618 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700619 u32 dw1 = MI_SEMAPHORE_MBOX |
620 MI_SEMAPHORE_COMPARE |
621 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000622
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700623 /* Throughout all of the GEM code, seqno passed implies our current
624 * seqno is >= the last seqno executed. However for hardware the
625 * comparison is strictly greater than.
626 */
627 seqno -= 1;
628
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200629 WARN_ON(signaller->semaphore_register[waiter->id] ==
630 MI_SEMAPHORE_SYNC_INVALID);
631
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700632 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000633 if (ret)
634 return ret;
635
Mika Kuoppalaf72b3432012-12-10 15:41:48 +0200636 /* If seqno wrap happened, omit the wait with no-ops */
637 if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) {
638 intel_ring_emit(waiter,
639 dw1 |
640 signaller->semaphore_register[waiter->id]);
641 intel_ring_emit(waiter, seqno);
642 intel_ring_emit(waiter, 0);
643 intel_ring_emit(waiter, MI_NOOP);
644 } else {
645 intel_ring_emit(waiter, MI_NOOP);
646 intel_ring_emit(waiter, MI_NOOP);
647 intel_ring_emit(waiter, MI_NOOP);
648 intel_ring_emit(waiter, MI_NOOP);
649 }
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700650 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000651
652 return 0;
653}
654
Chris Wilsonc6df5412010-12-15 09:56:50 +0000655#define PIPE_CONTROL_FLUSH(ring__, addr__) \
656do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200657 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
658 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000659 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
660 intel_ring_emit(ring__, 0); \
661 intel_ring_emit(ring__, 0); \
662} while (0)
663
664static int
Chris Wilson9d7730912012-11-27 16:22:52 +0000665pc_render_add_request(struct intel_ring_buffer *ring)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000666{
Chris Wilsonc6df5412010-12-15 09:56:50 +0000667 struct pipe_control *pc = ring->private;
668 u32 scratch_addr = pc->gtt_offset + 128;
669 int ret;
670
671 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
672 * incoherent with writes to memory, i.e. completely fubar,
673 * so we need to use PIPE_NOTIFY instead.
674 *
675 * However, we also need to workaround the qword write
676 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
677 * memory before requesting an interrupt.
678 */
679 ret = intel_ring_begin(ring, 32);
680 if (ret)
681 return ret;
682
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200683 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200684 PIPE_CONTROL_WRITE_FLUSH |
685 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000686 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson9d7730912012-11-27 16:22:52 +0000687 intel_ring_emit(ring, ring->outstanding_lazy_request);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000688 intel_ring_emit(ring, 0);
689 PIPE_CONTROL_FLUSH(ring, scratch_addr);
690 scratch_addr += 128; /* write to separate cachelines */
691 PIPE_CONTROL_FLUSH(ring, scratch_addr);
692 scratch_addr += 128;
693 PIPE_CONTROL_FLUSH(ring, scratch_addr);
694 scratch_addr += 128;
695 PIPE_CONTROL_FLUSH(ring, scratch_addr);
696 scratch_addr += 128;
697 PIPE_CONTROL_FLUSH(ring, scratch_addr);
698 scratch_addr += 128;
699 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000700
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200701 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200702 PIPE_CONTROL_WRITE_FLUSH |
703 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000704 PIPE_CONTROL_NOTIFY);
705 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
Chris Wilson9d7730912012-11-27 16:22:52 +0000706 intel_ring_emit(ring, ring->outstanding_lazy_request);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000707 intel_ring_emit(ring, 0);
708 intel_ring_advance(ring);
709
Chris Wilsonc6df5412010-12-15 09:56:50 +0000710 return 0;
711}
712
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800713static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100714gen6_ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100715{
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100716 /* Workaround to force correct ordering between irq and seqno writes on
717 * ivb (and maybe also on snb) by reading from a CS register (like
718 * ACTHD) before reading the status page. */
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100719 if (!lazy_coherency)
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100720 intel_ring_get_active_head(ring);
721 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
722}
723
724static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100725ring_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800726{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000727 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
728}
729
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200730static void
731ring_set_seqno(struct intel_ring_buffer *ring, u32 seqno)
732{
733 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
734}
735
Chris Wilsonc6df5412010-12-15 09:56:50 +0000736static u32
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100737pc_render_get_seqno(struct intel_ring_buffer *ring, bool lazy_coherency)
Chris Wilsonc6df5412010-12-15 09:56:50 +0000738{
739 struct pipe_control *pc = ring->private;
740 return pc->cpu_page[0];
741}
742
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200743static void
744pc_render_set_seqno(struct intel_ring_buffer *ring, u32 seqno)
745{
746 struct pipe_control *pc = ring->private;
747 pc->cpu_page[0] = seqno;
748}
749
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000750static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200751gen5_ring_get_irq(struct intel_ring_buffer *ring)
752{
753 struct drm_device *dev = ring->dev;
754 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100755 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200756
757 if (!dev->irq_enabled)
758 return false;
759
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 return true;
769}
770
771static void
772gen5_ring_put_irq(struct intel_ring_buffer *ring)
773{
774 struct drm_device *dev = ring->dev;
775 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100776 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200777
Chris Wilson7338aef2012-04-24 21:48:47 +0100778 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200779 if (--ring->irq_refcount == 0) {
780 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
781 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
782 POSTING_READ(GTIMR);
783 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100784 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200785}
786
787static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200788i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700789{
Chris Wilson78501ea2010-10-27 12:18:21 +0100790 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000791 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100792 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700793
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000794 if (!dev->irq_enabled)
795 return false;
796
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);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000804
805 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700806}
807
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800808static void
Daniel Vettere3670312012-04-11 22:12:53 +0200809i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700810{
Chris Wilson78501ea2010-10-27 12:18:21 +0100811 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000812 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100813 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700814
Chris Wilson7338aef2012-04-24 21:48:47 +0100815 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200816 if (--ring->irq_refcount == 0) {
817 dev_priv->irq_mask |= ring->irq_enable_mask;
818 I915_WRITE(IMR, dev_priv->irq_mask);
819 POSTING_READ(IMR);
820 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100821 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700822}
823
Chris Wilsonc2798b12012-04-22 21:13:57 +0100824static bool
825i8xx_ring_get_irq(struct intel_ring_buffer *ring)
826{
827 struct drm_device *dev = ring->dev;
828 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100829 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100830
831 if (!dev->irq_enabled)
832 return false;
833
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 return true;
843}
844
845static void
846i8xx_ring_put_irq(struct intel_ring_buffer *ring)
847{
848 struct drm_device *dev = ring->dev;
849 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100850 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100851
Chris Wilson7338aef2012-04-24 21:48:47 +0100852 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100853 if (--ring->irq_refcount == 0) {
854 dev_priv->irq_mask |= ring->irq_enable_mask;
855 I915_WRITE16(IMR, dev_priv->irq_mask);
856 POSTING_READ16(IMR);
857 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100858 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100859}
860
Chris Wilson78501ea2010-10-27 12:18:21 +0100861void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800862{
Eric Anholt45930102011-05-06 17:12:35 -0700863 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100864 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700865 u32 mmio = 0;
866
867 /* The ring status page addresses are no longer next to the rest of
868 * the ring registers as of gen7.
869 */
870 if (IS_GEN7(dev)) {
871 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100872 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700873 mmio = RENDER_HWS_PGA_GEN7;
874 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100875 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700876 mmio = BLT_HWS_PGA_GEN7;
877 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100878 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700879 mmio = BSD_HWS_PGA_GEN7;
880 break;
881 }
882 } else if (IS_GEN6(ring->dev)) {
883 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
884 } else {
885 mmio = RING_HWS_PGA(ring->mmio_base);
886 }
887
Chris Wilson78501ea2010-10-27 12:18:21 +0100888 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
889 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800890}
891
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000892static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100893bsd_ring_flush(struct intel_ring_buffer *ring,
894 u32 invalidate_domains,
895 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800896{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000897 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000898
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000899 ret = intel_ring_begin(ring, 2);
900 if (ret)
901 return ret;
902
903 intel_ring_emit(ring, MI_FLUSH);
904 intel_ring_emit(ring, MI_NOOP);
905 intel_ring_advance(ring);
906 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800907}
908
Chris Wilson3cce4692010-10-27 16:11:02 +0100909static int
Chris Wilson9d7730912012-11-27 16:22:52 +0000910i9xx_add_request(struct intel_ring_buffer *ring)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800911{
Chris Wilson3cce4692010-10-27 16:11:02 +0100912 int ret;
913
914 ret = intel_ring_begin(ring, 4);
915 if (ret)
916 return ret;
Chris Wilson6f392d52010-08-07 11:01:22 +0100917
Chris Wilson3cce4692010-10-27 16:11:02 +0100918 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
919 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Chris Wilson9d7730912012-11-27 16:22:52 +0000920 intel_ring_emit(ring, ring->outstanding_lazy_request);
Chris Wilson3cce4692010-10-27 16:11:02 +0100921 intel_ring_emit(ring, MI_USER_INTERRUPT);
922 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800923
Chris Wilson3cce4692010-10-27 16:11:02 +0100924 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800925}
926
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000927static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700928gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000929{
930 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000931 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100932 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000933
934 if (!dev->irq_enabled)
935 return false;
936
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100937 /* It looks like we need to prevent the gt from suspending while waiting
938 * for an notifiy irq, otherwise irqs seem to get lost on at least the
939 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100940 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100941
Chris Wilson7338aef2012-04-24 21:48:47 +0100942 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000943 if (ring->irq_refcount++ == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700944 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700945 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
946 GEN6_RENDER_L3_PARITY_ERROR));
947 else
948 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200949 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
950 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
951 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000952 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100953 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000954
955 return true;
956}
957
958static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700959gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000960{
961 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000962 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100963 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000964
Chris Wilson7338aef2012-04-24 21:48:47 +0100965 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000966 if (--ring->irq_refcount == 0) {
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700967 if (HAS_L3_GPU_CACHE(dev) && ring->id == RCS)
Ben Widawsky15b9f802012-05-25 16:56:23 -0700968 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
969 else
970 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200971 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
972 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
973 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000974 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100975 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100976
Daniel Vetter99ffa162012-01-25 14:04:00 +0100977 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000978}
979
Zou Nan haid1b851f2010-05-21 09:08:57 +0800980static int
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100981i965_dispatch_execbuffer(struct intel_ring_buffer *ring,
982 u32 offset, u32 length,
983 unsigned flags)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800984{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100985 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100986
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100987 ret = intel_ring_begin(ring, 2);
988 if (ret)
989 return ret;
990
Chris Wilson78501ea2010-10-27 12:18:21 +0100991 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100992 MI_BATCH_BUFFER_START |
993 MI_BATCH_GTT |
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100994 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000995 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100996 intel_ring_advance(ring);
997
Zou Nan haid1b851f2010-05-21 09:08:57 +0800998 return 0;
999}
1000
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001001static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001002i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001003 u32 offset, u32 len,
1004 unsigned flags)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001005{
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001006 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001007
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001008 ret = intel_ring_begin(ring, 4);
1009 if (ret)
1010 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001011
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001012 intel_ring_emit(ring, MI_BATCH_BUFFER);
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001013 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001014 intel_ring_emit(ring, offset + len - 8);
1015 intel_ring_emit(ring, 0);
1016 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001017
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001018 return 0;
1019}
1020
1021static int
1022i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001023 u32 offset, u32 len,
1024 unsigned flags)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001025{
1026 int ret;
1027
1028 ret = intel_ring_begin(ring, 2);
1029 if (ret)
1030 return ret;
1031
Chris Wilson65f56872012-04-17 16:38:12 +01001032 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001033 intel_ring_emit(ring, offset | (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE));
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001034 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001035
Eric Anholt62fdfea2010-05-21 13:26:39 -07001036 return 0;
1037}
1038
Chris Wilson78501ea2010-10-27 12:18:21 +01001039static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040{
Chris Wilson05394f32010-11-08 19:18:58 +00001041 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001042
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001043 obj = ring->status_page.obj;
1044 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001045 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001046
Chris Wilson9da3da62012-06-01 15:20:22 +01001047 kunmap(sg_page(obj->pages->sgl));
Eric Anholt62fdfea2010-05-21 13:26:39 -07001048 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001049 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001050 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001051}
1052
Chris Wilson78501ea2010-10-27 12:18:21 +01001053static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001054{
Chris Wilson78501ea2010-10-27 12:18:21 +01001055 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +00001056 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001057 int ret;
1058
Eric Anholt62fdfea2010-05-21 13:26:39 -07001059 obj = i915_gem_alloc_object(dev, 4096);
1060 if (obj == NULL) {
1061 DRM_ERROR("Failed to allocate status page\n");
1062 ret = -ENOMEM;
1063 goto err;
1064 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01001065
1066 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001067
Chris Wilson86a1ee22012-08-11 15:41:04 +01001068 ret = i915_gem_object_pin(obj, 4096, true, false);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001069 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001070 goto err_unref;
1071 }
1072
Chris Wilson05394f32010-11-08 19:18:58 +00001073 ring->status_page.gfx_addr = obj->gtt_offset;
Chris Wilson9da3da62012-06-01 15:20:22 +01001074 ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001075 if (ring->status_page.page_addr == NULL) {
Ben Widawsky2e6c21e2012-07-12 23:16:12 -07001076 ret = -ENOMEM;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001077 goto err_unpin;
1078 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001079 ring->status_page.obj = obj;
1080 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001081
Chris Wilson78501ea2010-10-27 12:18:21 +01001082 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001083 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
1084 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001085
1086 return 0;
1087
1088err_unpin:
1089 i915_gem_object_unpin(obj);
1090err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001091 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001092err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001093 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001094}
1095
Chris Wilson6b8294a2012-11-16 11:43:20 +00001096static int init_phys_hws_pga(struct intel_ring_buffer *ring)
1097{
1098 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1099 u32 addr;
1100
1101 if (!dev_priv->status_page_dmah) {
1102 dev_priv->status_page_dmah =
1103 drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE);
1104 if (!dev_priv->status_page_dmah)
1105 return -ENOMEM;
1106 }
1107
1108 addr = dev_priv->status_page_dmah->busaddr;
1109 if (INTEL_INFO(ring->dev)->gen >= 4)
1110 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
1111 I915_WRITE(HWS_PGA, addr);
1112
1113 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1114 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1115
1116 return 0;
1117}
1118
Ben Widawskyc43b5632012-04-16 14:07:40 -07001119static int intel_init_ring_buffer(struct drm_device *dev,
1120 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001121{
Chris Wilson05394f32010-11-08 19:18:58 +00001122 struct drm_i915_gem_object *obj;
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001123 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsondd785e32010-08-07 11:01:34 +01001124 int ret;
1125
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001126 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +01001127 INIT_LIST_HEAD(&ring->active_list);
1128 INIT_LIST_HEAD(&ring->request_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +02001129 ring->size = 32 * PAGE_SIZE;
Chris Wilson9d7730912012-11-27 16:22:52 +00001130 memset(ring->sync_seqno, 0, sizeof(ring->sync_seqno));
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001131
Chris Wilsonb259f672011-03-29 13:19:09 +01001132 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001133
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001134 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001135 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001136 if (ret)
1137 return ret;
Chris Wilson6b8294a2012-11-16 11:43:20 +00001138 } else {
1139 BUG_ON(ring->id != RCS);
1140 ret = init_phys_hws_pga(ring);
1141 if (ret)
1142 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001143 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001144
Chris Wilsonebc052e2012-11-15 11:32:28 +00001145 obj = NULL;
1146 if (!HAS_LLC(dev))
1147 obj = i915_gem_object_create_stolen(dev, ring->size);
1148 if (obj == NULL)
1149 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001150 if (obj == NULL) {
1151 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001152 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001153 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001154 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001155
Chris Wilson05394f32010-11-08 19:18:58 +00001156 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001157
Chris Wilson86a1ee22012-08-11 15:41:04 +01001158 ret = i915_gem_object_pin(obj, PAGE_SIZE, true, false);
Chris Wilsondd785e32010-08-07 11:01:34 +01001159 if (ret)
1160 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001161
Chris Wilson3eef8912012-06-04 17:05:40 +01001162 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1163 if (ret)
1164 goto err_unpin;
1165
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001166 ring->virtual_start =
1167 ioremap_wc(dev_priv->mm.gtt->gma_bus_addr + obj->gtt_offset,
1168 ring->size);
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001169 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001170 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001171 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001172 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001173 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001174
Chris Wilson78501ea2010-10-27 12:18:21 +01001175 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001176 if (ret)
1177 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001178
Chris Wilson55249ba2010-12-22 14:04:47 +00001179 /* Workaround an erratum on the i830 which causes a hang if
1180 * the TAIL pointer points to within the last 2 cachelines
1181 * of the buffer.
1182 */
1183 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001184 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001185 ring->effective_size -= 128;
1186
Chris Wilsonc584fe42010-10-29 18:15:52 +01001187 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001188
1189err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001190 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001191err_unpin:
1192 i915_gem_object_unpin(obj);
1193err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001194 drm_gem_object_unreference(&obj->base);
1195 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001196err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001197 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001198 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001199}
1200
Chris Wilson78501ea2010-10-27 12:18:21 +01001201void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001202{
Chris Wilson33626e62010-10-29 16:18:36 +01001203 struct drm_i915_private *dev_priv;
1204 int ret;
1205
Chris Wilson05394f32010-11-08 19:18:58 +00001206 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001207 return;
1208
Chris Wilson33626e62010-10-29 16:18:36 +01001209 /* Disable the ring buffer. The ring must be idle at this point */
1210 dev_priv = ring->dev->dev_private;
Chris Wilson3e960502012-11-27 16:22:54 +00001211 ret = intel_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001212 if (ret)
1213 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1214 ring->name, ret);
1215
Chris Wilson33626e62010-10-29 16:18:36 +01001216 I915_WRITE_CTL(ring, 0);
1217
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001218 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001219
Chris Wilson05394f32010-11-08 19:18:58 +00001220 i915_gem_object_unpin(ring->obj);
1221 drm_gem_object_unreference(&ring->obj->base);
1222 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001223
Zou Nan hai8d192152010-11-02 16:31:01 +08001224 if (ring->cleanup)
1225 ring->cleanup(ring);
1226
Chris Wilson78501ea2010-10-27 12:18:21 +01001227 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001228}
1229
Chris Wilsona71d8d92012-02-15 11:25:36 +00001230static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1231{
Chris Wilsona71d8d92012-02-15 11:25:36 +00001232 int ret;
1233
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001234 ret = i915_wait_seqno(ring, seqno);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001235 if (!ret)
1236 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001237
1238 return ret;
1239}
1240
1241static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1242{
1243 struct drm_i915_gem_request *request;
1244 u32 seqno = 0;
1245 int ret;
1246
1247 i915_gem_retire_requests_ring(ring);
1248
1249 if (ring->last_retired_head != -1) {
1250 ring->head = ring->last_retired_head;
1251 ring->last_retired_head = -1;
1252 ring->space = ring_space(ring);
1253 if (ring->space >= n)
1254 return 0;
1255 }
1256
1257 list_for_each_entry(request, &ring->request_list, list) {
1258 int space;
1259
1260 if (request->tail == -1)
1261 continue;
1262
1263 space = request->tail - (ring->tail + 8);
1264 if (space < 0)
1265 space += ring->size;
1266 if (space >= n) {
1267 seqno = request->seqno;
1268 break;
1269 }
1270
1271 /* Consume this request in case we need more space than
1272 * is available and so need to prevent a race between
1273 * updating last_retired_head and direct reads of
1274 * I915_RING_HEAD. It also provides a nice sanity check.
1275 */
1276 request->tail = -1;
1277 }
1278
1279 if (seqno == 0)
1280 return -ENOSPC;
1281
1282 ret = intel_ring_wait_seqno(ring, seqno);
1283 if (ret)
1284 return ret;
1285
1286 if (WARN_ON(ring->last_retired_head == -1))
1287 return -ENOSPC;
1288
1289 ring->head = ring->last_retired_head;
1290 ring->last_retired_head = -1;
1291 ring->space = ring_space(ring);
1292 if (WARN_ON(ring->space < n))
1293 return -ENOSPC;
1294
1295 return 0;
1296}
1297
Chris Wilson3e960502012-11-27 16:22:54 +00001298static int ring_wait_for_space(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001299{
Chris Wilson78501ea2010-10-27 12:18:21 +01001300 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001301 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001302 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001303 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001304
Chris Wilsona71d8d92012-02-15 11:25:36 +00001305 ret = intel_ring_wait_request(ring, n);
1306 if (ret != -ENOSPC)
1307 return ret;
1308
Chris Wilsondb53a302011-02-03 11:57:46 +00001309 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001310 /* With GEM the hangcheck timer should kick us out of the loop,
1311 * leaving it early runs the risk of corrupting GEM state (due
1312 * to running on almost untested codepaths). But on resume
1313 * timers don't work yet, so prevent a complete hang in that
1314 * case by choosing an insanely large timeout. */
1315 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001316
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001317 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001318 ring->head = I915_READ_HEAD(ring);
1319 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001320 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001321 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001322 return 0;
1323 }
1324
1325 if (dev->primary->master) {
1326 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1327 if (master_priv->sarea_priv)
1328 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1329 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001330
Chris Wilsone60a0b12010-10-13 10:09:14 +01001331 msleep(1);
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001332
1333 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1334 if (ret)
1335 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001336 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001337 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001338 return -EBUSY;
1339}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001340
Chris Wilson3e960502012-11-27 16:22:54 +00001341static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
1342{
1343 uint32_t __iomem *virt;
1344 int rem = ring->size - ring->tail;
1345
1346 if (ring->space < rem) {
1347 int ret = ring_wait_for_space(ring, rem);
1348 if (ret)
1349 return ret;
1350 }
1351
1352 virt = ring->virtual_start + ring->tail;
1353 rem /= 4;
1354 while (rem--)
1355 iowrite32(MI_NOOP, virt++);
1356
1357 ring->tail = 0;
1358 ring->space = ring_space(ring);
1359
1360 return 0;
1361}
1362
1363int intel_ring_idle(struct intel_ring_buffer *ring)
1364{
1365 u32 seqno;
1366 int ret;
1367
1368 /* We need to add any requests required to flush the objects and ring */
1369 if (ring->outstanding_lazy_request) {
1370 ret = i915_add_request(ring, NULL, NULL);
1371 if (ret)
1372 return ret;
1373 }
1374
1375 /* Wait upon the last request to be completed */
1376 if (list_empty(&ring->request_list))
1377 return 0;
1378
1379 seqno = list_entry(ring->request_list.prev,
1380 struct drm_i915_gem_request,
1381 list)->seqno;
1382
1383 return i915_wait_seqno(ring, seqno);
1384}
1385
Chris Wilson9d7730912012-11-27 16:22:52 +00001386static int
1387intel_ring_alloc_seqno(struct intel_ring_buffer *ring)
1388{
1389 if (ring->outstanding_lazy_request)
1390 return 0;
1391
1392 return i915_gem_get_seqno(ring->dev, &ring->outstanding_lazy_request);
1393}
1394
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02001395static int __intel_ring_begin(struct intel_ring_buffer *ring,
1396 int bytes)
1397{
1398 int ret;
1399
1400 if (unlikely(ring->tail + bytes > ring->effective_size)) {
1401 ret = intel_wrap_ring_buffer(ring);
1402 if (unlikely(ret))
1403 return ret;
1404 }
1405
1406 if (unlikely(ring->space < bytes)) {
1407 ret = ring_wait_for_space(ring, bytes);
1408 if (unlikely(ret))
1409 return ret;
1410 }
1411
1412 ring->space -= bytes;
1413 return 0;
1414}
1415
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001416int intel_ring_begin(struct intel_ring_buffer *ring,
1417 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001418{
Daniel Vetterde2b9982012-07-04 22:52:50 +02001419 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001420 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001421
Daniel Vetterde2b9982012-07-04 22:52:50 +02001422 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
1423 if (ret)
1424 return ret;
Chris Wilson21dd3732011-01-26 15:55:56 +00001425
Chris Wilson9d7730912012-11-27 16:22:52 +00001426 /* Preallocate the olr before touching the ring */
1427 ret = intel_ring_alloc_seqno(ring);
1428 if (ret)
1429 return ret;
1430
Mika Kuoppalacbcc80d2012-12-04 15:12:03 +02001431 return __intel_ring_begin(ring, num_dwords * sizeof(uint32_t));
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001432}
1433
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001434int intel_ring_handle_seqno_wrap(struct intel_ring_buffer *ring)
1435{
1436 int ret;
1437
1438 BUG_ON(ring->outstanding_lazy_request);
1439
1440 if (INTEL_INFO(ring->dev)->gen < 6)
1441 return 0;
1442
1443 ret = __intel_ring_begin(ring, 6 * sizeof(uint32_t));
1444 if (ret)
1445 return ret;
1446
1447 /* Leaving a stale, pre-wrap seqno behind in the mboxes will result in
1448 * post-wrap semaphore waits completing immediately. Clear them. */
1449 update_mboxes(ring, ring->signal_mbox[0]);
1450 update_mboxes(ring, ring->signal_mbox[1]);
1451 intel_ring_advance(ring);
1452
1453 return 0;
1454}
1455
Chris Wilson78501ea2010-10-27 12:18:21 +01001456void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001457{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001458 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1459
Chris Wilsond97ed332010-08-04 15:18:13 +01001460 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001461 if (dev_priv->stop_rings & intel_ring_flag(ring))
1462 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001463 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001464}
1465
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001466
Chris Wilson78501ea2010-10-27 12:18:21 +01001467static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001468 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001469{
Akshay Joshi0206e352011-08-16 15:34:10 -04001470 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001471
1472 /* Every tail move must follow the sequence below */
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001473
Chris Wilson12f55812012-07-05 17:14:01 +01001474 /* Disable notification that the ring is IDLE. The GT
1475 * will then assume that it is busy and bring it out of rc6.
1476 */
1477 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1478 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
1479
1480 /* Clear the context id. Here be magic! */
1481 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
1482
1483 /* Wait for the ring not to be idle, i.e. for it to wake up. */
Akshay Joshi0206e352011-08-16 15:34:10 -04001484 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
Chris Wilson12f55812012-07-05 17:14:01 +01001485 GEN6_BSD_SLEEP_INDICATOR) == 0,
1486 50))
1487 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001488
Chris Wilson12f55812012-07-05 17:14:01 +01001489 /* Now that the ring is fully powered up, update the tail */
Akshay Joshi0206e352011-08-16 15:34:10 -04001490 I915_WRITE_TAIL(ring, value);
Chris Wilson12f55812012-07-05 17:14:01 +01001491 POSTING_READ(RING_TAIL(ring->mmio_base));
1492
1493 /* Let the ring send IDLE messages to the GT again,
1494 * and so let it sleep to conserve power when idle.
1495 */
Akshay Joshi0206e352011-08-16 15:34:10 -04001496 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
Chris Wilson12f55812012-07-05 17:14:01 +01001497 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001498}
1499
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001500static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001501 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001502{
Chris Wilson71a77e02011-02-02 12:13:49 +00001503 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001504 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001505
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001506 ret = intel_ring_begin(ring, 4);
1507 if (ret)
1508 return ret;
1509
Chris Wilson71a77e02011-02-02 12:13:49 +00001510 cmd = MI_FLUSH_DW;
Jesse Barnes9a289772012-10-26 09:42:42 -07001511 /*
1512 * Bspec vol 1c.5 - video engine command streamer:
1513 * "If ENABLED, all TLBs will be invalidated once the flush
1514 * operation is complete. This bit is only valid when the
1515 * Post-Sync Operation field is a value of 1h or 3h."
1516 */
Chris Wilson71a77e02011-02-02 12:13:49 +00001517 if (invalidate & I915_GEM_GPU_DOMAINS)
Jesse Barnes9a289772012-10-26 09:42:42 -07001518 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
1519 MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00001520 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07001521 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001522 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001523 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001524 intel_ring_advance(ring);
1525 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001526}
1527
1528static int
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001529hsw_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
1530 u32 offset, u32 len,
1531 unsigned flags)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001532{
Akshay Joshi0206e352011-08-16 15:34:10 -04001533 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001534
Akshay Joshi0206e352011-08-16 15:34:10 -04001535 ret = intel_ring_begin(ring, 2);
1536 if (ret)
1537 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001538
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001539 intel_ring_emit(ring,
1540 MI_BATCH_BUFFER_START | MI_BATCH_PPGTT_HSW |
1541 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_HSW));
1542 /* bit0-7 is the length on GEN6+ */
1543 intel_ring_emit(ring, offset);
1544 intel_ring_advance(ring);
1545
1546 return 0;
1547}
1548
1549static int
1550gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
1551 u32 offset, u32 len,
1552 unsigned flags)
1553{
1554 int ret;
1555
1556 ret = intel_ring_begin(ring, 2);
1557 if (ret)
1558 return ret;
1559
1560 intel_ring_emit(ring,
1561 MI_BATCH_BUFFER_START |
1562 (flags & I915_DISPATCH_SECURE ? 0 : MI_BATCH_NON_SECURE_I965));
Akshay Joshi0206e352011-08-16 15:34:10 -04001563 /* bit0-7 is the length on GEN6+ */
1564 intel_ring_emit(ring, offset);
1565 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001566
Akshay Joshi0206e352011-08-16 15:34:10 -04001567 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001568}
1569
Chris Wilson549f7362010-10-19 11:19:32 +01001570/* Blitter support (SandyBridge+) */
1571
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001572static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001573 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001574{
Chris Wilson71a77e02011-02-02 12:13:49 +00001575 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001576 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001577
Daniel Vetter6a233c72011-12-14 13:57:07 +01001578 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001579 if (ret)
1580 return ret;
1581
Chris Wilson71a77e02011-02-02 12:13:49 +00001582 cmd = MI_FLUSH_DW;
Jesse Barnes9a289772012-10-26 09:42:42 -07001583 /*
1584 * Bspec vol 1c.3 - blitter engine command streamer:
1585 * "If ENABLED, all TLBs will be invalidated once the flush
1586 * operation is complete. This bit is only valid when the
1587 * Post-Sync Operation field is a value of 1h or 3h."
1588 */
Chris Wilson71a77e02011-02-02 12:13:49 +00001589 if (invalidate & I915_GEM_DOMAIN_RENDER)
Jesse Barnes9a289772012-10-26 09:42:42 -07001590 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
Daniel Vetterb3fcabb2012-11-04 12:24:47 +01001591 MI_FLUSH_DW_OP_STOREDW;
Chris Wilson71a77e02011-02-02 12:13:49 +00001592 intel_ring_emit(ring, cmd);
Jesse Barnes9a289772012-10-26 09:42:42 -07001593 intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001594 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001595 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001596 intel_ring_advance(ring);
1597 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001598}
1599
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001600int intel_init_render_ring_buffer(struct drm_device *dev)
1601{
1602 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001603 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001604
Daniel Vetter59465b52012-04-11 22:12:48 +02001605 ring->name = "render ring";
1606 ring->id = RCS;
1607 ring->mmio_base = RENDER_RING_BASE;
1608
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001609 if (INTEL_INFO(dev)->gen >= 6) {
1610 ring->add_request = gen6_add_request;
Paulo Zanoni4772eae2012-08-17 18:35:41 -03001611 ring->flush = gen7_render_ring_flush;
Chris Wilson6c6cf5a2012-07-20 18:02:28 +01001612 if (INTEL_INFO(dev)->gen == 6)
Paulo Zanonib3111502012-08-17 18:35:42 -03001613 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001614 ring->irq_get = gen6_ring_get_irq;
1615 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001616 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001617 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001618 ring->set_seqno = ring_set_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001619 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001620 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1621 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1622 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1623 ring->signal_mbox[0] = GEN6_VRSYNC;
1624 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001625 } else if (IS_GEN5(dev)) {
1626 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001627 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001628 ring->get_seqno = pc_render_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001629 ring->set_seqno = pc_render_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001630 ring->irq_get = gen5_ring_get_irq;
1631 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001632 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001633 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001634 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001635 if (INTEL_INFO(dev)->gen < 4)
1636 ring->flush = gen2_render_ring_flush;
1637 else
1638 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001639 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001640 ring->set_seqno = ring_set_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001641 if (IS_GEN2(dev)) {
1642 ring->irq_get = i8xx_ring_get_irq;
1643 ring->irq_put = i8xx_ring_put_irq;
1644 } else {
1645 ring->irq_get = i9xx_ring_get_irq;
1646 ring->irq_put = i9xx_ring_put_irq;
1647 }
Daniel Vettere3670312012-04-11 22:12:53 +02001648 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001649 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001650 ring->write_tail = ring_write_tail;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001651 if (IS_HASWELL(dev))
1652 ring->dispatch_execbuffer = hsw_ring_dispatch_execbuffer;
1653 else if (INTEL_INFO(dev)->gen >= 6)
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001654 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1655 else if (INTEL_INFO(dev)->gen >= 4)
1656 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1657 else if (IS_I830(dev) || IS_845G(dev))
1658 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1659 else
1660 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001661 ring->init = init_render_ring;
1662 ring->cleanup = render_ring_cleanup;
1663
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001664 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001665}
1666
Chris Wilsone8616b62011-01-20 09:57:11 +00001667int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1668{
1669 drm_i915_private_t *dev_priv = dev->dev_private;
1670 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson6b8294a2012-11-16 11:43:20 +00001671 int ret;
Chris Wilsone8616b62011-01-20 09:57:11 +00001672
Daniel Vetter59465b52012-04-11 22:12:48 +02001673 ring->name = "render ring";
1674 ring->id = RCS;
1675 ring->mmio_base = RENDER_RING_BASE;
1676
Chris Wilsone8616b62011-01-20 09:57:11 +00001677 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001678 /* non-kms not supported on gen6+ */
1679 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001680 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001681
1682 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1683 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1684 * the special gen5 functions. */
1685 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001686 if (INTEL_INFO(dev)->gen < 4)
1687 ring->flush = gen2_render_ring_flush;
1688 else
1689 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001690 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001691 ring->set_seqno = ring_set_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001692 if (IS_GEN2(dev)) {
1693 ring->irq_get = i8xx_ring_get_irq;
1694 ring->irq_put = i8xx_ring_put_irq;
1695 } else {
1696 ring->irq_get = i9xx_ring_get_irq;
1697 ring->irq_put = i9xx_ring_put_irq;
1698 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001699 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001700 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001701 if (INTEL_INFO(dev)->gen >= 4)
1702 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1703 else if (IS_I830(dev) || IS_845G(dev))
1704 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1705 else
1706 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001707 ring->init = init_render_ring;
1708 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001709
1710 ring->dev = dev;
1711 INIT_LIST_HEAD(&ring->active_list);
1712 INIT_LIST_HEAD(&ring->request_list);
Chris Wilsone8616b62011-01-20 09:57:11 +00001713
1714 ring->size = size;
1715 ring->effective_size = ring->size;
Mika Kuoppala17f10fd2012-10-29 16:59:26 +02001716 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilsone8616b62011-01-20 09:57:11 +00001717 ring->effective_size -= 128;
1718
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001719 ring->virtual_start = ioremap_wc(start, size);
1720 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001721 DRM_ERROR("can not ioremap virtual address for"
1722 " ring buffer\n");
1723 return -ENOMEM;
1724 }
1725
Chris Wilson6b8294a2012-11-16 11:43:20 +00001726 if (!I915_NEED_GFX_HWS(dev)) {
1727 ret = init_phys_hws_pga(ring);
1728 if (ret)
1729 return ret;
1730 }
1731
Chris Wilsone8616b62011-01-20 09:57:11 +00001732 return 0;
1733}
1734
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001735int intel_init_bsd_ring_buffer(struct drm_device *dev)
1736{
1737 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001738 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001739
Daniel Vetter58fa3832012-04-11 22:12:49 +02001740 ring->name = "bsd ring";
1741 ring->id = VCS;
1742
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001743 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001744 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1745 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001746 /* gen6 bsd needs a special wa for tail updates */
1747 if (IS_GEN6(dev))
1748 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001749 ring->flush = gen6_ring_flush;
1750 ring->add_request = gen6_add_request;
1751 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001752 ring->set_seqno = ring_set_seqno;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001753 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1754 ring->irq_get = gen6_ring_get_irq;
1755 ring->irq_put = gen6_ring_put_irq;
1756 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001757 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001758 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1759 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1760 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1761 ring->signal_mbox[0] = GEN6_RVSYNC;
1762 ring->signal_mbox[1] = GEN6_BVSYNC;
1763 } else {
1764 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001765 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001766 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001767 ring->get_seqno = ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001768 ring->set_seqno = ring_set_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001769 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001770 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001771 ring->irq_get = gen5_ring_get_irq;
1772 ring->irq_put = gen5_ring_put_irq;
1773 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001774 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001775 ring->irq_get = i9xx_ring_get_irq;
1776 ring->irq_put = i9xx_ring_put_irq;
1777 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001778 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001779 }
1780 ring->init = init_ring_common;
1781
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001782 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001783}
Chris Wilson549f7362010-10-19 11:19:32 +01001784
1785int intel_init_blt_ring_buffer(struct drm_device *dev)
1786{
1787 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001788 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001789
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001790 ring->name = "blitter ring";
1791 ring->id = BCS;
1792
1793 ring->mmio_base = BLT_RING_BASE;
1794 ring->write_tail = ring_write_tail;
1795 ring->flush = blt_ring_flush;
1796 ring->add_request = gen6_add_request;
1797 ring->get_seqno = gen6_ring_get_seqno;
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +02001798 ring->set_seqno = ring_set_seqno;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001799 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1800 ring->irq_get = gen6_ring_get_irq;
1801 ring->irq_put = gen6_ring_put_irq;
1802 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001803 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001804 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1805 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1806 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1807 ring->signal_mbox[0] = GEN6_RBSYNC;
1808 ring->signal_mbox[1] = GEN6_VBSYNC;
1809 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001810
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001811 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001812}
Chris Wilsona7b97612012-07-20 12:41:08 +01001813
1814int
1815intel_ring_flush_all_caches(struct intel_ring_buffer *ring)
1816{
1817 int ret;
1818
1819 if (!ring->gpu_caches_dirty)
1820 return 0;
1821
1822 ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
1823 if (ret)
1824 return ret;
1825
1826 trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
1827
1828 ring->gpu_caches_dirty = false;
1829 return 0;
1830}
1831
1832int
1833intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring)
1834{
1835 uint32_t flush_domains;
1836 int ret;
1837
1838 flush_domains = 0;
1839 if (ring->gpu_caches_dirty)
1840 flush_domains = I915_GEM_GPU_DOMAINS;
1841
1842 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1843 if (ret)
1844 return ret;
1845
1846 trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
1847
1848 ring->gpu_caches_dirty = false;
1849 return 0;
1850}