2010-05-22 04:26:39 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2008-2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Eric Anholt <eric@anholt.net>
|
|
|
|
* Zou Nan hai <nanhai.zou@intel.com>
|
|
|
|
* Xiang Hai hao<haihao.xiang@intel.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/drmP.h>
|
2010-05-22 04:26:39 +08:00
|
|
|
#include "i915_drv.h"
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/i915_drm.h>
|
2010-05-22 04:26:39 +08:00
|
|
|
#include "i915_trace.h"
|
2010-09-19 21:40:43 +08:00
|
|
|
#include "intel_drv.h"
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-07-25 00:04:23 +08:00
|
|
|
bool
|
|
|
|
intel_ring_initialized(struct intel_engine_cs *ring)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (i915.enable_execlists) {
|
|
|
|
struct intel_context *dctx = ring->default_context;
|
|
|
|
struct intel_ringbuffer *ringbuf = dctx->engine[ring->id].ringbuf;
|
|
|
|
|
|
|
|
return ringbuf->obj;
|
|
|
|
} else
|
|
|
|
return ring->buffer && ring->buffer->obj;
|
|
|
|
}
|
2014-04-09 16:19:40 +08:00
|
|
|
|
2014-07-25 00:04:26 +08:00
|
|
|
int __intel_ring_space(int head, int tail, int size)
|
2011-01-21 01:00:10 +08:00
|
|
|
{
|
2014-11-27 19:22:48 +08:00
|
|
|
int space = head - tail;
|
|
|
|
if (space <= 0)
|
2014-05-05 16:07:33 +08:00
|
|
|
space += size;
|
2014-11-27 19:22:48 +08:00
|
|
|
return space - I915_RING_FREE_SPACE;
|
2011-01-21 01:00:10 +08:00
|
|
|
}
|
|
|
|
|
2014-11-27 19:22:49 +08:00
|
|
|
void intel_ring_update_space(struct intel_ringbuffer *ringbuf)
|
|
|
|
{
|
|
|
|
if (ringbuf->last_retired_head != -1) {
|
|
|
|
ringbuf->head = ringbuf->last_retired_head;
|
|
|
|
ringbuf->last_retired_head = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ringbuf->space = __intel_ring_space(ringbuf->head & HEAD_ADDR,
|
|
|
|
ringbuf->tail, ringbuf->size);
|
|
|
|
}
|
|
|
|
|
2014-07-25 00:04:26 +08:00
|
|
|
int intel_ring_space(struct intel_ringbuffer *ringbuf)
|
2014-05-05 16:07:33 +08:00
|
|
|
{
|
2014-11-27 19:22:49 +08:00
|
|
|
intel_ring_update_space(ringbuf);
|
|
|
|
return ringbuf->space;
|
2014-05-05 16:07:33 +08:00
|
|
|
}
|
|
|
|
|
2014-07-25 00:04:26 +08:00
|
|
|
bool intel_ring_stopped(struct intel_engine_cs *ring)
|
2013-08-11 05:16:32 +08:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
2014-03-29 00:18:18 +08:00
|
|
|
return dev_priv->gpu_error.stop_rings & intel_ring_flag(ring);
|
|
|
|
}
|
2013-08-11 05:16:32 +08:00
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
void __intel_ring_advance(struct intel_engine_cs *ring)
|
2014-03-29 00:18:18 +08:00
|
|
|
{
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
|
|
|
ringbuf->tail &= ringbuf->size - 1;
|
2014-03-29 00:18:18 +08:00
|
|
|
if (intel_ring_stopped(ring))
|
2013-08-11 05:16:32 +08:00
|
|
|
return;
|
2014-05-22 21:13:36 +08:00
|
|
|
ring->write_tail(ring, ringbuf->tail);
|
2013-08-11 05:16:32 +08:00
|
|
|
}
|
|
|
|
|
2011-01-05 01:34:02 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen2_render_ring_flush(struct intel_engine_cs *ring,
|
2012-04-18 18:12:11 +08:00
|
|
|
u32 invalidate_domains,
|
|
|
|
u32 flush_domains)
|
|
|
|
{
|
|
|
|
u32 cmd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
cmd = MI_FLUSH;
|
2012-04-19 22:45:22 +08:00
|
|
|
if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
|
2012-04-18 18:12:11 +08:00
|
|
|
cmd |= MI_NO_WRITE_FLUSH;
|
|
|
|
|
|
|
|
if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
|
|
|
|
cmd |= MI_READ_FLUSH;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, cmd);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen4_render_ring_flush(struct intel_engine_cs *ring,
|
2012-04-18 18:12:11 +08:00
|
|
|
u32 invalidate_domains,
|
|
|
|
u32 flush_domains)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-10-27 19:18:21 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2010-08-07 18:01:22 +08:00
|
|
|
u32 cmd;
|
2011-01-05 01:34:02 +08:00
|
|
|
int ret;
|
2010-08-07 18:01:22 +08:00
|
|
|
|
2011-03-20 06:26:49 +08:00
|
|
|
/*
|
|
|
|
* read/write caches:
|
|
|
|
*
|
|
|
|
* I915_GEM_DOMAIN_RENDER is always invalidated, but is
|
|
|
|
* only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
|
|
|
|
* also flushed at 2d versus 3d pipeline switches.
|
|
|
|
*
|
|
|
|
* read-only caches:
|
|
|
|
*
|
|
|
|
* I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
|
|
|
|
* MI_READ_FLUSH is set, and is always flushed on 965.
|
|
|
|
*
|
|
|
|
* I915_GEM_DOMAIN_COMMAND may not exist?
|
|
|
|
*
|
|
|
|
* I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
|
|
|
|
* invalidated when MI_EXE_FLUSH is set.
|
|
|
|
*
|
|
|
|
* I915_GEM_DOMAIN_VERTEX, which exists on 965, is
|
|
|
|
* invalidated with every MI_FLUSH.
|
|
|
|
*
|
|
|
|
* TLBs:
|
|
|
|
*
|
|
|
|
* On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
|
|
|
|
* and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
|
|
|
|
* I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
|
|
|
|
* are flushed at any MI_FLUSH.
|
|
|
|
*/
|
|
|
|
|
|
|
|
cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
|
2012-04-18 18:12:11 +08:00
|
|
|
if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
|
2011-03-20 06:26:49 +08:00
|
|
|
cmd &= ~MI_NO_WRITE_FLUSH;
|
|
|
|
if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
|
|
|
|
cmd |= MI_EXE_FLUSH;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2011-03-20 06:26:49 +08:00
|
|
|
if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
|
|
|
|
(IS_G4X(dev) || IS_GEN5(dev)))
|
|
|
|
cmd |= MI_INVALIDATE_ISP;
|
2010-11-30 22:07:47 +08:00
|
|
|
|
2011-03-20 06:26:49 +08:00
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-01-05 01:34:02 +08:00
|
|
|
|
2011-03-20 06:26:49 +08:00
|
|
|
intel_ring_emit(ring, cmd);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
2011-01-05 01:34:02 +08:00
|
|
|
|
|
|
|
return 0;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2011-10-16 16:23:31 +08:00
|
|
|
/**
|
|
|
|
* Emits a PIPE_CONTROL with a non-zero post-sync operation, for
|
|
|
|
* implementing two workarounds on gen6. From section 1.4.7.1
|
|
|
|
* "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
|
|
|
|
*
|
|
|
|
* [DevSNB-C+{W/A}] Before any depth stall flush (including those
|
|
|
|
* produced by non-pipelined state commands), software needs to first
|
|
|
|
* send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
|
|
|
|
* 0.
|
|
|
|
*
|
|
|
|
* [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
|
|
|
|
* =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
|
|
|
|
*
|
|
|
|
* And the workaround for these two requires this workaround first:
|
|
|
|
*
|
|
|
|
* [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
|
|
|
|
* BEFORE the pipe-control with a post-sync op and no write-cache
|
|
|
|
* flushes.
|
|
|
|
*
|
|
|
|
* And this last workaround is tricky because of the requirements on
|
|
|
|
* that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
|
|
|
|
* volume 2 part 1:
|
|
|
|
*
|
|
|
|
* "1 of the following must also be set:
|
|
|
|
* - Render Target Cache Flush Enable ([12] of DW1)
|
|
|
|
* - Depth Cache Flush Enable ([0] of DW1)
|
|
|
|
* - Stall at Pixel Scoreboard ([1] of DW1)
|
|
|
|
* - Depth Stall ([13] of DW1)
|
|
|
|
* - Post-Sync Operation ([13] of DW1)
|
|
|
|
* - Notify Enable ([8] of DW1)"
|
|
|
|
*
|
|
|
|
* The cache flushes require the workaround flush that triggered this
|
|
|
|
* one, so we can't use it. Depth stall would trigger the same.
|
|
|
|
* Post-sync nonzero is what triggered this second workaround, so we
|
|
|
|
* can't use that one either. Notify enable is IRQs, which aren't
|
|
|
|
* really our business. That leaves only stall at scoreboard.
|
|
|
|
*/
|
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
intel_emit_post_sync_nonzero_flush(struct intel_engine_cs *ring)
|
2011-10-16 16:23:31 +08:00
|
|
|
{
|
2014-04-09 16:19:40 +08:00
|
|
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
2011-10-16 16:23:31 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 6);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
|
|
|
|
intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD);
|
|
|
|
intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
|
|
|
|
intel_ring_emit(ring, 0); /* low dword */
|
|
|
|
intel_ring_emit(ring, 0); /* high dword */
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 6);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(5));
|
|
|
|
intel_ring_emit(ring, PIPE_CONTROL_QW_WRITE);
|
|
|
|
intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_render_ring_flush(struct intel_engine_cs *ring,
|
2011-10-16 16:23:31 +08:00
|
|
|
u32 invalidate_domains, u32 flush_domains)
|
|
|
|
{
|
|
|
|
u32 flags = 0;
|
2014-04-09 16:19:40 +08:00
|
|
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
2011-10-16 16:23:31 +08:00
|
|
|
int ret;
|
|
|
|
|
2012-08-18 05:35:42 +08:00
|
|
|
/* Force SNB workarounds for PIPE_CONTROL flushes */
|
|
|
|
ret = intel_emit_post_sync_nonzero_flush(ring);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-10-16 16:23:31 +08:00
|
|
|
/* Just flush everything. Experiments have shown that reducing the
|
|
|
|
* number of bits based on the write domains has little performance
|
|
|
|
* impact.
|
|
|
|
*/
|
2012-08-10 17:18:10 +08:00
|
|
|
if (flush_domains) {
|
|
|
|
flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
|
|
|
|
flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
|
|
|
|
/*
|
|
|
|
* Ensure that any following seqno writes only happen
|
|
|
|
* when the render cache is indeed flushed.
|
|
|
|
*/
|
2012-06-28 15:48:42 +08:00
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
2012-08-10 17:18:10 +08:00
|
|
|
}
|
|
|
|
if (invalidate_domains) {
|
|
|
|
flags |= PIPE_CONTROL_TLB_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
|
|
|
|
/*
|
|
|
|
* TLB invalidate requires a post-sync write.
|
|
|
|
*/
|
2012-10-26 03:15:47 +08:00
|
|
|
flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL;
|
2012-08-10 17:18:10 +08:00
|
|
|
}
|
2011-10-16 16:23:31 +08:00
|
|
|
|
2012-07-21 01:02:28 +08:00
|
|
|
ret = intel_ring_begin(ring, 4);
|
2011-10-16 16:23:31 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-07-21 01:02:28 +08:00
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
|
2011-10-16 16:23:31 +08:00
|
|
|
intel_ring_emit(ring, flags);
|
|
|
|
intel_ring_emit(ring, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
|
2012-07-21 01:02:28 +08:00
|
|
|
intel_ring_emit(ring, 0);
|
2011-10-16 16:23:31 +08:00
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: add workarounds to gen7_render_ring_flush
From Bspec, Vol 2a, Section 1.9.3.4 "PIPE_CONTROL", intro section
detailing the various workarounds:
"[DevIVB {W/A}, DevHSW {W/A}]: Pipe_control with CS-stall bit
set must be issued before a pipe-control command that has the State
Cache Invalidate bit set."
Note that public Bspec has different numbering, it's Vol2Part1,
Section 1.10.4.1 "PIPE_CONTROL" there.
There's also a second workaround for the PIPE_CONTROL command itself:
"[DevIVB, DevVLV, DevHSW] {WA}: Every 4th PIPE_CONTROL command, not
counting the PIPE_CONTROL with only read-cache-invalidate bit(s) set,
must have a CS_STALL bit set"
For simplicity we simply set the CS_STALL bit on every pipe_control on
gen7+
Note that this massively helps on some hsw machines, together with the
following patch to unconditionally set the CS_STALL bit on every
pipe_control it prevents a gpu hang every few seconds.
This is a regression that has been introduced in the pipe_control
cleanup:
commit 6c6cf5aa9c583478b19e23149feaa92d01fb8c2d
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Fri Jul 20 18:02:28 2012 +0100
drm/i915: Only apply the SNB pipe control w/a to gen6
It looks like the massive snb pipe_control workaround also papered
over any issues on ivb and hsw.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
[danvet: squashed both workarounds together, pimped commit message
with Bsepc citations, regression commit citation and changed the
comment in the code a bit to clarify that we unconditionally set
CS_STALL to avoid being hurt by trying to be clever.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-18 05:35:43 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen7_render_ring_cs_stall_wa(struct intel_engine_cs *ring)
|
drm/i915: add workarounds to gen7_render_ring_flush
From Bspec, Vol 2a, Section 1.9.3.4 "PIPE_CONTROL", intro section
detailing the various workarounds:
"[DevIVB {W/A}, DevHSW {W/A}]: Pipe_control with CS-stall bit
set must be issued before a pipe-control command that has the State
Cache Invalidate bit set."
Note that public Bspec has different numbering, it's Vol2Part1,
Section 1.10.4.1 "PIPE_CONTROL" there.
There's also a second workaround for the PIPE_CONTROL command itself:
"[DevIVB, DevVLV, DevHSW] {WA}: Every 4th PIPE_CONTROL command, not
counting the PIPE_CONTROL with only read-cache-invalidate bit(s) set,
must have a CS_STALL bit set"
For simplicity we simply set the CS_STALL bit on every pipe_control on
gen7+
Note that this massively helps on some hsw machines, together with the
following patch to unconditionally set the CS_STALL bit on every
pipe_control it prevents a gpu hang every few seconds.
This is a regression that has been introduced in the pipe_control
cleanup:
commit 6c6cf5aa9c583478b19e23149feaa92d01fb8c2d
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Fri Jul 20 18:02:28 2012 +0100
drm/i915: Only apply the SNB pipe control w/a to gen6
It looks like the massive snb pipe_control workaround also papered
over any issues on ivb and hsw.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
[danvet: squashed both workarounds together, pimped commit message
with Bsepc citations, regression commit citation and changed the
comment in the code a bit to clarify that we unconditionally set
CS_STALL to avoid being hurt by trying to be clever.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-18 05:35:43 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
|
|
|
|
intel_ring_emit(ring, PIPE_CONTROL_CS_STALL |
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-18 05:35:41 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen7_render_ring_flush(struct intel_engine_cs *ring,
|
2012-08-18 05:35:41 +08:00
|
|
|
u32 invalidate_domains, u32 flush_domains)
|
|
|
|
{
|
|
|
|
u32 flags = 0;
|
2014-04-09 16:19:40 +08:00
|
|
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
2012-08-18 05:35:41 +08:00
|
|
|
int ret;
|
|
|
|
|
drm/i915: add workarounds to gen7_render_ring_flush
From Bspec, Vol 2a, Section 1.9.3.4 "PIPE_CONTROL", intro section
detailing the various workarounds:
"[DevIVB {W/A}, DevHSW {W/A}]: Pipe_control with CS-stall bit
set must be issued before a pipe-control command that has the State
Cache Invalidate bit set."
Note that public Bspec has different numbering, it's Vol2Part1,
Section 1.10.4.1 "PIPE_CONTROL" there.
There's also a second workaround for the PIPE_CONTROL command itself:
"[DevIVB, DevVLV, DevHSW] {WA}: Every 4th PIPE_CONTROL command, not
counting the PIPE_CONTROL with only read-cache-invalidate bit(s) set,
must have a CS_STALL bit set"
For simplicity we simply set the CS_STALL bit on every pipe_control on
gen7+
Note that this massively helps on some hsw machines, together with the
following patch to unconditionally set the CS_STALL bit on every
pipe_control it prevents a gpu hang every few seconds.
This is a regression that has been introduced in the pipe_control
cleanup:
commit 6c6cf5aa9c583478b19e23149feaa92d01fb8c2d
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Fri Jul 20 18:02:28 2012 +0100
drm/i915: Only apply the SNB pipe control w/a to gen6
It looks like the massive snb pipe_control workaround also papered
over any issues on ivb and hsw.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
[danvet: squashed both workarounds together, pimped commit message
with Bsepc citations, regression commit citation and changed the
comment in the code a bit to clarify that we unconditionally set
CS_STALL to avoid being hurt by trying to be clever.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-18 05:35:43 +08:00
|
|
|
/*
|
|
|
|
* Ensure that any following seqno writes only happen when the render
|
|
|
|
* cache is indeed flushed.
|
|
|
|
*
|
|
|
|
* Workaround: 4th PIPE_CONTROL command (except the ones with only
|
|
|
|
* read-cache invalidate bits set) must have the CS_STALL bit set. We
|
|
|
|
* don't try to be clever and just set it unconditionally.
|
|
|
|
*/
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
2012-08-18 05:35:41 +08:00
|
|
|
/* Just flush everything. Experiments have shown that reducing the
|
|
|
|
* number of bits based on the write domains has little performance
|
|
|
|
* impact.
|
|
|
|
*/
|
|
|
|
if (flush_domains) {
|
|
|
|
flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
|
|
|
|
flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
|
|
|
|
}
|
|
|
|
if (invalidate_domains) {
|
|
|
|
flags |= PIPE_CONTROL_TLB_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
|
2014-12-16 16:44:31 +08:00
|
|
|
flags |= PIPE_CONTROL_MEDIA_STATE_CLEAR;
|
2012-08-18 05:35:41 +08:00
|
|
|
/*
|
|
|
|
* TLB invalidate requires a post-sync write.
|
|
|
|
*/
|
|
|
|
flags |= PIPE_CONTROL_QW_WRITE;
|
2013-02-15 03:53:51 +08:00
|
|
|
flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
|
drm/i915: add workarounds to gen7_render_ring_flush
From Bspec, Vol 2a, Section 1.9.3.4 "PIPE_CONTROL", intro section
detailing the various workarounds:
"[DevIVB {W/A}, DevHSW {W/A}]: Pipe_control with CS-stall bit
set must be issued before a pipe-control command that has the State
Cache Invalidate bit set."
Note that public Bspec has different numbering, it's Vol2Part1,
Section 1.10.4.1 "PIPE_CONTROL" there.
There's also a second workaround for the PIPE_CONTROL command itself:
"[DevIVB, DevVLV, DevHSW] {WA}: Every 4th PIPE_CONTROL command, not
counting the PIPE_CONTROL with only read-cache-invalidate bit(s) set,
must have a CS_STALL bit set"
For simplicity we simply set the CS_STALL bit on every pipe_control on
gen7+
Note that this massively helps on some hsw machines, together with the
following patch to unconditionally set the CS_STALL bit on every
pipe_control it prevents a gpu hang every few seconds.
This is a regression that has been introduced in the pipe_control
cleanup:
commit 6c6cf5aa9c583478b19e23149feaa92d01fb8c2d
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Fri Jul 20 18:02:28 2012 +0100
drm/i915: Only apply the SNB pipe control w/a to gen6
It looks like the massive snb pipe_control workaround also papered
over any issues on ivb and hsw.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
[danvet: squashed both workarounds together, pimped commit message
with Bsepc citations, regression commit citation and changed the
comment in the code a bit to clarify that we unconditionally set
CS_STALL to avoid being hurt by trying to be clever.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-18 05:35:43 +08:00
|
|
|
|
2014-12-16 16:44:32 +08:00
|
|
|
flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
|
|
|
|
|
drm/i915: add workarounds to gen7_render_ring_flush
From Bspec, Vol 2a, Section 1.9.3.4 "PIPE_CONTROL", intro section
detailing the various workarounds:
"[DevIVB {W/A}, DevHSW {W/A}]: Pipe_control with CS-stall bit
set must be issued before a pipe-control command that has the State
Cache Invalidate bit set."
Note that public Bspec has different numbering, it's Vol2Part1,
Section 1.10.4.1 "PIPE_CONTROL" there.
There's also a second workaround for the PIPE_CONTROL command itself:
"[DevIVB, DevVLV, DevHSW] {WA}: Every 4th PIPE_CONTROL command, not
counting the PIPE_CONTROL with only read-cache-invalidate bit(s) set,
must have a CS_STALL bit set"
For simplicity we simply set the CS_STALL bit on every pipe_control on
gen7+
Note that this massively helps on some hsw machines, together with the
following patch to unconditionally set the CS_STALL bit on every
pipe_control it prevents a gpu hang every few seconds.
This is a regression that has been introduced in the pipe_control
cleanup:
commit 6c6cf5aa9c583478b19e23149feaa92d01fb8c2d
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Fri Jul 20 18:02:28 2012 +0100
drm/i915: Only apply the SNB pipe control w/a to gen6
It looks like the massive snb pipe_control workaround also papered
over any issues on ivb and hsw.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
[danvet: squashed both workarounds together, pimped commit message
with Bsepc citations, regression commit citation and changed the
comment in the code a bit to clarify that we unconditionally set
CS_STALL to avoid being hurt by trying to be clever.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-18 05:35:43 +08:00
|
|
|
/* Workaround: we must issue a pipe_control with CS-stall bit
|
|
|
|
* set before a pipe_control command that has the state cache
|
|
|
|
* invalidate bit set. */
|
|
|
|
gen7_render_ring_cs_stall_wa(ring);
|
2012-08-18 05:35:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4));
|
|
|
|
intel_ring_emit(ring, flags);
|
2013-02-15 03:53:51 +08:00
|
|
|
intel_ring_emit(ring, scratch_addr);
|
2012-08-18 05:35:41 +08:00
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-28 07:04:20 +08:00
|
|
|
static int
|
|
|
|
gen8_emit_pipe_control(struct intel_engine_cs *ring,
|
|
|
|
u32 flags, u32 scratch_addr)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 6);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(6));
|
|
|
|
intel_ring_emit(ring, flags);
|
|
|
|
intel_ring_emit(ring, scratch_addr);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-03 12:07:27 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen8_render_ring_flush(struct intel_engine_cs *ring,
|
2013-11-03 12:07:27 +08:00
|
|
|
u32 invalidate_domains, u32 flush_domains)
|
|
|
|
{
|
|
|
|
u32 flags = 0;
|
2014-04-09 16:19:40 +08:00
|
|
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
2014-01-28 06:20:16 +08:00
|
|
|
int ret;
|
2013-11-03 12:07:27 +08:00
|
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
|
|
if (flush_domains) {
|
|
|
|
flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
|
|
|
|
flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
|
|
|
|
}
|
|
|
|
if (invalidate_domains) {
|
|
|
|
flags |= PIPE_CONTROL_TLB_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
|
|
|
|
flags |= PIPE_CONTROL_QW_WRITE;
|
|
|
|
flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
|
2014-01-28 06:20:16 +08:00
|
|
|
|
|
|
|
/* WaCsStallBeforeStateCacheInvalidate:bdw,chv */
|
|
|
|
ret = gen8_emit_pipe_control(ring,
|
|
|
|
PIPE_CONTROL_CS_STALL |
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD,
|
|
|
|
0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-11-03 12:07:27 +08:00
|
|
|
}
|
|
|
|
|
2015-03-05 22:03:08 +08:00
|
|
|
return gen8_emit_pipe_control(ring, flags, scratch_addr);
|
2013-11-03 12:07:27 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static void ring_write_tail(struct intel_engine_cs *ring,
|
2010-10-23 00:02:41 +08:00
|
|
|
u32 value)
|
2010-09-16 10:43:12 +08:00
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
2010-10-23 00:02:41 +08:00
|
|
|
I915_WRITE_TAIL(ring, value);
|
2010-09-16 10:43:12 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
u64 intel_ring_get_active_head(struct intel_engine_cs *ring)
|
2010-05-21 09:08:55 +08:00
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
2014-03-21 20:41:53 +08:00
|
|
|
u64 acthd;
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-03-21 20:41:53 +08:00
|
|
|
if (INTEL_INFO(ring->dev)->gen >= 8)
|
|
|
|
acthd = I915_READ64_2x32(RING_ACTHD(ring->mmio_base),
|
|
|
|
RING_ACTHD_UDW(ring->mmio_base));
|
|
|
|
else if (INTEL_INFO(ring->dev)->gen >= 4)
|
|
|
|
acthd = I915_READ(RING_ACTHD(ring->mmio_base));
|
|
|
|
else
|
|
|
|
acthd = I915_READ(ACTHD);
|
|
|
|
|
|
|
|
return acthd;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static void ring_setup_phys_status_page(struct intel_engine_cs *ring)
|
2013-07-03 18:56:54 +08:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
|
|
|
u32 addr;
|
|
|
|
|
|
|
|
addr = dev_priv->status_page_dmah->busaddr;
|
|
|
|
if (INTEL_INFO(ring->dev)->gen >= 4)
|
|
|
|
addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
|
|
|
|
I915_WRITE(HWS_PGA, addr);
|
|
|
|
}
|
|
|
|
|
2015-02-11 03:32:17 +08:00
|
|
|
static void intel_ring_setup_status_page(struct intel_engine_cs *ring)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
|
|
|
u32 mmio = 0;
|
|
|
|
|
|
|
|
/* The ring status page addresses are no longer next to the rest of
|
|
|
|
* the ring registers as of gen7.
|
|
|
|
*/
|
|
|
|
if (IS_GEN7(dev)) {
|
|
|
|
switch (ring->id) {
|
|
|
|
case RCS:
|
|
|
|
mmio = RENDER_HWS_PGA_GEN7;
|
|
|
|
break;
|
|
|
|
case BCS:
|
|
|
|
mmio = BLT_HWS_PGA_GEN7;
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* VCS2 actually doesn't exist on Gen7. Only shut up
|
|
|
|
* gcc switch check warning
|
|
|
|
*/
|
|
|
|
case VCS2:
|
|
|
|
case VCS:
|
|
|
|
mmio = BSD_HWS_PGA_GEN7;
|
|
|
|
break;
|
|
|
|
case VECS:
|
|
|
|
mmio = VEBOX_HWS_PGA_GEN7;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (IS_GEN6(ring->dev)) {
|
|
|
|
mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
|
|
|
|
} else {
|
|
|
|
/* XXX: gen8 returns to sanity */
|
|
|
|
mmio = RING_HWS_PGA(ring->mmio_base);
|
|
|
|
}
|
|
|
|
|
|
|
|
I915_WRITE(mmio, (u32)ring->status_page.gfx_addr);
|
|
|
|
POSTING_READ(mmio);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flush the TLB for this page
|
|
|
|
*
|
|
|
|
* FIXME: These two bits have disappeared on gen8, so a question
|
|
|
|
* arises: do we still need this and if so how should we go about
|
|
|
|
* invalidating the TLB?
|
|
|
|
*/
|
|
|
|
if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) {
|
|
|
|
u32 reg = RING_INSTPM(ring->mmio_base);
|
|
|
|
|
|
|
|
/* ring should be idle before issuing a sync flush*/
|
|
|
|
WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
|
|
|
|
|
|
|
|
I915_WRITE(reg,
|
|
|
|
_MASKED_BIT_ENABLE(INSTPM_TLB_INVALIDATE |
|
|
|
|
INSTPM_SYNC_FLUSH));
|
|
|
|
if (wait_for((I915_READ(reg) & INSTPM_SYNC_FLUSH) == 0,
|
|
|
|
1000))
|
|
|
|
DRM_ERROR("%s: wait for SyncFlush to complete for TLB invalidation timed out\n",
|
|
|
|
ring->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static bool stop_ring(struct intel_engine_cs *ring)
|
2010-05-21 09:08:55 +08:00
|
|
|
{
|
2014-04-02 23:36:07 +08:00
|
|
|
struct drm_i915_private *dev_priv = to_i915(ring->dev);
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-04-02 23:36:07 +08:00
|
|
|
if (!IS_GEN2(ring->dev)) {
|
|
|
|
I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
|
2014-08-07 22:05:39 +08:00
|
|
|
if (wait_for((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
|
|
|
|
DRM_ERROR("%s : timed out trying to stop ring\n", ring->name);
|
2014-08-11 16:21:35 +08:00
|
|
|
/* Sometimes we observe that the idle flag is not
|
|
|
|
* set even though the ring is empty. So double
|
|
|
|
* check before giving up.
|
|
|
|
*/
|
|
|
|
if (I915_READ_HEAD(ring) != I915_READ_TAIL(ring))
|
|
|
|
return false;
|
2014-04-02 23:36:07 +08:00
|
|
|
}
|
|
|
|
}
|
2012-06-04 17:18:15 +08:00
|
|
|
|
2010-08-02 23:06:59 +08:00
|
|
|
I915_WRITE_CTL(ring, 0);
|
2010-08-02 23:06:23 +08:00
|
|
|
I915_WRITE_HEAD(ring, 0);
|
2010-10-27 19:18:21 +08:00
|
|
|
ring->write_tail(ring, 0);
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-04-02 23:36:07 +08:00
|
|
|
if (!IS_GEN2(ring->dev)) {
|
|
|
|
(void)I915_READ_CTL(ring);
|
|
|
|
I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
|
|
|
|
}
|
2014-03-12 19:09:40 +08:00
|
|
|
|
2014-04-02 23:36:07 +08:00
|
|
|
return (I915_READ_HEAD(ring) & HEAD_ADDR) == 0;
|
|
|
|
}
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int init_ring_common(struct intel_engine_cs *ring)
|
2014-04-02 23:36:07 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
|
|
|
struct drm_i915_gem_object *obj = ringbuf->obj;
|
2014-04-02 23:36:07 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2015-01-16 17:34:40 +08:00
|
|
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
2014-04-02 23:36:07 +08:00
|
|
|
|
|
|
|
if (!stop_ring(ring)) {
|
|
|
|
/* G45 ring initialization often fails to reset head to zero */
|
2010-12-06 04:42:33 +08:00
|
|
|
DRM_DEBUG_KMS("%s head not reset to zero "
|
|
|
|
"ctl %08x head %08x tail %08x start %08x\n",
|
|
|
|
ring->name,
|
|
|
|
I915_READ_CTL(ring),
|
|
|
|
I915_READ_HEAD(ring),
|
|
|
|
I915_READ_TAIL(ring),
|
|
|
|
I915_READ_START(ring));
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-04-02 23:36:07 +08:00
|
|
|
if (!stop_ring(ring)) {
|
2010-12-06 04:42:33 +08:00
|
|
|
DRM_ERROR("failed to set %s head to zero "
|
|
|
|
"ctl %08x head %08x tail %08x start %08x\n",
|
|
|
|
ring->name,
|
|
|
|
I915_READ_CTL(ring),
|
|
|
|
I915_READ_HEAD(ring),
|
|
|
|
I915_READ_TAIL(ring),
|
|
|
|
I915_READ_START(ring));
|
2014-04-02 23:36:07 +08:00
|
|
|
ret = -EIO;
|
|
|
|
goto out;
|
2010-12-06 04:42:33 +08:00
|
|
|
}
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2014-04-02 23:36:07 +08:00
|
|
|
if (I915_NEED_GFX_HWS(dev))
|
|
|
|
intel_ring_setup_status_page(ring);
|
|
|
|
else
|
|
|
|
ring_setup_phys_status_page(ring);
|
|
|
|
|
2014-08-07 22:29:53 +08:00
|
|
|
/* Enforce ordering by reading HEAD register back */
|
|
|
|
I915_READ_HEAD(ring);
|
|
|
|
|
2012-08-07 15:54:14 +08:00
|
|
|
/* Initialize the ring. This must happen _after_ we've cleared the ring
|
|
|
|
* registers with the above sequence (the readback of the HEAD registers
|
|
|
|
* also enforces ordering), otherwise the hw might lose the new ring
|
|
|
|
* register values. */
|
2013-07-06 05:41:04 +08:00
|
|
|
I915_WRITE_START(ring, i915_gem_obj_ggtt_offset(obj));
|
2014-08-07 22:39:54 +08:00
|
|
|
|
|
|
|
/* WaClearRingBufHeadRegAtInit:ctg,elk */
|
|
|
|
if (I915_READ_HEAD(ring))
|
|
|
|
DRM_DEBUG("%s initialization failed [head=%08x], fudging\n",
|
|
|
|
ring->name, I915_READ_HEAD(ring));
|
|
|
|
I915_WRITE_HEAD(ring, 0);
|
|
|
|
(void)I915_READ_HEAD(ring);
|
|
|
|
|
2010-08-02 23:06:59 +08:00
|
|
|
I915_WRITE_CTL(ring,
|
2014-05-22 21:13:36 +08:00
|
|
|
((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES)
|
drm/i915: Remove use of the autoreported ringbuffer HEAD position
This is a revert of 6aa56062eaba67adfb247cded244fd877329588d.
This was originally introduced to workaround reads of the ringbuffer
registers returning 0 on SandyBridge causing hangs due to ringbuffer
overflow. The root cause here was reads through the GT powerwell require
the forcewake dance, something we only learnt of later. Now it appears
that reading the reported head position from the HWS is returning
garbage, leading once again to hangs.
For example, on q35 the autoreported head reports:
[ 217.975608] head now 00010000, actual 00010000
[ 436.725613] head now 00200000, actual 00200000
[ 462.956033] head now 00210000, actual 00210010
[ 485.501409] head now 00400000, actual 00400020
[ 508.064280] head now 00410000, actual 00410000
[ 530.576078] head now 00600000, actual 00600020
[ 553.273489] head now 00610000, actual 00610018
which appears reasonably sane. In contrast, if we look at snb:
[ 141.970680] head now 00e10000, actual 00008238
[ 141.974062] head now 02734000, actual 000083c8
[ 141.974425] head now 00e10000, actual 00008488
[ 141.980374] head now 032b5000, actual 000088b8
[ 141.980885] head now 03271000, actual 00008950
[ 142.040628] head now 02101000, actual 00008b40
[ 142.180173] head now 02734000, actual 00009050
[ 142.181090] head now 00000000, actual 00000ae0
[ 142.183737] head now 02734000, actual 00009050
In addition, the automatic reporting of the head position is scheduled
to be defeatured in the future. It has no more utility, remove it.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45492
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Tested-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
2012-02-08 21:34:13 +08:00
|
|
|
| RING_VALID);
|
2010-05-21 09:08:55 +08:00
|
|
|
|
|
|
|
/* If the head is still not zero, the ring is dead */
|
2012-03-17 00:43:22 +08:00
|
|
|
if (wait_for((I915_READ_CTL(ring) & RING_VALID) != 0 &&
|
2013-07-06 05:41:04 +08:00
|
|
|
I915_READ_START(ring) == i915_gem_obj_ggtt_offset(obj) &&
|
2012-03-17 00:43:22 +08:00
|
|
|
(I915_READ_HEAD(ring) & HEAD_ADDR) == 0, 50)) {
|
2010-11-09 18:16:56 +08:00
|
|
|
DRM_ERROR("%s initialization failed "
|
2014-04-09 16:19:44 +08:00
|
|
|
"ctl %08x (valid? %d) head %08x tail %08x start %08x [expected %08lx]\n",
|
|
|
|
ring->name,
|
|
|
|
I915_READ_CTL(ring), I915_READ_CTL(ring) & RING_VALID,
|
|
|
|
I915_READ_HEAD(ring), I915_READ_TAIL(ring),
|
|
|
|
I915_READ_START(ring), (unsigned long)i915_gem_obj_ggtt_offset(obj));
|
2012-06-04 17:18:15 +08:00
|
|
|
ret = -EIO;
|
|
|
|
goto out;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2014-11-27 19:22:49 +08:00
|
|
|
ringbuf->last_retired_head = -1;
|
2014-09-06 17:28:27 +08:00
|
|
|
ringbuf->head = I915_READ_HEAD(ring);
|
|
|
|
ringbuf->tail = I915_READ_TAIL(ring) & TAIL_ADDR;
|
2014-11-27 19:22:49 +08:00
|
|
|
intel_ring_update_space(ringbuf);
|
2010-12-04 19:30:53 +08:00
|
|
|
|
2013-06-10 18:20:19 +08:00
|
|
|
memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
|
|
|
|
|
2012-06-04 17:18:15 +08:00
|
|
|
out:
|
2015-01-16 17:34:40 +08:00
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
2012-06-04 17:18:15 +08:00
|
|
|
|
|
|
|
return ret;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2014-07-25 00:04:24 +08:00
|
|
|
void
|
|
|
|
intel_fini_pipe_control(struct intel_engine_cs *ring)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
|
|
|
|
if (ring->scratch.obj == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (INTEL_INFO(dev)->gen >= 5) {
|
|
|
|
kunmap(sg_page(ring->scratch.obj->pages->sgl));
|
|
|
|
i915_gem_object_ggtt_unpin(ring->scratch.obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_gem_object_unreference(&ring->scratch.obj->base);
|
|
|
|
ring->scratch.obj = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
intel_init_pipe_control(struct intel_engine_cs *ring)
|
2010-12-15 17:56:50 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2014-11-20 07:33:08 +08:00
|
|
|
WARN_ON(ring->scratch.obj);
|
2010-12-15 17:56:50 +08:00
|
|
|
|
2013-08-27 03:58:11 +08:00
|
|
|
ring->scratch.obj = i915_gem_alloc_object(ring->dev, 4096);
|
|
|
|
if (ring->scratch.obj == NULL) {
|
2010-12-15 17:56:50 +08:00
|
|
|
DRM_ERROR("Failed to allocate seqno page\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err;
|
|
|
|
}
|
2011-04-04 16:44:39 +08:00
|
|
|
|
2014-02-14 21:01:13 +08:00
|
|
|
ret = i915_gem_object_set_cache_level(ring->scratch.obj, I915_CACHE_LLC);
|
|
|
|
if (ret)
|
|
|
|
goto err_unref;
|
2010-12-15 17:56:50 +08:00
|
|
|
|
2014-02-14 21:01:11 +08:00
|
|
|
ret = i915_gem_obj_ggtt_pin(ring->scratch.obj, 4096, 0);
|
2010-12-15 17:56:50 +08:00
|
|
|
if (ret)
|
|
|
|
goto err_unref;
|
|
|
|
|
2013-08-27 03:58:11 +08:00
|
|
|
ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(ring->scratch.obj);
|
|
|
|
ring->scratch.cpu_page = kmap(sg_page(ring->scratch.obj->pages->sgl));
|
|
|
|
if (ring->scratch.cpu_page == NULL) {
|
2013-05-28 17:51:44 +08:00
|
|
|
ret = -ENOMEM;
|
2010-12-15 17:56:50 +08:00
|
|
|
goto err_unpin;
|
2013-05-28 17:51:44 +08:00
|
|
|
}
|
2010-12-15 17:56:50 +08:00
|
|
|
|
2013-02-13 04:01:38 +08:00
|
|
|
DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
|
2013-08-27 03:58:11 +08:00
|
|
|
ring->name, ring->scratch.gtt_offset);
|
2010-12-15 17:56:50 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_unpin:
|
2013-12-07 06:10:55 +08:00
|
|
|
i915_gem_object_ggtt_unpin(ring->scratch.obj);
|
2010-12-15 17:56:50 +08:00
|
|
|
err_unref:
|
2013-08-27 03:58:11 +08:00
|
|
|
drm_gem_object_unreference(&ring->scratch.obj->base);
|
2010-12-15 17:56:50 +08:00
|
|
|
err:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-11-12 00:47:33 +08:00
|
|
|
static int intel_ring_workarounds_emit(struct intel_engine_cs *ring,
|
|
|
|
struct intel_context *ctx)
|
2014-08-26 21:44:50 +08:00
|
|
|
{
|
2014-10-07 22:21:26 +08:00
|
|
|
int ret, i;
|
2014-08-26 21:44:51 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-10-07 22:21:26 +08:00
|
|
|
struct i915_workarounds *w = &dev_priv->workarounds;
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-11-26 22:21:02 +08:00
|
|
|
if (WARN_ON_ONCE(w->count == 0))
|
2014-10-07 22:21:26 +08:00
|
|
|
return 0;
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
ring->gpu_caches_dirty = true;
|
|
|
|
ret = intel_ring_flush_all_caches(ring);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-10-23 01:59:52 +08:00
|
|
|
ret = intel_ring_begin(ring, (w->count * 2 + 2));
|
2014-10-07 22:21:26 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-10-23 01:59:52 +08:00
|
|
|
intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(w->count));
|
2014-10-07 22:21:26 +08:00
|
|
|
for (i = 0; i < w->count; i++) {
|
|
|
|
intel_ring_emit(ring, w->reg[i].addr);
|
|
|
|
intel_ring_emit(ring, w->reg[i].value);
|
|
|
|
}
|
2014-10-23 01:59:52 +08:00
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
2014-10-07 22:21:26 +08:00
|
|
|
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
ring->gpu_caches_dirty = true;
|
|
|
|
ret = intel_ring_flush_all_caches(ring);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
DRM_DEBUG_DRIVER("Number of Workarounds emitted: %d\n", w->count);
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
return 0;
|
2014-08-26 21:44:50 +08:00
|
|
|
}
|
|
|
|
|
2014-12-02 23:19:07 +08:00
|
|
|
static int intel_rcs_ctx_init(struct intel_engine_cs *ring,
|
|
|
|
struct intel_context *ctx)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_workarounds_emit(ring, ctx);
|
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = i915_gem_render_state_init(ring);
|
|
|
|
if (ret)
|
|
|
|
DRM_ERROR("init render state: %d\n", ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
static int wa_add(struct drm_i915_private *dev_priv,
|
2014-12-09 01:35:37 +08:00
|
|
|
const u32 addr, const u32 mask, const u32 val)
|
2014-10-07 22:21:26 +08:00
|
|
|
{
|
|
|
|
const u32 idx = dev_priv->workarounds.count;
|
|
|
|
|
|
|
|
if (WARN_ON(idx >= I915_MAX_WA_REGS))
|
|
|
|
return -ENOSPC;
|
|
|
|
|
|
|
|
dev_priv->workarounds.reg[idx].addr = addr;
|
|
|
|
dev_priv->workarounds.reg[idx].value = val;
|
|
|
|
dev_priv->workarounds.reg[idx].mask = mask;
|
|
|
|
|
|
|
|
dev_priv->workarounds.count++;
|
|
|
|
|
|
|
|
return 0;
|
2014-08-26 21:44:50 +08:00
|
|
|
}
|
|
|
|
|
2014-12-09 01:35:37 +08:00
|
|
|
#define WA_REG(addr, mask, val) { \
|
|
|
|
const int r = wa_add(dev_priv, (addr), (mask), (val)); \
|
2014-10-07 22:21:26 +08:00
|
|
|
if (r) \
|
|
|
|
return r; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define WA_SET_BIT_MASKED(addr, mask) \
|
2014-12-09 01:35:38 +08:00
|
|
|
WA_REG(addr, (mask), _MASKED_BIT_ENABLE(mask))
|
2014-10-07 22:21:26 +08:00
|
|
|
|
|
|
|
#define WA_CLR_BIT_MASKED(addr, mask) \
|
2014-12-09 01:35:38 +08:00
|
|
|
WA_REG(addr, (mask), _MASKED_BIT_DISABLE(mask))
|
2014-10-07 22:21:26 +08:00
|
|
|
|
2014-12-09 01:33:51 +08:00
|
|
|
#define WA_SET_FIELD_MASKED(addr, mask, value) \
|
2014-12-09 01:35:37 +08:00
|
|
|
WA_REG(addr, mask, _MASKED_FIELD(mask, value))
|
2014-10-07 22:21:26 +08:00
|
|
|
|
2014-12-09 01:35:37 +08:00
|
|
|
#define WA_SET_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) | (mask))
|
|
|
|
#define WA_CLR_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) & ~(mask))
|
2014-10-07 22:21:26 +08:00
|
|
|
|
2014-12-09 01:35:37 +08:00
|
|
|
#define WA_WRITE(addr, val) WA_REG(addr, 0xffffffff, val)
|
2014-10-07 22:21:26 +08:00
|
|
|
|
2014-08-27 22:33:12 +08:00
|
|
|
static int bdw_init_workarounds(struct intel_engine_cs *ring)
|
2014-08-26 21:44:50 +08:00
|
|
|
{
|
2014-08-26 21:44:51 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-08-26 21:44:50 +08:00
|
|
|
|
|
|
|
/* WaDisablePartialInstShootdown:bdw */
|
2014-10-09 22:11:47 +08:00
|
|
|
/* WaDisableThreadStallDopClockGating:bdw (pre-production) */
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
|
|
|
|
PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE |
|
|
|
|
STALL_DOP_GATING_DISABLE);
|
2014-08-26 21:44:50 +08:00
|
|
|
|
2014-10-09 22:11:47 +08:00
|
|
|
/* WaDisableDopClockGating:bdw */
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2,
|
|
|
|
DOP_CLOCK_GATING_DISABLE);
|
2014-08-26 21:44:50 +08:00
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
|
|
|
|
GEN8_SAMPLER_POWER_BYPASS_DIS);
|
2014-08-26 21:44:50 +08:00
|
|
|
|
|
|
|
/* Use Force Non-Coherent whenever executing a 3D context. This is a
|
|
|
|
* workaround for for a possible hang in the unlikely event a TLB
|
|
|
|
* invalidation occurs during a PSD flush.
|
|
|
|
*/
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(HDC_CHICKEN0,
|
2015-02-10 18:31:00 +08:00
|
|
|
/* WaForceEnableNonCoherent:bdw */
|
2014-10-07 22:21:26 +08:00
|
|
|
HDC_FORCE_NON_COHERENT |
|
2015-02-10 18:31:00 +08:00
|
|
|
/* WaForceContextSaveRestoreNonCoherent:bdw */
|
|
|
|
HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT |
|
|
|
|
/* WaHdcDisableFetchWhenMasked:bdw */
|
2014-12-04 23:07:52 +08:00
|
|
|
HDC_DONOT_FETCH_MEM_WHEN_MASKED |
|
2015-02-10 18:31:00 +08:00
|
|
|
/* WaDisableFenceDestinationToSLM:bdw (pre-prod) */
|
2014-10-07 22:21:26 +08:00
|
|
|
(IS_BDW_GT3(dev) ? HDC_FENCE_DEST_SLM_DISABLE : 0));
|
2014-08-26 21:44:50 +08:00
|
|
|
|
2015-01-14 04:46:52 +08:00
|
|
|
/* From the Haswell PRM, Command Reference: Registers, CACHE_MODE_0:
|
|
|
|
* "The Hierarchical Z RAW Stall Optimization allows non-overlapping
|
|
|
|
* polygons in the same 8x4 pixel/sample area to be processed without
|
|
|
|
* stalling waiting for the earlier ones to write to Hierarchical Z
|
|
|
|
* buffer."
|
|
|
|
*
|
|
|
|
* This optimization is off by default for Broadwell; turn it on.
|
|
|
|
*/
|
|
|
|
WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE);
|
|
|
|
|
2014-08-26 21:44:50 +08:00
|
|
|
/* Wa4x4STCOptimizationDisable:bdw */
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(CACHE_MODE_1,
|
|
|
|
GEN8_4x4_STC_OPTIMIZATION_DISABLE);
|
2014-08-26 21:44:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* BSpec recommends 8x4 when MSAA is used,
|
|
|
|
* however in practice 16x4 seems fastest.
|
|
|
|
*
|
|
|
|
* Note that PS/WM thread counts depend on the WIZ hashing
|
|
|
|
* disable bit, which we don't touch here, but it's good
|
|
|
|
* to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
|
|
|
|
*/
|
2014-12-09 01:33:51 +08:00
|
|
|
WA_SET_FIELD_MASKED(GEN7_GT_MODE,
|
|
|
|
GEN6_WIZ_HASHING_MASK,
|
|
|
|
GEN6_WIZ_HASHING_16x4);
|
2014-08-26 21:44:51 +08:00
|
|
|
|
2014-08-26 21:44:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-27 22:33:12 +08:00
|
|
|
static int chv_init_workarounds(struct intel_engine_cs *ring)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
|
|
|
/* WaDisablePartialInstShootdown:chv */
|
|
|
|
/* WaDisableThreadStallDopClockGating:chv */
|
2014-10-07 22:21:26 +08:00
|
|
|
WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
|
2014-10-29 02:33:13 +08:00
|
|
|
PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE |
|
|
|
|
STALL_DOP_GATING_DISABLE);
|
2014-08-27 22:33:12 +08:00
|
|
|
|
2014-10-29 02:33:14 +08:00
|
|
|
/* Use Force Non-Coherent whenever executing a 3D context. This is a
|
|
|
|
* workaround for a possible hang in the unlikely event a TLB
|
|
|
|
* invalidation occurs during a PSD flush.
|
|
|
|
*/
|
|
|
|
/* WaForceEnableNonCoherent:chv */
|
|
|
|
/* WaHdcDisableFetchWhenMasked:chv */
|
|
|
|
WA_SET_BIT_MASKED(HDC_CHICKEN0,
|
|
|
|
HDC_FORCE_NON_COHERENT |
|
|
|
|
HDC_DONOT_FETCH_MEM_WHEN_MASKED);
|
|
|
|
|
2015-01-14 04:46:53 +08:00
|
|
|
/* According to the CACHE_MODE_0 default value documentation, some
|
|
|
|
* CHV platforms disable this optimization by default. Turn it on.
|
|
|
|
*/
|
|
|
|
WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE);
|
|
|
|
|
2015-01-22 01:37:58 +08:00
|
|
|
/* Wa4x4STCOptimizationDisable:chv */
|
|
|
|
WA_SET_BIT_MASKED(CACHE_MODE_1,
|
|
|
|
GEN8_4x4_STC_OPTIMIZATION_DISABLE);
|
|
|
|
|
2015-01-11 10:02:22 +08:00
|
|
|
/* Improve HiZ throughput on CHV. */
|
|
|
|
WA_SET_BIT_MASKED(HIZ_CHICKEN, CHV_HZ_8X8_MODE_IN_1X);
|
|
|
|
|
2015-01-22 01:38:00 +08:00
|
|
|
/*
|
|
|
|
* BSpec recommends 8x4 when MSAA is used,
|
|
|
|
* however in practice 16x4 seems fastest.
|
|
|
|
*
|
|
|
|
* Note that PS/WM thread counts depend on the WIZ hashing
|
|
|
|
* disable bit, which we don't touch here, but it's good
|
|
|
|
* to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
|
|
|
|
*/
|
|
|
|
WA_SET_FIELD_MASKED(GEN7_GT_MODE,
|
|
|
|
GEN6_WIZ_HASHING_MASK,
|
|
|
|
GEN6_WIZ_HASHING_16x4);
|
|
|
|
|
2015-02-10 03:33:22 +08:00
|
|
|
if (INTEL_REVID(dev) == SKL_REVID_C0 ||
|
|
|
|
INTEL_REVID(dev) == SKL_REVID_D0)
|
|
|
|
/* WaBarrierPerformanceFixDisable:skl */
|
|
|
|
WA_SET_BIT_MASKED(HDC_CHICKEN0,
|
|
|
|
HDC_FENCE_DEST_SLM_DISABLE |
|
|
|
|
HDC_BARRIER_PERFORMANCE_DISABLE);
|
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-05 18:47:16 +08:00
|
|
|
static int gen9_init_workarounds(struct intel_engine_cs *ring)
|
|
|
|
{
|
2015-02-05 18:47:18 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
|
|
|
/* WaDisablePartialInstShootdown:skl */
|
|
|
|
WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
|
|
|
|
PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE);
|
|
|
|
|
2015-02-05 18:47:20 +08:00
|
|
|
/* Syncing dependencies between camera and graphics */
|
|
|
|
WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
|
|
|
|
GEN9_DISABLE_OCL_OOB_SUPPRESS_LOGIC);
|
|
|
|
|
2015-02-12 02:21:43 +08:00
|
|
|
if (INTEL_REVID(dev) == SKL_REVID_A0 ||
|
|
|
|
INTEL_REVID(dev) == SKL_REVID_B0) {
|
2015-02-12 02:21:44 +08:00
|
|
|
/* WaDisableDgMirrorFixInHalfSliceChicken5:skl */
|
|
|
|
WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5,
|
|
|
|
GEN9_DG_MIRROR_FIX_ENABLE);
|
2015-02-05 18:47:19 +08:00
|
|
|
}
|
|
|
|
|
2015-02-10 03:33:11 +08:00
|
|
|
if (IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_B0) {
|
|
|
|
/* WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken:skl */
|
|
|
|
WA_SET_BIT_MASKED(GEN7_COMMON_SLICE_CHICKEN1,
|
|
|
|
GEN9_RHWO_OPTIMIZATION_DISABLE);
|
|
|
|
WA_SET_BIT_MASKED(GEN9_SLICE_COMMON_ECO_CHICKEN0,
|
|
|
|
DISABLE_PIXEL_MASK_CAMMING);
|
|
|
|
}
|
|
|
|
|
2015-02-05 18:47:22 +08:00
|
|
|
if (INTEL_REVID(dev) >= SKL_REVID_C0) {
|
|
|
|
/* WaEnableYV12BugFixInHalfSliceChicken7:skl */
|
|
|
|
WA_SET_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN7,
|
|
|
|
GEN9_ENABLE_YV12_BUGFIX);
|
|
|
|
}
|
|
|
|
|
2015-02-05 18:47:24 +08:00
|
|
|
if (INTEL_REVID(dev) <= SKL_REVID_D0) {
|
|
|
|
/*
|
|
|
|
*Use Force Non-Coherent whenever executing a 3D context. This
|
|
|
|
* is a workaround for a possible hang in the unlikely event
|
|
|
|
* a TLB invalidation occurs during a PSD flush.
|
|
|
|
*/
|
|
|
|
/* WaForceEnableNonCoherent:skl */
|
|
|
|
WA_SET_BIT_MASKED(HDC_CHICKEN0,
|
|
|
|
HDC_FORCE_NON_COHERENT);
|
|
|
|
}
|
|
|
|
|
2015-02-05 18:47:23 +08:00
|
|
|
/* Wa4x4STCOptimizationDisable:skl */
|
|
|
|
WA_SET_BIT_MASKED(CACHE_MODE_1, GEN8_4x4_STC_OPTIMIZATION_DISABLE);
|
|
|
|
|
2015-02-10 03:33:17 +08:00
|
|
|
/* WaDisablePartialResolveInVc:skl */
|
|
|
|
WA_SET_BIT_MASKED(CACHE_MODE_1, GEN9_PARTIAL_RESOLVE_IN_VC_DISABLE);
|
|
|
|
|
2015-02-10 03:33:21 +08:00
|
|
|
/* WaCcsTlbPrefetchDisable:skl */
|
|
|
|
WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5,
|
|
|
|
GEN9_CCS_TLB_PREFETCH_ENABLE);
|
|
|
|
|
2015-02-05 18:47:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-15 02:30:29 +08:00
|
|
|
static int skl_tune_iz_hashing(struct intel_engine_cs *ring)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
u8 vals[3] = { 0, 0, 0 };
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
u8 ss;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only consider slices where one, and only one, subslice has 7
|
|
|
|
* EUs
|
|
|
|
*/
|
|
|
|
if (hweight8(dev_priv->info.subslice_7eu[i]) != 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* subslice_7eu[i] != 0 (because of the check above) and
|
|
|
|
* ss_max == 4 (maximum number of subslices possible per slice)
|
|
|
|
*
|
|
|
|
* -> 0 <= ss <= 3;
|
|
|
|
*/
|
|
|
|
ss = ffs(dev_priv->info.subslice_7eu[i]) - 1;
|
|
|
|
vals[i] = 3 - ss;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vals[0] == 0 && vals[1] == 0 && vals[2] == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Tune IZ hashing. See intel_device_info_runtime_init() */
|
|
|
|
WA_SET_FIELD_MASKED(GEN7_GT_MODE,
|
|
|
|
GEN9_IZ_HASHING_MASK(2) |
|
|
|
|
GEN9_IZ_HASHING_MASK(1) |
|
|
|
|
GEN9_IZ_HASHING_MASK(0),
|
|
|
|
GEN9_IZ_HASHING(2, vals[2]) |
|
|
|
|
GEN9_IZ_HASHING(1, vals[1]) |
|
|
|
|
GEN9_IZ_HASHING(0, vals[0]));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-10 03:33:15 +08:00
|
|
|
static int skl_init_workarounds(struct intel_engine_cs *ring)
|
|
|
|
{
|
2015-02-10 03:33:16 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
2015-02-10 03:33:15 +08:00
|
|
|
gen9_init_workarounds(ring);
|
|
|
|
|
2015-02-10 03:33:16 +08:00
|
|
|
/* WaDisablePowerCompilerClockGating:skl */
|
|
|
|
if (INTEL_REVID(dev) == SKL_REVID_B0)
|
|
|
|
WA_SET_BIT_MASKED(HIZ_CHICKEN,
|
|
|
|
BDW_HIZ_POWER_COMPILER_CLOCK_GATING_DISABLE);
|
|
|
|
|
2015-02-15 02:30:29 +08:00
|
|
|
return skl_tune_iz_hashing(ring);
|
2014-10-07 22:21:26 +08:00
|
|
|
}
|
|
|
|
|
2014-11-12 00:47:33 +08:00
|
|
|
int init_workarounds_ring(struct intel_engine_cs *ring)
|
2014-10-07 22:21:26 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
|
|
|
WARN_ON(ring->id != RCS);
|
|
|
|
|
|
|
|
dev_priv->workarounds.count = 0;
|
|
|
|
|
|
|
|
if (IS_BROADWELL(dev))
|
|
|
|
return bdw_init_workarounds(ring);
|
|
|
|
|
|
|
|
if (IS_CHERRYVIEW(dev))
|
|
|
|
return chv_init_workarounds(ring);
|
2014-08-27 22:33:12 +08:00
|
|
|
|
2015-02-10 03:33:15 +08:00
|
|
|
if (IS_SKYLAKE(dev))
|
|
|
|
return skl_init_workarounds(ring);
|
|
|
|
else if (IS_GEN9(dev))
|
2015-02-05 18:47:16 +08:00
|
|
|
return gen9_init_workarounds(ring);
|
|
|
|
|
2014-08-27 22:33:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int init_render_ring(struct intel_engine_cs *ring)
|
2010-05-21 09:08:55 +08:00
|
|
|
{
|
2010-10-27 19:18:21 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2010-12-04 19:30:53 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2010-10-27 19:18:21 +08:00
|
|
|
int ret = init_ring_common(ring);
|
2014-06-20 01:07:15 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-08-30 16:12:42 +08:00
|
|
|
|
2014-03-25 20:31:50 +08:00
|
|
|
/* WaTimedSingleVertexDispatch:cl,bw,ctg,elk,ilk,snb */
|
|
|
|
if (INTEL_INFO(dev)->gen >= 4 && INTEL_INFO(dev)->gen < 7)
|
2012-04-24 20:04:12 +08:00
|
|
|
I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
|
2013-01-21 00:11:20 +08:00
|
|
|
|
|
|
|
/* We need to disable the AsyncFlip performance optimisations in order
|
|
|
|
* to use MI_WAIT_FOR_EVENT within the CS. It should already be
|
|
|
|
* programmed to '1' on all products.
|
2013-05-04 01:48:11 +08:00
|
|
|
*
|
2014-04-28 19:31:09 +08:00
|
|
|
* WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
|
2013-01-21 00:11:20 +08:00
|
|
|
*/
|
2013-02-13 23:27:34 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 9)
|
2013-01-21 00:11:20 +08:00
|
|
|
I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
|
|
|
|
|
2013-01-21 00:33:32 +08:00
|
|
|
/* Required for the hardware to program scanline values for waiting */
|
2014-03-25 01:30:04 +08:00
|
|
|
/* WaEnableFlushTlbInvalidationMode:snb */
|
2013-01-21 00:33:32 +08:00
|
|
|
if (INTEL_INFO(dev)->gen == 6)
|
|
|
|
I915_WRITE(GFX_MODE,
|
2014-03-22 01:18:54 +08:00
|
|
|
_MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT));
|
2013-01-21 00:33:32 +08:00
|
|
|
|
2014-03-25 01:30:04 +08:00
|
|
|
/* WaBCSVCSTlbInvalidationMode:ivb,vlv,hsw */
|
2013-01-21 00:11:20 +08:00
|
|
|
if (IS_GEN7(dev))
|
|
|
|
I915_WRITE(GFX_MODE_GEN7,
|
2014-03-25 01:30:04 +08:00
|
|
|
_MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT) |
|
2013-01-21 00:11:20 +08:00
|
|
|
_MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
|
2010-10-27 19:18:21 +08:00
|
|
|
|
2012-05-08 19:39:59 +08:00
|
|
|
if (IS_GEN6(dev)) {
|
2012-04-28 03:44:41 +08:00
|
|
|
/* From the Sandybridge PRM, volume 1 part 3, page 24:
|
|
|
|
* "If this bit is set, STCunit will have LRA as replacement
|
|
|
|
* policy. [...] This bit must be reset. LRA replacement
|
|
|
|
* policy is not supported."
|
|
|
|
*/
|
|
|
|
I915_WRITE(CACHE_MODE_0,
|
2012-05-08 19:39:59 +08:00
|
|
|
_MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
|
2011-12-13 11:21:58 +08:00
|
|
|
}
|
|
|
|
|
2012-04-24 20:04:12 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 6)
|
|
|
|
I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
|
2011-12-13 11:21:58 +08:00
|
|
|
|
2013-09-20 02:01:40 +08:00
|
|
|
if (HAS_L3_DPF(dev))
|
2013-09-20 02:13:41 +08:00
|
|
|
I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
|
2012-05-26 07:56:23 +08:00
|
|
|
|
2014-10-07 22:21:26 +08:00
|
|
|
return init_workarounds_ring(ring);
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static void render_ring_cleanup(struct intel_engine_cs *ring)
|
2010-12-15 17:56:50 +08:00
|
|
|
{
|
2012-12-17 23:21:27 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2014-07-01 00:53:37 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
|
|
|
if (dev_priv->semaphore_obj) {
|
|
|
|
i915_gem_object_ggtt_unpin(dev_priv->semaphore_obj);
|
|
|
|
drm_gem_object_unreference(&dev_priv->semaphore_obj->base);
|
|
|
|
dev_priv->semaphore_obj = NULL;
|
|
|
|
}
|
2012-12-17 23:21:27 +08:00
|
|
|
|
2014-07-25 00:04:24 +08:00
|
|
|
intel_fini_pipe_control(ring);
|
2010-12-15 17:56:50 +08:00
|
|
|
}
|
|
|
|
|
2014-07-01 00:53:37 +08:00
|
|
|
static int gen8_rcs_signal(struct intel_engine_cs *signaller,
|
|
|
|
unsigned int num_dwords)
|
|
|
|
{
|
|
|
|
#define MBOX_UPDATE_DWORDS 8
|
|
|
|
struct drm_device *dev = signaller->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
struct intel_engine_cs *waiter;
|
|
|
|
int i, ret, num_rings;
|
|
|
|
|
|
|
|
num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
|
|
|
|
num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
|
|
|
|
#undef MBOX_UPDATE_DWORDS
|
|
|
|
|
|
|
|
ret = intel_ring_begin(signaller, num_dwords);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
for_each_ring(waiter, dev_priv, i) {
|
2014-11-25 02:49:29 +08:00
|
|
|
u32 seqno;
|
2014-07-01 00:53:37 +08:00
|
|
|
u64 gtt_offset = signaller->semaphore.signal_ggtt[i];
|
|
|
|
if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
|
|
|
|
continue;
|
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
seqno = i915_gem_request_get_seqno(
|
|
|
|
signaller->outstanding_lazy_request);
|
2014-07-01 00:53:37 +08:00
|
|
|
intel_ring_emit(signaller, GFX_OP_PIPE_CONTROL(6));
|
|
|
|
intel_ring_emit(signaller, PIPE_CONTROL_GLOBAL_GTT_IVB |
|
|
|
|
PIPE_CONTROL_QW_WRITE |
|
|
|
|
PIPE_CONTROL_FLUSH_ENABLE);
|
|
|
|
intel_ring_emit(signaller, lower_32_bits(gtt_offset));
|
|
|
|
intel_ring_emit(signaller, upper_32_bits(gtt_offset));
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(signaller, seqno);
|
2014-07-01 00:53:37 +08:00
|
|
|
intel_ring_emit(signaller, 0);
|
|
|
|
intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
|
|
|
|
MI_SEMAPHORE_TARGET(waiter->id));
|
|
|
|
intel_ring_emit(signaller, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gen8_xcs_signal(struct intel_engine_cs *signaller,
|
|
|
|
unsigned int num_dwords)
|
|
|
|
{
|
|
|
|
#define MBOX_UPDATE_DWORDS 6
|
|
|
|
struct drm_device *dev = signaller->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
struct intel_engine_cs *waiter;
|
|
|
|
int i, ret, num_rings;
|
|
|
|
|
|
|
|
num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
|
|
|
|
num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
|
|
|
|
#undef MBOX_UPDATE_DWORDS
|
|
|
|
|
|
|
|
ret = intel_ring_begin(signaller, num_dwords);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
for_each_ring(waiter, dev_priv, i) {
|
2014-11-25 02:49:29 +08:00
|
|
|
u32 seqno;
|
2014-07-01 00:53:37 +08:00
|
|
|
u64 gtt_offset = signaller->semaphore.signal_ggtt[i];
|
|
|
|
if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
|
|
|
|
continue;
|
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
seqno = i915_gem_request_get_seqno(
|
|
|
|
signaller->outstanding_lazy_request);
|
2014-07-01 00:53:37 +08:00
|
|
|
intel_ring_emit(signaller, (MI_FLUSH_DW + 1) |
|
|
|
|
MI_FLUSH_DW_OP_STOREDW);
|
|
|
|
intel_ring_emit(signaller, lower_32_bits(gtt_offset) |
|
|
|
|
MI_FLUSH_DW_USE_GTT);
|
|
|
|
intel_ring_emit(signaller, upper_32_bits(gtt_offset));
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(signaller, seqno);
|
2014-07-01 00:53:37 +08:00
|
|
|
intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
|
|
|
|
MI_SEMAPHORE_TARGET(waiter->id));
|
|
|
|
intel_ring_emit(signaller, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int gen6_signal(struct intel_engine_cs *signaller,
|
2014-04-30 05:52:30 +08:00
|
|
|
unsigned int num_dwords)
|
2010-12-04 19:30:53 +08:00
|
|
|
{
|
2014-04-30 05:52:30 +08:00
|
|
|
struct drm_device *dev = signaller->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *useless;
|
2014-07-01 00:53:35 +08:00
|
|
|
int i, ret, num_rings;
|
2014-04-30 05:52:29 +08:00
|
|
|
|
2014-07-01 00:53:35 +08:00
|
|
|
#define MBOX_UPDATE_DWORDS 3
|
|
|
|
num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
|
|
|
|
num_dwords += round_up((num_rings-1) * MBOX_UPDATE_DWORDS, 2);
|
|
|
|
#undef MBOX_UPDATE_DWORDS
|
2014-04-30 05:52:30 +08:00
|
|
|
|
|
|
|
ret = intel_ring_begin(signaller, num_dwords);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-04-30 05:52:29 +08:00
|
|
|
for_each_ring(useless, dev_priv, i) {
|
|
|
|
u32 mbox_reg = signaller->semaphore.mbox.signal[i];
|
|
|
|
if (mbox_reg != GEN6_NOSYNC) {
|
2014-11-25 02:49:29 +08:00
|
|
|
u32 seqno = i915_gem_request_get_seqno(
|
|
|
|
signaller->outstanding_lazy_request);
|
2014-04-30 05:52:29 +08:00
|
|
|
intel_ring_emit(signaller, MI_LOAD_REGISTER_IMM(1));
|
|
|
|
intel_ring_emit(signaller, mbox_reg);
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(signaller, seqno);
|
2014-04-30 05:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-30 05:52:30 +08:00
|
|
|
|
2014-07-01 00:53:35 +08:00
|
|
|
/* If num_dwords was rounded, make sure the tail pointer is correct */
|
|
|
|
if (num_rings % 2 == 0)
|
|
|
|
intel_ring_emit(signaller, MI_NOOP);
|
|
|
|
|
2014-04-30 05:52:30 +08:00
|
|
|
return 0;
|
2010-12-04 19:30:53 +08:00
|
|
|
}
|
|
|
|
|
2011-09-15 11:32:47 +08:00
|
|
|
/**
|
|
|
|
* gen6_add_request - Update the semaphore mailbox registers
|
|
|
|
*
|
|
|
|
* @ring - ring that is adding a request
|
|
|
|
* @seqno - return seqno stuck into the ring
|
|
|
|
*
|
|
|
|
* Update the mailbox registers in the *other* rings with the current seqno.
|
|
|
|
* This acts like a signal in the canonical semaphore.
|
|
|
|
*/
|
2010-12-04 19:30:53 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_add_request(struct intel_engine_cs *ring)
|
2010-12-04 19:30:53 +08:00
|
|
|
{
|
2014-04-30 05:52:30 +08:00
|
|
|
int ret;
|
2013-12-17 12:50:38 +08:00
|
|
|
|
2014-07-01 00:53:36 +08:00
|
|
|
if (ring->semaphore.signal)
|
|
|
|
ret = ring->semaphore.signal(ring, 4);
|
|
|
|
else
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
|
2010-12-04 19:30:53 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
|
|
|
|
intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(ring,
|
|
|
|
i915_gem_request_get_seqno(ring->outstanding_lazy_request));
|
2010-12-04 19:30:53 +08:00
|
|
|
intel_ring_emit(ring, MI_USER_INTERRUPT);
|
2013-08-11 05:16:32 +08:00
|
|
|
__intel_ring_advance(ring);
|
2010-12-04 19:30:53 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-10 21:41:48 +08:00
|
|
|
static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev,
|
|
|
|
u32 seqno)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
return dev_priv->last_seqno < seqno;
|
|
|
|
}
|
|
|
|
|
2011-09-15 11:32:47 +08:00
|
|
|
/**
|
|
|
|
* intel_ring_sync - sync the waiter to the signaller on seqno
|
|
|
|
*
|
|
|
|
* @waiter - ring that is waiting
|
|
|
|
* @signaller - ring which has, or will signal
|
|
|
|
* @seqno - seqno which the waiter will block on
|
|
|
|
*/
|
2014-07-01 00:53:38 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
gen8_ring_sync(struct intel_engine_cs *waiter,
|
|
|
|
struct intel_engine_cs *signaller,
|
|
|
|
u32 seqno)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = waiter->dev->dev_private;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(waiter, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(waiter, MI_SEMAPHORE_WAIT |
|
|
|
|
MI_SEMAPHORE_GLOBAL_GTT |
|
2014-07-01 00:53:43 +08:00
|
|
|
MI_SEMAPHORE_POLL |
|
2014-07-01 00:53:38 +08:00
|
|
|
MI_SEMAPHORE_SAD_GTE_SDD);
|
|
|
|
intel_ring_emit(waiter, seqno);
|
|
|
|
intel_ring_emit(waiter,
|
|
|
|
lower_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
|
|
|
|
intel_ring_emit(waiter,
|
|
|
|
upper_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
|
|
|
|
intel_ring_advance(waiter);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-15 11:32:47 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_ring_sync(struct intel_engine_cs *waiter,
|
|
|
|
struct intel_engine_cs *signaller,
|
2012-04-12 04:12:52 +08:00
|
|
|
u32 seqno)
|
2010-12-04 19:30:53 +08:00
|
|
|
{
|
2011-09-15 11:32:47 +08:00
|
|
|
u32 dw1 = MI_SEMAPHORE_MBOX |
|
|
|
|
MI_SEMAPHORE_COMPARE |
|
|
|
|
MI_SEMAPHORE_REGISTER;
|
2014-04-30 05:52:28 +08:00
|
|
|
u32 wait_mbox = signaller->semaphore.mbox.wait[waiter->id];
|
|
|
|
int ret;
|
2010-12-04 19:30:53 +08:00
|
|
|
|
2012-04-12 02:18:21 +08:00
|
|
|
/* Throughout all of the GEM code, seqno passed implies our current
|
|
|
|
* seqno is >= the last seqno executed. However for hardware the
|
|
|
|
* comparison is strictly greater than.
|
|
|
|
*/
|
|
|
|
seqno -= 1;
|
|
|
|
|
2014-04-30 05:52:28 +08:00
|
|
|
WARN_ON(wait_mbox == MI_SEMAPHORE_SYNC_INVALID);
|
2012-04-12 04:12:52 +08:00
|
|
|
|
2011-09-15 11:32:47 +08:00
|
|
|
ret = intel_ring_begin(waiter, 4);
|
2010-12-04 19:30:53 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-12-10 21:41:48 +08:00
|
|
|
/* If seqno wrap happened, omit the wait with no-ops */
|
|
|
|
if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) {
|
2014-04-30 05:52:28 +08:00
|
|
|
intel_ring_emit(waiter, dw1 | wait_mbox);
|
2012-12-10 21:41:48 +08:00
|
|
|
intel_ring_emit(waiter, seqno);
|
|
|
|
intel_ring_emit(waiter, 0);
|
|
|
|
intel_ring_emit(waiter, MI_NOOP);
|
|
|
|
} else {
|
|
|
|
intel_ring_emit(waiter, MI_NOOP);
|
|
|
|
intel_ring_emit(waiter, MI_NOOP);
|
|
|
|
intel_ring_emit(waiter, MI_NOOP);
|
|
|
|
intel_ring_emit(waiter, MI_NOOP);
|
|
|
|
}
|
2011-09-15 11:32:47 +08:00
|
|
|
intel_ring_advance(waiter);
|
2010-12-04 19:30:53 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-15 17:56:50 +08:00
|
|
|
#define PIPE_CONTROL_FLUSH(ring__, addr__) \
|
|
|
|
do { \
|
2011-10-12 05:41:08 +08:00
|
|
|
intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
|
|
|
|
PIPE_CONTROL_DEPTH_STALL); \
|
2010-12-15 17:56:50 +08:00
|
|
|
intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
|
|
|
|
intel_ring_emit(ring__, 0); \
|
|
|
|
intel_ring_emit(ring__, 0); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
pc_render_add_request(struct intel_engine_cs *ring)
|
2010-12-15 17:56:50 +08:00
|
|
|
{
|
2014-04-09 16:19:40 +08:00
|
|
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
2010-12-15 17:56:50 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
|
|
|
|
* incoherent with writes to memory, i.e. completely fubar,
|
|
|
|
* so we need to use PIPE_NOTIFY instead.
|
|
|
|
*
|
|
|
|
* However, we also need to workaround the qword write
|
|
|
|
* incoherence by flushing the 6 PIPE_NOTIFY buffers out to
|
|
|
|
* memory before requesting an interrupt.
|
|
|
|
*/
|
|
|
|
ret = intel_ring_begin(ring, 32);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-10-12 05:41:08 +08:00
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
|
2011-10-12 05:41:09 +08:00
|
|
|
PIPE_CONTROL_WRITE_FLUSH |
|
|
|
|
PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
|
2013-08-27 03:58:11 +08:00
|
|
|
intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(ring,
|
|
|
|
i915_gem_request_get_seqno(ring->outstanding_lazy_request));
|
2010-12-15 17:56:50 +08:00
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2014-04-09 16:19:40 +08:00
|
|
|
scratch_addr += 2 * CACHELINE_BYTES; /* write to separate cachelines */
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2014-04-09 16:19:40 +08:00
|
|
|
scratch_addr += 2 * CACHELINE_BYTES;
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2014-04-09 16:19:40 +08:00
|
|
|
scratch_addr += 2 * CACHELINE_BYTES;
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2014-04-09 16:19:40 +08:00
|
|
|
scratch_addr += 2 * CACHELINE_BYTES;
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2014-04-09 16:19:40 +08:00
|
|
|
scratch_addr += 2 * CACHELINE_BYTES;
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_FLUSH(ring, scratch_addr);
|
2012-02-15 19:25:36 +08:00
|
|
|
|
2011-10-12 05:41:08 +08:00
|
|
|
intel_ring_emit(ring, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
|
2011-10-12 05:41:09 +08:00
|
|
|
PIPE_CONTROL_WRITE_FLUSH |
|
|
|
|
PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
|
2010-12-15 17:56:50 +08:00
|
|
|
PIPE_CONTROL_NOTIFY);
|
2013-08-27 03:58:11 +08:00
|
|
|
intel_ring_emit(ring, ring->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(ring,
|
|
|
|
i915_gem_request_get_seqno(ring->outstanding_lazy_request));
|
2010-12-15 17:56:50 +08:00
|
|
|
intel_ring_emit(ring, 0);
|
2013-08-11 05:16:32 +08:00
|
|
|
__intel_ring_advance(ring);
|
2010-12-15 17:56:50 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-14 23:01:25 +08:00
|
|
|
static u32
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
|
2012-12-14 23:01:25 +08:00
|
|
|
{
|
|
|
|
/* Workaround to force correct ordering between irq and seqno writes on
|
|
|
|
* ivb (and maybe also on snb) by reading from a CS register (like
|
|
|
|
* ACTHD) before reading the status page. */
|
2014-03-21 20:41:53 +08:00
|
|
|
if (!lazy_coherency) {
|
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
|
|
|
POSTING_READ(RING_ACTHD(ring->mmio_base));
|
|
|
|
}
|
|
|
|
|
2012-12-14 23:01:25 +08:00
|
|
|
return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
|
|
|
|
}
|
|
|
|
|
2010-05-21 09:08:55 +08:00
|
|
|
static u32
|
2014-05-22 21:13:33 +08:00
|
|
|
ring_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
|
2010-05-21 09:08:55 +08:00
|
|
|
{
|
2010-12-04 19:30:53 +08:00
|
|
|
return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
|
|
|
|
}
|
|
|
|
|
2012-12-19 17:13:05 +08:00
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
ring_set_seqno(struct intel_engine_cs *ring, u32 seqno)
|
2012-12-19 17:13:05 +08:00
|
|
|
{
|
|
|
|
intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
|
|
|
|
}
|
|
|
|
|
2010-12-15 17:56:50 +08:00
|
|
|
static u32
|
2014-05-22 21:13:33 +08:00
|
|
|
pc_render_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
|
2010-12-15 17:56:50 +08:00
|
|
|
{
|
2013-08-27 03:58:11 +08:00
|
|
|
return ring->scratch.cpu_page[0];
|
2010-12-15 17:56:50 +08:00
|
|
|
}
|
|
|
|
|
2012-12-19 17:13:05 +08:00
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
pc_render_set_seqno(struct intel_engine_cs *ring, u32 seqno)
|
2012-12-19 17:13:05 +08:00
|
|
|
{
|
2013-08-27 03:58:11 +08:00
|
|
|
ring->scratch.cpu_page[0] = seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
}
|
|
|
|
|
2012-04-12 04:12:54 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
gen5_ring_get_irq(struct intel_engine_cs *ring)
|
2012-04-12 04:12:54 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2012-04-12 04:12:54 +08:00
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (WARN_ON(!intel_irqs_enabled(dev_priv)))
|
2012-04-12 04:12:54 +08:00
|
|
|
return false;
|
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-08-07 05:57:12 +08:00
|
|
|
if (ring->irq_refcount++ == 0)
|
2014-07-16 15:49:40 +08:00
|
|
|
gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask);
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2012-04-12 04:12:54 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
gen5_ring_put_irq(struct intel_engine_cs *ring)
|
2012-04-12 04:12:54 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2012-04-12 04:12:54 +08:00
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-08-07 05:57:12 +08:00
|
|
|
if (--ring->irq_refcount == 0)
|
2014-07-16 15:49:40 +08:00
|
|
|
gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask);
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2012-04-12 04:12:54 +08:00
|
|
|
}
|
|
|
|
|
2010-12-14 00:54:50 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
i9xx_ring_get_irq(struct intel_engine_cs *ring)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-10-27 19:18:21 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (!intel_irqs_enabled(dev_priv))
|
2010-12-14 00:54:50 +08:00
|
|
|
return false;
|
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (ring->irq_refcount++ == 0) {
|
2012-04-12 04:12:59 +08:00
|
|
|
dev_priv->irq_mask &= ~ring->irq_enable_mask;
|
|
|
|
I915_WRITE(IMR, dev_priv->irq_mask);
|
|
|
|
POSTING_READ(IMR);
|
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2010-12-14 00:54:50 +08:00
|
|
|
|
|
|
|
return true;
|
2010-05-22 04:26:39 +08:00
|
|
|
}
|
|
|
|
|
2010-05-21 09:08:55 +08:00
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
i9xx_ring_put_irq(struct intel_engine_cs *ring)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-10-27 19:18:21 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (--ring->irq_refcount == 0) {
|
2012-04-12 04:12:59 +08:00
|
|
|
dev_priv->irq_mask |= ring->irq_enable_mask;
|
|
|
|
I915_WRITE(IMR, dev_priv->irq_mask);
|
|
|
|
POSTING_READ(IMR);
|
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2010-05-22 04:26:39 +08:00
|
|
|
}
|
|
|
|
|
2012-04-23 04:13:57 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
i8xx_ring_get_irq(struct intel_engine_cs *ring)
|
2012-04-23 04:13:57 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2012-04-23 04:13:57 +08:00
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (!intel_irqs_enabled(dev_priv))
|
2012-04-23 04:13:57 +08:00
|
|
|
return false;
|
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (ring->irq_refcount++ == 0) {
|
2012-04-23 04:13:57 +08:00
|
|
|
dev_priv->irq_mask &= ~ring->irq_enable_mask;
|
|
|
|
I915_WRITE16(IMR, dev_priv->irq_mask);
|
|
|
|
POSTING_READ16(IMR);
|
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2012-04-23 04:13:57 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
i8xx_ring_put_irq(struct intel_engine_cs *ring)
|
2012-04-23 04:13:57 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2012-04-23 04:13:57 +08:00
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (--ring->irq_refcount == 0) {
|
2012-04-23 04:13:57 +08:00
|
|
|
dev_priv->irq_mask |= ring->irq_enable_mask;
|
|
|
|
I915_WRITE16(IMR, dev_priv->irq_mask);
|
|
|
|
POSTING_READ16(IMR);
|
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2012-04-23 04:13:57 +08:00
|
|
|
}
|
|
|
|
|
2011-01-05 01:34:02 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
bsd_ring_flush(struct intel_engine_cs *ring,
|
2010-10-27 19:18:21 +08:00
|
|
|
u32 invalidate_domains,
|
|
|
|
u32 flush_domains)
|
2010-05-21 09:08:57 +08:00
|
|
|
{
|
2011-01-05 01:34:02 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, MI_FLUSH);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
return 0;
|
2010-05-21 09:08:57 +08:00
|
|
|
}
|
|
|
|
|
2010-10-27 23:11:02 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
i9xx_add_request(struct intel_engine_cs *ring)
|
2010-05-21 09:08:57 +08:00
|
|
|
{
|
2010-10-27 23:11:02 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-08-07 18:01:22 +08:00
|
|
|
|
2010-10-27 23:11:02 +08:00
|
|
|
intel_ring_emit(ring, MI_STORE_DWORD_INDEX);
|
|
|
|
intel_ring_emit(ring, I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_emit(ring,
|
|
|
|
i915_gem_request_get_seqno(ring->outstanding_lazy_request));
|
2010-10-27 23:11:02 +08:00
|
|
|
intel_ring_emit(ring, MI_USER_INTERRUPT);
|
2013-08-11 05:16:32 +08:00
|
|
|
__intel_ring_advance(ring);
|
2010-05-21 09:08:57 +08:00
|
|
|
|
2010-10-27 23:11:02 +08:00
|
|
|
return 0;
|
2010-05-21 09:08:57 +08:00
|
|
|
}
|
|
|
|
|
2011-01-05 01:35:21 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_ring_get_irq(struct intel_engine_cs *ring)
|
2011-01-05 01:35:21 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2011-01-05 01:35:21 +08:00
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (WARN_ON(!intel_irqs_enabled(dev_priv)))
|
|
|
|
return false;
|
2011-01-05 01:35:21 +08:00
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (ring->irq_refcount++ == 0) {
|
2013-09-20 02:01:40 +08:00
|
|
|
if (HAS_L3_DPF(dev) && ring->id == RCS)
|
2013-05-29 10:22:29 +08:00
|
|
|
I915_WRITE_IMR(ring,
|
|
|
|
~(ring->irq_enable_mask |
|
2013-09-20 02:13:41 +08:00
|
|
|
GT_PARITY_ERROR(dev)));
|
2012-05-26 07:56:23 +08:00
|
|
|
else
|
|
|
|
I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
|
2014-07-16 15:49:40 +08:00
|
|
|
gen5_enable_gt_irq(dev_priv, ring->irq_enable_mask);
|
2011-01-05 01:35:21 +08:00
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2011-01-05 01:35:21 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_ring_put_irq(struct intel_engine_cs *ring)
|
2011-01-05 01:35:21 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-04-25 04:48:47 +08:00
|
|
|
unsigned long flags;
|
2011-01-05 01:35:21 +08:00
|
|
|
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (--ring->irq_refcount == 0) {
|
2013-09-20 02:01:40 +08:00
|
|
|
if (HAS_L3_DPF(dev) && ring->id == RCS)
|
2013-09-20 02:13:41 +08:00
|
|
|
I915_WRITE_IMR(ring, ~GT_PARITY_ERROR(dev));
|
2012-05-26 07:56:23 +08:00
|
|
|
else
|
|
|
|
I915_WRITE_IMR(ring, ~0);
|
2014-07-16 15:49:40 +08:00
|
|
|
gen5_disable_gt_irq(dev_priv, ring->irq_enable_mask);
|
2010-12-04 19:30:53 +08:00
|
|
|
}
|
2012-04-25 04:48:47 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2010-05-21 09:08:57 +08:00
|
|
|
}
|
|
|
|
|
2013-05-29 10:22:30 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
hsw_vebox_get_irq(struct intel_engine_cs *ring)
|
2013-05-29 10:22:30 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (WARN_ON(!intel_irqs_enabled(dev_priv)))
|
2013-05-29 10:22:30 +08:00
|
|
|
return false;
|
|
|
|
|
2013-07-05 05:35:28 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (ring->irq_refcount++ == 0) {
|
2013-05-29 10:22:30 +08:00
|
|
|
I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
|
2014-07-16 15:49:40 +08:00
|
|
|
gen6_enable_pm_irq(dev_priv, ring->irq_enable_mask);
|
2013-05-29 10:22:30 +08:00
|
|
|
}
|
2013-07-05 05:35:28 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2013-05-29 10:22:30 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
hsw_vebox_put_irq(struct intel_engine_cs *ring)
|
2013-05-29 10:22:30 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2013-07-05 05:35:28 +08:00
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
2013-07-05 05:35:29 +08:00
|
|
|
if (--ring->irq_refcount == 0) {
|
2013-05-29 10:22:30 +08:00
|
|
|
I915_WRITE_IMR(ring, ~0);
|
2014-07-16 15:49:40 +08:00
|
|
|
gen6_disable_pm_irq(dev_priv, ring->irq_enable_mask);
|
2013-05-29 10:22:30 +08:00
|
|
|
}
|
2013-07-05 05:35:28 +08:00
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
2013-05-29 10:22:30 +08:00
|
|
|
}
|
|
|
|
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
static bool
|
2014-05-22 21:13:33 +08:00
|
|
|
gen8_ring_get_irq(struct intel_engine_cs *ring)
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2014-09-15 17:38:57 +08:00
|
|
|
if (WARN_ON(!intel_irqs_enabled(dev_priv)))
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
|
|
|
if (ring->irq_refcount++ == 0) {
|
|
|
|
if (HAS_L3_DPF(dev) && ring->id == RCS) {
|
|
|
|
I915_WRITE_IMR(ring,
|
|
|
|
~(ring->irq_enable_mask |
|
|
|
|
GT_RENDER_L3_PARITY_ERROR_INTERRUPT));
|
|
|
|
} else {
|
|
|
|
I915_WRITE_IMR(ring, ~ring->irq_enable_mask);
|
|
|
|
}
|
|
|
|
POSTING_READ(RING_IMR(ring->mmio_base));
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-22 21:13:33 +08:00
|
|
|
gen8_ring_put_irq(struct intel_engine_cs *ring)
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
{
|
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev_priv->irq_lock, flags);
|
|
|
|
if (--ring->irq_refcount == 0) {
|
|
|
|
if (HAS_L3_DPF(dev) && ring->id == RCS) {
|
|
|
|
I915_WRITE_IMR(ring,
|
|
|
|
~GT_RENDER_L3_PARITY_ERROR_INTERRUPT);
|
|
|
|
} else {
|
|
|
|
I915_WRITE_IMR(ring, ~0);
|
|
|
|
}
|
|
|
|
POSTING_READ(RING_IMR(ring->mmio_base));
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
|
|
|
|
}
|
|
|
|
|
2010-05-21 09:08:57 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
i965_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2014-04-29 10:29:25 +08:00
|
|
|
u64 offset, u32 length,
|
2015-02-13 19:48:10 +08:00
|
|
|
unsigned dispatch_flags)
|
2010-05-21 09:08:57 +08:00
|
|
|
{
|
2010-10-27 19:45:26 +08:00
|
|
|
int ret;
|
2010-10-27 19:18:21 +08:00
|
|
|
|
2010-10-27 19:45:26 +08:00
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2010-10-27 19:18:21 +08:00
|
|
|
intel_ring_emit(ring,
|
2012-04-17 23:38:12 +08:00
|
|
|
MI_BATCH_BUFFER_START |
|
|
|
|
MI_BATCH_GTT |
|
2015-02-13 19:48:10 +08:00
|
|
|
(dispatch_flags & I915_DISPATCH_SECURE ?
|
|
|
|
0 : MI_BATCH_NON_SECURE_I965));
|
2010-11-30 22:10:25 +08:00
|
|
|
intel_ring_emit(ring, offset);
|
2010-10-27 19:18:21 +08:00
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
2010-05-21 09:08:57 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-17 23:21:27 +08:00
|
|
|
/* Just userspace ABI convention to limit the wa batch bo to a resonable size */
|
|
|
|
#define I830_BATCH_LIMIT (256*1024)
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
#define I830_TLB_ENTRIES (2)
|
|
|
|
#define I830_WA_SIZE max(I830_TLB_ENTRIES*4096, I830_BATCH_LIMIT)
|
2010-05-21 09:08:55 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
i830_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2015-02-13 19:48:10 +08:00
|
|
|
u64 offset, u32 len,
|
|
|
|
unsigned dispatch_flags)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
u32 cs_offset = ring->scratch.gtt_offset;
|
2010-11-30 22:10:25 +08:00
|
|
|
int ret;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
ret = intel_ring_begin(ring, 6);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
/* Evict the invalid PTE TLBs */
|
|
|
|
intel_ring_emit(ring, COLOR_BLT_CMD | BLT_WRITE_RGBA);
|
|
|
|
intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_COLOR_COPY | 4096);
|
|
|
|
intel_ring_emit(ring, I830_TLB_ENTRIES << 16 | 4); /* load each page */
|
|
|
|
intel_ring_emit(ring, cs_offset);
|
|
|
|
intel_ring_emit(ring, 0xdeadbeef);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
2012-12-17 23:21:27 +08:00
|
|
|
|
2015-02-13 19:48:10 +08:00
|
|
|
if ((dispatch_flags & I915_DISPATCH_PINNED) == 0) {
|
2012-12-17 23:21:27 +08:00
|
|
|
if (len > I830_BATCH_LIMIT)
|
|
|
|
return -ENOSPC;
|
|
|
|
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
ret = intel_ring_begin(ring, 6 + 2);
|
2012-12-17 23:21:27 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
|
|
|
|
/* Blit the batch (which has now all relocs applied) to the
|
|
|
|
* stable batch scratch bo area (so that the CS never
|
|
|
|
* stumbles over its tlb invalidation bug) ...
|
|
|
|
*/
|
|
|
|
intel_ring_emit(ring, SRC_COPY_BLT_CMD | BLT_WRITE_RGBA);
|
|
|
|
intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_SRC_COPY | 4096);
|
2014-09-12 14:37:42 +08:00
|
|
|
intel_ring_emit(ring, DIV_ROUND_UP(len, 4096) << 16 | 4096);
|
2012-12-17 23:21:27 +08:00
|
|
|
intel_ring_emit(ring, cs_offset);
|
|
|
|
intel_ring_emit(ring, 4096);
|
|
|
|
intel_ring_emit(ring, offset);
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
|
2012-12-17 23:21:27 +08:00
|
|
|
intel_ring_emit(ring, MI_FLUSH);
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
2012-12-17 23:21:27 +08:00
|
|
|
|
|
|
|
/* ... and execute it. */
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
offset = cs_offset;
|
2012-12-17 23:21:27 +08:00
|
|
|
}
|
2010-10-27 19:45:26 +08:00
|
|
|
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring, MI_BATCH_BUFFER);
|
2015-02-13 19:48:10 +08:00
|
|
|
intel_ring_emit(ring, offset | (dispatch_flags & I915_DISPATCH_SECURE ?
|
|
|
|
0 : MI_BATCH_NON_SECURE));
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
intel_ring_emit(ring, offset + len - 8);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
2012-04-12 04:12:56 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
i915_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2014-04-29 10:29:25 +08:00
|
|
|
u64 offset, u32 len,
|
2015-02-13 19:48:10 +08:00
|
|
|
unsigned dispatch_flags)
|
2012-04-12 04:12:56 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-04-17 23:38:12 +08:00
|
|
|
intel_ring_emit(ring, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
|
2015-02-13 19:48:10 +08:00
|
|
|
intel_ring_emit(ring, offset | (dispatch_flags & I915_DISPATCH_SECURE ?
|
|
|
|
0 : MI_BATCH_NON_SECURE));
|
2010-11-30 22:10:25 +08:00
|
|
|
intel_ring_advance(ring);
|
2010-05-22 04:26:39 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static void cleanup_status_page(struct intel_engine_cs *ring)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-11-09 03:18:58 +08:00
|
|
|
struct drm_i915_gem_object *obj;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2010-05-21 09:08:55 +08:00
|
|
|
obj = ring->status_page.obj;
|
|
|
|
if (obj == NULL)
|
2010-05-22 04:26:39 +08:00
|
|
|
return;
|
|
|
|
|
2012-06-01 22:20:22 +08:00
|
|
|
kunmap(sg_page(obj->pages->sgl));
|
2013-12-07 06:10:55 +08:00
|
|
|
i915_gem_object_ggtt_unpin(obj);
|
2010-11-09 03:18:58 +08:00
|
|
|
drm_gem_object_unreference(&obj->base);
|
2010-05-21 09:08:55 +08:00
|
|
|
ring->status_page.obj = NULL;
|
2010-05-22 04:26:39 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int init_status_page(struct intel_engine_cs *ring)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-11-09 03:18:58 +08:00
|
|
|
struct drm_i915_gem_object *obj;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-04-09 16:19:41 +08:00
|
|
|
if ((obj = ring->status_page.obj) == NULL) {
|
2014-07-04 05:33:03 +08:00
|
|
|
unsigned flags;
|
2014-04-09 16:19:41 +08:00
|
|
|
int ret;
|
2011-04-04 16:44:39 +08:00
|
|
|
|
2014-04-09 16:19:41 +08:00
|
|
|
obj = i915_gem_alloc_object(ring->dev, 4096);
|
|
|
|
if (obj == NULL) {
|
|
|
|
DRM_ERROR("Failed to allocate status page\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-04-09 16:19:41 +08:00
|
|
|
ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
|
|
|
|
if (ret)
|
|
|
|
goto err_unref;
|
|
|
|
|
2014-07-04 05:33:03 +08:00
|
|
|
flags = 0;
|
|
|
|
if (!HAS_LLC(ring->dev))
|
|
|
|
/* On g33, we cannot place HWS above 256MiB, so
|
|
|
|
* restrict its pinning to the low mappable arena.
|
|
|
|
* Though this restriction is not documented for
|
|
|
|
* gen4, gen5, or byt, they also behave similarly
|
|
|
|
* and hang if the HWS is placed at the top of the
|
|
|
|
* GTT. To generalise, it appears that all !llc
|
|
|
|
* platforms have issues with us placing the HWS
|
|
|
|
* above the mappable region (even though we never
|
|
|
|
* actualy map it).
|
|
|
|
*/
|
|
|
|
flags |= PIN_MAPPABLE;
|
|
|
|
ret = i915_gem_obj_ggtt_pin(obj, 4096, flags);
|
2014-04-09 16:19:41 +08:00
|
|
|
if (ret) {
|
|
|
|
err_unref:
|
|
|
|
drm_gem_object_unreference(&obj->base);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ring->status_page.obj = obj;
|
|
|
|
}
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2013-07-06 05:41:04 +08:00
|
|
|
ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(obj);
|
2012-06-01 22:20:22 +08:00
|
|
|
ring->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
|
2010-05-21 09:08:55 +08:00
|
|
|
memset(ring->status_page.page_addr, 0, PAGE_SIZE);
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2010-05-21 09:08:55 +08:00
|
|
|
DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
|
|
|
|
ring->name, ring->status_page.gfx_addr);
|
2010-05-22 04:26:39 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int init_phys_status_page(struct intel_engine_cs *ring)
|
2012-11-16 19:43:20 +08:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
|
|
|
|
|
|
|
if (!dev_priv->status_page_dmah) {
|
|
|
|
dev_priv->status_page_dmah =
|
|
|
|
drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE);
|
|
|
|
if (!dev_priv->status_page_dmah)
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ring->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
|
|
|
|
memset(ring->status_page.page_addr, 0, PAGE_SIZE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-13 18:28:56 +08:00
|
|
|
void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
|
2014-07-03 23:28:02 +08:00
|
|
|
{
|
|
|
|
iounmap(ringbuf->virtual_start);
|
2014-11-13 18:28:56 +08:00
|
|
|
ringbuf->virtual_start = NULL;
|
2014-07-03 23:28:02 +08:00
|
|
|
i915_gem_object_ggtt_unpin(ringbuf->obj);
|
2014-11-13 18:28:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int intel_pin_and_map_ringbuffer_obj(struct drm_device *dev,
|
|
|
|
struct intel_ringbuffer *ringbuf)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = to_i915(dev);
|
|
|
|
struct drm_i915_gem_object *obj = ringbuf->obj;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE, PIN_MAPPABLE);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = i915_gem_object_set_to_gtt_domain(obj, true);
|
|
|
|
if (ret) {
|
|
|
|
i915_gem_object_ggtt_unpin(obj);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ringbuf->virtual_start = ioremap_wc(dev_priv->gtt.mappable_base +
|
|
|
|
i915_gem_obj_ggtt_offset(obj), ringbuf->size);
|
|
|
|
if (ringbuf->virtual_start == NULL) {
|
|
|
|
i915_gem_object_ggtt_unpin(obj);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void intel_destroy_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
|
|
|
|
{
|
2014-07-03 23:28:02 +08:00
|
|
|
drm_gem_object_unreference(&ringbuf->obj->base);
|
|
|
|
ringbuf->obj = NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-25 00:04:15 +08:00
|
|
|
int intel_alloc_ringbuffer_obj(struct drm_device *dev,
|
|
|
|
struct intel_ringbuffer *ringbuf)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-11-09 03:18:58 +08:00
|
|
|
struct drm_i915_gem_object *obj;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2012-11-15 19:32:28 +08:00
|
|
|
obj = NULL;
|
|
|
|
if (!HAS_LLC(dev))
|
2014-05-22 21:13:36 +08:00
|
|
|
obj = i915_gem_object_create_stolen(dev, ringbuf->size);
|
2012-11-15 19:32:28 +08:00
|
|
|
if (obj == NULL)
|
2014-05-22 21:13:36 +08:00
|
|
|
obj = i915_gem_alloc_object(dev, ringbuf->size);
|
2014-04-09 16:19:41 +08:00
|
|
|
if (obj == NULL)
|
|
|
|
return -ENOMEM;
|
2010-05-21 09:08:55 +08:00
|
|
|
|
2014-06-17 13:29:42 +08:00
|
|
|
/* mark ring buffers as read-only from GPU side by default */
|
|
|
|
obj->gt_ro = 1;
|
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->obj = obj;
|
2014-04-09 16:19:41 +08:00
|
|
|
|
2014-11-13 18:28:56 +08:00
|
|
|
return 0;
|
2014-04-09 16:19:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int intel_init_ring_buffer(struct drm_device *dev,
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring)
|
2014-04-09 16:19:41 +08:00
|
|
|
{
|
2014-11-20 07:33:08 +08:00
|
|
|
struct intel_ringbuffer *ringbuf;
|
2014-04-09 16:19:41 +08:00
|
|
|
int ret;
|
|
|
|
|
2014-11-20 07:33:08 +08:00
|
|
|
WARN_ON(ring->buffer);
|
|
|
|
|
|
|
|
ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
|
|
|
|
if (!ringbuf)
|
|
|
|
return -ENOMEM;
|
|
|
|
ring->buffer = ringbuf;
|
2014-05-22 21:13:34 +08:00
|
|
|
|
2014-04-09 16:19:41 +08:00
|
|
|
ring->dev = dev;
|
|
|
|
INIT_LIST_HEAD(&ring->active_list);
|
|
|
|
INIT_LIST_HEAD(&ring->request_list);
|
2014-07-25 00:04:42 +08:00
|
|
|
INIT_LIST_HEAD(&ring->execlist_queue);
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->size = 32 * PAGE_SIZE;
|
2014-08-11 22:17:44 +08:00
|
|
|
ringbuf->ring = ring;
|
2014-04-30 05:52:28 +08:00
|
|
|
memset(ring->semaphore.sync_seqno, 0, sizeof(ring->semaphore.sync_seqno));
|
2014-04-09 16:19:41 +08:00
|
|
|
|
|
|
|
init_waitqueue_head(&ring->irq_queue);
|
|
|
|
|
|
|
|
if (I915_NEED_GFX_HWS(dev)) {
|
|
|
|
ret = init_status_page(ring);
|
|
|
|
if (ret)
|
2014-05-22 21:13:34 +08:00
|
|
|
goto error;
|
2014-04-09 16:19:41 +08:00
|
|
|
} else {
|
|
|
|
BUG_ON(ring->id != RCS);
|
|
|
|
ret = init_phys_status_page(ring);
|
|
|
|
if (ret)
|
2014-05-22 21:13:34 +08:00
|
|
|
goto error;
|
2014-04-09 16:19:41 +08:00
|
|
|
}
|
|
|
|
|
2014-11-20 07:33:08 +08:00
|
|
|
WARN_ON(ringbuf->obj);
|
2014-11-13 18:28:56 +08:00
|
|
|
|
2014-11-20 07:33:08 +08:00
|
|
|
ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Failed to allocate ringbuffer %s: %d\n",
|
|
|
|
ring->name, ret);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Failed to pin and map ringbuffer %s: %d\n",
|
|
|
|
ring->name, ret);
|
|
|
|
intel_destroy_ringbuffer_obj(ringbuf);
|
|
|
|
goto error;
|
2014-04-09 16:19:41 +08:00
|
|
|
}
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2010-12-22 22:04:47 +08:00
|
|
|
/* Workaround an erratum on the i830 which causes a hang if
|
|
|
|
* the TAIL pointer points to within the last 2 cachelines
|
|
|
|
* of the buffer.
|
|
|
|
*/
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->effective_size = ringbuf->size;
|
2014-04-09 16:19:41 +08:00
|
|
|
if (IS_I830(dev) || IS_845G(dev))
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->effective_size -= 2 * CACHELINE_BYTES;
|
2010-12-22 22:04:47 +08:00
|
|
|
|
2014-05-11 05:10:43 +08:00
|
|
|
ret = i915_cmd_parser_init_ring(ring);
|
|
|
|
if (ret)
|
2014-05-22 21:13:34 +08:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
return 0;
|
2014-02-19 02:15:46 +08:00
|
|
|
|
2014-05-22 21:13:34 +08:00
|
|
|
error:
|
|
|
|
kfree(ringbuf);
|
|
|
|
ring->buffer = NULL;
|
|
|
|
return ret;
|
2010-05-22 04:26:39 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
void intel_cleanup_ring_buffer(struct intel_engine_cs *ring)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2014-10-31 20:00:26 +08:00
|
|
|
struct drm_i915_private *dev_priv;
|
|
|
|
struct intel_ringbuffer *ringbuf;
|
2010-10-29 23:18:36 +08:00
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
if (!intel_ring_initialized(ring))
|
2010-05-22 04:26:39 +08:00
|
|
|
return;
|
|
|
|
|
2014-10-31 20:00:26 +08:00
|
|
|
dev_priv = to_i915(ring->dev);
|
|
|
|
ringbuf = ring->buffer;
|
|
|
|
|
2014-04-09 16:19:41 +08:00
|
|
|
intel_stop_ring_buffer(ring);
|
2014-05-29 00:12:13 +08:00
|
|
|
WARN_ON(!IS_GEN2(ring->dev) && (I915_READ_MODE(ring) & MODE_IDLE) == 0);
|
2010-10-29 23:18:36 +08:00
|
|
|
|
2014-11-13 18:28:56 +08:00
|
|
|
intel_unpin_ringbuffer_obj(ringbuf);
|
2014-07-03 23:28:02 +08:00
|
|
|
intel_destroy_ringbuffer_obj(ringbuf);
|
2014-11-25 02:49:29 +08:00
|
|
|
i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
|
2010-10-27 19:18:21 +08:00
|
|
|
|
2010-11-02 16:31:01 +08:00
|
|
|
if (ring->cleanup)
|
|
|
|
ring->cleanup(ring);
|
|
|
|
|
2010-10-27 19:18:21 +08:00
|
|
|
cleanup_status_page(ring);
|
2014-05-11 05:10:43 +08:00
|
|
|
|
|
|
|
i915_cmd_parser_fini_ring(ring);
|
2014-05-22 21:13:34 +08:00
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
kfree(ringbuf);
|
2014-05-22 21:13:34 +08:00
|
|
|
ring->buffer = NULL;
|
2010-05-22 04:26:39 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int intel_ring_wait_request(struct intel_engine_cs *ring, int n)
|
2012-02-15 19:25:36 +08:00
|
|
|
{
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
2012-02-15 19:25:36 +08:00
|
|
|
struct drm_i915_gem_request *request;
|
|
|
|
int ret;
|
|
|
|
|
2014-11-27 19:22:49 +08:00
|
|
|
if (intel_ring_space(ringbuf) >= n)
|
|
|
|
return 0;
|
2012-02-15 19:25:36 +08:00
|
|
|
|
|
|
|
list_for_each_entry(request, &ring->request_list, list) {
|
2015-01-15 21:10:37 +08:00
|
|
|
if (__intel_ring_space(request->postfix, ringbuf->tail,
|
2014-07-25 00:04:26 +08:00
|
|
|
ringbuf->size) >= n) {
|
2012-02-15 19:25:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-26 21:17:05 +08:00
|
|
|
if (&request->list == &ring->request_list)
|
2012-02-15 19:25:36 +08:00
|
|
|
return -ENOSPC;
|
|
|
|
|
2014-11-26 21:17:05 +08:00
|
|
|
ret = i915_wait_request(request);
|
2012-02-15 19:25:36 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-05-05 16:07:33 +08:00
|
|
|
i915_gem_retire_requests_ring(ring);
|
2012-02-15 19:25:36 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int ring_wait_for_space(struct intel_engine_cs *ring, int n)
|
2010-05-22 04:26:39 +08:00
|
|
|
{
|
2010-10-27 19:18:21 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2010-11-09 17:17:32 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
2010-10-27 19:18:21 +08:00
|
|
|
unsigned long end;
|
2012-02-15 19:25:36 +08:00
|
|
|
int ret;
|
2011-01-21 01:00:10 +08:00
|
|
|
|
2012-02-15 19:25:36 +08:00
|
|
|
ret = intel_ring_wait_request(ring, n);
|
|
|
|
if (ret != -ENOSPC)
|
|
|
|
return ret;
|
|
|
|
|
2013-08-11 05:16:32 +08:00
|
|
|
/* force the tail write in case we have been skipping them */
|
|
|
|
__intel_ring_advance(ring);
|
|
|
|
|
2012-04-23 22:50:50 +08:00
|
|
|
/* With GEM the hangcheck timer should kick us out of the loop,
|
|
|
|
* leaving it early runs the risk of corrupting GEM state (due
|
|
|
|
* to running on almost untested codepaths). But on resume
|
|
|
|
* timers don't work yet, so prevent a complete hang in that
|
|
|
|
* case by choosing an insanely large timeout. */
|
|
|
|
end = jiffies + 60 * HZ;
|
2011-12-14 20:56:59 +08:00
|
|
|
|
2014-11-27 19:22:49 +08:00
|
|
|
ret = 0;
|
2014-05-05 16:07:32 +08:00
|
|
|
trace_i915_ring_wait_begin(ring);
|
2010-05-21 09:08:55 +08:00
|
|
|
do {
|
2014-11-27 19:22:49 +08:00
|
|
|
if (intel_ring_space(ringbuf) >= n)
|
|
|
|
break;
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->head = I915_READ_HEAD(ring);
|
2014-11-27 19:22:49 +08:00
|
|
|
if (intel_ring_space(ringbuf) >= n)
|
2014-05-05 16:07:32 +08:00
|
|
|
break;
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2010-10-13 17:09:14 +08:00
|
|
|
msleep(1);
|
drm/i915: non-interruptible sleeps can't handle -EAGAIN
So don't return -EAGAIN, even in the case of a gpu hang. Remap it to
-EIO instead. Note that this isn't really an issue with
interruptability, but more that we have quite a few codepaths (mostly
around kms stuff) that simply can't handle any errors and hence not
even -EAGAIN. Instead of adding proper failure paths so that we could
restart these ioctls we've opted for the cheap way out of sleeping
non-interruptibly. Which works everywhere but when the gpu dies,
which this patch fixes.
So essentially interruptible == false means 'wait for the gpu or die
trying'.'
This patch is a bit ugly because intel_ring_begin is all non-interruptible
and hence only returns -EIO. But as the comment in there says,
auditing all the callsites would be a pain.
To avoid duplicating code, reuse i915_gem_check_wedge in __wait_seqno
and intel_wait_ring_buffer. Also use the opportunity to clarify the
different cases in i915_gem_check_wedge a bit with comments.
v2: Don't access dev_priv->mm.interruptible from check_wedge - we
might not hold dev->struct_mutex, making this racy. Instead pass
interruptible in as a parameter. I've noticed this because I've hit a
BUG_ON(!mutex_is_locked) at the top of check_wedge. This has been
added in
commit b4aca0106c466b5a0329318203f65bac2d91b682
Author: Ben Widawsky <ben@bwidawsk.net>
Date: Wed Apr 25 20:50:12 2012 -0700
drm/i915: extract some common olr+wedge code
although that commit is missing any justification for this. I guess
it's just copy&paste, because the same commit add the same BUG_ON
check to check_olr, where it indeed makes sense.
But in check_wedge everything we access is protected by other means,
so this is superflous. And because it now gets in the way (we add a
new caller in __wait_seqno, which can be called without
dev->struct_mutext) let's just remove it.
v3: Group all the i915_gem_check_wedge refactoring into this patch, so
that this patch here is all about not returning -EAGAIN to callsites
that can't handle syscall restarting.
v4: Add clarification what interuptible == fales means in our code,
requested by Ben Widawsky.
v5: Fix EAGAIN mispell noticed by Chris Wilson.
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Tested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-07-05 04:54:13 +08:00
|
|
|
|
2014-05-05 16:07:32 +08:00
|
|
|
if (dev_priv->mm.interruptible && signal_pending(current)) {
|
|
|
|
ret = -ERESTARTSYS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-11-15 00:14:05 +08:00
|
|
|
ret = i915_gem_check_wedge(&dev_priv->gpu_error,
|
|
|
|
dev_priv->mm.interruptible);
|
drm/i915: non-interruptible sleeps can't handle -EAGAIN
So don't return -EAGAIN, even in the case of a gpu hang. Remap it to
-EIO instead. Note that this isn't really an issue with
interruptability, but more that we have quite a few codepaths (mostly
around kms stuff) that simply can't handle any errors and hence not
even -EAGAIN. Instead of adding proper failure paths so that we could
restart these ioctls we've opted for the cheap way out of sleeping
non-interruptibly. Which works everywhere but when the gpu dies,
which this patch fixes.
So essentially interruptible == false means 'wait for the gpu or die
trying'.'
This patch is a bit ugly because intel_ring_begin is all non-interruptible
and hence only returns -EIO. But as the comment in there says,
auditing all the callsites would be a pain.
To avoid duplicating code, reuse i915_gem_check_wedge in __wait_seqno
and intel_wait_ring_buffer. Also use the opportunity to clarify the
different cases in i915_gem_check_wedge a bit with comments.
v2: Don't access dev_priv->mm.interruptible from check_wedge - we
might not hold dev->struct_mutex, making this racy. Instead pass
interruptible in as a parameter. I've noticed this because I've hit a
BUG_ON(!mutex_is_locked) at the top of check_wedge. This has been
added in
commit b4aca0106c466b5a0329318203f65bac2d91b682
Author: Ben Widawsky <ben@bwidawsk.net>
Date: Wed Apr 25 20:50:12 2012 -0700
drm/i915: extract some common olr+wedge code
although that commit is missing any justification for this. I guess
it's just copy&paste, because the same commit add the same BUG_ON
check to check_olr, where it indeed makes sense.
But in check_wedge everything we access is protected by other means,
so this is superflous. And because it now gets in the way (we add a
new caller in __wait_seqno, which can be called without
dev->struct_mutext) let's just remove it.
v3: Group all the i915_gem_check_wedge refactoring into this patch, so
that this patch here is all about not returning -EAGAIN to callsites
that can't handle syscall restarting.
v4: Add clarification what interuptible == fales means in our code,
requested by Ben Widawsky.
v5: Fix EAGAIN mispell noticed by Chris Wilson.
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Tested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-07-05 04:54:13 +08:00
|
|
|
if (ret)
|
2014-05-05 16:07:32 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (time_after(jiffies, end)) {
|
|
|
|
ret = -EBUSY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1);
|
2011-02-03 19:57:46 +08:00
|
|
|
trace_i915_ring_wait_end(ring);
|
2014-05-05 16:07:32 +08:00
|
|
|
return ret;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int intel_wrap_ring_buffer(struct intel_engine_cs *ring)
|
2012-11-28 00:22:54 +08:00
|
|
|
{
|
|
|
|
uint32_t __iomem *virt;
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
|
|
|
int rem = ringbuf->size - ringbuf->tail;
|
2012-11-28 00:22:54 +08:00
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
if (ringbuf->space < rem) {
|
2012-11-28 00:22:54 +08:00
|
|
|
int ret = ring_wait_for_space(ring, rem);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
virt = ringbuf->virtual_start + ringbuf->tail;
|
2012-11-28 00:22:54 +08:00
|
|
|
rem /= 4;
|
|
|
|
while (rem--)
|
|
|
|
iowrite32(MI_NOOP, virt++);
|
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
ringbuf->tail = 0;
|
2014-11-27 19:22:49 +08:00
|
|
|
intel_ring_update_space(ringbuf);
|
2012-11-28 00:22:54 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
int intel_ring_idle(struct intel_engine_cs *ring)
|
2012-11-28 00:22:54 +08:00
|
|
|
{
|
2014-11-26 21:17:05 +08:00
|
|
|
struct drm_i915_gem_request *req;
|
2012-11-28 00:22:54 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* We need to add any requests required to flush the objects and ring */
|
2014-11-25 02:49:29 +08:00
|
|
|
if (ring->outstanding_lazy_request) {
|
2014-11-25 02:49:36 +08:00
|
|
|
ret = i915_add_request(ring);
|
2012-11-28 00:22:54 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait upon the last request to be completed */
|
|
|
|
if (list_empty(&ring->request_list))
|
|
|
|
return 0;
|
|
|
|
|
2014-11-26 21:17:05 +08:00
|
|
|
req = list_entry(ring->request_list.prev,
|
2012-11-28 00:22:54 +08:00
|
|
|
struct drm_i915_gem_request,
|
2014-11-26 21:17:05 +08:00
|
|
|
list);
|
2012-11-28 00:22:54 +08:00
|
|
|
|
2014-11-26 21:17:05 +08:00
|
|
|
return i915_wait_request(req);
|
2012-11-28 00:22:54 +08:00
|
|
|
}
|
|
|
|
|
2012-11-28 00:22:52 +08:00
|
|
|
static int
|
2014-11-25 02:49:29 +08:00
|
|
|
intel_ring_alloc_request(struct intel_engine_cs *ring)
|
2012-11-28 00:22:52 +08:00
|
|
|
{
|
2014-11-25 02:49:23 +08:00
|
|
|
int ret;
|
|
|
|
struct drm_i915_gem_request *request;
|
2014-12-05 21:49:35 +08:00
|
|
|
struct drm_i915_private *dev_private = ring->dev->dev_private;
|
2014-11-25 02:49:23 +08:00
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
if (ring->outstanding_lazy_request)
|
2012-11-28 00:22:52 +08:00
|
|
|
return 0;
|
2013-09-04 17:45:52 +08:00
|
|
|
|
2014-12-05 21:49:34 +08:00
|
|
|
request = kzalloc(sizeof(*request), GFP_KERNEL);
|
2014-11-25 02:49:23 +08:00
|
|
|
if (request == NULL)
|
|
|
|
return -ENOMEM;
|
2013-09-04 17:45:52 +08:00
|
|
|
|
2014-11-25 02:49:24 +08:00
|
|
|
kref_init(&request->ref);
|
2014-11-25 02:49:41 +08:00
|
|
|
request->ring = ring;
|
2015-02-13 19:48:12 +08:00
|
|
|
request->ringbuf = ring->buffer;
|
2014-12-05 21:49:35 +08:00
|
|
|
request->uniq = dev_private->request_uniq++;
|
2014-11-25 02:49:24 +08:00
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
ret = i915_gem_get_seqno(ring->dev, &request->seqno);
|
2014-11-25 02:49:23 +08:00
|
|
|
if (ret) {
|
|
|
|
kfree(request);
|
|
|
|
return ret;
|
2013-09-04 17:45:52 +08:00
|
|
|
}
|
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
ring->outstanding_lazy_request = request;
|
2014-11-25 02:49:23 +08:00
|
|
|
return 0;
|
2012-11-28 00:22:52 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int __intel_ring_prepare(struct intel_engine_cs *ring,
|
2014-01-02 22:32:35 +08:00
|
|
|
int bytes)
|
2012-12-04 21:12:03 +08:00
|
|
|
{
|
2014-05-22 21:13:36 +08:00
|
|
|
struct intel_ringbuffer *ringbuf = ring->buffer;
|
2012-12-04 21:12:03 +08:00
|
|
|
int ret;
|
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
|
2012-12-04 21:12:03 +08:00
|
|
|
ret = intel_wrap_ring_buffer(ring);
|
|
|
|
if (unlikely(ret))
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:36 +08:00
|
|
|
if (unlikely(ringbuf->space < bytes)) {
|
2012-12-04 21:12:03 +08:00
|
|
|
ret = ring_wait_for_space(ring, bytes);
|
|
|
|
if (unlikely(ret))
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
int intel_ring_begin(struct intel_engine_cs *ring,
|
2010-10-27 19:45:26 +08:00
|
|
|
int num_dwords)
|
2010-05-21 09:08:55 +08:00
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
2010-10-27 19:45:26 +08:00
|
|
|
int ret;
|
2010-10-27 19:18:21 +08:00
|
|
|
|
2012-11-15 00:14:05 +08:00
|
|
|
ret = i915_gem_check_wedge(&dev_priv->gpu_error,
|
|
|
|
dev_priv->mm.interruptible);
|
2012-07-05 04:52:50 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-01-26 23:55:56 +08:00
|
|
|
|
2014-01-02 22:32:35 +08:00
|
|
|
ret = __intel_ring_prepare(ring, num_dwords * sizeof(uint32_t));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-11-28 00:22:52 +08:00
|
|
|
/* Preallocate the olr before touching the ring */
|
2014-11-25 02:49:29 +08:00
|
|
|
ret = intel_ring_alloc_request(ring);
|
2012-11-28 00:22:52 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-05-22 21:13:35 +08:00
|
|
|
ring->buffer->space -= num_dwords * sizeof(uint32_t);
|
2014-01-02 22:32:35 +08:00
|
|
|
return 0;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
2010-10-27 19:18:21 +08:00
|
|
|
|
2014-02-12 01:52:05 +08:00
|
|
|
/* Align the ring tail to a cacheline boundary */
|
2014-05-22 21:13:33 +08:00
|
|
|
int intel_ring_cacheline_align(struct intel_engine_cs *ring)
|
2014-02-12 01:52:05 +08:00
|
|
|
{
|
2014-05-22 21:13:35 +08:00
|
|
|
int num_dwords = (ring->buffer->tail & (CACHELINE_BYTES - 1)) / sizeof(uint32_t);
|
2014-02-12 01:52:05 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (num_dwords == 0)
|
|
|
|
return 0;
|
|
|
|
|
2014-04-09 16:19:40 +08:00
|
|
|
num_dwords = CACHELINE_BYTES / sizeof(uint32_t) - num_dwords;
|
2014-02-12 01:52:05 +08:00
|
|
|
ret = intel_ring_begin(ring, num_dwords);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
while (num_dwords--)
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
void intel_ring_init_seqno(struct intel_engine_cs *ring, u32 seqno)
|
2012-12-04 21:12:04 +08:00
|
|
|
{
|
2014-06-11 23:17:16 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2012-12-04 21:12:04 +08:00
|
|
|
|
2014-11-25 02:49:29 +08:00
|
|
|
BUG_ON(ring->outstanding_lazy_request);
|
2012-12-04 21:12:04 +08:00
|
|
|
|
2014-06-11 23:17:16 +08:00
|
|
|
if (INTEL_INFO(dev)->gen == 6 || INTEL_INFO(dev)->gen == 7) {
|
2012-12-19 17:13:06 +08:00
|
|
|
I915_WRITE(RING_SYNC_0(ring->mmio_base), 0);
|
|
|
|
I915_WRITE(RING_SYNC_1(ring->mmio_base), 0);
|
2014-06-11 23:17:16 +08:00
|
|
|
if (HAS_VEBOX(dev))
|
2013-08-13 07:53:03 +08:00
|
|
|
I915_WRITE(RING_SYNC_2(ring->mmio_base), 0);
|
2010-10-27 19:45:26 +08:00
|
|
|
}
|
2010-08-04 22:18:13 +08:00
|
|
|
|
2012-12-19 17:13:06 +08:00
|
|
|
ring->set_seqno(ring, seqno);
|
2013-05-24 22:16:07 +08:00
|
|
|
ring->hangcheck.seqno = seqno;
|
2010-05-21 09:08:55 +08:00
|
|
|
}
|
2010-05-22 04:26:39 +08:00
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static void gen6_bsd_ring_write_tail(struct intel_engine_cs *ring,
|
2010-10-23 00:02:41 +08:00
|
|
|
u32 value)
|
2010-09-19 21:40:43 +08:00
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = ring->dev->dev_private;
|
2010-09-19 21:40:43 +08:00
|
|
|
|
|
|
|
/* Every tail move must follow the sequence below */
|
2012-07-06 00:14:01 +08:00
|
|
|
|
|
|
|
/* Disable notification that the ring is IDLE. The GT
|
|
|
|
* will then assume that it is busy and bring it out of rc6.
|
|
|
|
*/
|
2011-08-17 03:34:10 +08:00
|
|
|
I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
|
2012-07-06 00:14:01 +08:00
|
|
|
_MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
|
|
|
|
|
|
|
|
/* Clear the context id. Here be magic! */
|
|
|
|
I915_WRITE64(GEN6_BSD_RNCID, 0x0);
|
2011-08-17 03:34:10 +08:00
|
|
|
|
2012-07-06 00:14:01 +08:00
|
|
|
/* Wait for the ring not to be idle, i.e. for it to wake up. */
|
2011-08-17 03:34:10 +08:00
|
|
|
if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
|
2012-07-06 00:14:01 +08:00
|
|
|
GEN6_BSD_SLEEP_INDICATOR) == 0,
|
|
|
|
50))
|
|
|
|
DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
|
2011-08-17 03:34:10 +08:00
|
|
|
|
2012-07-06 00:14:01 +08:00
|
|
|
/* Now that the ring is fully powered up, update the tail */
|
2011-08-17 03:34:10 +08:00
|
|
|
I915_WRITE_TAIL(ring, value);
|
2012-07-06 00:14:01 +08:00
|
|
|
POSTING_READ(RING_TAIL(ring->mmio_base));
|
|
|
|
|
|
|
|
/* Let the ring send IDLE messages to the GT again,
|
|
|
|
* and so let it sleep to conserve power when idle.
|
|
|
|
*/
|
2011-08-17 03:34:10 +08:00
|
|
|
I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
|
2012-07-06 00:14:01 +08:00
|
|
|
_MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
|
2010-09-19 21:40:43 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int gen6_bsd_ring_flush(struct intel_engine_cs *ring,
|
2013-05-29 10:22:21 +08:00
|
|
|
u32 invalidate, u32 flush)
|
2010-09-19 21:40:43 +08:00
|
|
|
{
|
2011-02-02 20:13:49 +08:00
|
|
|
uint32_t cmd;
|
2011-01-05 01:34:02 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-02-02 20:13:49 +08:00
|
|
|
cmd = MI_FLUSH_DW;
|
2013-11-03 12:07:13 +08:00
|
|
|
if (INTEL_INFO(ring->dev)->gen >= 8)
|
|
|
|
cmd += 1;
|
2015-01-22 21:42:00 +08:00
|
|
|
|
|
|
|
/* We always require a command barrier so that subsequent
|
|
|
|
* commands, such as breadcrumb interrupts, are strictly ordered
|
|
|
|
* wrt the contents of the write cache being flushed to memory
|
|
|
|
* (and thus being coherent from the CPU).
|
|
|
|
*/
|
|
|
|
cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
|
|
|
|
|
2012-10-27 00:42:42 +08:00
|
|
|
/*
|
|
|
|
* Bspec vol 1c.5 - video engine command streamer:
|
|
|
|
* "If ENABLED, all TLBs will be invalidated once the flush
|
|
|
|
* operation is complete. This bit is only valid when the
|
|
|
|
* Post-Sync Operation field is a value of 1h or 3h."
|
|
|
|
*/
|
2011-02-02 20:13:49 +08:00
|
|
|
if (invalidate & I915_GEM_GPU_DOMAINS)
|
2015-01-22 21:42:00 +08:00
|
|
|
cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
|
|
|
|
|
2011-02-02 20:13:49 +08:00
|
|
|
intel_ring_emit(ring, cmd);
|
2012-10-27 00:42:42 +08:00
|
|
|
intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
|
2013-11-03 12:07:13 +08:00
|
|
|
if (INTEL_INFO(ring->dev)->gen >= 8) {
|
|
|
|
intel_ring_emit(ring, 0); /* upper addr */
|
|
|
|
intel_ring_emit(ring, 0); /* value */
|
|
|
|
} else {
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
}
|
2011-01-05 01:34:02 +08:00
|
|
|
intel_ring_advance(ring);
|
|
|
|
return 0;
|
2010-09-19 21:40:43 +08:00
|
|
|
}
|
|
|
|
|
2013-11-03 12:07:12 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen8_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2014-04-29 10:29:25 +08:00
|
|
|
u64 offset, u32 len,
|
2015-02-13 19:48:10 +08:00
|
|
|
unsigned dispatch_flags)
|
2013-11-03 12:07:12 +08:00
|
|
|
{
|
2015-02-13 19:48:10 +08:00
|
|
|
bool ppgtt = USES_PPGTT(ring->dev) &&
|
|
|
|
!(dispatch_flags & I915_DISPATCH_SECURE);
|
2013-11-03 12:07:12 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 4);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* FIXME(BDW): Address space and security selectors. */
|
2013-11-03 12:07:26 +08:00
|
|
|
intel_ring_emit(ring, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
|
2014-04-29 10:29:25 +08:00
|
|
|
intel_ring_emit(ring, lower_32_bits(offset));
|
|
|
|
intel_ring_emit(ring, upper_32_bits(offset));
|
2013-11-03 12:07:12 +08:00
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-17 19:09:54 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
hsw_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2015-02-13 19:48:10 +08:00
|
|
|
u64 offset, u32 len,
|
|
|
|
unsigned dispatch_flags)
|
2012-10-17 19:09:54 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_ring_emit(ring,
|
2014-09-10 19:18:27 +08:00
|
|
|
MI_BATCH_BUFFER_START |
|
2015-02-13 19:48:10 +08:00
|
|
|
(dispatch_flags & I915_DISPATCH_SECURE ?
|
2014-09-10 19:18:27 +08:00
|
|
|
0 : MI_BATCH_PPGTT_HSW | MI_BATCH_NON_SECURE_HSW));
|
2012-10-17 19:09:54 +08:00
|
|
|
/* bit0-7 is the length on GEN6+ */
|
|
|
|
intel_ring_emit(ring, offset);
|
|
|
|
intel_ring_advance(ring);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-19 21:40:43 +08:00
|
|
|
static int
|
2014-05-22 21:13:33 +08:00
|
|
|
gen6_ring_dispatch_execbuffer(struct intel_engine_cs *ring,
|
2014-04-29 10:29:25 +08:00
|
|
|
u64 offset, u32 len,
|
2015-02-13 19:48:10 +08:00
|
|
|
unsigned dispatch_flags)
|
2010-09-19 21:40:43 +08:00
|
|
|
{
|
2011-08-17 03:34:10 +08:00
|
|
|
int ret;
|
2010-09-20 00:53:44 +08:00
|
|
|
|
2011-08-17 03:34:10 +08:00
|
|
|
ret = intel_ring_begin(ring, 2);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-10-27 19:45:26 +08:00
|
|
|
|
2012-10-17 19:09:54 +08:00
|
|
|
intel_ring_emit(ring,
|
|
|
|
MI_BATCH_BUFFER_START |
|
2015-02-13 19:48:10 +08:00
|
|
|
(dispatch_flags & I915_DISPATCH_SECURE ?
|
|
|
|
0 : MI_BATCH_NON_SECURE_I965));
|
2011-08-17 03:34:10 +08:00
|
|
|
/* bit0-7 is the length on GEN6+ */
|
|
|
|
intel_ring_emit(ring, offset);
|
|
|
|
intel_ring_advance(ring);
|
2010-09-20 00:53:44 +08:00
|
|
|
|
2011-08-17 03:34:10 +08:00
|
|
|
return 0;
|
2010-09-19 21:40:43 +08:00
|
|
|
}
|
|
|
|
|
2010-10-19 18:19:32 +08:00
|
|
|
/* Blitter support (SandyBridge+) */
|
|
|
|
|
2014-05-22 21:13:33 +08:00
|
|
|
static int gen6_ring_flush(struct intel_engine_cs *ring,
|
2013-05-29 10:22:21 +08:00
|
|
|
u32 invalidate, u32 flush)
|
2010-11-02 16:31:01 +08:00
|
|
|
{
|
2013-06-07 03:58:16 +08:00
|
|
|
struct drm_device *dev = ring->dev;
|
2011-02-02 20:13:49 +08:00
|
|
|
uint32_t cmd;
|
2011-01-05 01:34:02 +08:00
|
|
|
int ret;
|
|
|
|
|
2011-12-14 20:57:07 +08:00
|
|
|
ret = intel_ring_begin(ring, 4);
|
2011-01-05 01:34:02 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-02-02 20:13:49 +08:00
|
|
|
cmd = MI_FLUSH_DW;
|
2015-02-14 03:23:46 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 8)
|
2013-11-03 12:07:13 +08:00
|
|
|
cmd += 1;
|
2015-01-22 21:42:00 +08:00
|
|
|
|
|
|
|
/* We always require a command barrier so that subsequent
|
|
|
|
* commands, such as breadcrumb interrupts, are strictly ordered
|
|
|
|
* wrt the contents of the write cache being flushed to memory
|
|
|
|
* (and thus being coherent from the CPU).
|
|
|
|
*/
|
|
|
|
cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
|
|
|
|
|
2012-10-27 00:42:42 +08:00
|
|
|
/*
|
|
|
|
* Bspec vol 1c.3 - blitter engine command streamer:
|
|
|
|
* "If ENABLED, all TLBs will be invalidated once the flush
|
|
|
|
* operation is complete. This bit is only valid when the
|
|
|
|
* Post-Sync Operation field is a value of 1h or 3h."
|
|
|
|
*/
|
2011-02-02 20:13:49 +08:00
|
|
|
if (invalidate & I915_GEM_DOMAIN_RENDER)
|
2015-01-22 21:42:00 +08:00
|
|
|
cmd |= MI_INVALIDATE_TLB;
|
2011-02-02 20:13:49 +08:00
|
|
|
intel_ring_emit(ring, cmd);
|
2012-10-27 00:42:42 +08:00
|
|
|
intel_ring_emit(ring, I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
|
2015-02-14 03:23:46 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 8) {
|
2013-11-03 12:07:13 +08:00
|
|
|
intel_ring_emit(ring, 0); /* upper addr */
|
|
|
|
intel_ring_emit(ring, 0); /* value */
|
|
|
|
} else {
|
|
|
|
intel_ring_emit(ring, 0);
|
|
|
|
intel_ring_emit(ring, MI_NOOP);
|
|
|
|
}
|
2011-01-05 01:34:02 +08:00
|
|
|
intel_ring_advance(ring);
|
2013-06-07 03:58:16 +08:00
|
|
|
|
2011-01-05 01:34:02 +08:00
|
|
|
return 0;
|
2010-11-02 16:31:01 +08:00
|
|
|
}
|
|
|
|
|
2010-09-16 10:43:11 +08:00
|
|
|
int intel_init_render_ring_buffer(struct drm_device *dev)
|
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring = &dev_priv->ring[RCS];
|
2014-07-01 00:53:37 +08:00
|
|
|
struct drm_i915_gem_object *obj;
|
|
|
|
int ret;
|
2010-09-16 10:43:11 +08:00
|
|
|
|
2012-04-12 04:12:48 +08:00
|
|
|
ring->name = "render ring";
|
|
|
|
ring->id = RCS;
|
|
|
|
ring->mmio_base = RENDER_RING_BASE;
|
|
|
|
|
2014-07-01 00:53:36 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 8) {
|
2014-07-01 00:53:37 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
|
|
|
obj = i915_gem_alloc_object(dev, 4096);
|
|
|
|
if (obj == NULL) {
|
|
|
|
DRM_ERROR("Failed to allocate semaphore bo. Disabling semaphores\n");
|
|
|
|
i915.semaphores = 0;
|
|
|
|
} else {
|
|
|
|
i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
|
|
|
|
ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_NONBLOCK);
|
|
|
|
if (ret != 0) {
|
|
|
|
drm_gem_object_unreference(&obj->base);
|
|
|
|
DRM_ERROR("Failed to pin semaphore bo. Disabling semaphores\n");
|
|
|
|
i915.semaphores = 0;
|
|
|
|
} else
|
|
|
|
dev_priv->semaphore_obj = obj;
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 22:21:26 +08:00
|
|
|
|
2014-12-02 23:19:07 +08:00
|
|
|
ring->init_context = intel_rcs_ctx_init;
|
2014-07-01 00:53:36 +08:00
|
|
|
ring->add_request = gen6_add_request;
|
|
|
|
ring->flush = gen8_render_ring_flush;
|
|
|
|
ring->irq_get = gen8_ring_get_irq;
|
|
|
|
ring->irq_put = gen8_ring_put_irq;
|
|
|
|
ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
|
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
|
|
|
ring->set_seqno = ring_set_seqno;
|
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
2014-07-01 00:53:37 +08:00
|
|
|
WARN_ON(!dev_priv->semaphore_obj);
|
2014-07-01 00:53:38 +08:00
|
|
|
ring->semaphore.sync_to = gen8_ring_sync;
|
2014-07-01 00:53:37 +08:00
|
|
|
ring->semaphore.signal = gen8_rcs_signal;
|
|
|
|
GEN8_RING_SEMAPHORE_INIT;
|
2014-07-01 00:53:36 +08:00
|
|
|
}
|
|
|
|
} else if (INTEL_INFO(dev)->gen >= 6) {
|
2010-12-04 19:30:53 +08:00
|
|
|
ring->add_request = gen6_add_request;
|
2012-08-18 05:35:41 +08:00
|
|
|
ring->flush = gen7_render_ring_flush;
|
2012-07-21 01:02:28 +08:00
|
|
|
if (INTEL_INFO(dev)->gen == 6)
|
2012-08-18 05:35:42 +08:00
|
|
|
ring->flush = gen6_render_ring_flush;
|
2014-07-01 00:53:36 +08:00
|
|
|
ring->irq_get = gen6_ring_get_irq;
|
|
|
|
ring->irq_put = gen6_ring_put_irq;
|
2013-05-29 10:22:29 +08:00
|
|
|
ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
|
2012-12-14 23:01:25 +08:00
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = ring_set_seqno;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
|
|
|
ring->semaphore.sync_to = gen6_ring_sync;
|
|
|
|
ring->semaphore.signal = gen6_signal;
|
|
|
|
/*
|
|
|
|
* The current semaphore is only applied on pre-gen8
|
|
|
|
* platform. And there is no VCS2 ring on the pre-gen8
|
|
|
|
* platform. So the semaphore between RCS and VCS2 is
|
|
|
|
* initialized as INVALID. Gen8 will initialize the
|
|
|
|
* sema between VCS2 and RCS later.
|
|
|
|
*/
|
|
|
|
ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_RV;
|
|
|
|
ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_RB;
|
|
|
|
ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_RVE;
|
|
|
|
ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.signal[RCS] = GEN6_NOSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS] = GEN6_VRSYNC;
|
|
|
|
ring->semaphore.mbox.signal[BCS] = GEN6_BRSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VECS] = GEN6_VERSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
|
|
|
|
}
|
2010-12-15 17:56:50 +08:00
|
|
|
} else if (IS_GEN5(dev)) {
|
|
|
|
ring->add_request = pc_render_add_request;
|
2012-04-18 18:12:11 +08:00
|
|
|
ring->flush = gen4_render_ring_flush;
|
2010-12-15 17:56:50 +08:00
|
|
|
ring->get_seqno = pc_render_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = pc_render_set_seqno;
|
2012-04-12 04:12:54 +08:00
|
|
|
ring->irq_get = gen5_ring_get_irq;
|
|
|
|
ring->irq_put = gen5_ring_put_irq;
|
2013-05-29 10:22:29 +08:00
|
|
|
ring->irq_enable_mask = GT_RENDER_USER_INTERRUPT |
|
|
|
|
GT_RENDER_PIPECTL_NOTIFY_INTERRUPT;
|
2012-04-12 04:12:48 +08:00
|
|
|
} else {
|
2012-04-12 04:12:57 +08:00
|
|
|
ring->add_request = i9xx_add_request;
|
2012-04-18 18:12:11 +08:00
|
|
|
if (INTEL_INFO(dev)->gen < 4)
|
|
|
|
ring->flush = gen2_render_ring_flush;
|
|
|
|
else
|
|
|
|
ring->flush = gen4_render_ring_flush;
|
2012-04-12 04:12:48 +08:00
|
|
|
ring->get_seqno = ring_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = ring_set_seqno;
|
2012-04-23 04:13:57 +08:00
|
|
|
if (IS_GEN2(dev)) {
|
|
|
|
ring->irq_get = i8xx_ring_get_irq;
|
|
|
|
ring->irq_put = i8xx_ring_put_irq;
|
|
|
|
} else {
|
|
|
|
ring->irq_get = i9xx_ring_get_irq;
|
|
|
|
ring->irq_put = i9xx_ring_put_irq;
|
|
|
|
}
|
2012-04-12 04:12:53 +08:00
|
|
|
ring->irq_enable_mask = I915_USER_INTERRUPT;
|
2010-12-04 19:30:53 +08:00
|
|
|
}
|
2012-04-12 04:12:48 +08:00
|
|
|
ring->write_tail = ring_write_tail;
|
2014-07-01 00:53:36 +08:00
|
|
|
|
2012-10-17 19:09:54 +08:00
|
|
|
if (IS_HASWELL(dev))
|
|
|
|
ring->dispatch_execbuffer = hsw_ring_dispatch_execbuffer;
|
2013-11-03 12:07:12 +08:00
|
|
|
else if (IS_GEN8(dev))
|
|
|
|
ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
|
2012-10-17 19:09:54 +08:00
|
|
|
else if (INTEL_INFO(dev)->gen >= 6)
|
2012-04-12 04:12:56 +08:00
|
|
|
ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
|
|
|
|
else if (INTEL_INFO(dev)->gen >= 4)
|
|
|
|
ring->dispatch_execbuffer = i965_dispatch_execbuffer;
|
|
|
|
else if (IS_I830(dev) || IS_845G(dev))
|
|
|
|
ring->dispatch_execbuffer = i830_dispatch_execbuffer;
|
|
|
|
else
|
|
|
|
ring->dispatch_execbuffer = i915_dispatch_execbuffer;
|
2014-11-20 07:33:04 +08:00
|
|
|
ring->init_hw = init_render_ring;
|
2012-04-12 04:12:48 +08:00
|
|
|
ring->cleanup = render_ring_cleanup;
|
|
|
|
|
2012-12-17 23:21:27 +08:00
|
|
|
/* Workaround batchbuffer to combat CS tlb bug. */
|
|
|
|
if (HAS_BROKEN_CS_TLB(dev)) {
|
drm/i915: Evict CS TLBs between batches
Running igt, I was encountering the invalid TLB bug on my 845g, despite
that it was using the CS workaround. Examining the w/a buffer in the
error state, showed that the copy from the user batch into the
workaround itself was suffering from the invalid TLB bug (the first
cacheline was broken with the first two words reversed). Time to try a
fresh approach. This extends the workaround to write into each page of
our scratch buffer in order to overflow the TLB and evict the invalid
entries. This could be refined to only do so after we update the GTT,
but for simplicity, we do it before each batch.
I suspect this supersedes our current workaround, but for safety keep
doing both.
v2: The magic number shall be 2.
This doesn't conclusively prove that it is the mythical TLB bug we've
been trying to workaround for so long, that it requires touching a number
of pages to prevent the corruption indicates to me that it is TLB
related, but the corruption (the reversed cacheline) is more subtle than
a TLB bug, where we would expect it to read the wrong page entirely.
Oh well, it prevents a reliable hang for me and so probably for others
as well.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2014-09-08 21:25:41 +08:00
|
|
|
obj = i915_gem_alloc_object(dev, I830_WA_SIZE);
|
2012-12-17 23:21:27 +08:00
|
|
|
if (obj == NULL) {
|
|
|
|
DRM_ERROR("Failed to allocate batch bo\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2014-02-14 21:01:14 +08:00
|
|
|
ret = i915_gem_obj_ggtt_pin(obj, 0, 0);
|
2012-12-17 23:21:27 +08:00
|
|
|
if (ret != 0) {
|
|
|
|
drm_gem_object_unreference(&obj->base);
|
|
|
|
DRM_ERROR("Failed to ping batch bo\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-08-27 03:58:11 +08:00
|
|
|
ring->scratch.obj = obj;
|
|
|
|
ring->scratch.gtt_offset = i915_gem_obj_ggtt_offset(obj);
|
2012-12-17 23:21:27 +08:00
|
|
|
}
|
|
|
|
|
2014-11-20 07:33:06 +08:00
|
|
|
ret = intel_init_ring_buffer(dev, ring);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (INTEL_INFO(dev)->gen >= 5) {
|
|
|
|
ret = intel_init_pipe_control(ring);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2010-09-16 10:43:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int intel_init_bsd_ring_buffer(struct drm_device *dev)
|
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring = &dev_priv->ring[VCS];
|
2010-09-16 10:43:11 +08:00
|
|
|
|
2012-04-12 04:12:49 +08:00
|
|
|
ring->name = "bsd ring";
|
|
|
|
ring->id = VCS;
|
|
|
|
|
2012-04-12 04:12:55 +08:00
|
|
|
ring->write_tail = ring_write_tail;
|
2013-11-03 12:07:28 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 6) {
|
2012-04-12 04:12:49 +08:00
|
|
|
ring->mmio_base = GEN6_BSD_RING_BASE;
|
2012-04-12 04:12:55 +08:00
|
|
|
/* gen6 bsd needs a special wa for tail updates */
|
|
|
|
if (IS_GEN6(dev))
|
|
|
|
ring->write_tail = gen6_bsd_ring_write_tail;
|
2013-05-29 10:22:21 +08:00
|
|
|
ring->flush = gen6_bsd_ring_flush;
|
2012-04-12 04:12:49 +08:00
|
|
|
ring->add_request = gen6_add_request;
|
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = ring_set_seqno;
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 8) {
|
|
|
|
ring->irq_enable_mask =
|
|
|
|
GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
|
|
|
|
ring->irq_get = gen8_ring_get_irq;
|
|
|
|
ring->irq_put = gen8_ring_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer =
|
|
|
|
gen8_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
2014-07-01 00:53:38 +08:00
|
|
|
ring->semaphore.sync_to = gen8_ring_sync;
|
2014-07-01 00:53:37 +08:00
|
|
|
ring->semaphore.signal = gen8_xcs_signal;
|
|
|
|
GEN8_RING_SEMAPHORE_INIT;
|
2014-07-01 00:53:36 +08:00
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
} else {
|
|
|
|
ring->irq_enable_mask = GT_BSD_USER_INTERRUPT;
|
|
|
|
ring->irq_get = gen6_ring_get_irq;
|
|
|
|
ring->irq_put = gen6_ring_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer =
|
|
|
|
gen6_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
|
|
|
ring->semaphore.sync_to = gen6_ring_sync;
|
|
|
|
ring->semaphore.signal = gen6_signal;
|
|
|
|
ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VR;
|
|
|
|
ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VB;
|
|
|
|
ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_VVE;
|
|
|
|
ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.signal[RCS] = GEN6_RVSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS] = GEN6_NOSYNC;
|
|
|
|
ring->semaphore.mbox.signal[BCS] = GEN6_BVSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VECS] = GEN6_VEVSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
|
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
}
|
2012-04-12 04:12:49 +08:00
|
|
|
} else {
|
|
|
|
ring->mmio_base = BSD_RING_BASE;
|
|
|
|
ring->flush = bsd_ring_flush;
|
2012-04-12 04:12:57 +08:00
|
|
|
ring->add_request = i9xx_add_request;
|
2012-04-12 04:12:49 +08:00
|
|
|
ring->get_seqno = ring_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = ring_set_seqno;
|
2012-04-12 04:12:54 +08:00
|
|
|
if (IS_GEN5(dev)) {
|
2013-05-29 10:22:29 +08:00
|
|
|
ring->irq_enable_mask = ILK_BSD_USER_INTERRUPT;
|
2012-04-12 04:12:54 +08:00
|
|
|
ring->irq_get = gen5_ring_get_irq;
|
|
|
|
ring->irq_put = gen5_ring_put_irq;
|
|
|
|
} else {
|
2012-04-12 04:12:53 +08:00
|
|
|
ring->irq_enable_mask = I915_BSD_USER_INTERRUPT;
|
2012-04-12 04:12:54 +08:00
|
|
|
ring->irq_get = i9xx_ring_get_irq;
|
|
|
|
ring->irq_put = i9xx_ring_put_irq;
|
|
|
|
}
|
2012-04-12 04:12:56 +08:00
|
|
|
ring->dispatch_execbuffer = i965_dispatch_execbuffer;
|
2012-04-12 04:12:49 +08:00
|
|
|
}
|
2014-11-20 07:33:04 +08:00
|
|
|
ring->init_hw = init_ring_common;
|
2012-04-12 04:12:49 +08:00
|
|
|
|
2010-12-04 19:30:53 +08:00
|
|
|
return intel_init_ring_buffer(dev, ring);
|
2010-09-16 10:43:11 +08:00
|
|
|
}
|
2010-10-19 18:19:32 +08:00
|
|
|
|
2014-04-17 10:37:37 +08:00
|
|
|
/**
|
2015-01-29 22:13:40 +08:00
|
|
|
* Initialize the second BSD ring (eg. Broadwell GT3, Skylake GT3)
|
2014-04-17 10:37:37 +08:00
|
|
|
*/
|
|
|
|
int intel_init_bsd2_ring_buffer(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
|
2014-04-17 10:37:37 +08:00
|
|
|
|
2014-07-01 17:41:36 +08:00
|
|
|
ring->name = "bsd2 ring";
|
2014-04-17 10:37:37 +08:00
|
|
|
ring->id = VCS2;
|
|
|
|
|
|
|
|
ring->write_tail = ring_write_tail;
|
|
|
|
ring->mmio_base = GEN8_BSD2_RING_BASE;
|
|
|
|
ring->flush = gen6_bsd_ring_flush;
|
|
|
|
ring->add_request = gen6_add_request;
|
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
|
|
|
ring->set_seqno = ring_set_seqno;
|
|
|
|
ring->irq_enable_mask =
|
|
|
|
GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
|
|
|
|
ring->irq_get = gen8_ring_get_irq;
|
|
|
|
ring->irq_put = gen8_ring_put_irq;
|
|
|
|
ring->dispatch_execbuffer =
|
|
|
|
gen8_ring_dispatch_execbuffer;
|
2014-07-01 00:53:37 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
2014-07-01 00:53:38 +08:00
|
|
|
ring->semaphore.sync_to = gen8_ring_sync;
|
2014-07-01 00:53:37 +08:00
|
|
|
ring->semaphore.signal = gen8_xcs_signal;
|
|
|
|
GEN8_RING_SEMAPHORE_INIT;
|
|
|
|
}
|
2014-11-20 07:33:04 +08:00
|
|
|
ring->init_hw = init_ring_common;
|
2014-04-17 10:37:37 +08:00
|
|
|
|
|
|
|
return intel_init_ring_buffer(dev, ring);
|
|
|
|
}
|
|
|
|
|
2010-10-19 18:19:32 +08:00
|
|
|
int intel_init_blt_ring_buffer(struct drm_device *dev)
|
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring = &dev_priv->ring[BCS];
|
2010-10-19 18:19:32 +08:00
|
|
|
|
2012-04-12 04:12:50 +08:00
|
|
|
ring->name = "blitter ring";
|
|
|
|
ring->id = BCS;
|
|
|
|
|
|
|
|
ring->mmio_base = BLT_RING_BASE;
|
|
|
|
ring->write_tail = ring_write_tail;
|
2013-05-29 10:22:21 +08:00
|
|
|
ring->flush = gen6_ring_flush;
|
2012-04-12 04:12:50 +08:00
|
|
|
ring->add_request = gen6_add_request;
|
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
2012-12-19 17:13:05 +08:00
|
|
|
ring->set_seqno = ring_set_seqno;
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
if (INTEL_INFO(dev)->gen >= 8) {
|
|
|
|
ring->irq_enable_mask =
|
|
|
|
GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
|
|
|
|
ring->irq_get = gen8_ring_get_irq;
|
|
|
|
ring->irq_put = gen8_ring_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
2014-07-01 00:53:38 +08:00
|
|
|
ring->semaphore.sync_to = gen8_ring_sync;
|
2014-07-01 00:53:37 +08:00
|
|
|
ring->semaphore.signal = gen8_xcs_signal;
|
|
|
|
GEN8_RING_SEMAPHORE_INIT;
|
2014-07-01 00:53:36 +08:00
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
} else {
|
|
|
|
ring->irq_enable_mask = GT_BLT_USER_INTERRUPT;
|
|
|
|
ring->irq_get = gen6_ring_get_irq;
|
|
|
|
ring->irq_put = gen6_ring_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
|
|
|
ring->semaphore.signal = gen6_signal;
|
|
|
|
ring->semaphore.sync_to = gen6_ring_sync;
|
|
|
|
/*
|
|
|
|
* The current semaphore is only applied on pre-gen8
|
|
|
|
* platform. And there is no VCS2 ring on the pre-gen8
|
|
|
|
* platform. So the semaphore between BCS and VCS2 is
|
|
|
|
* initialized as INVALID. Gen8 will initialize the
|
|
|
|
* sema between BCS and VCS2 later.
|
|
|
|
*/
|
|
|
|
ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_BR;
|
|
|
|
ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_BV;
|
|
|
|
ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_BVE;
|
|
|
|
ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.signal[RCS] = GEN6_RBSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS] = GEN6_VBSYNC;
|
|
|
|
ring->semaphore.mbox.signal[BCS] = GEN6_NOSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VECS] = GEN6_VEBSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
|
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
}
|
2014-11-20 07:33:04 +08:00
|
|
|
ring->init_hw = init_ring_common;
|
2010-10-19 18:19:32 +08:00
|
|
|
|
2010-12-04 19:30:53 +08:00
|
|
|
return intel_init_ring_buffer(dev, ring);
|
2010-10-19 18:19:32 +08:00
|
|
|
}
|
2012-07-20 19:41:08 +08:00
|
|
|
|
2013-05-29 10:22:23 +08:00
|
|
|
int intel_init_vebox_ring_buffer(struct drm_device *dev)
|
|
|
|
{
|
2014-03-31 19:27:19 +08:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-05-22 21:13:33 +08:00
|
|
|
struct intel_engine_cs *ring = &dev_priv->ring[VECS];
|
2013-05-29 10:22:23 +08:00
|
|
|
|
|
|
|
ring->name = "video enhancement ring";
|
|
|
|
ring->id = VECS;
|
|
|
|
|
|
|
|
ring->mmio_base = VEBOX_RING_BASE;
|
|
|
|
ring->write_tail = ring_write_tail;
|
|
|
|
ring->flush = gen6_ring_flush;
|
|
|
|
ring->add_request = gen6_add_request;
|
|
|
|
ring->get_seqno = gen6_ring_get_seqno;
|
|
|
|
ring->set_seqno = ring_set_seqno;
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
|
|
|
|
if (INTEL_INFO(dev)->gen >= 8) {
|
|
|
|
ring->irq_enable_mask =
|
2013-11-08 13:40:39 +08:00
|
|
|
GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
ring->irq_get = gen8_ring_get_irq;
|
|
|
|
ring->irq_put = gen8_ring_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
2014-07-01 00:53:38 +08:00
|
|
|
ring->semaphore.sync_to = gen8_ring_sync;
|
2014-07-01 00:53:37 +08:00
|
|
|
ring->semaphore.signal = gen8_xcs_signal;
|
|
|
|
GEN8_RING_SEMAPHORE_INIT;
|
2014-07-01 00:53:36 +08:00
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
} else {
|
|
|
|
ring->irq_enable_mask = PM_VEBOX_USER_INTERRUPT;
|
|
|
|
ring->irq_get = hsw_vebox_get_irq;
|
|
|
|
ring->irq_put = hsw_vebox_put_irq;
|
2013-11-03 12:07:12 +08:00
|
|
|
ring->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
|
2014-07-01 00:53:36 +08:00
|
|
|
if (i915_semaphore_is_enabled(dev)) {
|
|
|
|
ring->semaphore.sync_to = gen6_ring_sync;
|
|
|
|
ring->semaphore.signal = gen6_signal;
|
|
|
|
ring->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VER;
|
|
|
|
ring->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_VEV;
|
|
|
|
ring->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VEB;
|
|
|
|
ring->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
|
|
|
|
ring->semaphore.mbox.signal[RCS] = GEN6_RVESYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS] = GEN6_VVESYNC;
|
|
|
|
ring->semaphore.mbox.signal[BCS] = GEN6_BVESYNC;
|
|
|
|
ring->semaphore.mbox.signal[VECS] = GEN6_NOSYNC;
|
|
|
|
ring->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
|
|
|
|
}
|
drm/i915/bdw: Implement interrupt changes
The interrupt handling implementation remains the same as previous
generations with the 4 types of registers, status, identity, mask, and
enable. However the layout of where the bits go have changed entirely.
To address these changes, all of the interrupt vfuncs needed special
gen8 code.
The way it works is there is a top level status register now which
informs the interrupt service routine which unit caused the interrupt,
and therefore which interrupt registers to read to process the
interrupt. For display the division is quite logical, a set of interrupt
registers for each pipe, and in addition to those, a set each for "misc"
and port.
For GT the things get a bit hairy, as seen by the code. Each of the GT
units has it's own bits defined. They all look *very similar* and
resides in 16 bits of a GT register. As an example, RCS and BCS share
register 0. To compact the code a bit, at a slight expense to
complexity, this is exactly how the code works as well. 2 structures are
added to the ring buffer so that our ring buffer interrupt handling code
knows which ring shares the interrupt registers, and a shift value (ie.
the top or bottom 16 bits of the register).
The above allows us to kept the interrupt register caching scheme, the
per interrupt enables, and the code to mask and unmask interrupts
relatively clean (again at the cost of some more complexity).
Most of the GT units mentioned above are command streamers, and so the
symmetry should work quite well for even the yet to be implemented rings
which Broadwell adds.
v2: Fixes up a couple of bugs, and is more verbose about errors in the
Broadwell interrupt handler.
v3: fix DE_MISC IER offset
v4: Simplify interrupts:
I totally misread the docs the first time I implemented interrupts, and
so this should greatly simplify the mess. Unlike GEN6, we never touch
the regular mask registers in irq_get/put.
v5: Rebased on to of recent pch hotplug setup changes.
v6: Fixup on top of moving num_pipes to intel_info.
v7: Rebased on top of Egbert Eich's hpd irq handling rework. Also
wired up ibx_hpd_irq_setup for gen8.
v8: Rebase on top of Jani's asle handling rework.
v9: Rebase on top of Ben's VECS enabling for Haswell, where he
unfortunately went OCD on the gt irq #defines. Not that they're still
not yet fully consistent:
- Used the GT_RENDER_ #defines + bdw shifts.
- Dropped the shift from the L3_PARITY stuff, seemed clearer.
- s/irq_refcount/irq_refcount.gt/
v10: Squash in VECS enabling patches and the gen8_gt_irq_handler
refactoring from Zhao Yakui <yakui.zhao@intel.com>
v11: Rebase on top of the interrupt cleanups in upstream.
v12: Rebase on top of Ben's DPF changes in upstream.
v13: Drop bdw from the HAS_L3_DPF feature flag for now, it's unclear what
exactly needs to be done. Requested by Ben.
v14: Fix the patch.
- Drop the mask of reserved bits and assorted logic, it doesn't match
the spec.
- Do the posting read inconditionally instead of commenting it out.
- Add a GEN8_MASTER_IRQ_CONTROL definition and use it.
- Fix up the GEN8_PIPE interrupt defines and give the GEN8_ prefixes -
we actually will need to use them.
- Enclose macros in do {} while (0) (checkpatch).
- Clear DE_MISC interrupt bits only after having processed them.
- Fix whitespace fail (checkpatch).
- Fix overtly long lines where appropriate (checkpatch).
- Don't use typedef'ed private_t (maintainer-scripts).
- Align the function parameter list correctly.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v4)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
bikeshed
2013-11-03 12:07:09 +08:00
|
|
|
}
|
2014-11-20 07:33:04 +08:00
|
|
|
ring->init_hw = init_ring_common;
|
2013-05-29 10:22:23 +08:00
|
|
|
|
|
|
|
return intel_init_ring_buffer(dev, ring);
|
|
|
|
}
|
|
|
|
|
2012-07-20 19:41:08 +08:00
|
|
|
int
|
2014-05-22 21:13:33 +08:00
|
|
|
intel_ring_flush_all_caches(struct intel_engine_cs *ring)
|
2012-07-20 19:41:08 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!ring->gpu_caches_dirty)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = ring->flush(ring, 0, I915_GEM_GPU_DOMAINS);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
trace_i915_gem_ring_flush(ring, 0, I915_GEM_GPU_DOMAINS);
|
|
|
|
|
|
|
|
ring->gpu_caches_dirty = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-05-22 21:13:33 +08:00
|
|
|
intel_ring_invalidate_all_caches(struct intel_engine_cs *ring)
|
2012-07-20 19:41:08 +08:00
|
|
|
{
|
|
|
|
uint32_t flush_domains;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
flush_domains = 0;
|
|
|
|
if (ring->gpu_caches_dirty)
|
|
|
|
flush_domains = I915_GEM_GPU_DOMAINS;
|
|
|
|
|
|
|
|
ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
trace_i915_gem_ring_flush(ring, I915_GEM_GPU_DOMAINS, flush_domains);
|
|
|
|
|
|
|
|
ring->gpu_caches_dirty = false;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-04-09 16:19:41 +08:00
|
|
|
|
|
|
|
void
|
2014-05-22 21:13:33 +08:00
|
|
|
intel_stop_ring_buffer(struct intel_engine_cs *ring)
|
2014-04-09 16:19:41 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!intel_ring_initialized(ring))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ret = intel_ring_idle(ring);
|
|
|
|
if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
|
|
|
|
DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
|
|
|
|
ring->name, ret);
|
|
|
|
|
|
|
|
stop_ring(ring);
|
|
|
|
}
|