blob: ca3972f2c6f5723b4e957a248e6cf6f4b99850fc [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 Wilson78501ea2010-10-27 12:18:21 +010056render_ring_flush(struct intel_ring_buffer *ring,
Chris Wilsonab6f8e32010-09-19 17:53:44 +010057 u32 invalidate_domains,
58 u32 flush_domains)
Eric Anholt62fdfea2010-05-21 13:26:39 -070059{
Chris Wilson78501ea2010-10-27 12:18:21 +010060 struct drm_device *dev = ring->dev;
Chris Wilson6f392d5482010-08-07 11:01:22 +010061 u32 cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000062 int ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +010063
Chris Wilson36d527d2011-03-19 22:26:49 +000064 /*
65 * read/write caches:
66 *
67 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
68 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
69 * also flushed at 2d versus 3d pipeline switches.
70 *
71 * read-only caches:
72 *
73 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
74 * MI_READ_FLUSH is set, and is always flushed on 965.
75 *
76 * I915_GEM_DOMAIN_COMMAND may not exist?
77 *
78 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
79 * invalidated when MI_EXE_FLUSH is set.
80 *
81 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
82 * invalidated with every MI_FLUSH.
83 *
84 * TLBs:
85 *
86 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
87 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
88 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
89 * are flushed at any MI_FLUSH.
90 */
91
92 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
93 if ((invalidate_domains|flush_domains) &
94 I915_GEM_DOMAIN_RENDER)
95 cmd &= ~MI_NO_WRITE_FLUSH;
96 if (INTEL_INFO(dev)->gen < 4) {
Eric Anholt62fdfea2010-05-21 13:26:39 -070097 /*
Chris Wilson36d527d2011-03-19 22:26:49 +000098 * On the 965, the sampler cache always gets flushed
99 * and this bit is reserved.
Eric Anholt62fdfea2010-05-21 13:26:39 -0700100 */
Chris Wilson36d527d2011-03-19 22:26:49 +0000101 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
102 cmd |= MI_READ_FLUSH;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800103 }
Chris Wilson36d527d2011-03-19 22:26:49 +0000104 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
105 cmd |= MI_EXE_FLUSH;
106
107 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
108 (IS_G4X(dev) || IS_GEN5(dev)))
109 cmd |= MI_INVALIDATE_ISP;
110
111 ret = intel_ring_begin(ring, 2);
112 if (ret)
113 return ret;
114
115 intel_ring_emit(ring, cmd);
116 intel_ring_emit(ring, MI_NOOP);
117 intel_ring_advance(ring);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000118
119 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800120}
121
Jesse Barnes8d315282011-10-16 10:23:31 +0200122/**
123 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
124 * implementing two workarounds on gen6. From section 1.4.7.1
125 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
126 *
127 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
128 * produced by non-pipelined state commands), software needs to first
129 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
130 * 0.
131 *
132 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
133 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
134 *
135 * And the workaround for these two requires this workaround first:
136 *
137 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
138 * BEFORE the pipe-control with a post-sync op and no write-cache
139 * flushes.
140 *
141 * And this last workaround is tricky because of the requirements on
142 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
143 * volume 2 part 1:
144 *
145 * "1 of the following must also be set:
146 * - Render Target Cache Flush Enable ([12] of DW1)
147 * - Depth Cache Flush Enable ([0] of DW1)
148 * - Stall at Pixel Scoreboard ([1] of DW1)
149 * - Depth Stall ([13] of DW1)
150 * - Post-Sync Operation ([13] of DW1)
151 * - Notify Enable ([8] of DW1)"
152 *
153 * The cache flushes require the workaround flush that triggered this
154 * one, so we can't use it. Depth stall would trigger the same.
155 * Post-sync nonzero is what triggered this second workaround, so we
156 * can't use that one either. Notify enable is IRQs, which aren't
157 * really our business. That leaves only stall at scoreboard.
158 */
159static int
160intel_emit_post_sync_nonzero_flush(struct intel_ring_buffer *ring)
161{
162 struct pipe_control *pc = ring->private;
163 u32 scratch_addr = pc->gtt_offset + 128;
164 int ret;
165
166
167 ret = intel_ring_begin(ring, 6);
168 if (ret)
169 return ret;
170
171 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
172 intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
173 PIPE_CONTROL_STALL_AT_SCOREBOARD);
174 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
175 intel_ring_emit(ring, 0); /* low dword */
176 intel_ring_emit(ring, 0); /* high dword */
177 intel_ring_emit(ring, MI_NOOP);
178 intel_ring_advance(ring);
179
180 ret = intel_ring_begin(ring, 6);
181 if (ret)
182 return ret;
183
184 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
185 intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
186 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
187 intel_ring_emit(ring, 0);
188 intel_ring_emit(ring, 0);
189 intel_ring_emit(ring, MI_NOOP);
190 intel_ring_advance(ring);
191
192 return 0;
193}
194
195static int
196gen6_render_ring_flush(struct intel_ring_buffer *ring,
197 u32 invalidate_domains, u32 flush_domains)
198{
199 u32 flags = 0;
200 struct pipe_control *pc = ring->private;
201 u32 scratch_addr = pc->gtt_offset + 128;
202 int ret;
203
204 /* Force SNB workarounds for PIPE_CONTROL flushes */
205 intel_emit_post_sync_nonzero_flush(ring);
206
207 /* Just flush everything. Experiments have shown that reducing the
208 * number of bits based on the write domains has little performance
209 * impact.
210 */
211 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
212 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
213 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
214 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
215 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
216 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
217 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
218
219 ret = intel_ring_begin(ring, 6);
220 if (ret)
221 return ret;
222
223 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
224 intel_ring_emit(ring, flags);
225 intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
226 intel_ring_emit(ring, 0); /* lower dword */
227 intel_ring_emit(ring, 0); /* uppwer dword */
228 intel_ring_emit(ring, MI_NOOP);
229 intel_ring_advance(ring);
230
231 return 0;
232}
233
Chris Wilson78501ea2010-10-27 12:18:21 +0100234static void ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +0100235 u32 value)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800236{
Chris Wilson78501ea2010-10-27 12:18:21 +0100237 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson297b0c52010-10-22 17:02:41 +0100238 I915_WRITE_TAIL(ring, value);
Xiang, Haihaod46eefa2010-09-16 10:43:12 +0800239}
240
Chris Wilson78501ea2010-10-27 12:18:21 +0100241u32 intel_ring_get_active_head(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800242{
Chris Wilson78501ea2010-10-27 12:18:21 +0100243 drm_i915_private_t *dev_priv = ring->dev->dev_private;
244 u32 acthd_reg = INTEL_INFO(ring->dev)->gen >= 4 ?
Daniel Vetter3d281d82010-09-24 21:14:22 +0200245 RING_ACTHD(ring->mmio_base) : ACTHD;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800246
247 return I915_READ(acthd_reg);
248}
249
Chris Wilson78501ea2010-10-27 12:18:21 +0100250static int init_ring_common(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800251{
Chris Wilson78501ea2010-10-27 12:18:21 +0100252 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000253 struct drm_i915_gem_object *obj = ring->obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800254 u32 head;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800255
256 /* Stop the ring if it's running. */
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200257 I915_WRITE_CTL(ring, 0);
Daniel Vetter570ef602010-08-02 17:06:23 +0200258 I915_WRITE_HEAD(ring, 0);
Chris Wilson78501ea2010-10-27 12:18:21 +0100259 ring->write_tail(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800260
261 /* Initialize the ring. */
Chris Wilson05394f32010-11-08 19:18:58 +0000262 I915_WRITE_START(ring, obj->gtt_offset);
Daniel Vetter570ef602010-08-02 17:06:23 +0200263 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800264
265 /* G45 ring initialization fails to reset head to zero */
266 if (head != 0) {
Chris Wilson6fd0d562010-12-05 20:42:33 +0000267 DRM_DEBUG_KMS("%s head not reset to zero "
268 "ctl %08x head %08x tail %08x start %08x\n",
269 ring->name,
270 I915_READ_CTL(ring),
271 I915_READ_HEAD(ring),
272 I915_READ_TAIL(ring),
273 I915_READ_START(ring));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800274
Daniel Vetter570ef602010-08-02 17:06:23 +0200275 I915_WRITE_HEAD(ring, 0);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800276
Chris Wilson6fd0d562010-12-05 20:42:33 +0000277 if (I915_READ_HEAD(ring) & HEAD_ADDR) {
278 DRM_ERROR("failed to set %s head to zero "
279 "ctl %08x head %08x tail %08x start %08x\n",
280 ring->name,
281 I915_READ_CTL(ring),
282 I915_READ_HEAD(ring),
283 I915_READ_TAIL(ring),
284 I915_READ_START(ring));
285 }
Eric Anholt62fdfea2010-05-21 13:26:39 -0700286 }
287
Daniel Vetter7f2ab692010-08-02 17:06:59 +0200288 I915_WRITE_CTL(ring,
Chris Wilsonae69b422010-11-07 11:45:52 +0000289 ((ring->size - PAGE_SIZE) & RING_NR_PAGES)
Chris Wilson6aa56062010-10-29 21:44:37 +0100290 | RING_REPORT_64K | RING_VALID);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800291
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800292 /* If the head is still not zero, the ring is dead */
Chris Wilson176f28e2010-10-28 11:18:07 +0100293 if ((I915_READ_CTL(ring) & RING_VALID) == 0 ||
Chris Wilson05394f32010-11-08 19:18:58 +0000294 I915_READ_START(ring) != obj->gtt_offset ||
Chris Wilson176f28e2010-10-28 11:18:07 +0100295 (I915_READ_HEAD(ring) & HEAD_ADDR) != 0) {
Chris Wilsone74cfed2010-11-09 10:16:56 +0000296 DRM_ERROR("%s initialization failed "
297 "ctl %08x head %08x tail %08x start %08x\n",
298 ring->name,
299 I915_READ_CTL(ring),
300 I915_READ_HEAD(ring),
301 I915_READ_TAIL(ring),
302 I915_READ_START(ring));
303 return -EIO;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800304 }
305
Chris Wilson78501ea2010-10-27 12:18:21 +0100306 if (!drm_core_check_feature(ring->dev, DRIVER_MODESET))
307 i915_kernel_lost_context(ring->dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800308 else {
Chris Wilsonc7dca472011-01-20 17:00:10 +0000309 ring->head = I915_READ_HEAD(ring);
Daniel Vetter870e86d2010-08-02 16:29:44 +0200310 ring->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
Chris Wilsonc7dca472011-01-20 17:00:10 +0000311 ring->space = ring_space(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800312 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000313
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800314 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700315}
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800316
Chris Wilsonc6df5412010-12-15 09:56:50 +0000317static int
318init_pipe_control(struct intel_ring_buffer *ring)
319{
320 struct pipe_control *pc;
321 struct drm_i915_gem_object *obj;
322 int ret;
323
324 if (ring->private)
325 return 0;
326
327 pc = kmalloc(sizeof(*pc), GFP_KERNEL);
328 if (!pc)
329 return -ENOMEM;
330
331 obj = i915_gem_alloc_object(ring->dev, 4096);
332 if (obj == NULL) {
333 DRM_ERROR("Failed to allocate seqno page\n");
334 ret = -ENOMEM;
335 goto err;
336 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100337
338 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000339
340 ret = i915_gem_object_pin(obj, 4096, true);
341 if (ret)
342 goto err_unref;
343
344 pc->gtt_offset = obj->gtt_offset;
345 pc->cpu_page = kmap(obj->pages[0]);
346 if (pc->cpu_page == NULL)
347 goto err_unpin;
348
349 pc->obj = obj;
350 ring->private = pc;
351 return 0;
352
353err_unpin:
354 i915_gem_object_unpin(obj);
355err_unref:
356 drm_gem_object_unreference(&obj->base);
357err:
358 kfree(pc);
359 return ret;
360}
361
362static void
363cleanup_pipe_control(struct intel_ring_buffer *ring)
364{
365 struct pipe_control *pc = ring->private;
366 struct drm_i915_gem_object *obj;
367
368 if (!ring->private)
369 return;
370
371 obj = pc->obj;
372 kunmap(obj->pages[0]);
373 i915_gem_object_unpin(obj);
374 drm_gem_object_unreference(&obj->base);
375
376 kfree(pc);
377 ring->private = NULL;
378}
379
Chris Wilson78501ea2010-10-27 12:18:21 +0100380static int init_render_ring(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800381{
Chris Wilson78501ea2010-10-27 12:18:21 +0100382 struct drm_device *dev = ring->dev;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000383 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +0100384 int ret = init_ring_common(ring);
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800385
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100386 if (INTEL_INFO(dev)->gen > 3) {
Chris Wilson78501ea2010-10-27 12:18:21 +0100387 int mode = VS_TIMER_DISPATCH << 16 | VS_TIMER_DISPATCH;
Zhenyu Wanga69ffdb2010-08-30 16:12:42 +0800388 I915_WRITE(MI_MODE, mode);
Jesse Barnesb095cd02011-08-12 15:28:32 -0700389 if (IS_GEN7(dev))
390 I915_WRITE(GFX_MODE_GEN7,
391 GFX_MODE_DISABLE(GFX_TLB_INVALIDATE_ALWAYS) |
392 GFX_MODE_ENABLE(GFX_REPLAY_MODE));
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800393 }
Chris Wilson78501ea2010-10-27 12:18:21 +0100394
Jesse Barnes8d315282011-10-16 10:23:31 +0200395 if (INTEL_INFO(dev)->gen >= 5) {
Chris Wilsonc6df5412010-12-15 09:56:50 +0000396 ret = init_pipe_control(ring);
397 if (ret)
398 return ret;
399 }
400
Ben Widawsky84f9f932011-12-12 19:21:58 -0800401 if (INTEL_INFO(dev)->gen >= 6) {
402 I915_WRITE(INSTPM,
403 INSTPM_FORCE_ORDERING << 16 | INSTPM_FORCE_ORDERING);
404 }
405
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800406 return ret;
407}
408
Chris Wilsonc6df5412010-12-15 09:56:50 +0000409static void render_ring_cleanup(struct intel_ring_buffer *ring)
410{
411 if (!ring->private)
412 return;
413
414 cleanup_pipe_control(ring);
415}
416
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000417static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700418update_mboxes(struct intel_ring_buffer *ring,
419 u32 seqno,
420 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000421{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700422 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
423 MI_SEMAPHORE_GLOBAL_GTT |
424 MI_SEMAPHORE_REGISTER |
425 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000426 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700427 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000428}
429
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700430/**
431 * gen6_add_request - Update the semaphore mailbox registers
432 *
433 * @ring - ring that is adding a request
434 * @seqno - return seqno stuck into the ring
435 *
436 * Update the mailbox registers in the *other* rings with the current seqno.
437 * This acts like a signal in the canonical semaphore.
438 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000439static int
440gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700441 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000442{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700443 u32 mbox1_reg;
444 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000445 int ret;
446
447 ret = intel_ring_begin(ring, 10);
448 if (ret)
449 return ret;
450
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700451 mbox1_reg = ring->signal_mbox[0];
452 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000453
Daniel Vetter53d227f2012-01-25 16:32:49 +0100454 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700455
456 update_mboxes(ring, *seqno, mbox1_reg);
457 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000458 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
459 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700460 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000461 intel_ring_emit(ring, MI_USER_INTERRUPT);
462 intel_ring_advance(ring);
463
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000464 return 0;
465}
466
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700467/**
468 * intel_ring_sync - sync the waiter to the signaller on seqno
469 *
470 * @waiter - ring that is waiting
471 * @signaller - ring which has, or will signal
472 * @seqno - seqno which the waiter will block on
473 */
474static int
475intel_ring_sync(struct intel_ring_buffer *waiter,
476 struct intel_ring_buffer *signaller,
477 int ring,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000478 u32 seqno)
479{
480 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700481 u32 dw1 = MI_SEMAPHORE_MBOX |
482 MI_SEMAPHORE_COMPARE |
483 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000484
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700485 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000486 if (ret)
487 return ret;
488
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700489 intel_ring_emit(waiter, dw1 | signaller->semaphore_register[ring]);
490 intel_ring_emit(waiter, seqno);
491 intel_ring_emit(waiter, 0);
492 intel_ring_emit(waiter, MI_NOOP);
493 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000494
495 return 0;
496}
497
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700498/* VCS->RCS (RVSYNC) or BCS->RCS (RBSYNC) */
499int
500render_ring_sync_to(struct intel_ring_buffer *waiter,
501 struct intel_ring_buffer *signaller,
502 u32 seqno)
503{
504 WARN_ON(signaller->semaphore_register[RCS] == MI_SEMAPHORE_SYNC_INVALID);
505 return intel_ring_sync(waiter,
506 signaller,
507 RCS,
508 seqno);
509}
510
511/* RCS->VCS (VRSYNC) or BCS->VCS (VBSYNC) */
512int
513gen6_bsd_ring_sync_to(struct intel_ring_buffer *waiter,
514 struct intel_ring_buffer *signaller,
515 u32 seqno)
516{
517 WARN_ON(signaller->semaphore_register[VCS] == MI_SEMAPHORE_SYNC_INVALID);
518 return intel_ring_sync(waiter,
519 signaller,
520 VCS,
521 seqno);
522}
523
524/* RCS->BCS (BRSYNC) or VCS->BCS (BVSYNC) */
525int
526gen6_blt_ring_sync_to(struct intel_ring_buffer *waiter,
527 struct intel_ring_buffer *signaller,
528 u32 seqno)
529{
530 WARN_ON(signaller->semaphore_register[BCS] == MI_SEMAPHORE_SYNC_INVALID);
531 return intel_ring_sync(waiter,
532 signaller,
533 BCS,
534 seqno);
535}
536
537
538
Chris Wilsonc6df5412010-12-15 09:56:50 +0000539#define PIPE_CONTROL_FLUSH(ring__, addr__) \
540do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200541 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
542 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000543 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
544 intel_ring_emit(ring__, 0); \
545 intel_ring_emit(ring__, 0); \
546} while (0)
547
548static int
549pc_render_add_request(struct intel_ring_buffer *ring,
550 u32 *result)
551{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100552 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000553 struct pipe_control *pc = ring->private;
554 u32 scratch_addr = pc->gtt_offset + 128;
555 int ret;
556
557 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
558 * incoherent with writes to memory, i.e. completely fubar,
559 * so we need to use PIPE_NOTIFY instead.
560 *
561 * However, we also need to workaround the qword write
562 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
563 * memory before requesting an interrupt.
564 */
565 ret = intel_ring_begin(ring, 32);
566 if (ret)
567 return ret;
568
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 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
573 intel_ring_emit(ring, seqno);
574 intel_ring_emit(ring, 0);
575 PIPE_CONTROL_FLUSH(ring, scratch_addr);
576 scratch_addr += 128; /* write to separate cachelines */
577 PIPE_CONTROL_FLUSH(ring, scratch_addr);
578 scratch_addr += 128;
579 PIPE_CONTROL_FLUSH(ring, scratch_addr);
580 scratch_addr += 128;
581 PIPE_CONTROL_FLUSH(ring, scratch_addr);
582 scratch_addr += 128;
583 PIPE_CONTROL_FLUSH(ring, scratch_addr);
584 scratch_addr += 128;
585 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000586
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200587 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200588 PIPE_CONTROL_WRITE_FLUSH |
589 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000590 PIPE_CONTROL_NOTIFY);
591 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
592 intel_ring_emit(ring, seqno);
593 intel_ring_emit(ring, 0);
594 intel_ring_advance(ring);
595
596 *result = seqno;
597 return 0;
598}
599
Chris Wilson3cce4692010-10-27 16:11:02 +0100600static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100601render_ring_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100602 u32 *result)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700603{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100604 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson3cce4692010-10-27 16:11:02 +0100605 int ret;
Zhenyu Wangca764822010-05-27 10:26:42 +0800606
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000607 ret = intel_ring_begin(ring, 4);
608 if (ret)
609 return ret;
Chris Wilson3cce4692010-10-27 16:11:02 +0100610
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000611 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
612 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
613 intel_ring_emit(ring, seqno);
614 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson3cce4692010-10-27 16:11:02 +0100615 intel_ring_advance(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000616
Chris Wilson3cce4692010-10-27 16:11:02 +0100617 *result = seqno;
618 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700619}
620
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800621static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100622gen6_ring_get_seqno(struct intel_ring_buffer *ring)
623{
624 struct drm_device *dev = ring->dev;
625
626 /* Workaround to force correct ordering between irq and seqno writes on
627 * ivb (and maybe also on snb) by reading from a CS register (like
628 * ACTHD) before reading the status page. */
629 if (IS_GEN7(dev))
630 intel_ring_get_active_head(ring);
631 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
632}
633
634static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000635ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800636{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000637 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
638}
639
Chris Wilsonc6df5412010-12-15 09:56:50 +0000640static u32
641pc_render_get_seqno(struct intel_ring_buffer *ring)
642{
643 struct pipe_control *pc = ring->private;
644 return pc->cpu_page[0];
645}
646
Chris Wilson0f468322011-01-04 17:35:21 +0000647static void
648ironlake_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
649{
650 dev_priv->gt_irq_mask &= ~mask;
651 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
652 POSTING_READ(GTIMR);
653}
654
655static void
656ironlake_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
657{
658 dev_priv->gt_irq_mask |= mask;
659 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
660 POSTING_READ(GTIMR);
661}
662
663static void
664i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
665{
666 dev_priv->irq_mask &= ~mask;
667 I915_WRITE(IMR, dev_priv->irq_mask);
668 POSTING_READ(IMR);
669}
670
671static void
672i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
673{
674 dev_priv->irq_mask |= mask;
675 I915_WRITE(IMR, dev_priv->irq_mask);
676 POSTING_READ(IMR);
677}
678
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000679static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000680render_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700681{
Chris Wilson78501ea2010-10-27 12:18:21 +0100682 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000683 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700684
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000685 if (!dev->irq_enabled)
686 return false;
687
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000688 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000689 if (ring->irq_refcount++ == 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700690 if (HAS_PCH_SPLIT(dev))
Chris Wilson0f468322011-01-04 17:35:21 +0000691 ironlake_enable_irq(dev_priv,
692 GT_PIPE_NOTIFY | GT_USER_INTERRUPT);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700693 else
694 i915_enable_irq(dev_priv, I915_USER_INTERRUPT);
695 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000696 spin_unlock(&ring->irq_lock);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000697
698 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700699}
700
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800701static void
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000702render_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700703{
Chris Wilson78501ea2010-10-27 12:18:21 +0100704 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000705 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700706
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000707 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000708 if (--ring->irq_refcount == 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700709 if (HAS_PCH_SPLIT(dev))
Chris Wilson0f468322011-01-04 17:35:21 +0000710 ironlake_disable_irq(dev_priv,
711 GT_USER_INTERRUPT |
712 GT_PIPE_NOTIFY);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700713 else
714 i915_disable_irq(dev_priv, I915_USER_INTERRUPT);
715 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000716 spin_unlock(&ring->irq_lock);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700717}
718
Chris Wilson78501ea2010-10-27 12:18:21 +0100719void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800720{
Eric Anholt45930102011-05-06 17:12:35 -0700721 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100722 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700723 u32 mmio = 0;
724
725 /* The ring status page addresses are no longer next to the rest of
726 * the ring registers as of gen7.
727 */
728 if (IS_GEN7(dev)) {
729 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100730 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700731 mmio = RENDER_HWS_PGA_GEN7;
732 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100733 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700734 mmio = BLT_HWS_PGA_GEN7;
735 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100736 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700737 mmio = BSD_HWS_PGA_GEN7;
738 break;
739 }
740 } else if (IS_GEN6(ring->dev)) {
741 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
742 } else {
743 mmio = RING_HWS_PGA(ring->mmio_base);
744 }
745
Chris Wilson78501ea2010-10-27 12:18:21 +0100746 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
747 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800748}
749
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000750static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100751bsd_ring_flush(struct intel_ring_buffer *ring,
752 u32 invalidate_domains,
753 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800754{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000755 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000756
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000757 ret = intel_ring_begin(ring, 2);
758 if (ret)
759 return ret;
760
761 intel_ring_emit(ring, MI_FLUSH);
762 intel_ring_emit(ring, MI_NOOP);
763 intel_ring_advance(ring);
764 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800765}
766
Chris Wilson3cce4692010-10-27 16:11:02 +0100767static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100768ring_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100769 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800770{
771 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100772 int ret;
773
774 ret = intel_ring_begin(ring, 4);
775 if (ret)
776 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100777
Daniel Vetter53d227f2012-01-25 16:32:49 +0100778 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100779
Chris Wilson3cce4692010-10-27 16:11:02 +0100780 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
781 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
782 intel_ring_emit(ring, seqno);
783 intel_ring_emit(ring, MI_USER_INTERRUPT);
784 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800785
Chris Wilson3cce4692010-10-27 16:11:02 +0100786 *result = seqno;
787 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800788}
789
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000790static bool
Chris Wilson0f468322011-01-04 17:35:21 +0000791gen6_ring_get_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag)
792{
793 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000794 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000795
796 if (!dev->irq_enabled)
797 return false;
798
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100799 /* It looks like we need to prevent the gt from suspending while waiting
800 * for an notifiy irq, otherwise irqs seem to get lost on at least the
801 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100802 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100803
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000804 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000805 if (ring->irq_refcount++ == 0) {
Chris Wilson0f468322011-01-04 17:35:21 +0000806 ring->irq_mask &= ~rflag;
807 I915_WRITE_IMR(ring, ring->irq_mask);
808 ironlake_enable_irq(dev_priv, gflag);
Chris Wilson0f468322011-01-04 17:35:21 +0000809 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000810 spin_unlock(&ring->irq_lock);
Chris Wilson0f468322011-01-04 17:35:21 +0000811
812 return true;
813}
814
815static void
816gen6_ring_put_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag)
817{
818 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000819 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000820
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000821 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000822 if (--ring->irq_refcount == 0) {
Chris Wilson0f468322011-01-04 17:35:21 +0000823 ring->irq_mask |= rflag;
824 I915_WRITE_IMR(ring, ring->irq_mask);
825 ironlake_disable_irq(dev_priv, gflag);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000826 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000827 spin_unlock(&ring->irq_lock);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100828
Daniel Vetter99ffa162012-01-25 14:04:00 +0100829 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000830}
831
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000832static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000833bsd_ring_get_irq(struct intel_ring_buffer *ring)
834{
Feng, Boqun5bfa1062011-05-16 16:02:39 +0800835 struct drm_device *dev = ring->dev;
836 drm_i915_private_t *dev_priv = dev->dev_private;
837
838 if (!dev->irq_enabled)
839 return false;
840
841 spin_lock(&ring->irq_lock);
842 if (ring->irq_refcount++ == 0) {
843 if (IS_G4X(dev))
844 i915_enable_irq(dev_priv, I915_BSD_USER_INTERRUPT);
845 else
846 ironlake_enable_irq(dev_priv, GT_BSD_USER_INTERRUPT);
847 }
848 spin_unlock(&ring->irq_lock);
849
850 return true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000851}
852static void
853bsd_ring_put_irq(struct intel_ring_buffer *ring)
854{
Feng, Boqun5bfa1062011-05-16 16:02:39 +0800855 struct drm_device *dev = ring->dev;
856 drm_i915_private_t *dev_priv = dev->dev_private;
857
858 spin_lock(&ring->irq_lock);
859 if (--ring->irq_refcount == 0) {
860 if (IS_G4X(dev))
861 i915_disable_irq(dev_priv, I915_BSD_USER_INTERRUPT);
862 else
863 ironlake_disable_irq(dev_priv, GT_BSD_USER_INTERRUPT);
864 }
865 spin_unlock(&ring->irq_lock);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800866}
867
868static int
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000869ring_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800870{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100871 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100872
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100873 ret = intel_ring_begin(ring, 2);
874 if (ret)
875 return ret;
876
Chris Wilson78501ea2010-10-27 12:18:21 +0100877 intel_ring_emit(ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000878 MI_BATCH_BUFFER_START | (2 << 6) |
Chris Wilson78501ea2010-10-27 12:18:21 +0100879 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000880 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100881 intel_ring_advance(ring);
882
Zou Nan haid1b851f2010-05-21 09:08:57 +0800883 return 0;
884}
885
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800886static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100887render_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000888 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700889{
Chris Wilson78501ea2010-10-27 12:18:21 +0100890 struct drm_device *dev = ring->dev;
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000891 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700892
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000893 if (IS_I830(dev) || IS_845G(dev)) {
894 ret = intel_ring_begin(ring, 4);
895 if (ret)
896 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700897
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000898 intel_ring_emit(ring, MI_BATCH_BUFFER);
899 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
900 intel_ring_emit(ring, offset + len - 8);
901 intel_ring_emit(ring, 0);
902 } else {
903 ret = intel_ring_begin(ring, 2);
904 if (ret)
905 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100906
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000907 if (INTEL_INFO(dev)->gen >= 4) {
908 intel_ring_emit(ring,
909 MI_BATCH_BUFFER_START | (2 << 6) |
910 MI_BATCH_NON_SECURE_I965);
911 intel_ring_emit(ring, offset);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700912 } else {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000913 intel_ring_emit(ring,
914 MI_BATCH_BUFFER_START | (2 << 6));
915 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700916 }
917 }
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000918 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700919
Eric Anholt62fdfea2010-05-21 13:26:39 -0700920 return 0;
921}
922
Chris Wilson78501ea2010-10-27 12:18:21 +0100923static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700924{
Chris Wilson78501ea2010-10-27 12:18:21 +0100925 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000926 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700927
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800928 obj = ring->status_page.obj;
929 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700930 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700931
Chris Wilson05394f32010-11-08 19:18:58 +0000932 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700933 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000934 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800935 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700936
937 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700938}
939
Chris Wilson78501ea2010-10-27 12:18:21 +0100940static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700941{
Chris Wilson78501ea2010-10-27 12:18:21 +0100942 struct drm_device *dev = ring->dev;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700943 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000944 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700945 int ret;
946
Eric Anholt62fdfea2010-05-21 13:26:39 -0700947 obj = i915_gem_alloc_object(dev, 4096);
948 if (obj == NULL) {
949 DRM_ERROR("Failed to allocate status page\n");
950 ret = -ENOMEM;
951 goto err;
952 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100953
954 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700955
Daniel Vetter75e9e912010-11-04 17:11:09 +0100956 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700957 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700958 goto err_unref;
959 }
960
Chris Wilson05394f32010-11-08 19:18:58 +0000961 ring->status_page.gfx_addr = obj->gtt_offset;
962 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800963 if (ring->status_page.page_addr == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700964 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700965 goto err_unpin;
966 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800967 ring->status_page.obj = obj;
968 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700969
Chris Wilson78501ea2010-10-27 12:18:21 +0100970 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800971 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
972 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700973
974 return 0;
975
976err_unpin:
977 i915_gem_object_unpin(obj);
978err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000979 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700980err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800981 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700982}
983
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800984int intel_init_ring_buffer(struct drm_device *dev,
Chris Wilsonab6f8e32010-09-19 17:53:44 +0100985 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700986{
Chris Wilson05394f32010-11-08 19:18:58 +0000987 struct drm_i915_gem_object *obj;
Chris Wilsondd785e32010-08-07 11:01:34 +0100988 int ret;
989
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800990 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +0100991 INIT_LIST_HEAD(&ring->active_list);
992 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +0100993 INIT_LIST_HEAD(&ring->gpu_write_list);
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000994
Chris Wilsonb259f672011-03-29 13:19:09 +0100995 init_waitqueue_head(&ring->irq_queue);
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000996 spin_lock_init(&ring->irq_lock);
Chris Wilson0f468322011-01-04 17:35:21 +0000997 ring->irq_mask = ~0;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700998
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800999 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001000 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001001 if (ret)
1002 return ret;
1003 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001004
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001005 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001006 if (obj == NULL) {
1007 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001008 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001009 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001010 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001011
Chris Wilson05394f32010-11-08 19:18:58 +00001012 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001013
Daniel Vetter75e9e912010-11-04 17:11:09 +01001014 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +01001015 if (ret)
1016 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001017
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001018 ring->map.size = ring->size;
Chris Wilson05394f32010-11-08 19:18:58 +00001019 ring->map.offset = dev->agp->base + obj->gtt_offset;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001020 ring->map.type = 0;
1021 ring->map.flags = 0;
1022 ring->map.mtrr = 0;
1023
1024 drm_core_ioremap_wc(&ring->map, dev);
1025 if (ring->map.handle == NULL) {
1026 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001027 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001028 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001029 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001030
Eric Anholt62fdfea2010-05-21 13:26:39 -07001031 ring->virtual_start = ring->map.handle;
Chris Wilson78501ea2010-10-27 12:18:21 +01001032 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001033 if (ret)
1034 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001035
Chris Wilson55249ba2010-12-22 14:04:47 +00001036 /* Workaround an erratum on the i830 which causes a hang if
1037 * the TAIL pointer points to within the last 2 cachelines
1038 * of the buffer.
1039 */
1040 ring->effective_size = ring->size;
1041 if (IS_I830(ring->dev))
1042 ring->effective_size -= 128;
1043
Chris Wilsonc584fe42010-10-29 18:15:52 +01001044 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001045
1046err_unmap:
1047 drm_core_ioremapfree(&ring->map, dev);
1048err_unpin:
1049 i915_gem_object_unpin(obj);
1050err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001051 drm_gem_object_unreference(&obj->base);
1052 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001053err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001054 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001055 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001056}
1057
Chris Wilson78501ea2010-10-27 12:18:21 +01001058void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001059{
Chris Wilson33626e62010-10-29 16:18:36 +01001060 struct drm_i915_private *dev_priv;
1061 int ret;
1062
Chris Wilson05394f32010-11-08 19:18:58 +00001063 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001064 return;
1065
Chris Wilson33626e62010-10-29 16:18:36 +01001066 /* Disable the ring buffer. The ring must be idle at this point */
1067 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001068 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001069 if (ret)
1070 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1071 ring->name, ret);
1072
Chris Wilson33626e62010-10-29 16:18:36 +01001073 I915_WRITE_CTL(ring, 0);
1074
Chris Wilson78501ea2010-10-27 12:18:21 +01001075 drm_core_ioremapfree(&ring->map, ring->dev);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001076
Chris Wilson05394f32010-11-08 19:18:58 +00001077 i915_gem_object_unpin(ring->obj);
1078 drm_gem_object_unreference(&ring->obj->base);
1079 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001080
Zou Nan hai8d192152010-11-02 16:31:01 +08001081 if (ring->cleanup)
1082 ring->cleanup(ring);
1083
Chris Wilson78501ea2010-10-27 12:18:21 +01001084 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001085}
1086
Chris Wilson78501ea2010-10-27 12:18:21 +01001087static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001088{
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001089 unsigned int *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001090 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001091
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001092 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001093 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001094 if (ret)
1095 return ret;
1096 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001097
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001098 virt = (unsigned int *)(ring->virtual_start + ring->tail);
Chris Wilson1741dd42010-08-04 15:18:12 +01001099 rem /= 8;
1100 while (rem--) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001101 *virt++ = MI_NOOP;
Chris Wilson1741dd42010-08-04 15:18:12 +01001102 *virt++ = MI_NOOP;
1103 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001104
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001105 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001106 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001107
1108 return 0;
1109}
1110
Chris Wilsona71d8d92012-02-15 11:25:36 +00001111static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1112{
1113 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1114 bool was_interruptible;
1115 int ret;
1116
1117 /* XXX As we have not yet audited all the paths to check that
1118 * they are ready for ERESTARTSYS from intel_ring_begin, do not
1119 * allow us to be interruptible by a signal.
1120 */
1121 was_interruptible = dev_priv->mm.interruptible;
1122 dev_priv->mm.interruptible = false;
1123
1124 ret = i915_wait_request(ring, seqno, true);
1125
1126 dev_priv->mm.interruptible = was_interruptible;
1127
1128 return ret;
1129}
1130
1131static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1132{
1133 struct drm_i915_gem_request *request;
1134 u32 seqno = 0;
1135 int ret;
1136
1137 i915_gem_retire_requests_ring(ring);
1138
1139 if (ring->last_retired_head != -1) {
1140 ring->head = ring->last_retired_head;
1141 ring->last_retired_head = -1;
1142 ring->space = ring_space(ring);
1143 if (ring->space >= n)
1144 return 0;
1145 }
1146
1147 list_for_each_entry(request, &ring->request_list, list) {
1148 int space;
1149
1150 if (request->tail == -1)
1151 continue;
1152
1153 space = request->tail - (ring->tail + 8);
1154 if (space < 0)
1155 space += ring->size;
1156 if (space >= n) {
1157 seqno = request->seqno;
1158 break;
1159 }
1160
1161 /* Consume this request in case we need more space than
1162 * is available and so need to prevent a race between
1163 * updating last_retired_head and direct reads of
1164 * I915_RING_HEAD. It also provides a nice sanity check.
1165 */
1166 request->tail = -1;
1167 }
1168
1169 if (seqno == 0)
1170 return -ENOSPC;
1171
1172 ret = intel_ring_wait_seqno(ring, seqno);
1173 if (ret)
1174 return ret;
1175
1176 if (WARN_ON(ring->last_retired_head == -1))
1177 return -ENOSPC;
1178
1179 ring->head = ring->last_retired_head;
1180 ring->last_retired_head = -1;
1181 ring->space = ring_space(ring);
1182 if (WARN_ON(ring->space < n))
1183 return -ENOSPC;
1184
1185 return 0;
1186}
1187
Chris Wilson78501ea2010-10-27 12:18:21 +01001188int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001189{
Chris Wilson78501ea2010-10-27 12:18:21 +01001190 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001191 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001192 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001193 int ret;
Chris Wilson6aa56062010-10-29 21:44:37 +01001194 u32 head;
1195
Chris Wilsonc7dca472011-01-20 17:00:10 +00001196 /* If the reported head position has wrapped or hasn't advanced,
1197 * fallback to the slow and accurate path.
1198 */
1199 head = intel_read_status_page(ring, 4);
1200 if (head > ring->head) {
1201 ring->head = head;
1202 ring->space = ring_space(ring);
1203 if (ring->space >= n)
1204 return 0;
1205 }
1206
Chris Wilsona71d8d92012-02-15 11:25:36 +00001207 ret = intel_ring_wait_request(ring, n);
1208 if (ret != -ENOSPC)
1209 return ret;
1210
Chris Wilsondb53a302011-02-03 11:57:46 +00001211 trace_i915_ring_wait_begin(ring);
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001212 if (drm_core_check_feature(dev, DRIVER_GEM))
1213 /* With GEM the hangcheck timer should kick us out of the loop,
1214 * leaving it early runs the risk of corrupting GEM state (due
1215 * to running on almost untested codepaths). But on resume
1216 * timers don't work yet, so prevent a complete hang in that
1217 * case by choosing an insanely large timeout. */
1218 end = jiffies + 60 * HZ;
1219 else
1220 end = jiffies + 3 * HZ;
1221
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001222 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001223 ring->head = I915_READ_HEAD(ring);
1224 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001225 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001226 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001227 return 0;
1228 }
1229
1230 if (dev->primary->master) {
1231 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1232 if (master_priv->sarea_priv)
1233 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1234 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001235
Chris Wilsone60a0b12010-10-13 10:09:14 +01001236 msleep(1);
Chris Wilsonf4e0b292010-10-29 21:06:16 +01001237 if (atomic_read(&dev_priv->mm.wedged))
1238 return -EAGAIN;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001239 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001240 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001241 return -EBUSY;
1242}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001243
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001244int intel_ring_begin(struct intel_ring_buffer *ring,
1245 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001246{
Chris Wilson21dd3732011-01-26 15:55:56 +00001247 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001248 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001249 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001250
Chris Wilson21dd3732011-01-26 15:55:56 +00001251 if (unlikely(atomic_read(&dev_priv->mm.wedged)))
1252 return -EIO;
1253
Chris Wilson55249ba2010-12-22 14:04:47 +00001254 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001255 ret = intel_wrap_ring_buffer(ring);
1256 if (unlikely(ret))
1257 return ret;
1258 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001259
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001260 if (unlikely(ring->space < n)) {
1261 ret = intel_wait_ring_buffer(ring, n);
1262 if (unlikely(ret))
1263 return ret;
1264 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001265
1266 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001267 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001268}
1269
Chris Wilson78501ea2010-10-27 12:18:21 +01001270void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001271{
Chris Wilsond97ed332010-08-04 15:18:13 +01001272 ring->tail &= ring->size - 1;
Chris Wilson78501ea2010-10-27 12:18:21 +01001273 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001274}
1275
Chris Wilsone0708682010-09-19 14:46:27 +01001276static const struct intel_ring_buffer render_ring = {
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001277 .name = "render ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001278 .id = RCS,
Daniel Vetter333e9fe2010-08-02 16:24:01 +02001279 .mmio_base = RENDER_RING_BASE,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001280 .size = 32 * PAGE_SIZE,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001281 .init = init_render_ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001282 .write_tail = ring_write_tail,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001283 .flush = render_ring_flush,
1284 .add_request = render_ring_add_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001285 .get_seqno = ring_get_seqno,
1286 .irq_get = render_ring_get_irq,
1287 .irq_put = render_ring_put_irq,
Chris Wilson78501ea2010-10-27 12:18:21 +01001288 .dispatch_execbuffer = render_ring_dispatch_execbuffer,
Akshay Joshi0206e352011-08-16 15:34:10 -04001289 .cleanup = render_ring_cleanup,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001290 .sync_to = render_ring_sync_to,
1291 .semaphore_register = {MI_SEMAPHORE_SYNC_INVALID,
1292 MI_SEMAPHORE_SYNC_RV,
1293 MI_SEMAPHORE_SYNC_RB},
1294 .signal_mbox = {GEN6_VRSYNC, GEN6_BRSYNC},
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001295};
Zou Nan haid1b851f2010-05-21 09:08:57 +08001296
1297/* ring buffer for bit-stream decoder */
1298
Chris Wilsone0708682010-09-19 14:46:27 +01001299static const struct intel_ring_buffer bsd_ring = {
Zou Nan haid1b851f2010-05-21 09:08:57 +08001300 .name = "bsd ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001301 .id = VCS,
Daniel Vetter333e9fe2010-08-02 16:24:01 +02001302 .mmio_base = BSD_RING_BASE,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001303 .size = 32 * PAGE_SIZE,
Chris Wilson78501ea2010-10-27 12:18:21 +01001304 .init = init_ring_common,
Chris Wilson297b0c52010-10-22 17:02:41 +01001305 .write_tail = ring_write_tail,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001306 .flush = bsd_ring_flush,
Chris Wilson549f7362010-10-19 11:19:32 +01001307 .add_request = ring_add_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001308 .get_seqno = ring_get_seqno,
1309 .irq_get = bsd_ring_get_irq,
1310 .irq_put = bsd_ring_put_irq,
Chris Wilson78501ea2010-10-27 12:18:21 +01001311 .dispatch_execbuffer = ring_dispatch_execbuffer,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001312};
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001313
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001314
Chris Wilson78501ea2010-10-27 12:18:21 +01001315static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001316 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001317{
Akshay Joshi0206e352011-08-16 15:34:10 -04001318 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001319
1320 /* Every tail move must follow the sequence below */
Akshay Joshi0206e352011-08-16 15:34:10 -04001321 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1322 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1323 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE);
1324 I915_WRITE(GEN6_BSD_RNCID, 0x0);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001325
Akshay Joshi0206e352011-08-16 15:34:10 -04001326 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
1327 GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0,
1328 50))
1329 DRM_ERROR("timed out waiting for IDLE Indicator\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001330
Akshay Joshi0206e352011-08-16 15:34:10 -04001331 I915_WRITE_TAIL(ring, value);
1332 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1333 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1334 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001335}
1336
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001337static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001338 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001339{
Chris Wilson71a77e02011-02-02 12:13:49 +00001340 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001341 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001342
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001343 ret = intel_ring_begin(ring, 4);
1344 if (ret)
1345 return ret;
1346
Chris Wilson71a77e02011-02-02 12:13:49 +00001347 cmd = MI_FLUSH_DW;
1348 if (invalidate & I915_GEM_GPU_DOMAINS)
1349 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1350 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001351 intel_ring_emit(ring, 0);
1352 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001353 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001354 intel_ring_advance(ring);
1355 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001356}
1357
1358static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001359gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001360 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001361{
Akshay Joshi0206e352011-08-16 15:34:10 -04001362 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001363
Akshay Joshi0206e352011-08-16 15:34:10 -04001364 ret = intel_ring_begin(ring, 2);
1365 if (ret)
1366 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001367
Akshay Joshi0206e352011-08-16 15:34:10 -04001368 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1369 /* bit0-7 is the length on GEN6+ */
1370 intel_ring_emit(ring, offset);
1371 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001372
Akshay Joshi0206e352011-08-16 15:34:10 -04001373 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001374}
1375
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001376static bool
Chris Wilson0f468322011-01-04 17:35:21 +00001377gen6_render_ring_get_irq(struct intel_ring_buffer *ring)
1378{
1379 return gen6_ring_get_irq(ring,
1380 GT_USER_INTERRUPT,
1381 GEN6_RENDER_USER_INTERRUPT);
1382}
1383
1384static void
1385gen6_render_ring_put_irq(struct intel_ring_buffer *ring)
1386{
1387 return gen6_ring_put_irq(ring,
1388 GT_USER_INTERRUPT,
1389 GEN6_RENDER_USER_INTERRUPT);
1390}
1391
1392static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001393gen6_bsd_ring_get_irq(struct intel_ring_buffer *ring)
1394{
Chris Wilson0f468322011-01-04 17:35:21 +00001395 return gen6_ring_get_irq(ring,
1396 GT_GEN6_BSD_USER_INTERRUPT,
1397 GEN6_BSD_USER_INTERRUPT);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001398}
1399
1400static void
1401gen6_bsd_ring_put_irq(struct intel_ring_buffer *ring)
1402{
Chris Wilson0f468322011-01-04 17:35:21 +00001403 return gen6_ring_put_irq(ring,
1404 GT_GEN6_BSD_USER_INTERRUPT,
1405 GEN6_BSD_USER_INTERRUPT);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001406}
1407
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001408/* ring buffer for Video Codec for Gen6+ */
Chris Wilsone0708682010-09-19 14:46:27 +01001409static const struct intel_ring_buffer gen6_bsd_ring = {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001410 .name = "gen6 bsd ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001411 .id = VCS,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001412 .mmio_base = GEN6_BSD_RING_BASE,
1413 .size = 32 * PAGE_SIZE,
1414 .init = init_ring_common,
1415 .write_tail = gen6_bsd_ring_write_tail,
1416 .flush = gen6_ring_flush,
1417 .add_request = gen6_add_request,
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001418 .get_seqno = gen6_ring_get_seqno,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001419 .irq_get = gen6_bsd_ring_get_irq,
1420 .irq_put = gen6_bsd_ring_put_irq,
1421 .dispatch_execbuffer = gen6_ring_dispatch_execbuffer,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001422 .sync_to = gen6_bsd_ring_sync_to,
1423 .semaphore_register = {MI_SEMAPHORE_SYNC_VR,
1424 MI_SEMAPHORE_SYNC_INVALID,
1425 MI_SEMAPHORE_SYNC_VB},
1426 .signal_mbox = {GEN6_RVSYNC, GEN6_BVSYNC},
Chris Wilson549f7362010-10-19 11:19:32 +01001427};
1428
1429/* Blitter support (SandyBridge+) */
1430
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001431static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001432blt_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001433{
Chris Wilson0f468322011-01-04 17:35:21 +00001434 return gen6_ring_get_irq(ring,
1435 GT_BLT_USER_INTERRUPT,
1436 GEN6_BLITTER_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001437}
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001438
Chris Wilson549f7362010-10-19 11:19:32 +01001439static void
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001440blt_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001441{
Chris Wilson0f468322011-01-04 17:35:21 +00001442 gen6_ring_put_irq(ring,
1443 GT_BLT_USER_INTERRUPT,
1444 GEN6_BLITTER_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001445}
1446
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001447static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001448 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001449{
Chris Wilson71a77e02011-02-02 12:13:49 +00001450 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001451 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001452
Daniel Vetter6a233c72011-12-14 13:57:07 +01001453 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001454 if (ret)
1455 return ret;
1456
Chris Wilson71a77e02011-02-02 12:13:49 +00001457 cmd = MI_FLUSH_DW;
1458 if (invalidate & I915_GEM_DOMAIN_RENDER)
1459 cmd |= MI_INVALIDATE_TLB;
1460 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001461 intel_ring_emit(ring, 0);
1462 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001463 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001464 intel_ring_advance(ring);
1465 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001466}
1467
Chris Wilson549f7362010-10-19 11:19:32 +01001468static const struct intel_ring_buffer gen6_blt_ring = {
Akshay Joshi0206e352011-08-16 15:34:10 -04001469 .name = "blt ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001470 .id = BCS,
Akshay Joshi0206e352011-08-16 15:34:10 -04001471 .mmio_base = BLT_RING_BASE,
1472 .size = 32 * PAGE_SIZE,
Daniel Vetter6a233c72011-12-14 13:57:07 +01001473 .init = init_ring_common,
Akshay Joshi0206e352011-08-16 15:34:10 -04001474 .write_tail = ring_write_tail,
1475 .flush = blt_ring_flush,
1476 .add_request = gen6_add_request,
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001477 .get_seqno = gen6_ring_get_seqno,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001478 .irq_get = blt_ring_get_irq,
1479 .irq_put = blt_ring_put_irq,
Akshay Joshi0206e352011-08-16 15:34:10 -04001480 .dispatch_execbuffer = gen6_ring_dispatch_execbuffer,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001481 .sync_to = gen6_blt_ring_sync_to,
1482 .semaphore_register = {MI_SEMAPHORE_SYNC_BR,
1483 MI_SEMAPHORE_SYNC_BV,
1484 MI_SEMAPHORE_SYNC_INVALID},
1485 .signal_mbox = {GEN6_RBSYNC, GEN6_VBSYNC},
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001486};
1487
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001488int intel_init_render_ring_buffer(struct drm_device *dev)
1489{
1490 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001491 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001492
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001493 *ring = render_ring;
1494 if (INTEL_INFO(dev)->gen >= 6) {
1495 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001496 ring->flush = gen6_render_ring_flush;
Chris Wilson0f468322011-01-04 17:35:21 +00001497 ring->irq_get = gen6_render_ring_get_irq;
1498 ring->irq_put = gen6_render_ring_put_irq;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001499 ring->get_seqno = gen6_ring_get_seqno;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001500 } else if (IS_GEN5(dev)) {
1501 ring->add_request = pc_render_add_request;
1502 ring->get_seqno = pc_render_get_seqno;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001503 }
1504
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001505 if (!I915_NEED_GFX_HWS(dev)) {
1506 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1507 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1508 }
1509
1510 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001511}
1512
Chris Wilsone8616b62011-01-20 09:57:11 +00001513int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1514{
1515 drm_i915_private_t *dev_priv = dev->dev_private;
1516 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1517
1518 *ring = render_ring;
1519 if (INTEL_INFO(dev)->gen >= 6) {
1520 ring->add_request = gen6_add_request;
1521 ring->irq_get = gen6_render_ring_get_irq;
1522 ring->irq_put = gen6_render_ring_put_irq;
1523 } else if (IS_GEN5(dev)) {
1524 ring->add_request = pc_render_add_request;
1525 ring->get_seqno = pc_render_get_seqno;
1526 }
1527
Keith Packardf3234702011-07-22 10:44:39 -07001528 if (!I915_NEED_GFX_HWS(dev))
1529 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1530
Chris Wilsone8616b62011-01-20 09:57:11 +00001531 ring->dev = dev;
1532 INIT_LIST_HEAD(&ring->active_list);
1533 INIT_LIST_HEAD(&ring->request_list);
1534 INIT_LIST_HEAD(&ring->gpu_write_list);
1535
1536 ring->size = size;
1537 ring->effective_size = ring->size;
1538 if (IS_I830(ring->dev))
1539 ring->effective_size -= 128;
1540
1541 ring->map.offset = start;
1542 ring->map.size = size;
1543 ring->map.type = 0;
1544 ring->map.flags = 0;
1545 ring->map.mtrr = 0;
1546
1547 drm_core_ioremap_wc(&ring->map, dev);
1548 if (ring->map.handle == NULL) {
1549 DRM_ERROR("can not ioremap virtual address for"
1550 " ring buffer\n");
1551 return -ENOMEM;
1552 }
1553
1554 ring->virtual_start = (void __force __iomem *)ring->map.handle;
1555 return 0;
1556}
1557
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001558int intel_init_bsd_ring_buffer(struct drm_device *dev)
1559{
1560 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001561 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001562
Jesse Barnes65d3eb12011-04-06 14:54:44 -07001563 if (IS_GEN6(dev) || IS_GEN7(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001564 *ring = gen6_bsd_ring;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001565 else
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001566 *ring = bsd_ring;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001567
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001568 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001569}
Chris Wilson549f7362010-10-19 11:19:32 +01001570
1571int intel_init_blt_ring_buffer(struct drm_device *dev)
1572{
1573 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001574 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001575
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001576 *ring = gen6_blt_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01001577
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001578 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001579}