blob: 89a5e7f89d7ab0d4924925dca1826d1b646691ba [file] [log] [blame]
Eric Anholt62fdfea2010-05-21 13:26:39 -07001/*
2 * Copyright © 2008-2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Zou Nan hai <nanhai.zou@intel.com>
26 * Xiang Hai hao<haihao.xiang@intel.com>
27 *
28 */
29
30#include "drmP.h"
31#include "drm.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070032#include "i915_drv.h"
Zou Nan hai8187a2b2010-05-21 09:08:55 +080033#include "i915_drm.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070034#include "i915_trace.h"
Xiang, Haihao881f47b2010-09-19 14:40:43 +010035#include "intel_drv.h"
Eric Anholt62fdfea2010-05-21 13:26:39 -070036
Jesse Barnes8d315282011-10-16 10:23:31 +020037/*
38 * 965+ support PIPE_CONTROL commands, which provide finer grained control
39 * over cache flushing.
40 */
41struct pipe_control {
42 struct drm_i915_gem_object *obj;
43 volatile u32 *cpu_page;
44 u32 gtt_offset;
45};
46
Chris Wilsonc7dca472011-01-20 17:00:10 +000047static inline int ring_space(struct intel_ring_buffer *ring)
48{
49 int space = (ring->head & HEAD_ADDR) - (ring->tail + 8);
50 if (space < 0)
51 space += ring->size;
52 return space;
53}
54
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000055static int
Chris Wilson46f0f8d2012-04-18 11:12:11 +010056gen2_render_ring_flush(struct intel_ring_buffer *ring,
57 u32 invalidate_domains,
58 u32 flush_domains)
59{
60 u32 cmd;
61 int ret;
62
63 cmd = MI_FLUSH;
Daniel Vetter31b14c92012-04-19 16:45:22 +020064 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
Chris Wilson46f0f8d2012-04-18 11:12:11 +010065 cmd |= MI_NO_WRITE_FLUSH;
66
67 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
68 cmd |= MI_READ_FLUSH;
69
70 ret = intel_ring_begin(ring, 2);
71 if (ret)
72 return ret;
73
74 intel_ring_emit(ring, cmd);
75 intel_ring_emit(ring, MI_NOOP);
76 intel_ring_advance(ring);
77
78 return 0;
79}
80
81static int
82gen4_render_ring_flush(struct intel_ring_buffer *ring,
83 u32 invalidate_domains,
84 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -070085{
Chris Wilson78501ea2010-10-27 12:18:21 +010086 struct drm_device *dev = ring->dev;
Chris Wilson6f392d5482010-08-07 11:01:22 +010087 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000088 int ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +010089
Chris Wilson36d527d2011-03-19 22:26:49 +000090 /*
91 * read/write caches:
92 *
93 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
94 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
95 * also flushed at 2d versus 3d pipeline switches.
96 *
97 * read-only caches:
98 *
99 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
100 * MI_READ_FLUSH is set, and is always flushed on 965.
101 *
102 * I915_GEM_DOMAIN_COMMAND may not exist?
103 *
104 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
105 * invalidated when MI_EXE_FLUSH is set.
106 *
107 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
108 * invalidated with every MI_FLUSH.
109 *
110 * TLBs:
111 *
112 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
113 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
114 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
115 * are flushed at any MI_FLUSH.
116 */
117
118 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
Chris Wilson46f0f8d2012-04-18 11:12:11 +0100119 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
Chris Wilson36d527d2011-03-19 22:26:49 +0000120 cmd &= ~MI_NO_WRITE_FLUSH;
Chris Wilson36d527d2011-03-19 22:26:49 +0000121 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
122 cmd |= MI_EXE_FLUSH;
123
124 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
125 (IS_G4X(dev) || IS_GEN5(dev)))
126 cmd |= MI_INVALIDATE_ISP;
127
128 ret = intel_ring_begin(ring, 2);
129 if (ret)
130 return ret;
131
132 intel_ring_emit(ring, cmd);
133 intel_ring_emit(ring, MI_NOOP);
134 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000135
136 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800137}
138
Jesse Barnes8d315282011-10-16 10:23:31 +0200139/**
140 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
141 * implementing two workarounds on gen6. From section 1.4.7.1
142 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
143 *
144 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
145 * produced by non-pipelined state commands), software needs to first
146 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
147 * 0.
148 *
149 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
150 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
151 *
152 * And the workaround for these two requires this workaround first:
153 *
154 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
155 * BEFORE the pipe-control with a post-sync op and no write-cache
156 * flushes.
157 *
158 * And this last workaround is tricky because of the requirements on
159 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
160 * volume 2 part 1:
161 *
162 * "1 of the following must also be set:
163 * - Render Target Cache Flush Enable ([12] of DW1)
164 * - Depth Cache Flush Enable ([0] of DW1)
165 * - Stall at Pixel Scoreboard ([1] of DW1)
166 * - Depth Stall ([13] of DW1)
167 * - Post-Sync Operation ([13] of DW1)
168 * - Notify Enable ([8] of DW1)"
169 *
170 * The cache flushes require the workaround flush that triggered this
171 * one, so we can't use it. Depth stall would trigger the same.
172 * Post-sync nonzero is what triggered this second workaround, so we
173 * can't use that one either. Notify enable is IRQs, which aren't
174 * really our business. That leaves only stall at scoreboard.
175 */
176static int
177intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring)
178{
179 struct pipe_control *pc = ring->private;
180 u32 scratch_addr = pc->gtt_offset + 128;
181 int ret;
182
183
184 ret = intel_ring_begin(ring, 6);
185 if (ret)
186 return ret;
187
188 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
189 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
190 PIPE_CONTROL_STALL_AT_SCOREBOARD);
191 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
192 intel_ring_emit(ring, 0); /* low dword */
193 intel_ring_emit(ring, 0); /* high dword */
194 intel_ring_emit(ring, MI_NOOP);
195 intel_ring_advance(ring);
196
197 ret = intel_ring_begin(ring, 6);
198 if (ret)
199 return ret;
200
201 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
202 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
203 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
204 intel_ring_emit(ring, 0);
205 intel_ring_emit(ring, 0);
206 intel_ring_emit(ring, MI_NOOP);
207 intel_ring_advance(ring);
208
209 return 0;
210}
211
212static int
213gen6_render_ring_flush(struct intel_ring_buffer *ring,
214 u32 invalidate_domains, u32 flush_domains)
215{
216 u32 flags = 0;
217 struct pipe_control *pc = ring->private;
218 u32 scratch_addr = pc->gtt_offset + 128;
219 int ret;
220
221 /* Force SNB workarounds for PIPE_CONTROL flushes */
222 intel_emit_post_sync_nonzero_flush(ring);
223
224 /* Just flush everything. Experiments have shown that reducing the
225 * number of bits based on the write domains has little performance
226 * impact.
227 */
228 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
229 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
230 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
231 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
232 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
233 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
234 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
235
236 ret = intel_ring_begin(ring, 6);
237 if (ret)
238 return ret;
239
240 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
241 intel_ring_emit(ring, flags);
242 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
243 intel_ring_emit(ring, 0); /* lower dword */
244 intel_ring_emit(ring, 0); /* uppwer dword */
245 intel_ring_emit(ring, MI_NOOP);
246 intel_ring_advance(ring);
247
248 return 0;
249}
250
Chris Wilson78501ea2010-10-27 12:18:21 +0100251static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100252 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800253{
Chris Wilson78501ea2010-10-27 12:18:21 +0100254 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100255 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800256}
257
Chris Wilson78501ea2010-10-27 12:18:21 +0100258u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800259{
Chris Wilson78501ea2010-10-27 12:18:21 +0100260 drm_i915_private_t *dev_priv = ring->dev->dev_private;
261 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200262 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800263
264 return I915_READ(acthd_reg);
265}
266
Chris Wilson78501ea2010-10-27 12:18:21 +0100267static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800268{
Chris Wilson78501ea2010-10-27 12:18:21 +0100269 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000270 struct drm_i915_gem_object *obj = ring->obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800271 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800272
273 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200274 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200275 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100276 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800277
278 /* Initialize the ring. */
Chris Wilson05394f32010-11-08 19:18:58 +0000279 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter570ef602010-08-02 17:06:23 +0200280 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800281
282 /* G45 ring initialization fails to reset head to zero */
283 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000284 DRM_DEBUG_KMS("%s head not reset to zero "
285 "ctl %08x head %08x tail %08x start %08x\n",
286 ring->name,
287 I915_READ_CTL(ring),
288 I915_READ_HEAD(ring),
289 I915_READ_TAIL(ring),
290 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800291
Daniel Vetter570ef602010-08-02 17:06:23 +0200292 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800293
Chris Wilson6fd0d562010-12-05 20:42:33 +0000294 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
295 DRM_ERROR("failed to set %s head to zero "
296 "ctl %08x head %08x tail %08x start %08x\n",
297 ring->name,
298 I915_READ_CTL(ring),
299 I915_READ_HEAD(ring),
300 I915_READ_TAIL(ring),
301 I915_READ_START(ring));
302 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700303 }
304
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200305 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000306 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000307 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800308
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800309 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400310 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
311 I915_READ_START(ring) == obj->gtt_offset &&
312 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000313 DRM_ERROR("%s initialization failed "
314 "ctl %08x head %08x tail %08x start %08x\n",
315 ring->name,
316 I915_READ_CTL(ring),
317 I915_READ_HEAD(ring),
318 I915_READ_TAIL(ring),
319 I915_READ_START(ring));
320 return -EIO;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800321 }
322
Chris Wilson78501ea2010-10-27 12:18:21 +0100323 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
324 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800325 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000326 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200327 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000328 ring->space = ring_space(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800329 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000330
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800331 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700332}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800333
Chris Wilsonc6df5412010-12-15 09:56:50 +0000334static int
335init_pipe_control(struct intel_ring_buffer *ring)
336{
337 struct pipe_control *pc;
338 struct drm_i915_gem_object *obj;
339 int ret;
340
341 if (ring->private)
342 return 0;
343
344 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
345 if (!pc)
346 return -ENOMEM;
347
348 obj = i915_gem_alloc_object(ring->dev, 4096);
349 if (obj == NULL) {
350 DRM_ERROR("Failed to allocate seqno page\n");
351 ret = -ENOMEM;
352 goto err;
353 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100354
355 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000356
357 ret = i915_gem_object_pin(obj, 4096, true);
358 if (ret)
359 goto err_unref;
360
361 pc->gtt_offset = obj->gtt_offset;
362 pc->cpu_page = kmap(obj->pages[0]);
363 if (pc->cpu_page == NULL)
364 goto err_unpin;
365
366 pc->obj = obj;
367 ring->private = pc;
368 return 0;
369
370err_unpin:
371 i915_gem_object_unpin(obj);
372err_unref:
373 drm_gem_object_unreference(&obj->base);
374err:
375 kfree(pc);
376 return ret;
377}
378
379static void
380cleanup_pipe_control(struct intel_ring_buffer *ring)
381{
382 struct pipe_control *pc = ring->private;
383 struct drm_i915_gem_object *obj;
384
385 if (!ring->private)
386 return;
387
388 obj = pc->obj;
389 kunmap(obj->pages[0]);
390 i915_gem_object_unpin(obj);
391 drm_gem_object_unreference(&obj->base);
392
393 kfree(pc);
394 ring->private = NULL;
395}
396
Chris Wilson78501ea2010-10-27 12:18:21 +0100397static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800398{
Chris Wilson78501ea2010-10-27 12:18:21 +0100399 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000400 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100401 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800402
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100403 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200404 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700405 if (IS_GEN7(dev))
406 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200407 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
408 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800409 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100410
Jesse Barnes8d315282011-10-16 10:23:31 +0200411 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000412 ret = init_pipe_control(ring);
413 if (ret)
414 return ret;
415 }
416
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200417 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700418 /* From the Sandybridge PRM, volume 1 part 3, page 24:
419 * "If this bit is set, STCunit will have LRA as replacement
420 * policy. [...] This bit must be reset. LRA replacement
421 * policy is not supported."
422 */
423 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200424 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky84f9f932011-12-12 19:21:58 -0800425 }
426
Daniel Vetter6b26c862012-04-24 14:04:12 +0200427 if (INTEL_INFO(dev)->gen >= 6)
428 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000429
Ben Widawsky15b9f802012-05-25 16:56:23 -0700430 if (IS_IVYBRIDGE(dev))
431 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
432
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800433 return ret;
434}
435
Chris Wilsonc6df5412010-12-15 09:56:50 +0000436static void render_ring_cleanup(struct intel_ring_buffer *ring)
437{
438 if (!ring->private)
439 return;
440
441 cleanup_pipe_control(ring);
442}
443
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000444static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700445update_mboxes(struct intel_ring_buffer *ring,
446 u32 seqno,
447 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000448{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700449 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
450 MI_SEMAPHORE_GLOBAL_GTT |
451 MI_SEMAPHORE_REGISTER |
452 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000453 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700454 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000455}
456
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700457/**
458 * gen6_add_request - Update the semaphore mailbox registers
459 *
460 * @ring - ring that is adding a request
461 * @seqno - return seqno stuck into the ring
462 *
463 * Update the mailbox registers in the *other* rings with the current seqno.
464 * This acts like a signal in the canonical semaphore.
465 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000466static int
467gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700468 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000469{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700470 u32 mbox1_reg;
471 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000472 int ret;
473
474 ret = intel_ring_begin(ring, 10);
475 if (ret)
476 return ret;
477
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700478 mbox1_reg = ring->signal_mbox[0];
479 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000480
Daniel Vetter53d227f2012-01-25 16:32:49 +0100481 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700482
483 update_mboxes(ring, *seqno, mbox1_reg);
484 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000485 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
486 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700487 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000488 intel_ring_emit(ring, MI_USER_INTERRUPT);
489 intel_ring_advance(ring);
490
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000491 return 0;
492}
493
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700494/**
495 * intel_ring_sync - sync the waiter to the signaller on seqno
496 *
497 * @waiter - ring that is waiting
498 * @signaller - ring which has, or will signal
499 * @seqno - seqno which the waiter will block on
500 */
501static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200502gen6_ring_sync(struct intel_ring_buffer *waiter,
503 struct intel_ring_buffer *signaller,
504 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000505{
506 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700507 u32 dw1 = MI_SEMAPHORE_MBOX |
508 MI_SEMAPHORE_COMPARE |
509 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000510
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700511 /* Throughout all of the GEM code, seqno passed implies our current
512 * seqno is >= the last seqno executed. However for hardware the
513 * comparison is strictly greater than.
514 */
515 seqno -= 1;
516
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200517 WARN_ON(signaller->semaphore_register[waiter->id] ==
518 MI_SEMAPHORE_SYNC_INVALID);
519
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700520 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000521 if (ret)
522 return ret;
523
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200524 intel_ring_emit(waiter,
525 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700526 intel_ring_emit(waiter, seqno);
527 intel_ring_emit(waiter, 0);
528 intel_ring_emit(waiter, MI_NOOP);
529 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000530
531 return 0;
532}
533
Chris Wilsonc6df5412010-12-15 09:56:50 +0000534#define PIPE_CONTROL_FLUSH(ring__, addr__) \
535do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200536 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
537 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000538 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
539 intel_ring_emit(ring__, 0); \
540 intel_ring_emit(ring__, 0); \
541} while (0)
542
543static int
544pc_render_add_request(struct intel_ring_buffer *ring,
545 u32 *result)
546{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100547 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000548 struct pipe_control *pc = ring->private;
549 u32 scratch_addr = pc->gtt_offset + 128;
550 int ret;
551
552 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
553 * incoherent with writes to memory, i.e. completely fubar,
554 * so we need to use PIPE_NOTIFY instead.
555 *
556 * However, we also need to workaround the qword write
557 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
558 * memory before requesting an interrupt.
559 */
560 ret = intel_ring_begin(ring, 32);
561 if (ret)
562 return ret;
563
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200564 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200565 PIPE_CONTROL_WRITE_FLUSH |
566 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000567 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
568 intel_ring_emit(ring, seqno);
569 intel_ring_emit(ring, 0);
570 PIPE_CONTROL_FLUSH(ring, scratch_addr);
571 scratch_addr += 128; /* write to separate cachelines */
572 PIPE_CONTROL_FLUSH(ring, scratch_addr);
573 scratch_addr += 128;
574 PIPE_CONTROL_FLUSH(ring, scratch_addr);
575 scratch_addr += 128;
576 PIPE_CONTROL_FLUSH(ring, scratch_addr);
577 scratch_addr += 128;
578 PIPE_CONTROL_FLUSH(ring, scratch_addr);
579 scratch_addr += 128;
580 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000581
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200582 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200583 PIPE_CONTROL_WRITE_FLUSH |
584 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000585 PIPE_CONTROL_NOTIFY);
586 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
587 intel_ring_emit(ring, seqno);
588 intel_ring_emit(ring, 0);
589 intel_ring_advance(ring);
590
591 *result = seqno;
592 return 0;
593}
594
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800595static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100596gen6_ring_get_seqno(struct intel_ring_buffer *ring)
597{
598 struct drm_device *dev = ring->dev;
599
600 /* Workaround to force correct ordering between irq and seqno writes on
601 * ivb (and maybe also on snb) by reading from a CS register (like
602 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200603 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100604 intel_ring_get_active_head(ring);
605 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
606}
607
608static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000609ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800610{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000611 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
612}
613
Chris Wilsonc6df5412010-12-15 09:56:50 +0000614static u32
615pc_render_get_seqno(struct intel_ring_buffer *ring)
616{
617 struct pipe_control *pc = ring->private;
618 return pc->cpu_page[0];
619}
620
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000621static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200622gen5_ring_get_irq(struct intel_ring_buffer *ring)
623{
624 struct drm_device *dev = ring->dev;
625 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100626 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200627
628 if (!dev->irq_enabled)
629 return false;
630
Chris Wilson7338aef2012-04-24 21:48:47 +0100631 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200632 if (ring->irq_refcount++ == 0) {
633 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
634 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
635 POSTING_READ(GTIMR);
636 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100637 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200638
639 return true;
640}
641
642static void
643gen5_ring_put_irq(struct intel_ring_buffer *ring)
644{
645 struct drm_device *dev = ring->dev;
646 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100647 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200648
Chris Wilson7338aef2012-04-24 21:48:47 +0100649 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200650 if (--ring->irq_refcount == 0) {
651 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
652 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
653 POSTING_READ(GTIMR);
654 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100655 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200656}
657
658static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200659i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700660{
Chris Wilson78501ea2010-10-27 12:18:21 +0100661 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000662 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100663 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700664
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000665 if (!dev->irq_enabled)
666 return false;
667
Chris Wilson7338aef2012-04-24 21:48:47 +0100668 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200669 if (ring->irq_refcount++ == 0) {
670 dev_priv->irq_mask &= ~ring->irq_enable_mask;
671 I915_WRITE(IMR, dev_priv->irq_mask);
672 POSTING_READ(IMR);
673 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100674 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000675
676 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700677}
678
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800679static void
Daniel Vettere3670312012-04-11 22:12:53 +0200680i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700681{
Chris Wilson78501ea2010-10-27 12:18:21 +0100682 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000683 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100684 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700685
Chris Wilson7338aef2012-04-24 21:48:47 +0100686 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200687 if (--ring->irq_refcount == 0) {
688 dev_priv->irq_mask |= ring->irq_enable_mask;
689 I915_WRITE(IMR, dev_priv->irq_mask);
690 POSTING_READ(IMR);
691 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100692 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700693}
694
Chris Wilsonc2798b12012-04-22 21:13:57 +0100695static bool
696i8xx_ring_get_irq(struct intel_ring_buffer *ring)
697{
698 struct drm_device *dev = ring->dev;
699 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100700 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100701
702 if (!dev->irq_enabled)
703 return false;
704
Chris Wilson7338aef2012-04-24 21:48:47 +0100705 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100706 if (ring->irq_refcount++ == 0) {
707 dev_priv->irq_mask &= ~ring->irq_enable_mask;
708 I915_WRITE16(IMR, dev_priv->irq_mask);
709 POSTING_READ16(IMR);
710 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100711 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100712
713 return true;
714}
715
716static void
717i8xx_ring_put_irq(struct intel_ring_buffer *ring)
718{
719 struct drm_device *dev = ring->dev;
720 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100721 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100722
Chris Wilson7338aef2012-04-24 21:48:47 +0100723 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100724 if (--ring->irq_refcount == 0) {
725 dev_priv->irq_mask |= ring->irq_enable_mask;
726 I915_WRITE16(IMR, dev_priv->irq_mask);
727 POSTING_READ16(IMR);
728 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100729 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100730}
731
Chris Wilson78501ea2010-10-27 12:18:21 +0100732void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800733{
Eric Anholt45930102011-05-06 17:12:35 -0700734 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100735 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700736 u32 mmio = 0;
737
738 /* The ring status page addresses are no longer next to the rest of
739 * the ring registers as of gen7.
740 */
741 if (IS_GEN7(dev)) {
742 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100743 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700744 mmio = RENDER_HWS_PGA_GEN7;
745 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100746 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700747 mmio = BLT_HWS_PGA_GEN7;
748 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100749 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700750 mmio = BSD_HWS_PGA_GEN7;
751 break;
752 }
753 } else if (IS_GEN6(ring->dev)) {
754 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
755 } else {
756 mmio = RING_HWS_PGA(ring->mmio_base);
757 }
758
Chris Wilson78501ea2010-10-27 12:18:21 +0100759 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
760 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800761}
762
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000763static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100764bsd_ring_flush(struct intel_ring_buffer *ring,
765 u32 invalidate_domains,
766 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800767{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000768 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000769
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000770 ret = intel_ring_begin(ring, 2);
771 if (ret)
772 return ret;
773
774 intel_ring_emit(ring, MI_FLUSH);
775 intel_ring_emit(ring, MI_NOOP);
776 intel_ring_advance(ring);
777 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800778}
779
Chris Wilson3cce4692010-10-27 16:11:02 +0100780static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200781i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100782 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800783{
784 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100785 int ret;
786
787 ret = intel_ring_begin(ring, 4);
788 if (ret)
789 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100790
Daniel Vetter53d227f2012-01-25 16:32:49 +0100791 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100792
Chris Wilson3cce4692010-10-27 16:11:02 +0100793 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
794 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
795 intel_ring_emit(ring, seqno);
796 intel_ring_emit(ring, MI_USER_INTERRUPT);
797 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800798
Chris Wilson3cce4692010-10-27 16:11:02 +0100799 *result = seqno;
800 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800801}
802
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000803static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700804gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000805{
806 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000807 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100808 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000809
810 if (!dev->irq_enabled)
811 return false;
812
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100813 /* It looks like we need to prevent the gt from suspending while waiting
814 * for an notifiy irq, otherwise irqs seem to get lost on at least the
815 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100816 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100817
Chris Wilson7338aef2012-04-24 21:48:47 +0100818 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000819 if (ring->irq_refcount++ == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700820 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
821 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask |
822 GEN6_RENDER_L3_PARITY_ERROR));
823 else
824 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200825 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
826 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
827 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000828 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100829 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000830
831 return true;
832}
833
834static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700835gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000836{
837 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000838 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100839 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000840
Chris Wilson7338aef2012-04-24 21:48:47 +0100841 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000842 if (--ring->irq_refcount == 0) {
Ben Widawsky15b9f802012-05-25 16:56:23 -0700843 if (IS_IVYBRIDGE(dev) && ring->id == RCS)
844 I915_WRITE_IMR(ring, ~GEN6_RENDER_L3_PARITY_ERROR);
845 else
846 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200847 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
848 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
849 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000850 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100851 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100852
Daniel Vetter99ffa162012-01-25 14:04:00 +0100853 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000854}
855
Zou Nan haid1b851f2010-05-21 09:08:57 +0800856static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200857i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800858{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100859 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100860
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100861 ret = intel_ring_begin(ring, 2);
862 if (ret)
863 return ret;
864
Chris Wilson78501ea2010-10-27 12:18:21 +0100865 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100866 MI_BATCH_BUFFER_START |
867 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100868 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000869 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100870 intel_ring_advance(ring);
871
Zou Nan haid1b851f2010-05-21 09:08:57 +0800872 return 0;
873}
874
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800875static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200876i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000877 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700878{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000879 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700880
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200881 ret = intel_ring_begin(ring, 4);
882 if (ret)
883 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700884
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200885 intel_ring_emit(ring, MI_BATCH_BUFFER);
886 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
887 intel_ring_emit(ring, offset + len - 8);
888 intel_ring_emit(ring, 0);
889 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100890
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200891 return 0;
892}
893
894static int
895i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
896 u32 offset, u32 len)
897{
898 int ret;
899
900 ret = intel_ring_begin(ring, 2);
901 if (ret)
902 return ret;
903
Chris Wilson65f56872012-04-17 16:38:12 +0100904 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200905 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000906 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700907
Eric Anholt62fdfea2010-05-21 13:26:39 -0700908 return 0;
909}
910
Chris Wilson78501ea2010-10-27 12:18:21 +0100911static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700912{
Chris Wilson05394f32010-11-08 19:18:58 +0000913 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700914
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800915 obj = ring->status_page.obj;
916 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700917 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700918
Chris Wilson05394f32010-11-08 19:18:58 +0000919 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700920 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000921 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800922 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700923}
924
Chris Wilson78501ea2010-10-27 12:18:21 +0100925static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700926{
Chris Wilson78501ea2010-10-27 12:18:21 +0100927 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000928 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700929 int ret;
930
Eric Anholt62fdfea2010-05-21 13:26:39 -0700931 obj = i915_gem_alloc_object(dev, 4096);
932 if (obj == NULL) {
933 DRM_ERROR("Failed to allocate status page\n");
934 ret = -ENOMEM;
935 goto err;
936 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100937
938 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700939
Daniel Vetter75e9e912010-11-04 17:11:09 +0100940 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700941 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700942 goto err_unref;
943 }
944
Chris Wilson05394f32010-11-08 19:18:58 +0000945 ring->status_page.gfx_addr = obj->gtt_offset;
946 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800947 if (ring->status_page.page_addr == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700948 goto err_unpin;
949 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800950 ring->status_page.obj = obj;
951 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700952
Chris Wilson78501ea2010-10-27 12:18:21 +0100953 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800954 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
955 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700956
957 return 0;
958
959err_unpin:
960 i915_gem_object_unpin(obj);
961err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000962 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700963err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800964 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700965}
966
Ben Widawskyc43b5632012-04-16 14:07:40 -0700967static int intel_init_ring_buffer(struct drm_device *dev,
968 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700969{
Chris Wilson05394f32010-11-08 19:18:58 +0000970 struct drm_i915_gem_object *obj;
Chris Wilsondd785e32010-08-07 11:01:34 +0100971 int ret;
972
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800973 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +0100974 INIT_LIST_HEAD(&ring->active_list);
975 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +0100976 INIT_LIST_HEAD(&ring->gpu_write_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +0200977 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000978
Chris Wilsonb259f672011-03-29 13:19:09 +0100979 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700980
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800981 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +0100982 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800983 if (ret)
984 return ret;
985 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700986
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800987 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700988 if (obj == NULL) {
989 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800990 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +0100991 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700992 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700993
Chris Wilson05394f32010-11-08 19:18:58 +0000994 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800995
Daniel Vetter75e9e912010-11-04 17:11:09 +0100996 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +0100997 if (ret)
998 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700999
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001000 ring->virtual_start = ioremap_wc(dev->agp->base + obj->gtt_offset,
1001 ring->size);
1002 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001003 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001004 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001005 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001006 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001007
Chris Wilson78501ea2010-10-27 12:18:21 +01001008 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001009 if (ret)
1010 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001011
Chris Wilson55249ba2010-12-22 14:04:47 +00001012 /* Workaround an erratum on the i830 which causes a hang if
1013 * the TAIL pointer points to within the last 2 cachelines
1014 * of the buffer.
1015 */
1016 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001017 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001018 ring->effective_size -= 128;
1019
Chris Wilsonc584fe42010-10-29 18:15:52 +01001020 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001021
1022err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001023 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001024err_unpin:
1025 i915_gem_object_unpin(obj);
1026err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001027 drm_gem_object_unreference(&obj->base);
1028 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001029err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001030 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001031 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001032}
1033
Chris Wilson78501ea2010-10-27 12:18:21 +01001034void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001035{
Chris Wilson33626e62010-10-29 16:18:36 +01001036 struct drm_i915_private *dev_priv;
1037 int ret;
1038
Chris Wilson05394f32010-11-08 19:18:58 +00001039 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040 return;
1041
Chris Wilson33626e62010-10-29 16:18:36 +01001042 /* Disable the ring buffer. The ring must be idle at this point */
1043 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001044 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001045 if (ret)
1046 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1047 ring->name, ret);
1048
Chris Wilson33626e62010-10-29 16:18:36 +01001049 I915_WRITE_CTL(ring, 0);
1050
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001051 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001052
Chris Wilson05394f32010-11-08 19:18:58 +00001053 i915_gem_object_unpin(ring->obj);
1054 drm_gem_object_unreference(&ring->obj->base);
1055 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001056
Zou Nan hai8d192152010-11-02 16:31:01 +08001057 if (ring->cleanup)
1058 ring->cleanup(ring);
1059
Chris Wilson78501ea2010-10-27 12:18:21 +01001060 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001061}
1062
Chris Wilson78501ea2010-10-27 12:18:21 +01001063static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001064{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001065 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001066 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001067
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001068 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001069 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001070 if (ret)
1071 return ret;
1072 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001073
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001074 virt = ring->virtual_start + ring->tail;
1075 rem /= 4;
1076 while (rem--)
1077 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001078
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001079 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001080 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001081
1082 return 0;
1083}
1084
Chris Wilsona71d8d92012-02-15 11:25:36 +00001085static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1086{
1087 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1088 bool was_interruptible;
1089 int ret;
1090
1091 /* XXX As we have not yet audited all the paths to check that
1092 * they are ready for ERESTARTSYS from intel_ring_begin, do not
1093 * allow us to be interruptible by a signal.
1094 */
1095 was_interruptible = dev_priv->mm.interruptible;
1096 dev_priv->mm.interruptible = false;
1097
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001098 ret = i915_wait_seqno(ring, seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001099
1100 dev_priv->mm.interruptible = was_interruptible;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001101 if (!ret)
1102 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001103
1104 return ret;
1105}
1106
1107static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1108{
1109 struct drm_i915_gem_request *request;
1110 u32 seqno = 0;
1111 int ret;
1112
1113 i915_gem_retire_requests_ring(ring);
1114
1115 if (ring->last_retired_head != -1) {
1116 ring->head = ring->last_retired_head;
1117 ring->last_retired_head = -1;
1118 ring->space = ring_space(ring);
1119 if (ring->space >= n)
1120 return 0;
1121 }
1122
1123 list_for_each_entry(request, &ring->request_list, list) {
1124 int space;
1125
1126 if (request->tail == -1)
1127 continue;
1128
1129 space = request->tail - (ring->tail + 8);
1130 if (space < 0)
1131 space += ring->size;
1132 if (space >= n) {
1133 seqno = request->seqno;
1134 break;
1135 }
1136
1137 /* Consume this request in case we need more space than
1138 * is available and so need to prevent a race between
1139 * updating last_retired_head and direct reads of
1140 * I915_RING_HEAD. It also provides a nice sanity check.
1141 */
1142 request->tail = -1;
1143 }
1144
1145 if (seqno == 0)
1146 return -ENOSPC;
1147
1148 ret = intel_ring_wait_seqno(ring, seqno);
1149 if (ret)
1150 return ret;
1151
1152 if (WARN_ON(ring->last_retired_head == -1))
1153 return -ENOSPC;
1154
1155 ring->head = ring->last_retired_head;
1156 ring->last_retired_head = -1;
1157 ring->space = ring_space(ring);
1158 if (WARN_ON(ring->space < n))
1159 return -ENOSPC;
1160
1161 return 0;
1162}
1163
Chris Wilson78501ea2010-10-27 12:18:21 +01001164int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001165{
Chris Wilson78501ea2010-10-27 12:18:21 +01001166 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001167 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001168 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001169 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001170
Chris Wilsona71d8d92012-02-15 11:25:36 +00001171 ret = intel_ring_wait_request(ring, n);
1172 if (ret != -ENOSPC)
1173 return ret;
1174
Chris Wilsondb53a302011-02-03 11:57:46 +00001175 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001176 /* With GEM the hangcheck timer should kick us out of the loop,
1177 * leaving it early runs the risk of corrupting GEM state (due
1178 * to running on almost untested codepaths). But on resume
1179 * timers don't work yet, so prevent a complete hang in that
1180 * case by choosing an insanely large timeout. */
1181 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001182
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001183 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001184 ring->head = I915_READ_HEAD(ring);
1185 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001186 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001187 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001188 return 0;
1189 }
1190
1191 if (dev->primary->master) {
1192 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1193 if (master_priv->sarea_priv)
1194 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1195 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001196
Chris Wilsone60a0b12010-10-13 10:09:14 +01001197 msleep(1);
Chris Wilsonf4e0b292010-10-29 21:06:16 +01001198 if (atomic_read(&dev_priv->mm.wedged))
1199 return -EAGAIN;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001200 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001201 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001202 return -EBUSY;
1203}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001204
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001205int intel_ring_begin(struct intel_ring_buffer *ring,
1206 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001207{
Chris Wilson21dd3732011-01-26 15:55:56 +00001208 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001209 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001210 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001211
Chris Wilson21dd3732011-01-26 15:55:56 +00001212 if (unlikely(atomic_read(&dev_priv->mm.wedged)))
1213 return -EIO;
1214
Chris Wilson55249ba2010-12-22 14:04:47 +00001215 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001216 ret = intel_wrap_ring_buffer(ring);
1217 if (unlikely(ret))
1218 return ret;
1219 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001220
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001221 if (unlikely(ring->space < n)) {
1222 ret = intel_wait_ring_buffer(ring, n);
1223 if (unlikely(ret))
1224 return ret;
1225 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001226
1227 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001228 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001229}
1230
Chris Wilson78501ea2010-10-27 12:18:21 +01001231void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001232{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001233 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1234
Chris Wilsond97ed332010-08-04 15:18:13 +01001235 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001236 if (dev_priv->stop_rings & intel_ring_flag(ring))
1237 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001238 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001239}
1240
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001241
Chris Wilson78501ea2010-10-27 12:18:21 +01001242static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001243 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001244{
Akshay Joshi0206e352011-08-16 15:34:10 -04001245 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001246
1247 /* Every tail move must follow the sequence below */
Akshay Joshi0206e352011-08-16 15:34:10 -04001248 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1249 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1250 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE);
1251 I915_WRITE(GEN6_BSD_RNCID, 0x0);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001252
Akshay Joshi0206e352011-08-16 15:34:10 -04001253 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
1254 GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0,
1255 50))
1256 DRM_ERROR("timed out waiting for IDLE Indicator\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001257
Akshay Joshi0206e352011-08-16 15:34:10 -04001258 I915_WRITE_TAIL(ring, value);
1259 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1260 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1261 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001262}
1263
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001264static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001265 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001266{
Chris Wilson71a77e02011-02-02 12:13:49 +00001267 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001268 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001269
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001270 ret = intel_ring_begin(ring, 4);
1271 if (ret)
1272 return ret;
1273
Chris Wilson71a77e02011-02-02 12:13:49 +00001274 cmd = MI_FLUSH_DW;
1275 if (invalidate & I915_GEM_GPU_DOMAINS)
1276 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1277 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001278 intel_ring_emit(ring, 0);
1279 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001280 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001281 intel_ring_advance(ring);
1282 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001283}
1284
1285static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001286gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001287 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001288{
Akshay Joshi0206e352011-08-16 15:34:10 -04001289 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001290
Akshay Joshi0206e352011-08-16 15:34:10 -04001291 ret = intel_ring_begin(ring, 2);
1292 if (ret)
1293 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001294
Akshay Joshi0206e352011-08-16 15:34:10 -04001295 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1296 /* bit0-7 is the length on GEN6+ */
1297 intel_ring_emit(ring, offset);
1298 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001299
Akshay Joshi0206e352011-08-16 15:34:10 -04001300 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001301}
1302
Chris Wilson549f7362010-10-19 11:19:32 +01001303/* Blitter support (SandyBridge+) */
1304
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001305static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001306 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001307{
Chris Wilson71a77e02011-02-02 12:13:49 +00001308 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001309 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001310
Daniel Vetter6a233c72011-12-14 13:57:07 +01001311 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001312 if (ret)
1313 return ret;
1314
Chris Wilson71a77e02011-02-02 12:13:49 +00001315 cmd = MI_FLUSH_DW;
1316 if (invalidate & I915_GEM_DOMAIN_RENDER)
1317 cmd |= MI_INVALIDATE_TLB;
1318 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001319 intel_ring_emit(ring, 0);
1320 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001321 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001322 intel_ring_advance(ring);
1323 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001324}
1325
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001326int intel_init_render_ring_buffer(struct drm_device *dev)
1327{
1328 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001329 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001330
Daniel Vetter59465b52012-04-11 22:12:48 +02001331 ring->name = "render ring";
1332 ring->id = RCS;
1333 ring->mmio_base = RENDER_RING_BASE;
1334
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001335 if (INTEL_INFO(dev)->gen >= 6) {
1336 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001337 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001338 ring->irq_get = gen6_ring_get_irq;
1339 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001340 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001341 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001342 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001343 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1344 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1345 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1346 ring->signal_mbox[0] = GEN6_VRSYNC;
1347 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001348 } else if (IS_GEN5(dev)) {
1349 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001350 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001351 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001352 ring->irq_get = gen5_ring_get_irq;
1353 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001354 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001355 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001356 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001357 if (INTEL_INFO(dev)->gen < 4)
1358 ring->flush = gen2_render_ring_flush;
1359 else
1360 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001361 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001362 if (IS_GEN2(dev)) {
1363 ring->irq_get = i8xx_ring_get_irq;
1364 ring->irq_put = i8xx_ring_put_irq;
1365 } else {
1366 ring->irq_get = i9xx_ring_get_irq;
1367 ring->irq_put = i9xx_ring_put_irq;
1368 }
Daniel Vettere3670312012-04-11 22:12:53 +02001369 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001370 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001371 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001372 if (INTEL_INFO(dev)->gen >= 6)
1373 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1374 else if (INTEL_INFO(dev)->gen >= 4)
1375 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1376 else if (IS_I830(dev) || IS_845G(dev))
1377 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1378 else
1379 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001380 ring->init = init_render_ring;
1381 ring->cleanup = render_ring_cleanup;
1382
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001383
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001384 if (!I915_NEED_GFX_HWS(dev)) {
1385 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1386 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1387 }
1388
1389 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001390}
1391
Chris Wilsone8616b62011-01-20 09:57:11 +00001392int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1393{
1394 drm_i915_private_t *dev_priv = dev->dev_private;
1395 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1396
Daniel Vetter59465b52012-04-11 22:12:48 +02001397 ring->name = "render ring";
1398 ring->id = RCS;
1399 ring->mmio_base = RENDER_RING_BASE;
1400
Chris Wilsone8616b62011-01-20 09:57:11 +00001401 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001402 /* non-kms not supported on gen6+ */
1403 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001404 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001405
1406 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1407 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1408 * the special gen5 functions. */
1409 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001410 if (INTEL_INFO(dev)->gen < 4)
1411 ring->flush = gen2_render_ring_flush;
1412 else
1413 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001414 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001415 if (IS_GEN2(dev)) {
1416 ring->irq_get = i8xx_ring_get_irq;
1417 ring->irq_put = i8xx_ring_put_irq;
1418 } else {
1419 ring->irq_get = i9xx_ring_get_irq;
1420 ring->irq_put = i9xx_ring_put_irq;
1421 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001422 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001423 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001424 if (INTEL_INFO(dev)->gen >= 4)
1425 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1426 else if (IS_I830(dev) || IS_845G(dev))
1427 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1428 else
1429 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001430 ring->init = init_render_ring;
1431 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001432
Keith Packardf3234702011-07-22 10:44:39 -07001433 if (!I915_NEED_GFX_HWS(dev))
1434 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1435
Chris Wilsone8616b62011-01-20 09:57:11 +00001436 ring->dev = dev;
1437 INIT_LIST_HEAD(&ring->active_list);
1438 INIT_LIST_HEAD(&ring->request_list);
1439 INIT_LIST_HEAD(&ring->gpu_write_list);
1440
1441 ring->size = size;
1442 ring->effective_size = ring->size;
1443 if (IS_I830(ring->dev))
1444 ring->effective_size -= 128;
1445
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001446 ring->virtual_start = ioremap_wc(start, size);
1447 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001448 DRM_ERROR("can not ioremap virtual address for"
1449 " ring buffer\n");
1450 return -ENOMEM;
1451 }
1452
Chris Wilsone8616b62011-01-20 09:57:11 +00001453 return 0;
1454}
1455
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001456int intel_init_bsd_ring_buffer(struct drm_device *dev)
1457{
1458 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001459 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001460
Daniel Vetter58fa3832012-04-11 22:12:49 +02001461 ring->name = "bsd ring";
1462 ring->id = VCS;
1463
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001464 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001465 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1466 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001467 /* gen6 bsd needs a special wa for tail updates */
1468 if (IS_GEN6(dev))
1469 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001470 ring->flush = gen6_ring_flush;
1471 ring->add_request = gen6_add_request;
1472 ring->get_seqno = gen6_ring_get_seqno;
1473 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1474 ring->irq_get = gen6_ring_get_irq;
1475 ring->irq_put = gen6_ring_put_irq;
1476 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001477 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001478 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1479 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1480 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1481 ring->signal_mbox[0] = GEN6_RVSYNC;
1482 ring->signal_mbox[1] = GEN6_BVSYNC;
1483 } else {
1484 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001485 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001486 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001487 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001488 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001489 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001490 ring->irq_get = gen5_ring_get_irq;
1491 ring->irq_put = gen5_ring_put_irq;
1492 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001493 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001494 ring->irq_get = i9xx_ring_get_irq;
1495 ring->irq_put = i9xx_ring_put_irq;
1496 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001497 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001498 }
1499 ring->init = init_ring_common;
1500
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001501
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001502 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001503}
Chris Wilson549f7362010-10-19 11:19:32 +01001504
1505int intel_init_blt_ring_buffer(struct drm_device *dev)
1506{
1507 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001508 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001509
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001510 ring->name = "blitter ring";
1511 ring->id = BCS;
1512
1513 ring->mmio_base = BLT_RING_BASE;
1514 ring->write_tail = ring_write_tail;
1515 ring->flush = blt_ring_flush;
1516 ring->add_request = gen6_add_request;
1517 ring->get_seqno = gen6_ring_get_seqno;
1518 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1519 ring->irq_get = gen6_ring_get_irq;
1520 ring->irq_put = gen6_ring_put_irq;
1521 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001522 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001523 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1524 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1525 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1526 ring->signal_mbox[0] = GEN6_RBSYNC;
1527 ring->signal_mbox[1] = GEN6_VBSYNC;
1528 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001529
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001530 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001531}