drm/i915: Print the pipe control page GTT address
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 12 Feb 2013 20:01:38 +0000 (22:01 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 19 Feb 2013 23:21:40 +0000 (00:21 +0100)
We already print the HWS addresses during init, so do the same for the
pipe control page. Reduces guesswork when looking at hex addresses
later.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_ringbuffer.c

index 00525ff..9b8b058 100644 (file)
@@ -467,6 +467,9 @@ init_pipe_control(struct intel_ring_buffer *ring)
        if (pc->cpu_page == NULL)
                goto err_unpin;
 
+       DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
+                        ring->name, pc->gtt_offset);
+
        pc->obj = obj;
        ring->private = pc;
        return 0;