diff options
| author | Olof Johansson <olof@lixom.net> | 2013-02-04 22:56:41 -0800 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-02-04 22:56:41 -0800 | 
| commit | 469da62096e23adc755c1268b00b5fc7a214151b (patch) | |
| tree | fefd055fdae584e38d551f44d1339eb22cee4ed9 /drivers/gpu/drm/i915/i915_debugfs.c | |
| parent | 4227961650884a06757f80877d5dce0bddc723d4 (diff) | |
| parent | 88b62b915b0b7e25870eb0604ed9a92ba4bfc9f7 (diff) | |
| download | olio-linux-3.10-469da62096e23adc755c1268b00b5fc7a214151b.tar.xz olio-linux-3.10-469da62096e23adc755c1268b00b5fc7a214151b.zip  | |
Merge tag 'v3.8-rc6' into next/soc
Linux 3.8-rc6
Diffstat (limited to 'drivers/gpu/drm/i915/i915_debugfs.c')
| -rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index e6a11ca85ea..9d4a2c2adf0 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -30,6 +30,7 @@  #include <linux/debugfs.h>  #include <linux/slab.h>  #include <linux/export.h> +#include <generated/utsrelease.h>  #include <drm/drmP.h>  #include "intel_drv.h"  #include "intel_ringbuffer.h" @@ -641,6 +642,7 @@ static void i915_ring_error_state(struct seq_file *m,  	seq_printf(m, "%s command stream:\n", ring_str(ring));  	seq_printf(m, "  HEAD: 0x%08x\n", error->head[ring]);  	seq_printf(m, "  TAIL: 0x%08x\n", error->tail[ring]); +	seq_printf(m, "  CTL: 0x%08x\n", error->ctl[ring]);  	seq_printf(m, "  ACTHD: 0x%08x\n", error->acthd[ring]);  	seq_printf(m, "  IPEIR: 0x%08x\n", error->ipeir[ring]);  	seq_printf(m, "  IPEHR: 0x%08x\n", error->ipehr[ring]); @@ -689,10 +691,13 @@ static int i915_error_state(struct seq_file *m, void *unused)  	seq_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,  		   error->time.tv_usec); +	seq_printf(m, "Kernel: " UTS_RELEASE);  	seq_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);  	seq_printf(m, "EIR: 0x%08x\n", error->eir);  	seq_printf(m, "IER: 0x%08x\n", error->ier);  	seq_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er); +	seq_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake); +	seq_printf(m, "DERRMR: 0x%08x\n", error->derrmr);  	seq_printf(m, "CCID: 0x%08x\n", error->ccid);  	for (i = 0; i < dev_priv->num_fence_regs; i++)  |