Skip to content

Commit

Permalink
drm/i915: Don't hardcode the number of pipes in the error state dump
Browse files Browse the repository at this point in the history
New-ish devices have 3 pipes, so let's not just hardcode 2 but use the
for_each_pipe() macro and make struct intel_display_error_state is big
enough.

V2: Also add the number of pipes emitted (Chris Wilson)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Damien Lespiau authored and Daniel Vetter committed Aug 17, 2012
1 parent 33faad1 commit 5233130
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -7234,7 +7234,7 @@ struct intel_display_error_state {
u32 position;
u32 base;
u32 size;
} cursor[2];
} cursor[I915_MAX_PIPES];

struct intel_pipe_error_state {
u32 conf;
Expand All @@ -7246,7 +7246,7 @@ struct intel_display_error_state {
u32 vtotal;
u32 vblank;
u32 vsync;
} pipe[2];
} pipe[I915_MAX_PIPES];

struct intel_plane_error_state {
u32 control;
Expand All @@ -7256,7 +7256,7 @@ struct intel_display_error_state {
u32 addr;
u32 surface;
u32 tile_offset;
} plane[2];
} plane[I915_MAX_PIPES];
};

struct intel_display_error_state *
Expand All @@ -7270,7 +7270,7 @@ intel_display_capture_error_state(struct drm_device *dev)
if (error == NULL)
return NULL;

for (i = 0; i < 2; i++) {
for_each_pipe(i) {
error->cursor[i].control = I915_READ(CURCNTR(i));
error->cursor[i].position = I915_READ(CURPOS(i));
error->cursor[i].base = I915_READ(CURBASE(i));
Expand Down Expand Up @@ -7303,9 +7303,11 @@ intel_display_print_error_state(struct seq_file *m,
struct drm_device *dev,
struct intel_display_error_state *error)
{
drm_i915_private_t *dev_priv = dev->dev_private;
int i;

for (i = 0; i < 2; i++) {
seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe);
for_each_pipe(i) {
seq_printf(m, "Pipe [%d]:\n", i);
seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
Expand Down

0 comments on commit 5233130

Please sign in to comment.