Skip to content

Commit

Permalink
drm/i915: Remove duplicate intel_logical_ring_workarounds_emit
Browse files Browse the repository at this point in the history
intel_ring_workarounds_emit is exactly the same code.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/20170214150017.16058-1-tvrtko.ursulin@linux.intel.com
  • Loading branch information
tursulin committed Feb 15, 2017
1 parent bd64818 commit 4ac9659
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 35 deletions.
35 changes: 1 addition & 34 deletions drivers/gpu/drm/i915/intel_lrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -890,39 +890,6 @@ static int execlists_request_alloc(struct drm_i915_gem_request *request)
return ret;
}

static int intel_logical_ring_workarounds_emit(struct drm_i915_gem_request *req)
{
struct i915_workarounds *w = &req->i915->workarounds;
u32 *cs;
int ret, i;

if (w->count == 0)
return 0;

ret = req->engine->emit_flush(req, EMIT_BARRIER);
if (ret)
return ret;

cs = intel_ring_begin(req, w->count * 2 + 2);
if (IS_ERR(cs))
return PTR_ERR(cs);

*cs++ = MI_LOAD_REGISTER_IMM(w->count);
for (i = 0; i < w->count; i++) {
*cs++ = i915_mmio_reg_offset(w->reg[i].addr);
*cs++ = w->reg[i].value;
}
*cs++ = MI_NOOP;

intel_ring_advance(req, cs);

ret = req->engine->emit_flush(req, EMIT_BARRIER);
if (ret)
return ret;

return 0;
}

#define wa_ctx_emit(batch, index, cmd) \
do { \
int __index = (index)++; \
Expand Down Expand Up @@ -1672,7 +1639,7 @@ static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
{
int ret;

ret = intel_logical_ring_workarounds_emit(req);
ret = intel_ring_workarounds_emit(req);
if (ret)
return ret;

Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_ringbuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ static void reset_ring_common(struct intel_engine_cs *engine,
}
}

static int intel_ring_workarounds_emit(struct drm_i915_gem_request *req)
int intel_ring_workarounds_emit(struct drm_i915_gem_request *req)
{
struct i915_workarounds *w = &req->i915->workarounds;
u32 *cs;
Expand Down
1 change: 1 addition & 0 deletions drivers/gpu/drm/i915/intel_ringbuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ static inline u32 intel_engine_last_submit(struct intel_engine_cs *engine)
}

int init_workarounds_ring(struct intel_engine_cs *engine);
int intel_ring_workarounds_emit(struct drm_i915_gem_request *req);

void intel_engine_get_instdone(struct intel_engine_cs *engine,
struct intel_instdone *instdone);
Expand Down

0 comments on commit 4ac9659

Please sign in to comment.