summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-07-20 09:14:43 -0700
committerEric Anholt <eric@anholt.net>2009-09-04 12:19:25 -0700
commit7bc13bc00c028162dbf402a8ebda6203c50c3179 (patch)
tree06e200cd23a2584296861ae81485d6badec862df /tools
parent56bdcd1d6b434cd37bfc47d295abaf37f0093c84 (diff)
intel_gpu_dump: Add IPEIR and PGTBL_ER to output.
Diffstat (limited to 'tools')
-rw-r--r--tools/intel_gpu_dump.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/intel_gpu_dump.c b/tools/intel_gpu_dump.c
index 090c65f5..41921150 100644
--- a/tools/intel_gpu_dump.c
+++ b/tools/intel_gpu_dump.c
@@ -2130,17 +2130,21 @@ main (int argc, char *argv[])
printf("EIR: 0x%08x\n", INREG(EIR));
printf("EMR: 0x%08x\n", INREG(EMR));
printf("ESR: 0x%08x\n", INREG(ESR));
+ printf("PGTBL_ER: 0x%08x\n", INREG(PGTBL_ER));
+
if (IS_965(devid)) {
instdone = INREG(INST_DONE_I965);
instdone1 = INREG(INST_DONE_1);
printf("IPEHR: 0x%08x\n", INREG(IPEHR_I965));
+ printf("IPEIR: 0x%08x\n", INREG(IPEIR_I965));
printf("INSTDONE: 0x%08x\n", instdone);
printf("INSTDONE1: 0x%08x\n", instdone1);
} else {
instdone = INREG(INST_DONE);
printf("IPEHR: 0x%08x\n", INREG(IPEHR));
+ printf("IPEIR: 0x%08x\n", INREG(IPEIR));
printf("INSTDONE: 0x%08x\n", instdone);
}