blob: f797613e6c4a74e62b02a2941331b6853c9a8a67 [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 Wilson6f392d52010-08-07 11:01:22 +010087 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000088 int ret;
Chris Wilson6f392d52010-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 Vetter6b26c862012-04-24 14:04:12 +0200417 if (INTEL_INFO(dev)->gen >= 6)
418 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
Ben Widawsky84f9f932011-12-12 19:21:58 -0800419
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800420 return ret;
421}
422
Chris Wilsonc6df5412010-12-15 09:56:50 +0000423static void render_ring_cleanup(struct intel_ring_buffer *ring)
424{
425 if (!ring->private)
426 return;
427
428 cleanup_pipe_control(ring);
429}
430
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000431static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700432update_mboxes(struct intel_ring_buffer *ring,
433 u32 seqno,
434 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000435{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700436 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
437 MI_SEMAPHORE_GLOBAL_GTT |
438 MI_SEMAPHORE_REGISTER |
439 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000440 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700441 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000442}
443
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700444/**
445 * gen6_add_request - Update the semaphore mailbox registers
446 *
447 * @ring - ring that is adding a request
448 * @seqno - return seqno stuck into the ring
449 *
450 * Update the mailbox registers in the *other* rings with the current seqno.
451 * This acts like a signal in the canonical semaphore.
452 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000453static int
454gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700455 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000456{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700457 u32 mbox1_reg;
458 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000459 int ret;
460
461 ret = intel_ring_begin(ring, 10);
462 if (ret)
463 return ret;
464
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700465 mbox1_reg = ring->signal_mbox[0];
466 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000467
Daniel Vetter53d227f2012-01-25 16:32:49 +0100468 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700469
470 update_mboxes(ring, *seqno, mbox1_reg);
471 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000472 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
473 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700474 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000475 intel_ring_emit(ring, MI_USER_INTERRUPT);
476 intel_ring_advance(ring);
477
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000478 return 0;
479}
480
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700481/**
482 * intel_ring_sync - sync the waiter to the signaller on seqno
483 *
484 * @waiter - ring that is waiting
485 * @signaller - ring which has, or will signal
486 * @seqno - seqno which the waiter will block on
487 */
488static int
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200489gen6_ring_sync(struct intel_ring_buffer *waiter,
490 struct intel_ring_buffer *signaller,
491 u32 seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000492{
493 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700494 u32 dw1 = MI_SEMAPHORE_MBOX |
495 MI_SEMAPHORE_COMPARE |
496 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000497
Ben Widawsky1500f7e2012-04-11 11:18:21 -0700498 /* Throughout all of the GEM code, seqno passed implies our current
499 * seqno is >= the last seqno executed. However for hardware the
500 * comparison is strictly greater than.
501 */
502 seqno -= 1;
503
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200504 WARN_ON(signaller->semaphore_register[waiter->id] ==
505 MI_SEMAPHORE_SYNC_INVALID);
506
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700507 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000508 if (ret)
509 return ret;
510
Daniel Vetter686cb5f2012-04-11 22:12:52 +0200511 intel_ring_emit(waiter,
512 dw1 | signaller->semaphore_register[waiter->id]);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700513 intel_ring_emit(waiter, seqno);
514 intel_ring_emit(waiter, 0);
515 intel_ring_emit(waiter, MI_NOOP);
516 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000517
518 return 0;
519}
520
Chris Wilsonc6df5412010-12-15 09:56:50 +0000521#define PIPE_CONTROL_FLUSH(ring__, addr__) \
522do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200523 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
524 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000525 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
526 intel_ring_emit(ring__, 0); \
527 intel_ring_emit(ring__, 0); \
528} while (0)
529
530static int
531pc_render_add_request(struct intel_ring_buffer *ring,
532 u32 *result)
533{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100534 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000535 struct pipe_control *pc = ring->private;
536 u32 scratch_addr = pc->gtt_offset + 128;
537 int ret;
538
539 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
540 * incoherent with writes to memory, i.e. completely fubar,
541 * so we need to use PIPE_NOTIFY instead.
542 *
543 * However, we also need to workaround the qword write
544 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
545 * memory before requesting an interrupt.
546 */
547 ret = intel_ring_begin(ring, 32);
548 if (ret)
549 return ret;
550
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200551 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200552 PIPE_CONTROL_WRITE_FLUSH |
553 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000554 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
555 intel_ring_emit(ring, seqno);
556 intel_ring_emit(ring, 0);
557 PIPE_CONTROL_FLUSH(ring, scratch_addr);
558 scratch_addr += 128; /* write to separate cachelines */
559 PIPE_CONTROL_FLUSH(ring, scratch_addr);
560 scratch_addr += 128;
561 PIPE_CONTROL_FLUSH(ring, scratch_addr);
562 scratch_addr += 128;
563 PIPE_CONTROL_FLUSH(ring, scratch_addr);
564 scratch_addr += 128;
565 PIPE_CONTROL_FLUSH(ring, scratch_addr);
566 scratch_addr += 128;
567 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000568
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200569 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200570 PIPE_CONTROL_WRITE_FLUSH |
571 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000572 PIPE_CONTROL_NOTIFY);
573 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
574 intel_ring_emit(ring, seqno);
575 intel_ring_emit(ring, 0);
576 intel_ring_advance(ring);
577
578 *result = seqno;
579 return 0;
580}
581
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800582static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100583gen6_ring_get_seqno(struct intel_ring_buffer *ring)
584{
585 struct drm_device *dev = ring->dev;
586
587 /* Workaround to force correct ordering between irq and seqno writes on
588 * ivb (and maybe also on snb) by reading from a CS register (like
589 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200590 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100591 intel_ring_get_active_head(ring);
592 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
593}
594
595static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000596ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800597{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000598 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
599}
600
Chris Wilsonc6df5412010-12-15 09:56:50 +0000601static u32
602pc_render_get_seqno(struct intel_ring_buffer *ring)
603{
604 struct pipe_control *pc = ring->private;
605 return pc->cpu_page[0];
606}
607
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000608static bool
Daniel Vettere48d8632012-04-11 22:12:54 +0200609gen5_ring_get_irq(struct intel_ring_buffer *ring)
610{
611 struct drm_device *dev = ring->dev;
612 drm_i915_private_t *dev_priv = dev->dev_private;
613
614 if (!dev->irq_enabled)
615 return false;
616
617 spin_lock(&ring->irq_lock);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200618 if (ring->irq_refcount++ == 0) {
619 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
620 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
621 POSTING_READ(GTIMR);
622 }
Daniel Vettere48d8632012-04-11 22:12:54 +0200623 spin_unlock(&ring->irq_lock);
624
625 return true;
626}
627
628static void
629gen5_ring_put_irq(struct intel_ring_buffer *ring)
630{
631 struct drm_device *dev = ring->dev;
632 drm_i915_private_t *dev_priv = dev->dev_private;
633
634 spin_lock(&ring->irq_lock);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200635 if (--ring->irq_refcount == 0) {
636 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
637 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
638 POSTING_READ(GTIMR);
639 }
Daniel Vettere48d8632012-04-11 22:12:54 +0200640 spin_unlock(&ring->irq_lock);
641}
642
643static bool
Daniel Vettere3670312012-04-11 22:12:53 +0200644i9xx_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700645{
Chris Wilson78501ea2010-10-27 12:18:21 +0100646 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000647 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700648
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000649 if (!dev->irq_enabled)
650 return false;
651
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000652 spin_lock(&ring->irq_lock);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200653 if (ring->irq_refcount++ == 0) {
654 dev_priv->irq_mask &= ~ring->irq_enable_mask;
655 I915_WRITE(IMR, dev_priv->irq_mask);
656 POSTING_READ(IMR);
657 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000658 spin_unlock(&ring->irq_lock);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000659
660 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700661}
662
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800663static void
Daniel Vettere3670312012-04-11 22:12:53 +0200664i9xx_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700665{
Chris Wilson78501ea2010-10-27 12:18:21 +0100666 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000667 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700668
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000669 spin_lock(&ring->irq_lock);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200670 if (--ring->irq_refcount == 0) {
671 dev_priv->irq_mask |= ring->irq_enable_mask;
672 I915_WRITE(IMR, dev_priv->irq_mask);
673 POSTING_READ(IMR);
674 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000675 spin_unlock(&ring->irq_lock);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700676}
677
Chris Wilsonc2798b12012-04-22 21:13:57 +0100678static bool
679i8xx_ring_get_irq(struct intel_ring_buffer *ring)
680{
681 struct drm_device *dev = ring->dev;
682 drm_i915_private_t *dev_priv = dev->dev_private;
683
684 if (!dev->irq_enabled)
685 return false;
686
687 spin_lock(&ring->irq_lock);
688 if (ring->irq_refcount++ == 0) {
689 dev_priv->irq_mask &= ~ring->irq_enable_mask;
690 I915_WRITE16(IMR, dev_priv->irq_mask);
691 POSTING_READ16(IMR);
692 }
693 spin_unlock(&ring->irq_lock);
694
695 return true;
696}
697
698static void
699i8xx_ring_put_irq(struct intel_ring_buffer *ring)
700{
701 struct drm_device *dev = ring->dev;
702 drm_i915_private_t *dev_priv = dev->dev_private;
703
704 spin_lock(&ring->irq_lock);
705 if (--ring->irq_refcount == 0) {
706 dev_priv->irq_mask |= ring->irq_enable_mask;
707 I915_WRITE16(IMR, dev_priv->irq_mask);
708 POSTING_READ16(IMR);
709 }
710 spin_unlock(&ring->irq_lock);
711}
712
Chris Wilson78501ea2010-10-27 12:18:21 +0100713void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800714{
Eric Anholt45930102011-05-06 17:12:35 -0700715 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100716 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700717 u32 mmio = 0;
718
719 /* The ring status page addresses are no longer next to the rest of
720 * the ring registers as of gen7.
721 */
722 if (IS_GEN7(dev)) {
723 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100724 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700725 mmio = RENDER_HWS_PGA_GEN7;
726 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100727 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700728 mmio = BLT_HWS_PGA_GEN7;
729 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100730 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700731 mmio = BSD_HWS_PGA_GEN7;
732 break;
733 }
734 } else if (IS_GEN6(ring->dev)) {
735 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
736 } else {
737 mmio = RING_HWS_PGA(ring->mmio_base);
738 }
739
Chris Wilson78501ea2010-10-27 12:18:21 +0100740 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
741 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800742}
743
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000744static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100745bsd_ring_flush(struct intel_ring_buffer *ring,
746 u32 invalidate_domains,
747 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800748{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000749 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000750
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000751 ret = intel_ring_begin(ring, 2);
752 if (ret)
753 return ret;
754
755 intel_ring_emit(ring, MI_FLUSH);
756 intel_ring_emit(ring, MI_NOOP);
757 intel_ring_advance(ring);
758 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800759}
760
Chris Wilson3cce4692010-10-27 16:11:02 +0100761static int
Daniel Vetter8620a3a2012-04-11 22:12:57 +0200762i9xx_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100763 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800764{
765 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100766 int ret;
767
768 ret = intel_ring_begin(ring, 4);
769 if (ret)
770 return ret;
Chris Wilson6f392d52010-08-07 11:01:22 +0100771
Daniel Vetter53d227f2012-01-25 16:32:49 +0100772 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d52010-08-07 11:01:22 +0100773
Chris Wilson3cce4692010-10-27 16:11:02 +0100774 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
775 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
776 intel_ring_emit(ring, seqno);
777 intel_ring_emit(ring, MI_USER_INTERRUPT);
778 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800779
Chris Wilson3cce4692010-10-27 16:11:02 +0100780 *result = seqno;
781 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800782}
783
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000784static bool
Ben Widawsky25c06302012-03-29 19:11:27 -0700785gen6_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000786{
787 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000788 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000789
790 if (!dev->irq_enabled)
791 return false;
792
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100793 /* It looks like we need to prevent the gt from suspending while waiting
794 * for an notifiy irq, otherwise irqs seem to get lost on at least the
795 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100796 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100797
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000798 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000799 if (ring->irq_refcount++ == 0) {
Daniel Vetter6a848cc2012-04-11 22:12:46 +0200800 I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200801 dev_priv->gt_irq_mask &= ~ring->irq_enable_mask;
802 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
803 POSTING_READ(GTIMR);
Chris Wilson0f468322011-01-04 17:35:21 +0000804 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000805 spin_unlock(&ring->irq_lock);
Chris Wilson0f468322011-01-04 17:35:21 +0000806
807 return true;
808}
809
810static void
Ben Widawsky25c06302012-03-29 19:11:27 -0700811gen6_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson0f468322011-01-04 17:35:21 +0000812{
813 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000814 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000815
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000816 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000817 if (--ring->irq_refcount == 0) {
Daniel Vetter6a848cc2012-04-11 22:12:46 +0200818 I915_WRITE_IMR(ring, ~0);
Daniel Vetterf637fde2012-04-11 22:12:59 +0200819 dev_priv->gt_irq_mask |= ring->irq_enable_mask;
820 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
821 POSTING_READ(GTIMR);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000822 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000823 spin_unlock(&ring->irq_lock);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100824
Daniel Vetter99ffa162012-01-25 14:04:00 +0100825 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000826}
827
Zou Nan haid1b851f2010-05-21 09:08:57 +0800828static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200829i965_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800830{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100831 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100832
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100833 ret = intel_ring_begin(ring, 2);
834 if (ret)
835 return ret;
836
Chris Wilson78501ea2010-10-27 12:18:21 +0100837 intel_ring_emit(ring,
Chris Wilson65f56872012-04-17 16:38:12 +0100838 MI_BATCH_BUFFER_START |
839 MI_BATCH_GTT |
Chris Wilson78501ea2010-10-27 12:18:21 +0100840 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000841 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100842 intel_ring_advance(ring);
843
Zou Nan haid1b851f2010-05-21 09:08:57 +0800844 return 0;
845}
846
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800847static int
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200848i830_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000849 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700850{
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000851 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700852
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200853 ret = intel_ring_begin(ring, 4);
854 if (ret)
855 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700856
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200857 intel_ring_emit(ring, MI_BATCH_BUFFER);
858 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
859 intel_ring_emit(ring, offset + len - 8);
860 intel_ring_emit(ring, 0);
861 intel_ring_advance(ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100862
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200863 return 0;
864}
865
866static int
867i915_dispatch_execbuffer(struct intel_ring_buffer *ring,
868 u32 offset, u32 len)
869{
870 int ret;
871
872 ret = intel_ring_begin(ring, 2);
873 if (ret)
874 return ret;
875
Chris Wilson65f56872012-04-17 16:38:12 +0100876 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
Daniel Vetterfb3256d2012-04-11 22:12:56 +0200877 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000878 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700879
Eric Anholt62fdfea2010-05-21 13:26:39 -0700880 return 0;
881}
882
Chris Wilson78501ea2010-10-27 12:18:21 +0100883static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700884{
Chris Wilson78501ea2010-10-27 12:18:21 +0100885 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000886 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700887
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800888 obj = ring->status_page.obj;
889 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700890 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700891
Chris Wilson05394f32010-11-08 19:18:58 +0000892 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700893 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000894 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800895 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700896
897 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700898}
899
Chris Wilson78501ea2010-10-27 12:18:21 +0100900static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700901{
Chris Wilson78501ea2010-10-27 12:18:21 +0100902 struct drm_device *dev = ring->dev;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700903 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000904 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700905 int ret;
906
Eric Anholt62fdfea2010-05-21 13:26:39 -0700907 obj = i915_gem_alloc_object(dev, 4096);
908 if (obj == NULL) {
909 DRM_ERROR("Failed to allocate status page\n");
910 ret = -ENOMEM;
911 goto err;
912 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100913
914 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700915
Daniel Vetter75e9e912010-11-04 17:11:09 +0100916 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700917 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700918 goto err_unref;
919 }
920
Chris Wilson05394f32010-11-08 19:18:58 +0000921 ring->status_page.gfx_addr = obj->gtt_offset;
922 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800923 if (ring->status_page.page_addr == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700924 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700925 goto err_unpin;
926 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800927 ring->status_page.obj = obj;
928 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700929
Chris Wilson78501ea2010-10-27 12:18:21 +0100930 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800931 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
932 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700933
934 return 0;
935
936err_unpin:
937 i915_gem_object_unpin(obj);
938err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000939 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700940err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800941 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700942}
943
Ben Widawskyc43b5632012-04-16 14:07:40 -0700944static int intel_init_ring_buffer(struct drm_device *dev,
945 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700946{
Chris Wilson05394f32010-11-08 19:18:58 +0000947 struct drm_i915_gem_object *obj;
Chris Wilsondd785e32010-08-07 11:01:34 +0100948 int ret;
949
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800950 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +0100951 INIT_LIST_HEAD(&ring->active_list);
952 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +0100953 INIT_LIST_HEAD(&ring->gpu_write_list);
Daniel Vetterdfc9ef22012-04-11 22:12:47 +0200954 ring->size = 32 * PAGE_SIZE;
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000955
Chris Wilsonb259f672011-03-29 13:19:09 +0100956 init_waitqueue_head(&ring->irq_queue);
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000957 spin_lock_init(&ring->irq_lock);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700958
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800959 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +0100960 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800961 if (ret)
962 return ret;
963 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700964
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800965 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700966 if (obj == NULL) {
967 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800968 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +0100969 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700970 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700971
Chris Wilson05394f32010-11-08 19:18:58 +0000972 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800973
Daniel Vetter75e9e912010-11-04 17:11:09 +0100974 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +0100975 if (ret)
976 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700977
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800978 ring->map.size = ring->size;
Chris Wilson05394f32010-11-08 19:18:58 +0000979 ring->map.offset = dev->agp->base + obj->gtt_offset;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700980 ring->map.type = 0;
981 ring->map.flags = 0;
982 ring->map.mtrr = 0;
983
984 drm_core_ioremap_wc(&ring->map, dev);
985 if (ring->map.handle == NULL) {
986 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800987 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +0100988 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700989 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800990
Eric Anholt62fdfea2010-05-21 13:26:39 -0700991 ring->virtual_start = ring->map.handle;
Chris Wilson78501ea2010-10-27 12:18:21 +0100992 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +0100993 if (ret)
994 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700995
Chris Wilson55249ba2010-12-22 14:04:47 +0000996 /* Workaround an erratum on the i830 which causes a hang if
997 * the TAIL pointer points to within the last 2 cachelines
998 * of the buffer.
999 */
1000 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001001 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001002 ring->effective_size -= 128;
1003
Chris Wilsonc584fe42010-10-29 18:15:52 +01001004 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001005
1006err_unmap:
1007 drm_core_ioremapfree(&ring->map, dev);
1008err_unpin:
1009 i915_gem_object_unpin(obj);
1010err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001011 drm_gem_object_unreference(&obj->base);
1012 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001013err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001014 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001015 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001016}
1017
Chris Wilson78501ea2010-10-27 12:18:21 +01001018void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001019{
Chris Wilson33626e62010-10-29 16:18:36 +01001020 struct drm_i915_private *dev_priv;
1021 int ret;
1022
Chris Wilson05394f32010-11-08 19:18:58 +00001023 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001024 return;
1025
Chris Wilson33626e62010-10-29 16:18:36 +01001026 /* Disable the ring buffer. The ring must be idle at this point */
1027 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001028 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001029 if (ret)
1030 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1031 ring->name, ret);
1032
Chris Wilson33626e62010-10-29 16:18:36 +01001033 I915_WRITE_CTL(ring, 0);
1034
Chris Wilson78501ea2010-10-27 12:18:21 +01001035 drm_core_ioremapfree(&ring->map, ring->dev);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001036
Chris Wilson05394f32010-11-08 19:18:58 +00001037 i915_gem_object_unpin(ring->obj);
1038 drm_gem_object_unreference(&ring->obj->base);
1039 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001040
Zou Nan hai8d192152010-11-02 16:31:01 +08001041 if (ring->cleanup)
1042 ring->cleanup(ring);
1043
Chris Wilson78501ea2010-10-27 12:18:21 +01001044 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001045}
1046
Chris Wilson78501ea2010-10-27 12:18:21 +01001047static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001048{
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001049 unsigned int *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001050 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001051
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001052 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001053 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001054 if (ret)
1055 return ret;
1056 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001057
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001058 virt = (unsigned int *)(ring->virtual_start + ring->tail);
Chris Wilson1741dd42010-08-04 15:18:12 +01001059 rem /= 8;
1060 while (rem--) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001061 *virt++ = MI_NOOP;
Chris Wilson1741dd42010-08-04 15:18:12 +01001062 *virt++ = MI_NOOP;
1063 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001064
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001065 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001066 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001067
1068 return 0;
1069}
1070
Chris Wilsona71d8d92012-02-15 11:25:36 +00001071static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1072{
1073 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1074 bool was_interruptible;
1075 int ret;
1076
1077 /* XXX As we have not yet audited all the paths to check that
1078 * they are ready for ERESTARTSYS from intel_ring_begin, do not
1079 * allow us to be interruptible by a signal.
1080 */
1081 was_interruptible = dev_priv->mm.interruptible;
1082 dev_priv->mm.interruptible = false;
1083
1084 ret = i915_wait_request(ring, seqno, true);
1085
1086 dev_priv->mm.interruptible = was_interruptible;
1087
1088 return ret;
1089}
1090
1091static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1092{
1093 struct drm_i915_gem_request *request;
1094 u32 seqno = 0;
1095 int ret;
1096
1097 i915_gem_retire_requests_ring(ring);
1098
1099 if (ring->last_retired_head != -1) {
1100 ring->head = ring->last_retired_head;
1101 ring->last_retired_head = -1;
1102 ring->space = ring_space(ring);
1103 if (ring->space >= n)
1104 return 0;
1105 }
1106
1107 list_for_each_entry(request, &ring->request_list, list) {
1108 int space;
1109
1110 if (request->tail == -1)
1111 continue;
1112
1113 space = request->tail - (ring->tail + 8);
1114 if (space < 0)
1115 space += ring->size;
1116 if (space >= n) {
1117 seqno = request->seqno;
1118 break;
1119 }
1120
1121 /* Consume this request in case we need more space than
1122 * is available and so need to prevent a race between
1123 * updating last_retired_head and direct reads of
1124 * I915_RING_HEAD. It also provides a nice sanity check.
1125 */
1126 request->tail = -1;
1127 }
1128
1129 if (seqno == 0)
1130 return -ENOSPC;
1131
1132 ret = intel_ring_wait_seqno(ring, seqno);
1133 if (ret)
1134 return ret;
1135
1136 if (WARN_ON(ring->last_retired_head == -1))
1137 return -ENOSPC;
1138
1139 ring->head = ring->last_retired_head;
1140 ring->last_retired_head = -1;
1141 ring->space = ring_space(ring);
1142 if (WARN_ON(ring->space < n))
1143 return -ENOSPC;
1144
1145 return 0;
1146}
1147
Chris Wilson78501ea2010-10-27 12:18:21 +01001148int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001149{
Chris Wilson78501ea2010-10-27 12:18:21 +01001150 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001151 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001152 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001153 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001154
Chris Wilsona71d8d92012-02-15 11:25:36 +00001155 ret = intel_ring_wait_request(ring, n);
1156 if (ret != -ENOSPC)
1157 return ret;
1158
Chris Wilsondb53a302011-02-03 11:57:46 +00001159 trace_i915_ring_wait_begin(ring);
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001160 if (drm_core_check_feature(dev, DRIVER_GEM))
1161 /* With GEM the hangcheck timer should kick us out of the loop,
1162 * leaving it early runs the risk of corrupting GEM state (due
1163 * to running on almost untested codepaths). But on resume
1164 * timers don't work yet, so prevent a complete hang in that
1165 * case by choosing an insanely large timeout. */
1166 end = jiffies + 60 * HZ;
1167 else
1168 end = jiffies + 3 * HZ;
1169
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001170 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001171 ring->head = I915_READ_HEAD(ring);
1172 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001173 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001174 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001175 return 0;
1176 }
1177
1178 if (dev->primary->master) {
1179 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1180 if (master_priv->sarea_priv)
1181 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1182 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001183
Chris Wilsone60a0b12010-10-13 10:09:14 +01001184 msleep(1);
Chris Wilsonf4e0b292010-10-29 21:06:16 +01001185 if (atomic_read(&dev_priv->mm.wedged))
1186 return -EAGAIN;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001187 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001188 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001189 return -EBUSY;
1190}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001191
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001192int intel_ring_begin(struct intel_ring_buffer *ring,
1193 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001194{
Chris Wilson21dd3732011-01-26 15:55:56 +00001195 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001196 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001197 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001198
Chris Wilson21dd3732011-01-26 15:55:56 +00001199 if (unlikely(atomic_read(&dev_priv->mm.wedged)))
1200 return -EIO;
1201
Chris Wilson55249ba2010-12-22 14:04:47 +00001202 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001203 ret = intel_wrap_ring_buffer(ring);
1204 if (unlikely(ret))
1205 return ret;
1206 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001207
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001208 if (unlikely(ring->space < n)) {
1209 ret = intel_wait_ring_buffer(ring, n);
1210 if (unlikely(ret))
1211 return ret;
1212 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001213
1214 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001215 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001216}
1217
Chris Wilson78501ea2010-10-27 12:18:21 +01001218void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001219{
Chris Wilsond97ed332010-08-04 15:18:13 +01001220 ring->tail &= ring->size - 1;
Chris Wilson78501ea2010-10-27 12:18:21 +01001221 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001222}
1223
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001224
Chris Wilson78501ea2010-10-27 12:18:21 +01001225static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001226 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001227{
Akshay Joshi0206e352011-08-16 15:34:10 -04001228 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001229
1230 /* Every tail move must follow the sequence below */
Akshay Joshi0206e352011-08-16 15:34:10 -04001231 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1232 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1233 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE);
1234 I915_WRITE(GEN6_BSD_RNCID, 0x0);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001235
Akshay Joshi0206e352011-08-16 15:34:10 -04001236 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
1237 GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0,
1238 50))
1239 DRM_ERROR("timed out waiting for IDLE Indicator\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001240
Akshay Joshi0206e352011-08-16 15:34:10 -04001241 I915_WRITE_TAIL(ring, value);
1242 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1243 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1244 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001245}
1246
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001247static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001248 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001249{
Chris Wilson71a77e02011-02-02 12:13:49 +00001250 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001251 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001252
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001253 ret = intel_ring_begin(ring, 4);
1254 if (ret)
1255 return ret;
1256
Chris Wilson71a77e02011-02-02 12:13:49 +00001257 cmd = MI_FLUSH_DW;
1258 if (invalidate & I915_GEM_GPU_DOMAINS)
1259 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1260 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001261 intel_ring_emit(ring, 0);
1262 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001263 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001264 intel_ring_advance(ring);
1265 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001266}
1267
1268static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001269gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001270 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001271{
Akshay Joshi0206e352011-08-16 15:34:10 -04001272 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001273
Akshay Joshi0206e352011-08-16 15:34:10 -04001274 ret = intel_ring_begin(ring, 2);
1275 if (ret)
1276 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001277
Akshay Joshi0206e352011-08-16 15:34:10 -04001278 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1279 /* bit0-7 is the length on GEN6+ */
1280 intel_ring_emit(ring, offset);
1281 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001282
Akshay Joshi0206e352011-08-16 15:34:10 -04001283 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001284}
1285
Chris Wilson549f7362010-10-19 11:19:32 +01001286/* Blitter support (SandyBridge+) */
1287
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001288static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001289 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001290{
Chris Wilson71a77e02011-02-02 12:13:49 +00001291 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001292 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001293
Daniel Vetter6a233c72011-12-14 13:57:07 +01001294 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001295 if (ret)
1296 return ret;
1297
Chris Wilson71a77e02011-02-02 12:13:49 +00001298 cmd = MI_FLUSH_DW;
1299 if (invalidate & I915_GEM_DOMAIN_RENDER)
1300 cmd |= MI_INVALIDATE_TLB;
1301 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001302 intel_ring_emit(ring, 0);
1303 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001304 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001305 intel_ring_advance(ring);
1306 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001307}
1308
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001309int intel_init_render_ring_buffer(struct drm_device *dev)
1310{
1311 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001312 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001313
Daniel Vetter59465b52012-04-11 22:12:48 +02001314 ring->name = "render ring";
1315 ring->id = RCS;
1316 ring->mmio_base = RENDER_RING_BASE;
1317
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001318 if (INTEL_INFO(dev)->gen >= 6) {
1319 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001320 ring->flush = gen6_render_ring_flush;
Ben Widawsky25c06302012-03-29 19:11:27 -07001321 ring->irq_get = gen6_ring_get_irq;
1322 ring->irq_put = gen6_ring_put_irq;
Daniel Vetter6a848cc2012-04-11 22:12:46 +02001323 ring->irq_enable_mask = GT_USER_INTERRUPT;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001324 ring->get_seqno = gen6_ring_get_seqno;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001325 ring->sync_to = gen6_ring_sync;
Daniel Vetter59465b52012-04-11 22:12:48 +02001326 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_INVALID;
1327 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_RV;
1328 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_RB;
1329 ring->signal_mbox[0] = GEN6_VRSYNC;
1330 ring->signal_mbox[1] = GEN6_BRSYNC;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001331 } else if (IS_GEN5(dev)) {
1332 ring->add_request = pc_render_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001333 ring->flush = gen4_render_ring_flush;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001334 ring->get_seqno = pc_render_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001335 ring->irq_get = gen5_ring_get_irq;
1336 ring->irq_put = gen5_ring_put_irq;
Daniel Vettere3670312012-04-11 22:12:53 +02001337 ring->irq_enable_mask = GT_USER_INTERRUPT | GT_PIPE_NOTIFY;
Daniel Vetter59465b52012-04-11 22:12:48 +02001338 } else {
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001339 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001340 if (INTEL_INFO(dev)->gen < 4)
1341 ring->flush = gen2_render_ring_flush;
1342 else
1343 ring->flush = gen4_render_ring_flush;
Daniel Vetter59465b52012-04-11 22:12:48 +02001344 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001345 if (IS_GEN2(dev)) {
1346 ring->irq_get = i8xx_ring_get_irq;
1347 ring->irq_put = i8xx_ring_put_irq;
1348 } else {
1349 ring->irq_get = i9xx_ring_get_irq;
1350 ring->irq_put = i9xx_ring_put_irq;
1351 }
Daniel Vettere3670312012-04-11 22:12:53 +02001352 ring->irq_enable_mask = I915_USER_INTERRUPT;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001353 }
Daniel Vetter59465b52012-04-11 22:12:48 +02001354 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001355 if (INTEL_INFO(dev)->gen >= 6)
1356 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
1357 else if (INTEL_INFO(dev)->gen >= 4)
1358 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1359 else if (IS_I830(dev) || IS_845G(dev))
1360 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1361 else
1362 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001363 ring->init = init_render_ring;
1364 ring->cleanup = render_ring_cleanup;
1365
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001366
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001367 if (!I915_NEED_GFX_HWS(dev)) {
1368 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1369 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1370 }
1371
1372 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001373}
1374
Chris Wilsone8616b62011-01-20 09:57:11 +00001375int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1376{
1377 drm_i915_private_t *dev_priv = dev->dev_private;
1378 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1379
Daniel Vetter59465b52012-04-11 22:12:48 +02001380 ring->name = "render ring";
1381 ring->id = RCS;
1382 ring->mmio_base = RENDER_RING_BASE;
1383
Chris Wilsone8616b62011-01-20 09:57:11 +00001384 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterb4178f82012-04-11 22:12:51 +02001385 /* non-kms not supported on gen6+ */
1386 return -ENODEV;
Chris Wilsone8616b62011-01-20 09:57:11 +00001387 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001388
1389 /* Note: gem is not supported on gen5/ilk without kms (the corresponding
1390 * gem_init ioctl returns with -ENODEV). Hence we do not need to set up
1391 * the special gen5 functions. */
1392 ring->add_request = i9xx_add_request;
Chris Wilson46f0f8d2012-04-18 11:12:11 +01001393 if (INTEL_INFO(dev)->gen < 4)
1394 ring->flush = gen2_render_ring_flush;
1395 else
1396 ring->flush = gen4_render_ring_flush;
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001397 ring->get_seqno = ring_get_seqno;
Chris Wilsonc2798b12012-04-22 21:13:57 +01001398 if (IS_GEN2(dev)) {
1399 ring->irq_get = i8xx_ring_get_irq;
1400 ring->irq_put = i8xx_ring_put_irq;
1401 } else {
1402 ring->irq_get = i9xx_ring_get_irq;
1403 ring->irq_put = i9xx_ring_put_irq;
1404 }
Daniel Vetter28f0cbf2012-04-11 22:12:58 +02001405 ring->irq_enable_mask = I915_USER_INTERRUPT;
Daniel Vetter59465b52012-04-11 22:12:48 +02001406 ring->write_tail = ring_write_tail;
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001407 if (INTEL_INFO(dev)->gen >= 4)
1408 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
1409 else if (IS_I830(dev) || IS_845G(dev))
1410 ring->dispatch_execbuffer = i830_dispatch_execbuffer;
1411 else
1412 ring->dispatch_execbuffer = i915_dispatch_execbuffer;
Daniel Vetter59465b52012-04-11 22:12:48 +02001413 ring->init = init_render_ring;
1414 ring->cleanup = render_ring_cleanup;
Chris Wilsone8616b62011-01-20 09:57:11 +00001415
Keith Packardf3234702011-07-22 10:44:39 -07001416 if (!I915_NEED_GFX_HWS(dev))
1417 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1418
Chris Wilsone8616b62011-01-20 09:57:11 +00001419 ring->dev = dev;
1420 INIT_LIST_HEAD(&ring->active_list);
1421 INIT_LIST_HEAD(&ring->request_list);
1422 INIT_LIST_HEAD(&ring->gpu_write_list);
1423
1424 ring->size = size;
1425 ring->effective_size = ring->size;
1426 if (IS_I830(ring->dev))
1427 ring->effective_size -= 128;
1428
1429 ring->map.offset = start;
1430 ring->map.size = size;
1431 ring->map.type = 0;
1432 ring->map.flags = 0;
1433 ring->map.mtrr = 0;
1434
1435 drm_core_ioremap_wc(&ring->map, dev);
1436 if (ring->map.handle == NULL) {
1437 DRM_ERROR("can not ioremap virtual address for"
1438 " ring buffer\n");
1439 return -ENOMEM;
1440 }
1441
1442 ring->virtual_start = (void __force __iomem *)ring->map.handle;
1443 return 0;
1444}
1445
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001446int intel_init_bsd_ring_buffer(struct drm_device *dev)
1447{
1448 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001449 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001450
Daniel Vetter58fa3832012-04-11 22:12:49 +02001451 ring->name = "bsd ring";
1452 ring->id = VCS;
1453
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001454 ring->write_tail = ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001455 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1456 ring->mmio_base = GEN6_BSD_RING_BASE;
Daniel Vetter0fd2c202012-04-11 22:12:55 +02001457 /* gen6 bsd needs a special wa for tail updates */
1458 if (IS_GEN6(dev))
1459 ring->write_tail = gen6_bsd_ring_write_tail;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001460 ring->flush = gen6_ring_flush;
1461 ring->add_request = gen6_add_request;
1462 ring->get_seqno = gen6_ring_get_seqno;
1463 ring->irq_enable_mask = GEN6_BSD_USER_INTERRUPT;
1464 ring->irq_get = gen6_ring_get_irq;
1465 ring->irq_put = gen6_ring_put_irq;
1466 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001467 ring->sync_to = gen6_ring_sync;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001468 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_VR;
1469 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_INVALID;
1470 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_VB;
1471 ring->signal_mbox[0] = GEN6_RVSYNC;
1472 ring->signal_mbox[1] = GEN6_BVSYNC;
1473 } else {
1474 ring->mmio_base = BSD_RING_BASE;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001475 ring->flush = bsd_ring_flush;
Daniel Vetter8620a3a2012-04-11 22:12:57 +02001476 ring->add_request = i9xx_add_request;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001477 ring->get_seqno = ring_get_seqno;
Daniel Vettere48d8632012-04-11 22:12:54 +02001478 if (IS_GEN5(dev)) {
Daniel Vettere3670312012-04-11 22:12:53 +02001479 ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001480 ring->irq_get = gen5_ring_get_irq;
1481 ring->irq_put = gen5_ring_put_irq;
1482 } else {
Daniel Vettere3670312012-04-11 22:12:53 +02001483 ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
Daniel Vettere48d8632012-04-11 22:12:54 +02001484 ring->irq_get = i9xx_ring_get_irq;
1485 ring->irq_put = i9xx_ring_put_irq;
1486 }
Daniel Vetterfb3256d2012-04-11 22:12:56 +02001487 ring->dispatch_execbuffer = i965_dispatch_execbuffer;
Daniel Vetter58fa3832012-04-11 22:12:49 +02001488 }
1489 ring->init = init_ring_common;
1490
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001491
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001492 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001493}
Chris Wilson549f7362010-10-19 11:19:32 +01001494
1495int intel_init_blt_ring_buffer(struct drm_device *dev)
1496{
1497 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001498 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001499
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001500 ring->name = "blitter ring";
1501 ring->id = BCS;
1502
1503 ring->mmio_base = BLT_RING_BASE;
1504 ring->write_tail = ring_write_tail;
1505 ring->flush = blt_ring_flush;
1506 ring->add_request = gen6_add_request;
1507 ring->get_seqno = gen6_ring_get_seqno;
1508 ring->irq_enable_mask = GEN6_BLITTER_USER_INTERRUPT;
1509 ring->irq_get = gen6_ring_get_irq;
1510 ring->irq_put = gen6_ring_put_irq;
1511 ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
Daniel Vetter686cb5f2012-04-11 22:12:52 +02001512 ring->sync_to = gen6_ring_sync;
Daniel Vetter3535d9d2012-04-11 22:12:50 +02001513 ring->semaphore_register[0] = MI_SEMAPHORE_SYNC_BR;
1514 ring->semaphore_register[1] = MI_SEMAPHORE_SYNC_BV;
1515 ring->semaphore_register[2] = MI_SEMAPHORE_SYNC_INVALID;
1516 ring->signal_mbox[0] = GEN6_RBSYNC;
1517 ring->signal_mbox[1] = GEN6_VBSYNC;
1518 ring->init = init_ring_common;
Chris Wilson549f7362010-10-19 11:19:32 +01001519
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001520 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001521}