Skip to content

Commit

Permalink
drm/i915: Mark the end of intel_ring_begin() and check in intel_ring_…
Browse files Browse the repository at this point in the history
…advance()

It is required that the caller declare the exact number of dwords they
wish to write into the ring. This is required for two reasons, we need
to allocate sufficient space for the entire command packet and we need
to be sure that the contents are completely written to avoid executing
stale data. The current interface requires for any bug to be caught in
review, the reader has to carefully count the number of
intel_ring_emit() between intel_ring_begin() and intel_ring_advance().
If we record the end of the packet of each intel_ring_begin() we can
also have CI check for us.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170206170502.30944-1-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson committed Feb 6, 2017
1 parent 04da811 commit eca56a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/gpu/drm/i915/i915_gem.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@
#ifdef CONFIG_DRM_I915_DEBUG_GEM
#define GEM_BUG_ON(expr) BUG_ON(expr)
#define GEM_WARN_ON(expr) WARN_ON(expr)

#define GEM_BUG_ONLY(expr) expr
#define GEM_BUG_ONLY_DECLARE(var) var
#define GEM_BUG_ONLY_ON(expr) GEM_BUG_ON(expr)

#else
#define GEM_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr)
#define GEM_WARN_ON(expr) (BUILD_BUG_ON_INVALID(expr), 0)

#define GEM_BUG_ONLY(expr) do { } while (0)
#define GEM_BUG_ONLY_DECLARE(var)
#define GEM_BUG_ONLY_ON(expr)
#endif

#define I915_NUM_ENGINES 5
Expand Down
1 change: 1 addition & 0 deletions drivers/gpu/drm/i915/intel_ringbuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -2238,6 +2238,7 @@ int intel_ring_begin(struct drm_i915_gem_request *req, int num_dwords)

ring->space -= bytes;
GEM_BUG_ON(ring->space < 0);
GEM_BUG_ONLY(ring->advance = ring->tail + bytes);
return 0;
}

Expand Down
3 changes: 3 additions & 0 deletions drivers/gpu/drm/i915/intel_ringbuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ struct intel_ring {

u32 head;
u32 tail;
GEM_BUG_ONLY_DECLARE(u32 advance);

int space;
int size;
int effective_size;
Expand Down Expand Up @@ -516,6 +518,7 @@ static inline void intel_ring_advance(struct intel_ring *ring)
* reserved for the command packet (i.e. the value passed to
* intel_ring_begin()).
*/
GEM_BUG_ONLY_ON(ring->tail != ring->advance);
}

static inline u32 intel_ring_offset(struct intel_ring *ring, void *addr)
Expand Down

0 comments on commit eca56a3

Please sign in to comment.