blob: e5b84ff89ca58234b5c7e0d30fa8e97583d6357d [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{
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200269 struct drm_device *dev = ring->dev;
270 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000271 struct drm_i915_gem_object *obj = ring->obj;
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200272 int ret = 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800273 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800274
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200275 if (HAS_FORCE_WAKE(dev))
276 gen6_gt_force_wake_get(dev_priv);
277
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800278 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200279 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200280 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100281 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800282
283 /* Initialize the ring. */
Chris Wilson05394f32010-11-08 19:18:58 +0000284 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter570ef602010-08-02 17:06:23 +0200285 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800286
287 /* G45 ring initialization fails to reset head to zero */
288 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000289 DRM_DEBUG_KMS("%s head not reset to zero "
290 "ctl %08x head %08x tail %08x start %08x\n",
291 ring->name,
292 I915_READ_CTL(ring),
293 I915_READ_HEAD(ring),
294 I915_READ_TAIL(ring),
295 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800296
Daniel Vetter570ef602010-08-02 17:06:23 +0200297 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800298
Chris Wilson6fd0d562010-12-05 20:42:33 +0000299 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
300 DRM_ERROR("failed to set %s head to zero "
301 "ctl %08x head %08x tail %08x start %08x\n",
302 ring->name,
303 I915_READ_CTL(ring),
304 I915_READ_HEAD(ring),
305 I915_READ_TAIL(ring),
306 I915_READ_START(ring));
307 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700308 }
309
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200310 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000311 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson5d031e52012-02-08 13:34:13 +0000312 | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800313
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800314 /* If the head is still not zero, the ring is dead */
Sean Paulf01db982012-03-16 12:43:22 -0400315 if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
316 I915_READ_START(ring) == obj->gtt_offset &&
317 (I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000318 DRM_ERROR("%s initialization failed "
319 "ctl %08x head %08x tail %08x start %08x\n",
320 ring->name,
321 I915_READ_CTL(ring),
322 I915_READ_HEAD(ring),
323 I915_READ_TAIL(ring),
324 I915_READ_START(ring));
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200325 ret = -EIO;
326 goto out;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800327 }
328
Chris Wilson78501ea2010-10-27 12:18:21 +0100329 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
330 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800331 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000332 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200333 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000334 ring->space = ring_space(ring);
Chris Wilsonc3b20032012-05-28 22:33:02 +0100335 ring->last_retired_head = -1;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800336 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000337
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200338out:
339 if (HAS_FORCE_WAKE(dev))
340 gen6_gt_force_wake_put(dev_priv);
341
342 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700343}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800344
Chris Wilsonc6df5412010-12-15 09:56:50 +0000345static int
346init_pipe_control(struct intel_ring_buffer *ring)
347{
348 struct pipe_control *pc;
349 struct drm_i915_gem_object *obj;
350 int ret;
351
352 if (ring->private)
353 return 0;
354
355 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
356 if (!pc)
357 return -ENOMEM;
358
359 obj = i915_gem_alloc_object(ring->dev, 4096);
360 if (obj == NULL) {
361 DRM_ERROR("Failed to allocate seqno page\n");
362 ret = -ENOMEM;
363 goto err;
364 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100365
366 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000367
368 ret = i915_gem_object_pin(obj, 4096, true);
369 if (ret)
370 goto err_unref;
371
372 pc->gtt_offset = obj->gtt_offset;
373 pc->cpu_page = kmap(obj->pages[0]);
374 if (pc->cpu_page == NULL)
375 goto err_unpin;
376
377 pc->obj = obj;
378 ring->private = pc;
379 return 0;
380
381err_unpin:
382 i915_gem_object_unpin(obj);
383err_unref:
384 drm_gem_object_unreference(&obj->base);
385err:
386 kfree(pc);
387 return ret;
388}
389
390static void
391cleanup_pipe_control(struct intel_ring_buffer *ring)
392{
393 struct pipe_control *pc = ring->private;
394 struct drm_i915_gem_object *obj;
395
396 if (!ring->private)
397 return;
398
399 obj = pc->obj;
400 kunmap(obj->pages[0]);
401 i915_gem_object_unpin(obj);
402 drm_gem_object_unreference(&obj->base);
403
404 kfree(pc);
405 ring->private = NULL;
406}
407
Chris Wilson78501ea2010-10-27 12:18:21 +0100408static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800409{
Chris Wilson78501ea2010-10-27 12:18:21 +0100410 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000411 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100412 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800413
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100414 if (INTEL_INFO(dev)->gen > 3) {
Daniel Vetter6b26c862012-04-24 14:04:12 +0200415 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
Jesse Barnesb095cd02011-08-12 15:28:32 -0700416 if (IS_GEN7(dev))
417 I915_WRITE(GFX_MODE_GEN7,
Daniel Vetter6b26c862012-04-24 14:04:12 +0200418 _MASKED_BIT_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
419 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800420 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100421
Jesse Barnes8d315282011-10-16 10:23:31 +0200422 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000423 ret = init_pipe_control(ring);
424 if (ret)
425 return ret;
426 }
427
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200428 if (IS_GEN6(dev)) {
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700429 /* From the Sandybridge PRM, volume 1 part 3, page 24:
430 * "If this bit is set, STCunit will have LRA as replacement
431 * policy. [...] This bit must be reset. LRA replacement
432 * policy is not supported."
433 */
434 I915_WRITE(CACHE_MODE_0,
Daniel Vetter5e13a0c2012-05-08 13:39:59 +0200435 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Ben Widawsky84f9f932011-12-12 19:21:58 -0800436 }
437
Daniel Vetter6b26c862012-04-24 14:04:12 +0200438 if (INTEL_INFO(dev)->gen >= 6)
439 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Chris Wilsonc6df5412010-12-15 09:56:50 +0000440
441 return ret;
442}
443
444static void render_ring_cleanup(struct intel_ring_buffer *ring)
445{
446 if (!ring->private)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000447 return;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700448
449 cleanup_pipe_control(ring);
450}
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000451
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700452static void
453update_mboxes(struct intel_ring_buffer *ring,
454 u32 seqno,
455 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000456{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700457 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000458 MI_SEMAPHORE_GLOBAL_GTT |
459 MI_SEMAPHORE_REGISTER |
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700460 MI_SEMAPHORE_UPDATE);
461 intel_ring_emit(ring, seqno);
462 intel_ring_emit(ring, mmio_offset);
463}
464
465/**
466 * gen6_add_request - Update the semaphore mailbox registers
467 *
468 * @ring - ring that is adding a request
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000469 * @seqno - return seqno stuck into the ring
470 *
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700471 * Update the mailbox registers in the *other* rings with the current seqno.
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000472 * This acts like a signal in the canonical semaphore.
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700473 */
474static int
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000475gen6_add_request(struct intel_ring_buffer *ring,
476 u32 *seqno)
477{
478 u32 mbox1_reg;
479 u32 mbox2_reg;
480 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700481
482 ret = intel_ring_begin(ring, 10);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000483 if (ret)
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700484 return ret;
485
486 mbox1_reg = ring->signal_mbox[0];
487 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000488
Daniel Vetter53d227f2012-01-25 16:32:49 +0100489 *seqno = i915_gem_next_request_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000490
491 update_mboxes(ring, *seqno, mbox1_reg);
492 update_mboxes(ring, *seqno, mbox2_reg);
493 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
494 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700495 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000496 intel_ring_emit(ring, MI_USER_INTERRUPT);
497 intel_ring_advance(ring);
498
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000499 return 0;
500}
501
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700502/**
503 * intel_ring_sync - sync the waiter to the signaller on seqno
504 *
505 * @waiter - ring that is waiting
506 * @signaller - ring which has, or will signal
507 * @seqno - seqno which the waiter will block on
508 */
509static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200510gen6_ring_sync(struct intel_ring_buffer *waiter,
511 struct intel_ring_buffer *signaller,
512 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000513{
514 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700515 u32 dw1 = MI_SEMAPHORE_MBOX |
516 MI_SEMAPHORE_COMPARE |
517 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000518
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700519 /* Throughout all of the GEM code, seqno passed implies our current
520 * seqno is >= the last seqno executed. However for hardware the
521 * comparison is strictly greater than.
522 */
523 seqno -= 1;
524
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200525 WARN_ON(signaller->semaphore_register[waiter->id] ==
526 MI_SEMAPHORE_SYNC_INVALID);
527
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700528 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000529 if (ret)
530 return ret;
531
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200532 intel_ring_emit(waiter,
533 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700534 intel_ring_emit(waiter, seqno);
535 intel_ring_emit(waiter, 0);
536 intel_ring_emit(waiter, MI_NOOP);
537 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000538
539 return 0;
540}
541
Chris Wilsonc6df5412010-12-15 09:56:50 +0000542#define PIPE_CONTROL_FLUSH(ring__, addr__) \
543do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200544 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
545 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000546 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
547 intel_ring_emit(ring__, 0); \
548 intel_ring_emit(ring__, 0); \
549} while (0)
550
551static int
552pc_render_add_request(struct intel_ring_buffer *ring,
553 u32 *result)
554{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100555 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000556 struct pipe_control *pc = ring->private;
557 u32 scratch_addr = pc->gtt_offset + 128;
558 int ret;
559
560 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
561 * incoherent with writes to memory, i.e. completely fubar,
562 * so we need to use PIPE_NOTIFY instead.
563 *
564 * However, we also need to workaround the qword write
565 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
566 * memory before requesting an interrupt.
567 */
568 ret = intel_ring_begin(ring, 32);
569 if (ret)
570 return ret;
571
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200572 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200573 PIPE_CONTROL_WRITE_FLUSH |
574 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000575 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
576 intel_ring_emit(ring, seqno);
577 intel_ring_emit(ring, 0);
578 PIPE_CONTROL_FLUSH(ring, scratch_addr);
579 scratch_addr += 128; /* write to separate cachelines */
580 PIPE_CONTROL_FLUSH(ring, scratch_addr);
581 scratch_addr += 128;
582 PIPE_CONTROL_FLUSH(ring, scratch_addr);
583 scratch_addr += 128;
584 PIPE_CONTROL_FLUSH(ring, scratch_addr);
585 scratch_addr += 128;
586 PIPE_CONTROL_FLUSH(ring, scratch_addr);
587 scratch_addr += 128;
588 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000589
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200590 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200591 PIPE_CONTROL_WRITE_FLUSH |
592 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000593 PIPE_CONTROL_NOTIFY);
594 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
595 intel_ring_emit(ring, seqno);
596 intel_ring_emit(ring, 0);
597 intel_ring_advance(ring);
598
599 *result = seqno;
600 return 0;
601}
602
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800603static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100604gen6_ring_get_seqno(struct intel_ring_buffer *ring)
605{
606 struct drm_device *dev = ring->dev;
607
608 /* Workaround to force correct ordering between irq and seqno writes on
609 * ivb (and maybe also on snb) by reading from a CS register (like
610 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200611 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100612 intel_ring_get_active_head(ring);
613 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
614}
615
616static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000617ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800618{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000619 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
620}
621
Chris Wilsonc6df5412010-12-15 09:56:50 +0000622static u32
623pc_render_get_seqno(struct intel_ring_buffer *ring)
624{
625 struct pipe_control *pc = ring->private;
626 return pc->cpu_page[0];
627}
628
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000629static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200630gen5_ring_get_irq(struct intel_ring_buffer *ring)
631{
632 struct drm_device *dev = ring->dev;
633 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100634 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200635
636 if (!dev->irq_enabled)
637 return false;
638
Chris Wilson7338aef2012-04-24 21:48:47 +0100639 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200640 if (ring->irq_refcount++ == 0) {
641 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
642 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
643 POSTING_READ(GTIMR);
644 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100645 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200646
647 return true;
648}
649
650static void
651gen5_ring_put_irq(struct intel_ring_buffer *ring)
652{
653 struct drm_device *dev = ring->dev;
654 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100655 unsigned long flags;
Daniel Vettere48d8632012-04-11 22:12:54 +0200656
Chris Wilson7338aef2012-04-24 21:48:47 +0100657 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200658 if (--ring->irq_refcount == 0) {
659 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
660 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
661 POSTING_READ(GTIMR);
662 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100663 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vettere48d8632012-04-11 22:12:54 +0200664}
665
666static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200667i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700668{
Chris Wilson78501ea2010-10-27 12:18:21 +0100669 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000670 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100671 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700672
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000673 if (!dev->irq_enabled)
674 return false;
675
Chris Wilson7338aef2012-04-24 21:48:47 +0100676 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200677 if (ring->irq_refcount++ == 0) {
678 dev_priv->irq_mask &= ~ring->irq_enable_mask;
679 I915_WRITE(IMR, dev_priv->irq_mask);
680 POSTING_READ(IMR);
681 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100682 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000683
684 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700685}
686
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800687static void
Daniel Vettere3670312012-04-11 22:12:53 +0200688i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700689{
Chris Wilson78501ea2010-10-27 12:18:21 +0100690 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000691 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100692 unsigned long flags;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700693
Chris Wilson7338aef2012-04-24 21:48:47 +0100694 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200695 if (--ring->irq_refcount == 0) {
696 dev_priv->irq_mask |= ring->irq_enable_mask;
697 I915_WRITE(IMR, dev_priv->irq_mask);
698 POSTING_READ(IMR);
699 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100700 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700701}
702
Chris Wilsonc2798b12012-04-22 21:13:57 +0100703static bool
704i8xx_ring_get_irq(struct intel_ring_buffer *ring)
705{
706 struct drm_device *dev = ring->dev;
707 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100708 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100709
710 if (!dev->irq_enabled)
711 return false;
712
Chris Wilson7338aef2012-04-24 21:48:47 +0100713 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100714 if (ring->irq_refcount++ == 0) {
715 dev_priv->irq_mask &= ~ring->irq_enable_mask;
716 I915_WRITE16(IMR, dev_priv->irq_mask);
717 POSTING_READ16(IMR);
718 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100719 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100720
721 return true;
722}
723
724static void
725i8xx_ring_put_irq(struct intel_ring_buffer *ring)
726{
727 struct drm_device *dev = ring->dev;
728 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100729 unsigned long flags;
Chris Wilsonc2798b12012-04-22 21:13:57 +0100730
Chris Wilson7338aef2012-04-24 21:48:47 +0100731 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100732 if (--ring->irq_refcount == 0) {
733 dev_priv->irq_mask |= ring->irq_enable_mask;
734 I915_WRITE16(IMR, dev_priv->irq_mask);
735 POSTING_READ16(IMR);
736 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100737 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilsonc2798b12012-04-22 21:13:57 +0100738}
739
Chris Wilson78501ea2010-10-27 12:18:21 +0100740void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800741{
Eric Anholt45930102011-05-06 17:12:35 -0700742 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100743 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700744 u32 mmio = 0;
745
746 /* The ring status page addresses are no longer next to the rest of
747 * the ring registers as of gen7.
748 */
749 if (IS_GEN7(dev)) {
750 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100751 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700752 mmio = RENDER_HWS_PGA_GEN7;
753 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100754 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700755 mmio = BLT_HWS_PGA_GEN7;
756 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100757 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700758 mmio = BSD_HWS_PGA_GEN7;
759 break;
760 }
761 } else if (IS_GEN6(ring->dev)) {
762 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
763 } else {
764 mmio = RING_HWS_PGA(ring->mmio_base);
765 }
766
Chris Wilson78501ea2010-10-27 12:18:21 +0100767 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
768 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800769}
770
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000771static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100772bsd_ring_flush(struct intel_ring_buffer *ring,
773 u32 invalidate_domains,
774 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800775{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000776 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000777
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000778 ret = intel_ring_begin(ring, 2);
779 if (ret)
780 return ret;
781
782 intel_ring_emit(ring, MI_FLUSH);
783 intel_ring_emit(ring, MI_NOOP);
784 intel_ring_advance(ring);
785 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800786}
787
Chris Wilson3cce4692010-10-27 16:11:02 +0100788static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200789i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100790 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800791{
792 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100793 int ret;
794
795 ret = intel_ring_begin(ring, 4);
796 if (ret)
797 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100798
Daniel Vetter53d227f2012-01-25 16:32:49 +0100799 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100800
Chris Wilson3cce4692010-10-27 16:11:02 +0100801 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
802 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
803 intel_ring_emit(ring, seqno);
804 intel_ring_emit(ring, MI_USER_INTERRUPT);
805 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800806
Chris Wilson3cce4692010-10-27 16:11:02 +0100807 *result = seqno;
808 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800809}
810
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000811static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700812gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000813{
814 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000815 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100816 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000817
818 if (!dev->irq_enabled)
819 return false;
820
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100821 /* It looks like we need to prevent the gt from suspending while waiting
822 * for an notifiy irq, otherwise irqs seem to get lost on at least the
823 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100824 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100825
Chris Wilson7338aef2012-04-24 21:48:47 +0100826 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000827 if (ring->irq_refcount++ == 0) {
Daniel Vetter6a848cc2012-04-11 22:12:46 +0200828 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200829 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
830 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
831 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000832 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100833 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Chris Wilson0f468322011-01-04 17:35:21 +0000834
835 return true;
836}
837
838static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700839gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000840{
841 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000842 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson7338aef2012-04-24 21:48:47 +0100843 unsigned long flags;
Chris Wilson0f468322011-01-04 17:35:21 +0000844
Chris Wilson7338aef2012-04-24 21:48:47 +0100845 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson01a03332011-01-04 22:22:56 +0000846 if (--ring->irq_refcount == 0) {
Daniel Vetter6a848cc2012-04-11 22:12:46 +0200847 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200848 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
849 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
850 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000851 }
Chris Wilson7338aef2012-04-24 21:48:47 +0100852 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100853
Daniel Vetter99ffa162012-01-25 14:04:00 +0100854 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000855}
856
Zou Nan haid1b851f2010-05-21 09:08:57 +0800857static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200858i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800859{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100860 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100861
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100862 ret = intel_ring_begin(ring, 2);
863 if (ret)
864 return ret;
865
Chris Wilson78501ea2010-10-27 12:18:21 +0100866 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100867 MI_BATCH_BUFFER_START |
868 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100869 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000870 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100871 intel_ring_advance(ring);
872
Zou Nan haid1b851f2010-05-21 09:08:57 +0800873 return 0;
874}
875
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800876static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200877i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000878 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700879{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000880 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700881
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200882 ret = intel_ring_begin(ring, 4);
883 if (ret)
884 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700885
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200886 intel_ring_emit(ring, MI_BATCH_BUFFER);
887 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
888 intel_ring_emit(ring, offset + len - 8);
889 intel_ring_emit(ring, 0);
890 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100891
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200892 return 0;
893}
894
895static int
896i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
897 u32 offset, u32 len)
898{
899 int ret;
900
901 ret = intel_ring_begin(ring, 2);
902 if (ret)
903 return ret;
904
Chris Wilson65f56872012-04-17 16:38:12 +0100905 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200906 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000907 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700908
Eric Anholt62fdfea2010-05-21 13:26:39 -0700909 return 0;
910}
911
Chris Wilson78501ea2010-10-27 12:18:21 +0100912static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700913{
Chris Wilson05394f32010-11-08 19:18:58 +0000914 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700915
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800916 obj = ring->status_page.obj;
917 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700918 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700919
Chris Wilson05394f32010-11-08 19:18:58 +0000920 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700921 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000922 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800923 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700924}
925
Chris Wilson78501ea2010-10-27 12:18:21 +0100926static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700927{
Chris Wilson78501ea2010-10-27 12:18:21 +0100928 struct drm_device *dev = ring->dev;
Chris Wilson05394f32010-11-08 19:18:58 +0000929 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700930 int ret;
931
Eric Anholt62fdfea2010-05-21 13:26:39 -0700932 obj = i915_gem_alloc_object(dev, 4096);
933 if (obj == NULL) {
934 DRM_ERROR("Failed to allocate status page\n");
935 ret = -ENOMEM;
936 goto err;
937 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100938
939 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700940
Daniel Vetter75e9e912010-11-04 17:11:09 +0100941 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700942 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700943 goto err_unref;
944 }
945
Chris Wilson05394f32010-11-08 19:18:58 +0000946 ring->status_page.gfx_addr = obj->gtt_offset;
947 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800948 if (ring->status_page.page_addr == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700949 goto err_unpin;
950 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800951 ring->status_page.obj = obj;
952 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700953
Chris Wilson78501ea2010-10-27 12:18:21 +0100954 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800955 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
956 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700957
958 return 0;
959
960err_unpin:
961 i915_gem_object_unpin(obj);
962err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000963 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700964err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800965 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700966}
967
Ben Widawskyc43b5632012-04-16 14:07:40 -0700968static int intel_init_ring_buffer(struct drm_device *dev,
969 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700970{
Chris Wilson05394f32010-11-08 19:18:58 +0000971 struct drm_i915_gem_object *obj;
Chris Wilsondd785e32010-08-07 11:01:34 +0100972 int ret;
973
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800974 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +0100975 INIT_LIST_HEAD(&ring->active_list);
976 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +0100977 INIT_LIST_HEAD(&ring->gpu_write_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +0200978 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000979
Chris Wilsonb259f672011-03-29 13:19:09 +0100980 init_waitqueue_head(&ring->irq_queue);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700981
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800982 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +0100983 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800984 if (ret)
985 return ret;
986 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700987
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800988 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700989 if (obj == NULL) {
990 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800991 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +0100992 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700993 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700994
Chris Wilson05394f32010-11-08 19:18:58 +0000995 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800996
Daniel Vetter75e9e912010-11-04 17:11:09 +0100997 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +0100998 if (ret)
999 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001000
Chris Wilson3eef8912012-06-04 17:05:40 +01001001 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1002 if (ret)
1003 goto err_unpin;
1004
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001005 ring->virtual_start = ioremap_wc(dev->agp->base + obj->gtt_offset,
1006 ring->size);
1007 if (ring->virtual_start == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001008 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001009 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001010 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001011 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001012
Chris Wilson78501ea2010-10-27 12:18:21 +01001013 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001014 if (ret)
1015 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001016
Chris Wilson55249ba2010-12-22 14:04:47 +00001017 /* Workaround an erratum on the i830 which causes a hang if
1018 * the TAIL pointer points to within the last 2 cachelines
1019 * of the buffer.
1020 */
1021 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001022 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001023 ring->effective_size -= 128;
1024
Chris Wilsonc584fe42010-10-29 18:15:52 +01001025 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001026
1027err_unmap:
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001028 iounmap(ring->virtual_start);
Chris Wilsondd785e32010-08-07 11:01:34 +01001029err_unpin:
1030 i915_gem_object_unpin(obj);
1031err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001032 drm_gem_object_unreference(&obj->base);
1033 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001034err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001035 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001036 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001037}
1038
Chris Wilson78501ea2010-10-27 12:18:21 +01001039void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001040{
Chris Wilson33626e62010-10-29 16:18:36 +01001041 struct drm_i915_private *dev_priv;
1042 int ret;
1043
Chris Wilson05394f32010-11-08 19:18:58 +00001044 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001045 return;
1046
Chris Wilson33626e62010-10-29 16:18:36 +01001047 /* Disable the ring buffer. The ring must be idle at this point */
1048 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001049 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001050 if (ret)
1051 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1052 ring->name, ret);
1053
Chris Wilson33626e62010-10-29 16:18:36 +01001054 I915_WRITE_CTL(ring, 0);
1055
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001056 iounmap(ring->virtual_start);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001057
Chris Wilson05394f32010-11-08 19:18:58 +00001058 i915_gem_object_unpin(ring->obj);
1059 drm_gem_object_unreference(&ring->obj->base);
1060 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001061
Zou Nan hai8d192152010-11-02 16:31:01 +08001062 if (ring->cleanup)
1063 ring->cleanup(ring);
1064
Chris Wilson78501ea2010-10-27 12:18:21 +01001065 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001066}
1067
Chris Wilson78501ea2010-10-27 12:18:21 +01001068static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001069{
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001070 uint32_t __iomem *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001071 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001072
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001073 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001074 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001075 if (ret)
1076 return ret;
1077 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001078
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001079 virt = ring->virtual_start + ring->tail;
1080 rem /= 4;
1081 while (rem--)
1082 iowrite32(MI_NOOP, virt++);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001083
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001084 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001085 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001086
1087 return 0;
1088}
1089
Chris Wilsona71d8d92012-02-15 11:25:36 +00001090static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1091{
1092 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1093 bool was_interruptible;
1094 int ret;
1095
1096 /* XXX As we have not yet audited all the paths to check that
1097 * they are ready for ERESTARTSYS from intel_ring_begin, do not
1098 * allow us to be interruptible by a signal.
1099 */
1100 was_interruptible = dev_priv->mm.interruptible;
1101 dev_priv->mm.interruptible = false;
1102
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001103 ret = i915_wait_request(ring, seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001104
1105 dev_priv->mm.interruptible = was_interruptible;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001106 if (!ret)
1107 i915_gem_retire_requests_ring(ring);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001108
1109 return ret;
1110}
1111
1112static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1113{
1114 struct drm_i915_gem_request *request;
1115 u32 seqno = 0;
1116 int ret;
1117
1118 i915_gem_retire_requests_ring(ring);
1119
1120 if (ring->last_retired_head != -1) {
1121 ring->head = ring->last_retired_head;
1122 ring->last_retired_head = -1;
1123 ring->space = ring_space(ring);
1124 if (ring->space >= n)
1125 return 0;
1126 }
1127
1128 list_for_each_entry(request, &ring->request_list, list) {
1129 int space;
1130
1131 if (request->tail == -1)
1132 continue;
1133
1134 space = request->tail - (ring->tail + 8);
1135 if (space < 0)
1136 space += ring->size;
1137 if (space >= n) {
1138 seqno = request->seqno;
1139 break;
1140 }
1141
1142 /* Consume this request in case we need more space than
1143 * is available and so need to prevent a race between
1144 * updating last_retired_head and direct reads of
1145 * I915_RING_HEAD. It also provides a nice sanity check.
1146 */
1147 request->tail = -1;
1148 }
1149
1150 if (seqno == 0)
1151 return -ENOSPC;
1152
1153 ret = intel_ring_wait_seqno(ring, seqno);
1154 if (ret)
1155 return ret;
1156
1157 if (WARN_ON(ring->last_retired_head == -1))
1158 return -ENOSPC;
1159
1160 ring->head = ring->last_retired_head;
1161 ring->last_retired_head = -1;
1162 ring->space = ring_space(ring);
1163 if (WARN_ON(ring->space < n))
1164 return -ENOSPC;
1165
1166 return 0;
1167}
1168
Chris Wilson78501ea2010-10-27 12:18:21 +01001169int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001170{
Chris Wilson78501ea2010-10-27 12:18:21 +01001171 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001172 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001173 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001174 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001175
Chris Wilsona71d8d92012-02-15 11:25:36 +00001176 ret = intel_ring_wait_request(ring, n);
1177 if (ret != -ENOSPC)
1178 return ret;
1179
Chris Wilsondb53a302011-02-03 11:57:46 +00001180 trace_i915_ring_wait_begin(ring);
Daniel Vetter63ed2cb2012-04-23 16:50:50 +02001181 /* With GEM the hangcheck timer should kick us out of the loop,
1182 * leaving it early runs the risk of corrupting GEM state (due
1183 * to running on almost untested codepaths). But on resume
1184 * timers don't work yet, so prevent a complete hang in that
1185 * case by choosing an insanely large timeout. */
1186 end = jiffies + 60 * HZ;
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001187
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001188 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001189 ring->head = I915_READ_HEAD(ring);
1190 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001191 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001192 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001193 return 0;
1194 }
1195
1196 if (dev->primary->master) {
1197 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1198 if (master_priv->sarea_priv)
1199 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1200 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001201
Chris Wilsone60a0b12010-10-13 10:09:14 +01001202 msleep(1);
Chris Wilsonf4e0b292010-10-29 21:06:16 +01001203 if (atomic_read(&dev_priv->mm.wedged))
1204 return -EAGAIN;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001205 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001206 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001207 return -EBUSY;
1208}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001209
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001210int intel_ring_begin(struct intel_ring_buffer *ring,
1211 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001212{
Chris Wilson21dd3732011-01-26 15:55:56 +00001213 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001214 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001215 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001216
Chris Wilson21dd3732011-01-26 15:55:56 +00001217 if (unlikely(atomic_read(&dev_priv->mm.wedged)))
1218 return -EIO;
1219
Chris Wilson55249ba2010-12-22 14:04:47 +00001220 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001221 ret = intel_wrap_ring_buffer(ring);
1222 if (unlikely(ret))
1223 return ret;
1224 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001225
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001226 if (unlikely(ring->space < n)) {
1227 ret = intel_wait_ring_buffer(ring, n);
1228 if (unlikely(ret))
1229 return ret;
1230 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001231
1232 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001233 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001234}
1235
Chris Wilson78501ea2010-10-27 12:18:21 +01001236void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001237{
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001238 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1239
Chris Wilsond97ed332010-08-04 15:18:13 +01001240 ring->tail &= ring->size - 1;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001241 if (dev_priv->stop_rings & intel_ring_flag(ring))
1242 return;
Chris Wilson78501ea2010-10-27 12:18:21 +01001243 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001244}
1245
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001246
Chris Wilson78501ea2010-10-27 12:18:21 +01001247static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001248 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001249{
Akshay Joshi0206e352011-08-16 15:34:10 -04001250 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001251
1252 /* Every tail move must follow the sequence below */
Akshay Joshi0206e352011-08-16 15:34:10 -04001253 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1254 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1255 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE);
1256 I915_WRITE(GEN6_BSD_RNCID, 0x0);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001257
Akshay Joshi0206e352011-08-16 15:34:10 -04001258 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
1259 GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0,
1260 50))
1261 DRM_ERROR("timed out waiting for IDLE Indicator\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001262
Akshay Joshi0206e352011-08-16 15:34:10 -04001263 I915_WRITE_TAIL(ring, value);
1264 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1265 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1266 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001267}
1268
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001269static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001270 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001271{
Chris Wilson71a77e02011-02-02 12:13:49 +00001272 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001273 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001274
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001275 ret = intel_ring_begin(ring, 4);
1276 if (ret)
1277 return ret;
1278
Chris Wilson71a77e02011-02-02 12:13:49 +00001279 cmd = MI_FLUSH_DW;
1280 if (invalidate & I915_GEM_GPU_DOMAINS)
1281 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1282 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001283 intel_ring_emit(ring, 0);
1284 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001285 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001286 intel_ring_advance(ring);
1287 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001288}
1289
1290static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001291gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001292 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001293{
Akshay Joshi0206e352011-08-16 15:34:10 -04001294 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001295
Akshay Joshi0206e352011-08-16 15:34:10 -04001296 ret = intel_ring_begin(ring, 2);
1297 if (ret)
1298 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001299
Akshay Joshi0206e352011-08-16 15:34:10 -04001300 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1301 /* bit0-7 is the length on GEN6+ */
1302 intel_ring_emit(ring, offset);
1303 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001304
Akshay Joshi0206e352011-08-16 15:34:10 -04001305 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001306}
1307
Chris Wilson549f7362010-10-19 11:19:32 +01001308/* Blitter support (SandyBridge+) */
1309
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001310static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001311 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001312{
Chris Wilson71a77e02011-02-02 12:13:49 +00001313 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001314 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001315
Daniel Vetter6a233c72011-12-14 13:57:07 +01001316 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001317 if (ret)
1318 return ret;
1319
Chris Wilson71a77e02011-02-02 12:13:49 +00001320 cmd = MI_FLUSH_DW;
1321 if (invalidate & I915_GEM_DOMAIN_RENDER)
1322 cmd |= MI_INVALIDATE_TLB;
1323 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001324 intel_ring_emit(ring, 0);
1325 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001326 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001327 intel_ring_advance(ring);
1328 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001329}
1330
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001331int intel_init_render_ring_buffer(struct drm_device *dev)
1332{
1333 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001334 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001335
Daniel Vetter59465b52012-04-11 22:12:48 +02001336 ring->name = "render ring";
1337 ring->id = RCS;
1338 ring->mmio_base = RENDER_RING_BASE;
1339
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001340 if (INTEL_INFO(dev)->gen >= 6) {
1341 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001342 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001343 ring->irq_get = gen6_ring_get_irq;
1344 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001345 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001346 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001347 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001348 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1349 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1350 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1351 ring->signal_mbox[0] = GEN6_VRSYNC;
1352 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001353 } else if (IS_GEN5(dev)) {
1354 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001355 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001356 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001357 ring->irq_get = gen5_ring_get_irq;
1358 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001359 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001360 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001361 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001362 if (INTEL_INFO(dev)->gen < 4)
1363 ring->flush = gen2_render_ring_flush;
1364 else
1365 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001366 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001367 if (IS_GEN2(dev)) {
1368 ring->irq_get = i8xx_ring_get_irq;
1369 ring->irq_put = i8xx_ring_put_irq;
1370 } else {
1371 ring->irq_get = i9xx_ring_get_irq;
1372 ring->irq_put = i9xx_ring_put_irq;
1373 }
Daniel Vettere3670312012-04-11 22:12:53 +02001374 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001375 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001376 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001377 if (INTEL_INFO(dev)->gen >= 6)
1378 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1379 else if (INTEL_INFO(dev)->gen >= 4)
1380 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1381 else if (IS_I830(dev) || IS_845G(dev))
1382 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1383 else
1384 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001385 ring->init = init_render_ring;
1386 ring->cleanup = render_ring_cleanup;
1387
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001388
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001389 if (!I915_NEED_GFX_HWS(dev)) {
1390 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1391 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1392 }
1393
1394 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001395}
1396
Chris Wilsone8616b62011-01-20 09:57:11 +00001397int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1398{
1399 drm_i915_private_t *dev_priv = dev->dev_private;
1400 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1401
Daniel Vetter59465b52012-04-11 22:12:48 +02001402 ring->name = "render ring";
1403 ring->id = RCS;
1404 ring->mmio_base = RENDER_RING_BASE;
1405
Chris Wilsone8616b62011-01-20 09:57:11 +00001406 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001407 /* non-kms not supported on gen6+ */
1408 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001409 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001410
1411 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1412 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1413 * the special gen5 functions. */
1414 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001415 if (INTEL_INFO(dev)->gen < 4)
1416 ring->flush = gen2_render_ring_flush;
1417 else
1418 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001419 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001420 if (IS_GEN2(dev)) {
1421 ring->irq_get = i8xx_ring_get_irq;
1422 ring->irq_put = i8xx_ring_put_irq;
1423 } else {
1424 ring->irq_get = i9xx_ring_get_irq;
1425 ring->irq_put = i9xx_ring_put_irq;
1426 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001427 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001428 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001429 if (INTEL_INFO(dev)->gen >= 4)
1430 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1431 else if (IS_I830(dev) || IS_845G(dev))
1432 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1433 else
1434 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001435 ring->init = init_render_ring;
1436 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001437
Keith Packardf3234702011-07-22 10:44:39 -07001438 if (!I915_NEED_GFX_HWS(dev))
1439 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1440
Chris Wilsone8616b62011-01-20 09:57:11 +00001441 ring->dev = dev;
1442 INIT_LIST_HEAD(&ring->active_list);
1443 INIT_LIST_HEAD(&ring->request_list);
1444 INIT_LIST_HEAD(&ring->gpu_write_list);
1445
1446 ring->size = size;
1447 ring->effective_size = ring->size;
1448 if (IS_I830(ring->dev))
1449 ring->effective_size -= 128;
1450
Daniel Vetter4225d0f2012-04-26 23:28:16 +02001451 ring->virtual_start = ioremap_wc(start, size);
1452 if (ring->virtual_start == NULL) {
Chris Wilsone8616b62011-01-20 09:57:11 +00001453 DRM_ERROR("can not ioremap virtual address for"
1454 " ring buffer\n");
1455 return -ENOMEM;
1456 }
1457
Chris Wilsone8616b62011-01-20 09:57:11 +00001458 return 0;
1459}
1460
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001461int intel_init_bsd_ring_buffer(struct drm_device *dev)
1462{
1463 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001464 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001465
Daniel Vetter58fa3832012-04-11 22:12:49 +02001466 ring->name = "bsd ring";
1467 ring->id = VCS;
1468
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001469 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001470 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1471 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001472 /* gen6 bsd needs a special wa for tail updates */
1473 if (IS_GEN6(dev))
1474 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001475 ring->flush = gen6_ring_flush;
1476 ring->add_request = gen6_add_request;
1477 ring->get_seqno = gen6_ring_get_seqno;
1478 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1479 ring->irq_get = gen6_ring_get_irq;
1480 ring->irq_put = gen6_ring_put_irq;
1481 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001482 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001483 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1484 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1485 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1486 ring->signal_mbox[0] = GEN6_RVSYNC;
1487 ring->signal_mbox[1] = GEN6_BVSYNC;
1488 } else {
1489 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001490 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001491 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001492 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001493 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001494 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001495 ring->irq_get = gen5_ring_get_irq;
1496 ring->irq_put = gen5_ring_put_irq;
1497 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001498 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001499 ring->irq_get = i9xx_ring_get_irq;
1500 ring->irq_put = i9xx_ring_put_irq;
1501 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001502 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001503 }
1504 ring->init = init_ring_common;
1505
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001506
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001507 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001508}
Chris Wilson549f7362010-10-19 11:19:32 +01001509
1510int intel_init_blt_ring_buffer(struct drm_device *dev)
1511{
1512 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001513 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001514
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001515 ring->name = "blitter ring";
1516 ring->id = BCS;
1517
1518 ring->mmio_base = BLT_RING_BASE;
1519 ring->write_tail = ring_write_tail;
1520 ring->flush = blt_ring_flush;
1521 ring->add_request = gen6_add_request;
1522 ring->get_seqno = gen6_ring_get_seqno;
1523 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1524 ring->irq_get = gen6_ring_get_irq;
1525 ring->irq_put = gen6_ring_put_irq;
1526 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001527 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001528 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1529 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1530 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1531 ring->signal_mbox[0] = GEN6_RBSYNC;
1532 ring->signal_mbox[1] = GEN6_VBSYNC;
1533 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001534
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001535 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001536}