drm/i915: Workaround erratum on i830 for TAIL pointer within last 2 cachelines

On i830 if the tail pointer is set to within 2 cachelines of the end of
the buffer, the chip may hang. So instead if the tail were to land in
that location, we pad the end of the buffer with NOPs, and start again
at the beginning.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson
2010-12-22 14:04:47 +00:00
parent 35c3047ad1
commit 55249baaa5
2 changed files with 11 additions and 3 deletions

View File

@@ -49,6 +49,7 @@ struct intel_ring_buffer {
u32 tail;
int space;
int size;
int effective_size;
struct intel_hw_status_page status_page;
u32 irq_seqno; /* last seq seem at irq time */