blob: 80fce51e2f439d9bf4825fffadf05051fb6531b9 [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 Wilson5d031e52012-02-08 13:34:13 +0000290 | 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);
Kenneth Graunke3a69ddd2012-04-27 12:44:41 -0700404
405 /* From the Sandybridge PRM, volume 1 part 3, page 24:
406 * "If this bit is set, STCunit will have LRA as replacement
407 * policy. [...] This bit must be reset. LRA replacement
408 * policy is not supported."
409 */
410 I915_WRITE(CACHE_MODE_0,
411 CM0_STC_EVICT_DISABLE_LRA_SNB << CM0_MASK_SHIFT);
Ben Widawsky84f9f932011-12-12 19:21:58 -0800412 }
413
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800414 return ret;
415}
416
Chris Wilsonc6df5412010-12-15 09:56:50 +0000417static void render_ring_cleanup(struct intel_ring_buffer *ring)
418{
419 if (!ring->private)
420 return;
421
422 cleanup_pipe_control(ring);
423}
424
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000425static void
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700426update_mboxes(struct intel_ring_buffer *ring,
427 u32 seqno,
428 u32 mmio_offset)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000429{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700430 intel_ring_emit(ring, MI_SEMAPHORE_MBOX |
431 MI_SEMAPHORE_GLOBAL_GTT |
432 MI_SEMAPHORE_REGISTER |
433 MI_SEMAPHORE_UPDATE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000434 intel_ring_emit(ring, seqno);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700435 intel_ring_emit(ring, mmio_offset);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000436}
437
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700438/**
439 * gen6_add_request - Update the semaphore mailbox registers
440 *
441 * @ring - ring that is adding a request
442 * @seqno - return seqno stuck into the ring
443 *
444 * Update the mailbox registers in the *other* rings with the current seqno.
445 * This acts like a signal in the canonical semaphore.
446 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000447static int
448gen6_add_request(struct intel_ring_buffer *ring,
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700449 u32 *seqno)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000450{
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700451 u32 mbox1_reg;
452 u32 mbox2_reg;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000453 int ret;
454
455 ret = intel_ring_begin(ring, 10);
456 if (ret)
457 return ret;
458
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700459 mbox1_reg = ring->signal_mbox[0];
460 mbox2_reg = ring->signal_mbox[1];
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000461
Daniel Vetter53d227f2012-01-25 16:32:49 +0100462 *seqno = i915_gem_next_request_seqno(ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700463
464 update_mboxes(ring, *seqno, mbox1_reg);
465 update_mboxes(ring, *seqno, mbox2_reg);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000466 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
467 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700468 intel_ring_emit(ring, *seqno);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000469 intel_ring_emit(ring, MI_USER_INTERRUPT);
470 intel_ring_advance(ring);
471
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000472 return 0;
473}
474
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700475/**
476 * intel_ring_sync - sync the waiter to the signaller on seqno
477 *
478 * @waiter - ring that is waiting
479 * @signaller - ring which has, or will signal
480 * @seqno - seqno which the waiter will block on
481 */
482static int
483intel_ring_sync(struct intel_ring_buffer *waiter,
484 struct intel_ring_buffer *signaller,
485 int ring,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000486 u32 seqno)
487{
488 int ret;
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700489 u32 dw1 = MI_SEMAPHORE_MBOX |
490 MI_SEMAPHORE_COMPARE |
491 MI_SEMAPHORE_REGISTER;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000492
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700493 ret = intel_ring_begin(waiter, 4);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000494 if (ret)
495 return ret;
496
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700497 intel_ring_emit(waiter, dw1 | signaller->semaphore_register[ring]);
498 intel_ring_emit(waiter, seqno);
499 intel_ring_emit(waiter, 0);
500 intel_ring_emit(waiter, MI_NOOP);
501 intel_ring_advance(waiter);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000502
503 return 0;
504}
505
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700506/* VCS->RCS (RVSYNC) or BCS->RCS (RBSYNC) */
507int
508render_ring_sync_to(struct intel_ring_buffer *waiter,
509 struct intel_ring_buffer *signaller,
510 u32 seqno)
511{
512 WARN_ON(signaller->semaphore_register[RCS] == MI_SEMAPHORE_SYNC_INVALID);
513 return intel_ring_sync(waiter,
514 signaller,
515 RCS,
516 seqno);
517}
518
519/* RCS->VCS (VRSYNC) or BCS->VCS (VBSYNC) */
520int
521gen6_bsd_ring_sync_to(struct intel_ring_buffer *waiter,
522 struct intel_ring_buffer *signaller,
523 u32 seqno)
524{
525 WARN_ON(signaller->semaphore_register[VCS] == MI_SEMAPHORE_SYNC_INVALID);
526 return intel_ring_sync(waiter,
527 signaller,
528 VCS,
529 seqno);
530}
531
532/* RCS->BCS (BRSYNC) or VCS->BCS (BVSYNC) */
533int
534gen6_blt_ring_sync_to(struct intel_ring_buffer *waiter,
535 struct intel_ring_buffer *signaller,
536 u32 seqno)
537{
538 WARN_ON(signaller->semaphore_register[BCS] == MI_SEMAPHORE_SYNC_INVALID);
539 return intel_ring_sync(waiter,
540 signaller,
541 BCS,
542 seqno);
543}
544
545
546
Chris Wilsonc6df5412010-12-15 09:56:50 +0000547#define PIPE_CONTROL_FLUSH(ring__, addr__) \
548do { \
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200549 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
550 PIPE_CONTROL_DEPTH_STALL); \
Chris Wilsonc6df5412010-12-15 09:56:50 +0000551 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
552 intel_ring_emit(ring__, 0); \
553 intel_ring_emit(ring__, 0); \
554} while (0)
555
556static int
557pc_render_add_request(struct intel_ring_buffer *ring,
558 u32 *result)
559{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100560 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000561 struct pipe_control *pc = ring->private;
562 u32 scratch_addr = pc->gtt_offset + 128;
563 int ret;
564
565 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
566 * incoherent with writes to memory, i.e. completely fubar,
567 * so we need to use PIPE_NOTIFY instead.
568 *
569 * However, we also need to workaround the qword write
570 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
571 * memory before requesting an interrupt.
572 */
573 ret = intel_ring_begin(ring, 32);
574 if (ret)
575 return ret;
576
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200577 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200578 PIPE_CONTROL_WRITE_FLUSH |
579 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
Chris Wilsonc6df5412010-12-15 09:56:50 +0000580 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
581 intel_ring_emit(ring, seqno);
582 intel_ring_emit(ring, 0);
583 PIPE_CONTROL_FLUSH(ring, scratch_addr);
584 scratch_addr += 128; /* write to separate cachelines */
585 PIPE_CONTROL_FLUSH(ring, scratch_addr);
586 scratch_addr += 128;
587 PIPE_CONTROL_FLUSH(ring, scratch_addr);
588 scratch_addr += 128;
589 PIPE_CONTROL_FLUSH(ring, scratch_addr);
590 scratch_addr += 128;
591 PIPE_CONTROL_FLUSH(ring, scratch_addr);
592 scratch_addr += 128;
593 PIPE_CONTROL_FLUSH(ring, scratch_addr);
Chris Wilsona71d8d92012-02-15 11:25:36 +0000594
Kenneth Graunkefcbc34e2011-10-11 23:41:08 +0200595 intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
Kenneth Graunke9d971b32011-10-11 23:41:09 +0200596 PIPE_CONTROL_WRITE_FLUSH |
597 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
Chris Wilsonc6df5412010-12-15 09:56:50 +0000598 PIPE_CONTROL_NOTIFY);
599 intel_ring_emit(ring, pc->gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
600 intel_ring_emit(ring, seqno);
601 intel_ring_emit(ring, 0);
602 intel_ring_advance(ring);
603
604 *result = seqno;
605 return 0;
606}
607
Chris Wilson3cce4692010-10-27 16:11:02 +0100608static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100609render_ring_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100610 u32 *result)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700611{
Daniel Vetter53d227f2012-01-25 16:32:49 +0100612 u32 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson3cce4692010-10-27 16:11:02 +0100613 int ret;
Zhenyu Wangca764822010-05-27 10:26:42 +0800614
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000615 ret = intel_ring_begin(ring, 4);
616 if (ret)
617 return ret;
Chris Wilson3cce4692010-10-27 16:11:02 +0100618
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000619 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
620 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
621 intel_ring_emit(ring, seqno);
622 intel_ring_emit(ring, MI_USER_INTERRUPT);
Chris Wilson3cce4692010-10-27 16:11:02 +0100623 intel_ring_advance(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000624
Chris Wilson3cce4692010-10-27 16:11:02 +0100625 *result = seqno;
626 return 0;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700627}
628
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800629static u32
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100630gen6_ring_get_seqno(struct intel_ring_buffer *ring)
631{
632 struct drm_device *dev = ring->dev;
633
634 /* Workaround to force correct ordering between irq and seqno writes on
635 * ivb (and maybe also on snb) by reading from a CS register (like
636 * ACTHD) before reading the status page. */
Daniel Vetter1c7eaac2012-03-27 09:31:24 +0200637 if (IS_GEN6(dev) || IS_GEN7(dev))
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100638 intel_ring_get_active_head(ring);
639 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
640}
641
642static u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000643ring_get_seqno(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800644{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000645 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
646}
647
Chris Wilsonc6df5412010-12-15 09:56:50 +0000648static u32
649pc_render_get_seqno(struct intel_ring_buffer *ring)
650{
651 struct pipe_control *pc = ring->private;
652 return pc->cpu_page[0];
653}
654
Chris Wilson0f468322011-01-04 17:35:21 +0000655static void
656ironlake_enable_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
664ironlake_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
665{
666 dev_priv->gt_irq_mask |= mask;
667 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
668 POSTING_READ(GTIMR);
669}
670
671static void
672i915_enable_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
679static void
680i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
681{
682 dev_priv->irq_mask |= mask;
683 I915_WRITE(IMR, dev_priv->irq_mask);
684 POSTING_READ(IMR);
685}
686
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000687static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000688render_ring_get_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700689{
Chris Wilson78501ea2010-10-27 12:18:21 +0100690 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000691 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700692
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000693 if (!dev->irq_enabled)
694 return false;
695
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000696 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000697 if (ring->irq_refcount++ == 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700698 if (HAS_PCH_SPLIT(dev))
Chris Wilson0f468322011-01-04 17:35:21 +0000699 ironlake_enable_irq(dev_priv,
700 GT_PIPE_NOTIFY | GT_USER_INTERRUPT);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700701 else
702 i915_enable_irq(dev_priv, I915_USER_INTERRUPT);
703 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000704 spin_unlock(&ring->irq_lock);
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000705
706 return true;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700707}
708
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800709static void
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000710render_ring_put_irq(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700711{
Chris Wilson78501ea2010-10-27 12:18:21 +0100712 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000713 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700714
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000715 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000716 if (--ring->irq_refcount == 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700717 if (HAS_PCH_SPLIT(dev))
Chris Wilson0f468322011-01-04 17:35:21 +0000718 ironlake_disable_irq(dev_priv,
719 GT_USER_INTERRUPT |
720 GT_PIPE_NOTIFY);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700721 else
722 i915_disable_irq(dev_priv, I915_USER_INTERRUPT);
723 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000724 spin_unlock(&ring->irq_lock);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700725}
726
Chris Wilson78501ea2010-10-27 12:18:21 +0100727void intel_ring_setup_status_page(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800728{
Eric Anholt45930102011-05-06 17:12:35 -0700729 struct drm_device *dev = ring->dev;
Chris Wilson78501ea2010-10-27 12:18:21 +0100730 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt45930102011-05-06 17:12:35 -0700731 u32 mmio = 0;
732
733 /* The ring status page addresses are no longer next to the rest of
734 * the ring registers as of gen7.
735 */
736 if (IS_GEN7(dev)) {
737 switch (ring->id) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100738 case RCS:
Eric Anholt45930102011-05-06 17:12:35 -0700739 mmio = RENDER_HWS_PGA_GEN7;
740 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100741 case BCS:
Eric Anholt45930102011-05-06 17:12:35 -0700742 mmio = BLT_HWS_PGA_GEN7;
743 break;
Daniel Vetter96154f22011-12-14 13:57:00 +0100744 case VCS:
Eric Anholt45930102011-05-06 17:12:35 -0700745 mmio = BSD_HWS_PGA_GEN7;
746 break;
747 }
748 } else if (IS_GEN6(ring->dev)) {
749 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
750 } else {
751 mmio = RING_HWS_PGA(ring->mmio_base);
752 }
753
Chris Wilson78501ea2010-10-27 12:18:21 +0100754 I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
755 POSTING_READ(mmio);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800756}
757
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000758static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100759bsd_ring_flush(struct intel_ring_buffer *ring,
760 u32 invalidate_domains,
761 u32 flush_domains)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800762{
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000763 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000764
Chris Wilsonb72f3ac2011-01-04 17:34:02 +0000765 ret = intel_ring_begin(ring, 2);
766 if (ret)
767 return ret;
768
769 intel_ring_emit(ring, MI_FLUSH);
770 intel_ring_emit(ring, MI_NOOP);
771 intel_ring_advance(ring);
772 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800773}
774
Chris Wilson3cce4692010-10-27 16:11:02 +0100775static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100776ring_add_request(struct intel_ring_buffer *ring,
Chris Wilson3cce4692010-10-27 16:11:02 +0100777 u32 *result)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800778{
779 u32 seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +0100780 int ret;
781
782 ret = intel_ring_begin(ring, 4);
783 if (ret)
784 return ret;
Chris Wilson6f392d5482010-08-07 11:01:22 +0100785
Daniel Vetter53d227f2012-01-25 16:32:49 +0100786 seqno = i915_gem_next_request_seqno(ring);
Chris Wilson6f392d5482010-08-07 11:01:22 +0100787
Chris Wilson3cce4692010-10-27 16:11:02 +0100788 intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
789 intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
790 intel_ring_emit(ring, seqno);
791 intel_ring_emit(ring, MI_USER_INTERRUPT);
792 intel_ring_advance(ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800793
Chris Wilson3cce4692010-10-27 16:11:02 +0100794 *result = seqno;
795 return 0;
Zou Nan haid1b851f2010-05-21 09:08:57 +0800796}
797
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000798static bool
Chris Wilson0f468322011-01-04 17:35:21 +0000799gen6_ring_get_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag)
800{
801 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000802 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000803
804 if (!dev->irq_enabled)
805 return false;
806
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100807 /* It looks like we need to prevent the gt from suspending while waiting
808 * for an notifiy irq, otherwise irqs seem to get lost on at least the
809 * blt/bsd rings on ivb. */
Daniel Vetter99ffa162012-01-25 14:04:00 +0100810 gen6_gt_force_wake_get(dev_priv);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100811
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000812 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000813 if (ring->irq_refcount++ == 0) {
Chris Wilson0f468322011-01-04 17:35:21 +0000814 ring->irq_mask &= ~rflag;
815 I915_WRITE_IMR(ring, ring->irq_mask);
816 ironlake_enable_irq(dev_priv, gflag);
Chris Wilson0f468322011-01-04 17:35:21 +0000817 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000818 spin_unlock(&ring->irq_lock);
Chris Wilson0f468322011-01-04 17:35:21 +0000819
820 return true;
821}
822
823static void
824gen6_ring_put_irq(struct intel_ring_buffer *ring, u32 gflag, u32 rflag)
825{
826 struct drm_device *dev = ring->dev;
Chris Wilson01a03332011-01-04 22:22:56 +0000827 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson0f468322011-01-04 17:35:21 +0000828
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000829 spin_lock(&ring->irq_lock);
Chris Wilson01a03332011-01-04 22:22:56 +0000830 if (--ring->irq_refcount == 0) {
Chris Wilson0f468322011-01-04 17:35:21 +0000831 ring->irq_mask |= rflag;
832 I915_WRITE_IMR(ring, ring->irq_mask);
833 ironlake_disable_irq(dev_priv, gflag);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000834 }
Chris Wilson0dc79fb2011-01-05 10:32:24 +0000835 spin_unlock(&ring->irq_lock);
Daniel Vetter4cd53c02012-12-14 16:01:25 +0100836
Daniel Vetter99ffa162012-01-25 14:04:00 +0100837 gen6_gt_force_wake_put(dev_priv);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000838}
839
Chris Wilsonb13c2b92010-12-13 16:54:50 +0000840static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000841bsd_ring_get_irq(struct intel_ring_buffer *ring)
842{
Feng, Boqun5bfa1062011-05-16 16:02:39 +0800843 struct drm_device *dev = ring->dev;
844 drm_i915_private_t *dev_priv = dev->dev_private;
845
846 if (!dev->irq_enabled)
847 return false;
848
849 spin_lock(&ring->irq_lock);
850 if (ring->irq_refcount++ == 0) {
851 if (IS_G4X(dev))
852 i915_enable_irq(dev_priv, I915_BSD_USER_INTERRUPT);
853 else
854 ironlake_enable_irq(dev_priv, GT_BSD_USER_INTERRUPT);
855 }
856 spin_unlock(&ring->irq_lock);
857
858 return true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000859}
860static void
861bsd_ring_put_irq(struct intel_ring_buffer *ring)
862{
Feng, Boqun5bfa1062011-05-16 16:02:39 +0800863 struct drm_device *dev = ring->dev;
864 drm_i915_private_t *dev_priv = dev->dev_private;
865
866 spin_lock(&ring->irq_lock);
867 if (--ring->irq_refcount == 0) {
868 if (IS_G4X(dev))
869 i915_disable_irq(dev_priv, I915_BSD_USER_INTERRUPT);
870 else
871 ironlake_disable_irq(dev_priv, GT_BSD_USER_INTERRUPT);
872 }
873 spin_unlock(&ring->irq_lock);
Zou Nan haid1b851f2010-05-21 09:08:57 +0800874}
875
876static int
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000877ring_dispatch_execbuffer(struct intel_ring_buffer *ring, u32 offset, u32 length)
Zou Nan haid1b851f2010-05-21 09:08:57 +0800878{
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100879 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +0100880
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100881 ret = intel_ring_begin(ring, 2);
882 if (ret)
883 return ret;
884
Chris Wilson78501ea2010-10-27 12:18:21 +0100885 intel_ring_emit(ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000886 MI_BATCH_BUFFER_START | (2 << 6) |
Chris Wilson78501ea2010-10-27 12:18:21 +0100887 MI_BATCH_NON_SECURE_I965);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000888 intel_ring_emit(ring, offset);
Chris Wilson78501ea2010-10-27 12:18:21 +0100889 intel_ring_advance(ring);
890
Zou Nan haid1b851f2010-05-21 09:08:57 +0800891 return 0;
892}
893
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800894static int
Chris Wilson78501ea2010-10-27 12:18:21 +0100895render_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000896 u32 offset, u32 len)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700897{
Chris Wilson78501ea2010-10-27 12:18:21 +0100898 struct drm_device *dev = ring->dev;
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000899 int ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700900
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000901 if (IS_I830(dev) || IS_845G(dev)) {
902 ret = intel_ring_begin(ring, 4);
903 if (ret)
904 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700905
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000906 intel_ring_emit(ring, MI_BATCH_BUFFER);
907 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
908 intel_ring_emit(ring, offset + len - 8);
909 intel_ring_emit(ring, 0);
910 } else {
911 ret = intel_ring_begin(ring, 2);
912 if (ret)
913 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100914
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000915 if (INTEL_INFO(dev)->gen >= 4) {
916 intel_ring_emit(ring,
917 MI_BATCH_BUFFER_START | (2 << 6) |
918 MI_BATCH_NON_SECURE_I965);
919 intel_ring_emit(ring, offset);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700920 } else {
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000921 intel_ring_emit(ring,
922 MI_BATCH_BUFFER_START | (2 << 6));
923 intel_ring_emit(ring, offset | MI_BATCH_NON_SECURE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700924 }
925 }
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000926 intel_ring_advance(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700927
Eric Anholt62fdfea2010-05-21 13:26:39 -0700928 return 0;
929}
930
Chris Wilson78501ea2010-10-27 12:18:21 +0100931static void cleanup_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700932{
Chris Wilson78501ea2010-10-27 12:18:21 +0100933 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000934 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700935
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800936 obj = ring->status_page.obj;
937 if (obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700938 return;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700939
Chris Wilson05394f32010-11-08 19:18:58 +0000940 kunmap(obj->pages[0]);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700941 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000942 drm_gem_object_unreference(&obj->base);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800943 ring->status_page.obj = NULL;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700944
945 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700946}
947
Chris Wilson78501ea2010-10-27 12:18:21 +0100948static int init_status_page(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700949{
Chris Wilson78501ea2010-10-27 12:18:21 +0100950 struct drm_device *dev = ring->dev;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700951 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000952 struct drm_i915_gem_object *obj;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700953 int ret;
954
Eric Anholt62fdfea2010-05-21 13:26:39 -0700955 obj = i915_gem_alloc_object(dev, 4096);
956 if (obj == NULL) {
957 DRM_ERROR("Failed to allocate status page\n");
958 ret = -ENOMEM;
959 goto err;
960 }
Chris Wilsone4ffd172011-04-04 09:44:39 +0100961
962 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700963
Daniel Vetter75e9e912010-11-04 17:11:09 +0100964 ret = i915_gem_object_pin(obj, 4096, true);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700965 if (ret != 0) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700966 goto err_unref;
967 }
968
Chris Wilson05394f32010-11-08 19:18:58 +0000969 ring->status_page.gfx_addr = obj->gtt_offset;
970 ring->status_page.page_addr = kmap(obj->pages[0]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800971 if (ring->status_page.page_addr == NULL) {
Eric Anholt62fdfea2010-05-21 13:26:39 -0700972 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Eric Anholt62fdfea2010-05-21 13:26:39 -0700973 goto err_unpin;
974 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800975 ring->status_page.obj = obj;
976 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700977
Chris Wilson78501ea2010-10-27 12:18:21 +0100978 intel_ring_setup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800979 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
980 ring->name, ring->status_page.gfx_addr);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700981
982 return 0;
983
984err_unpin:
985 i915_gem_object_unpin(obj);
986err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +0000987 drm_gem_object_unreference(&obj->base);
Eric Anholt62fdfea2010-05-21 13:26:39 -0700988err:
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800989 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -0700990}
991
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800992int intel_init_ring_buffer(struct drm_device *dev,
Chris Wilsonab6f8e32010-09-19 17:53:44 +0100993 struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -0700994{
Chris Wilson05394f32010-11-08 19:18:58 +0000995 struct drm_i915_gem_object *obj;
Chris Wilsondd785e32010-08-07 11:01:34 +0100996 int ret;
997
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800998 ring->dev = dev;
Chris Wilson23bc5982010-09-29 16:10:57 +0100999 INIT_LIST_HEAD(&ring->active_list);
1000 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01001001 INIT_LIST_HEAD(&ring->gpu_write_list);
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001002
Chris Wilsonb259f672011-03-29 13:19:09 +01001003 init_waitqueue_head(&ring->irq_queue);
Chris Wilson0dc79fb2011-01-05 10:32:24 +00001004 spin_lock_init(&ring->irq_lock);
Chris Wilson0f468322011-01-04 17:35:21 +00001005 ring->irq_mask = ~0;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001006
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001007 if (I915_NEED_GFX_HWS(dev)) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001008 ret = init_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001009 if (ret)
1010 return ret;
1011 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001012
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001013 obj = i915_gem_alloc_object(dev, ring->size);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001014 if (obj == NULL) {
1015 DRM_ERROR("Failed to allocate ringbuffer\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001016 ret = -ENOMEM;
Chris Wilsondd785e32010-08-07 11:01:34 +01001017 goto err_hws;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001018 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001019
Chris Wilson05394f32010-11-08 19:18:58 +00001020 ring->obj = obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001021
Daniel Vetter75e9e912010-11-04 17:11:09 +01001022 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Chris Wilsondd785e32010-08-07 11:01:34 +01001023 if (ret)
1024 goto err_unref;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001025
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001026 ring->map.size = ring->size;
Chris Wilson05394f32010-11-08 19:18:58 +00001027 ring->map.offset = dev->agp->base + obj->gtt_offset;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001028 ring->map.type = 0;
1029 ring->map.flags = 0;
1030 ring->map.mtrr = 0;
1031
1032 drm_core_ioremap_wc(&ring->map, dev);
1033 if (ring->map.handle == NULL) {
1034 DRM_ERROR("Failed to map ringbuffer.\n");
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001035 ret = -EINVAL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001036 goto err_unpin;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001037 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001038
Eric Anholt62fdfea2010-05-21 13:26:39 -07001039 ring->virtual_start = ring->map.handle;
Chris Wilson78501ea2010-10-27 12:18:21 +01001040 ret = ring->init(ring);
Chris Wilsondd785e32010-08-07 11:01:34 +01001041 if (ret)
1042 goto err_unmap;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001043
Chris Wilson55249ba2010-12-22 14:04:47 +00001044 /* Workaround an erratum on the i830 which causes a hang if
1045 * the TAIL pointer points to within the last 2 cachelines
1046 * of the buffer.
1047 */
1048 ring->effective_size = ring->size;
Chris Wilson27c1cbd2012-04-09 13:59:46 +01001049 if (IS_I830(ring->dev) || IS_845G(ring->dev))
Chris Wilson55249ba2010-12-22 14:04:47 +00001050 ring->effective_size -= 128;
1051
Chris Wilsonc584fe42010-10-29 18:15:52 +01001052 return 0;
Chris Wilsondd785e32010-08-07 11:01:34 +01001053
1054err_unmap:
1055 drm_core_ioremapfree(&ring->map, dev);
1056err_unpin:
1057 i915_gem_object_unpin(obj);
1058err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001059 drm_gem_object_unreference(&obj->base);
1060 ring->obj = NULL;
Chris Wilsondd785e32010-08-07 11:01:34 +01001061err_hws:
Chris Wilson78501ea2010-10-27 12:18:21 +01001062 cleanup_status_page(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001063 return ret;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001064}
1065
Chris Wilson78501ea2010-10-27 12:18:21 +01001066void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001067{
Chris Wilson33626e62010-10-29 16:18:36 +01001068 struct drm_i915_private *dev_priv;
1069 int ret;
1070
Chris Wilson05394f32010-11-08 19:18:58 +00001071 if (ring->obj == NULL)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001072 return;
1073
Chris Wilson33626e62010-10-29 16:18:36 +01001074 /* Disable the ring buffer. The ring must be idle at this point */
1075 dev_priv = ring->dev->dev_private;
Ben Widawsky96f298a2011-03-19 18:14:27 -07001076 ret = intel_wait_ring_idle(ring);
Chris Wilson29ee3992011-01-24 16:35:42 +00001077 if (ret)
1078 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
1079 ring->name, ret);
1080
Chris Wilson33626e62010-10-29 16:18:36 +01001081 I915_WRITE_CTL(ring, 0);
1082
Chris Wilson78501ea2010-10-27 12:18:21 +01001083 drm_core_ioremapfree(&ring->map, ring->dev);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001084
Chris Wilson05394f32010-11-08 19:18:58 +00001085 i915_gem_object_unpin(ring->obj);
1086 drm_gem_object_unreference(&ring->obj->base);
1087 ring->obj = NULL;
Chris Wilson78501ea2010-10-27 12:18:21 +01001088
Zou Nan hai8d192152010-11-02 16:31:01 +08001089 if (ring->cleanup)
1090 ring->cleanup(ring);
1091
Chris Wilson78501ea2010-10-27 12:18:21 +01001092 cleanup_status_page(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001093}
1094
Chris Wilson78501ea2010-10-27 12:18:21 +01001095static int intel_wrap_ring_buffer(struct intel_ring_buffer *ring)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001096{
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001097 unsigned int *virt;
Chris Wilson55249ba2010-12-22 14:04:47 +00001098 int rem = ring->size - ring->tail;
Eric Anholt62fdfea2010-05-21 13:26:39 -07001099
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001100 if (ring->space < rem) {
Chris Wilson78501ea2010-10-27 12:18:21 +01001101 int ret = intel_wait_ring_buffer(ring, rem);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001102 if (ret)
1103 return ret;
1104 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001105
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001106 virt = (unsigned int *)(ring->virtual_start + ring->tail);
Chris Wilson1741dd42010-08-04 15:18:12 +01001107 rem /= 8;
1108 while (rem--) {
Eric Anholt62fdfea2010-05-21 13:26:39 -07001109 *virt++ = MI_NOOP;
Chris Wilson1741dd42010-08-04 15:18:12 +01001110 *virt++ = MI_NOOP;
1111 }
Eric Anholt62fdfea2010-05-21 13:26:39 -07001112
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001113 ring->tail = 0;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001114 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001115
1116 return 0;
1117}
1118
Chris Wilsona71d8d92012-02-15 11:25:36 +00001119static int intel_ring_wait_seqno(struct intel_ring_buffer *ring, u32 seqno)
1120{
1121 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1122 bool was_interruptible;
1123 int ret;
1124
1125 /* XXX As we have not yet audited all the paths to check that
1126 * they are ready for ERESTARTSYS from intel_ring_begin, do not
1127 * allow us to be interruptible by a signal.
1128 */
1129 was_interruptible = dev_priv->mm.interruptible;
1130 dev_priv->mm.interruptible = false;
1131
1132 ret = i915_wait_request(ring, seqno, true);
1133
1134 dev_priv->mm.interruptible = was_interruptible;
1135
1136 return ret;
1137}
1138
1139static int intel_ring_wait_request(struct intel_ring_buffer *ring, int n)
1140{
1141 struct drm_i915_gem_request *request;
1142 u32 seqno = 0;
1143 int ret;
1144
1145 i915_gem_retire_requests_ring(ring);
1146
1147 if (ring->last_retired_head != -1) {
1148 ring->head = ring->last_retired_head;
1149 ring->last_retired_head = -1;
1150 ring->space = ring_space(ring);
1151 if (ring->space >= n)
1152 return 0;
1153 }
1154
1155 list_for_each_entry(request, &ring->request_list, list) {
1156 int space;
1157
1158 if (request->tail == -1)
1159 continue;
1160
1161 space = request->tail - (ring->tail + 8);
1162 if (space < 0)
1163 space += ring->size;
1164 if (space >= n) {
1165 seqno = request->seqno;
1166 break;
1167 }
1168
1169 /* Consume this request in case we need more space than
1170 * is available and so need to prevent a race between
1171 * updating last_retired_head and direct reads of
1172 * I915_RING_HEAD. It also provides a nice sanity check.
1173 */
1174 request->tail = -1;
1175 }
1176
1177 if (seqno == 0)
1178 return -ENOSPC;
1179
1180 ret = intel_ring_wait_seqno(ring, seqno);
1181 if (ret)
1182 return ret;
1183
1184 if (WARN_ON(ring->last_retired_head == -1))
1185 return -ENOSPC;
1186
1187 ring->head = ring->last_retired_head;
1188 ring->last_retired_head = -1;
1189 ring->space = ring_space(ring);
1190 if (WARN_ON(ring->space < n))
1191 return -ENOSPC;
1192
1193 return 0;
1194}
1195
Chris Wilson78501ea2010-10-27 12:18:21 +01001196int intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n)
Eric Anholt62fdfea2010-05-21 13:26:39 -07001197{
Chris Wilson78501ea2010-10-27 12:18:21 +01001198 struct drm_device *dev = ring->dev;
Zou Nan haicae58522010-11-09 17:17:32 +08001199 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson78501ea2010-10-27 12:18:21 +01001200 unsigned long end;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001201 int ret;
Chris Wilsonc7dca472011-01-20 17:00:10 +00001202
Chris Wilsona71d8d92012-02-15 11:25:36 +00001203 ret = intel_ring_wait_request(ring, n);
1204 if (ret != -ENOSPC)
1205 return ret;
1206
Chris Wilsondb53a302011-02-03 11:57:46 +00001207 trace_i915_ring_wait_begin(ring);
Daniel Vettere6bfaf82011-12-14 13:56:59 +01001208 if (drm_core_check_feature(dev, DRIVER_GEM))
1209 /* With GEM the hangcheck timer should kick us out of the loop,
1210 * leaving it early runs the risk of corrupting GEM state (due
1211 * to running on almost untested codepaths). But on resume
1212 * timers don't work yet, so prevent a complete hang in that
1213 * case by choosing an insanely large timeout. */
1214 end = jiffies + 60 * HZ;
1215 else
1216 end = jiffies + 3 * HZ;
1217
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001218 do {
Chris Wilsonc7dca472011-01-20 17:00:10 +00001219 ring->head = I915_READ_HEAD(ring);
1220 ring->space = ring_space(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001221 if (ring->space >= n) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001222 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001223 return 0;
1224 }
1225
1226 if (dev->primary->master) {
1227 struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1228 if (master_priv->sarea_priv)
1229 master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1230 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001231
Chris Wilsone60a0b12010-10-13 10:09:14 +01001232 msleep(1);
Chris Wilsonf4e0b292010-10-29 21:06:16 +01001233 if (atomic_read(&dev_priv->mm.wedged))
1234 return -EAGAIN;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001235 } while (!time_after(jiffies, end));
Chris Wilsondb53a302011-02-03 11:57:46 +00001236 trace_i915_ring_wait_end(ring);
Eric Anholt62fdfea2010-05-21 13:26:39 -07001237 return -EBUSY;
1238}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001239
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001240int intel_ring_begin(struct intel_ring_buffer *ring,
1241 int num_dwords)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001242{
Chris Wilson21dd3732011-01-26 15:55:56 +00001243 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Zou Nan haibe26a102010-06-12 17:40:24 +08001244 int n = 4*num_dwords;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001245 int ret;
Chris Wilson78501ea2010-10-27 12:18:21 +01001246
Chris Wilson21dd3732011-01-26 15:55:56 +00001247 if (unlikely(atomic_read(&dev_priv->mm.wedged)))
1248 return -EIO;
1249
Chris Wilson55249ba2010-12-22 14:04:47 +00001250 if (unlikely(ring->tail + n > ring->effective_size)) {
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001251 ret = intel_wrap_ring_buffer(ring);
1252 if (unlikely(ret))
1253 return ret;
1254 }
Chris Wilson78501ea2010-10-27 12:18:21 +01001255
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001256 if (unlikely(ring->space < n)) {
1257 ret = intel_wait_ring_buffer(ring, n);
1258 if (unlikely(ret))
1259 return ret;
1260 }
Chris Wilsond97ed332010-08-04 15:18:13 +01001261
1262 ring->space -= n;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001263 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001264}
1265
Chris Wilson78501ea2010-10-27 12:18:21 +01001266void intel_ring_advance(struct intel_ring_buffer *ring)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001267{
Chris Wilsond97ed332010-08-04 15:18:13 +01001268 ring->tail &= ring->size - 1;
Chris Wilson78501ea2010-10-27 12:18:21 +01001269 ring->write_tail(ring, ring->tail);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001270}
1271
Chris Wilsone0708682010-09-19 14:46:27 +01001272static const struct intel_ring_buffer render_ring = {
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001273 .name = "render ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001274 .id = RCS,
Daniel Vetter333e9fe2010-08-02 16:24:01 +02001275 .mmio_base = RENDER_RING_BASE,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001276 .size = 32 * PAGE_SIZE,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001277 .init = init_render_ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001278 .write_tail = ring_write_tail,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001279 .flush = render_ring_flush,
1280 .add_request = render_ring_add_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001281 .get_seqno = ring_get_seqno,
1282 .irq_get = render_ring_get_irq,
1283 .irq_put = render_ring_put_irq,
Chris Wilson78501ea2010-10-27 12:18:21 +01001284 .dispatch_execbuffer = render_ring_dispatch_execbuffer,
Akshay Joshi0206e352011-08-16 15:34:10 -04001285 .cleanup = render_ring_cleanup,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001286 .sync_to = render_ring_sync_to,
1287 .semaphore_register = {MI_SEMAPHORE_SYNC_INVALID,
1288 MI_SEMAPHORE_SYNC_RV,
1289 MI_SEMAPHORE_SYNC_RB},
1290 .signal_mbox = {GEN6_VRSYNC, GEN6_BRSYNC},
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001291};
Zou Nan haid1b851f2010-05-21 09:08:57 +08001292
1293/* ring buffer for bit-stream decoder */
1294
Chris Wilsone0708682010-09-19 14:46:27 +01001295static const struct intel_ring_buffer bsd_ring = {
Zou Nan haid1b851f2010-05-21 09:08:57 +08001296 .name = "bsd ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001297 .id = VCS,
Daniel Vetter333e9fe2010-08-02 16:24:01 +02001298 .mmio_base = BSD_RING_BASE,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001299 .size = 32 * PAGE_SIZE,
Chris Wilson78501ea2010-10-27 12:18:21 +01001300 .init = init_ring_common,
Chris Wilson297b0c52010-10-22 17:02:41 +01001301 .write_tail = ring_write_tail,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001302 .flush = bsd_ring_flush,
Chris Wilson549f7362010-10-19 11:19:32 +01001303 .add_request = ring_add_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001304 .get_seqno = ring_get_seqno,
1305 .irq_get = bsd_ring_get_irq,
1306 .irq_put = bsd_ring_put_irq,
Chris Wilson78501ea2010-10-27 12:18:21 +01001307 .dispatch_execbuffer = ring_dispatch_execbuffer,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001308};
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001309
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001310
Chris Wilson78501ea2010-10-27 12:18:21 +01001311static void gen6_bsd_ring_write_tail(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +01001312 u32 value)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001313{
Akshay Joshi0206e352011-08-16 15:34:10 -04001314 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001315
1316 /* Every tail move must follow the sequence below */
Akshay Joshi0206e352011-08-16 15:34:10 -04001317 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1318 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1319 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_DISABLE);
1320 I915_WRITE(GEN6_BSD_RNCID, 0x0);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001321
Akshay Joshi0206e352011-08-16 15:34:10 -04001322 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
1323 GEN6_BSD_SLEEP_PSMI_CONTROL_IDLE_INDICATOR) == 0,
1324 50))
1325 DRM_ERROR("timed out waiting for IDLE Indicator\n");
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001326
Akshay Joshi0206e352011-08-16 15:34:10 -04001327 I915_WRITE_TAIL(ring, value);
1328 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
1329 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_MODIFY_MASK |
1330 GEN6_BSD_SLEEP_PSMI_CONTROL_RC_ILDL_MESSAGE_ENABLE);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001331}
1332
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001333static int gen6_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001334 u32 invalidate, u32 flush)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001335{
Chris Wilson71a77e02011-02-02 12:13:49 +00001336 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001337 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001338
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001339 ret = intel_ring_begin(ring, 4);
1340 if (ret)
1341 return ret;
1342
Chris Wilson71a77e02011-02-02 12:13:49 +00001343 cmd = MI_FLUSH_DW;
1344 if (invalidate & I915_GEM_GPU_DOMAINS)
1345 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
1346 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001347 intel_ring_emit(ring, 0);
1348 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001349 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001350 intel_ring_advance(ring);
1351 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001352}
1353
1354static int
Chris Wilson78501ea2010-10-27 12:18:21 +01001355gen6_ring_dispatch_execbuffer(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001356 u32 offset, u32 len)
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001357{
Akshay Joshi0206e352011-08-16 15:34:10 -04001358 int ret;
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001359
Akshay Joshi0206e352011-08-16 15:34:10 -04001360 ret = intel_ring_begin(ring, 2);
1361 if (ret)
1362 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01001363
Akshay Joshi0206e352011-08-16 15:34:10 -04001364 intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_NON_SECURE_I965);
1365 /* bit0-7 is the length on GEN6+ */
1366 intel_ring_emit(ring, offset);
1367 intel_ring_advance(ring);
Chris Wilsonab6f8e32010-09-19 17:53:44 +01001368
Akshay Joshi0206e352011-08-16 15:34:10 -04001369 return 0;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001370}
1371
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001372static bool
Chris Wilson0f468322011-01-04 17:35:21 +00001373gen6_render_ring_get_irq(struct intel_ring_buffer *ring)
1374{
1375 return gen6_ring_get_irq(ring,
1376 GT_USER_INTERRUPT,
1377 GEN6_RENDER_USER_INTERRUPT);
1378}
1379
1380static void
1381gen6_render_ring_put_irq(struct intel_ring_buffer *ring)
1382{
1383 return gen6_ring_put_irq(ring,
1384 GT_USER_INTERRUPT,
1385 GEN6_RENDER_USER_INTERRUPT);
1386}
1387
1388static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001389gen6_bsd_ring_get_irq(struct intel_ring_buffer *ring)
1390{
Chris Wilson0f468322011-01-04 17:35:21 +00001391 return gen6_ring_get_irq(ring,
1392 GT_GEN6_BSD_USER_INTERRUPT,
1393 GEN6_BSD_USER_INTERRUPT);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001394}
1395
1396static void
1397gen6_bsd_ring_put_irq(struct intel_ring_buffer *ring)
1398{
Chris Wilson0f468322011-01-04 17:35:21 +00001399 return gen6_ring_put_irq(ring,
1400 GT_GEN6_BSD_USER_INTERRUPT,
1401 GEN6_BSD_USER_INTERRUPT);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001402}
1403
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001404/* ring buffer for Video Codec for Gen6+ */
Chris Wilsone0708682010-09-19 14:46:27 +01001405static const struct intel_ring_buffer gen6_bsd_ring = {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001406 .name = "gen6 bsd ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001407 .id = VCS,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001408 .mmio_base = GEN6_BSD_RING_BASE,
1409 .size = 32 * PAGE_SIZE,
1410 .init = init_ring_common,
1411 .write_tail = gen6_bsd_ring_write_tail,
1412 .flush = gen6_ring_flush,
1413 .add_request = gen6_add_request,
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001414 .get_seqno = gen6_ring_get_seqno,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001415 .irq_get = gen6_bsd_ring_get_irq,
1416 .irq_put = gen6_bsd_ring_put_irq,
1417 .dispatch_execbuffer = gen6_ring_dispatch_execbuffer,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001418 .sync_to = gen6_bsd_ring_sync_to,
1419 .semaphore_register = {MI_SEMAPHORE_SYNC_VR,
1420 MI_SEMAPHORE_SYNC_INVALID,
1421 MI_SEMAPHORE_SYNC_VB},
1422 .signal_mbox = {GEN6_RVSYNC, GEN6_BVSYNC},
Chris Wilson549f7362010-10-19 11:19:32 +01001423};
1424
1425/* Blitter support (SandyBridge+) */
1426
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001427static bool
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001428blt_ring_get_irq(struct intel_ring_buffer *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001429{
Chris Wilson0f468322011-01-04 17:35:21 +00001430 return gen6_ring_get_irq(ring,
1431 GT_BLT_USER_INTERRUPT,
1432 GEN6_BLITTER_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001433}
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001434
Chris Wilson549f7362010-10-19 11:19:32 +01001435static void
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001436blt_ring_put_irq(struct intel_ring_buffer *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001437{
Chris Wilson0f468322011-01-04 17:35:21 +00001438 gen6_ring_put_irq(ring,
1439 GT_BLT_USER_INTERRUPT,
1440 GEN6_BLITTER_USER_INTERRUPT);
Chris Wilson549f7362010-10-19 11:19:32 +01001441}
1442
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001443static int blt_ring_flush(struct intel_ring_buffer *ring,
Chris Wilson71a77e02011-02-02 12:13:49 +00001444 u32 invalidate, u32 flush)
Zou Nan hai8d192152010-11-02 16:31:01 +08001445{
Chris Wilson71a77e02011-02-02 12:13:49 +00001446 uint32_t cmd;
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001447 int ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001448
Daniel Vetter6a233c72011-12-14 13:57:07 +01001449 ret = intel_ring_begin(ring, 4);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001450 if (ret)
1451 return ret;
1452
Chris Wilson71a77e02011-02-02 12:13:49 +00001453 cmd = MI_FLUSH_DW;
1454 if (invalidate & I915_GEM_DOMAIN_RENDER)
1455 cmd |= MI_INVALIDATE_TLB;
1456 intel_ring_emit(ring, cmd);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001457 intel_ring_emit(ring, 0);
1458 intel_ring_emit(ring, 0);
Chris Wilson71a77e02011-02-02 12:13:49 +00001459 intel_ring_emit(ring, MI_NOOP);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +00001460 intel_ring_advance(ring);
1461 return 0;
Zou Nan hai8d192152010-11-02 16:31:01 +08001462}
1463
Chris Wilson549f7362010-10-19 11:19:32 +01001464static const struct intel_ring_buffer gen6_blt_ring = {
Akshay Joshi0206e352011-08-16 15:34:10 -04001465 .name = "blt ring",
Daniel Vetter96154f22011-12-14 13:57:00 +01001466 .id = BCS,
Akshay Joshi0206e352011-08-16 15:34:10 -04001467 .mmio_base = BLT_RING_BASE,
1468 .size = 32 * PAGE_SIZE,
Daniel Vetter6a233c72011-12-14 13:57:07 +01001469 .init = init_ring_common,
Akshay Joshi0206e352011-08-16 15:34:10 -04001470 .write_tail = ring_write_tail,
1471 .flush = blt_ring_flush,
1472 .add_request = gen6_add_request,
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001473 .get_seqno = gen6_ring_get_seqno,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001474 .irq_get = blt_ring_get_irq,
1475 .irq_put = blt_ring_put_irq,
Akshay Joshi0206e352011-08-16 15:34:10 -04001476 .dispatch_execbuffer = gen6_ring_dispatch_execbuffer,
Ben Widawskyc8c99b02011-09-14 20:32:47 -07001477 .sync_to = gen6_blt_ring_sync_to,
1478 .semaphore_register = {MI_SEMAPHORE_SYNC_BR,
1479 MI_SEMAPHORE_SYNC_BV,
1480 MI_SEMAPHORE_SYNC_INVALID},
1481 .signal_mbox = {GEN6_RBSYNC, GEN6_VBSYNC},
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001482};
1483
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001484int intel_init_render_ring_buffer(struct drm_device *dev)
1485{
1486 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001487 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001488
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001489 *ring = render_ring;
1490 if (INTEL_INFO(dev)->gen >= 6) {
1491 ring->add_request = gen6_add_request;
Jesse Barnes8d315282011-10-16 10:23:31 +02001492 ring->flush = gen6_render_ring_flush;
Chris Wilson0f468322011-01-04 17:35:21 +00001493 ring->irq_get = gen6_render_ring_get_irq;
1494 ring->irq_put = gen6_render_ring_put_irq;
Daniel Vetter4cd53c02012-12-14 16:01:25 +01001495 ring->get_seqno = gen6_ring_get_seqno;
Chris Wilsonc6df5412010-12-15 09:56:50 +00001496 } else if (IS_GEN5(dev)) {
1497 ring->add_request = pc_render_add_request;
1498 ring->get_seqno = pc_render_get_seqno;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001499 }
1500
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001501 if (!I915_NEED_GFX_HWS(dev)) {
1502 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1503 memset(ring->status_page.page_addr, 0, PAGE_SIZE);
1504 }
1505
1506 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001507}
1508
Chris Wilsone8616b62011-01-20 09:57:11 +00001509int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size)
1510{
1511 drm_i915_private_t *dev_priv = dev->dev_private;
1512 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
1513
1514 *ring = render_ring;
1515 if (INTEL_INFO(dev)->gen >= 6) {
1516 ring->add_request = gen6_add_request;
1517 ring->irq_get = gen6_render_ring_get_irq;
1518 ring->irq_put = gen6_render_ring_put_irq;
1519 } else if (IS_GEN5(dev)) {
1520 ring->add_request = pc_render_add_request;
1521 ring->get_seqno = pc_render_get_seqno;
1522 }
1523
Keith Packardf3234702011-07-22 10:44:39 -07001524 if (!I915_NEED_GFX_HWS(dev))
1525 ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
1526
Chris Wilsone8616b62011-01-20 09:57:11 +00001527 ring->dev = dev;
1528 INIT_LIST_HEAD(&ring->active_list);
1529 INIT_LIST_HEAD(&ring->request_list);
1530 INIT_LIST_HEAD(&ring->gpu_write_list);
1531
1532 ring->size = size;
1533 ring->effective_size = ring->size;
1534 if (IS_I830(ring->dev))
1535 ring->effective_size -= 128;
1536
1537 ring->map.offset = start;
1538 ring->map.size = size;
1539 ring->map.type = 0;
1540 ring->map.flags = 0;
1541 ring->map.mtrr = 0;
1542
1543 drm_core_ioremap_wc(&ring->map, dev);
1544 if (ring->map.handle == NULL) {
1545 DRM_ERROR("can not ioremap virtual address for"
1546 " ring buffer\n");
1547 return -ENOMEM;
1548 }
1549
1550 ring->virtual_start = (void __force __iomem *)ring->map.handle;
1551 return 0;
1552}
1553
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001554int intel_init_bsd_ring_buffer(struct drm_device *dev)
1555{
1556 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001557 struct intel_ring_buffer *ring = &dev_priv->ring[VCS];
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001558
Jesse Barnes65d3eb12011-04-06 14:54:44 -07001559 if (IS_GEN6(dev) || IS_GEN7(dev))
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001560 *ring = gen6_bsd_ring;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001561 else
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001562 *ring = bsd_ring;
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001563
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001564 return intel_init_ring_buffer(dev, ring);
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08001565}
Chris Wilson549f7362010-10-19 11:19:32 +01001566
1567int intel_init_blt_ring_buffer(struct drm_device *dev)
1568{
1569 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001570 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Chris Wilson549f7362010-10-19 11:19:32 +01001571
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001572 *ring = gen6_blt_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01001573
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001574 return intel_init_ring_buffer(dev, ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001575}