summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2010-03-31 17:25:23 -0400
committerAdam Jackson <ajax@redhat.com>2010-04-05 11:41:24 -0400
commitcd64e193299be4b9733a5e804cedd99e2072830f (patch)
tree9dcf27ccfdfc5805c94f016d696a85ab44512654
parent2187ec2112750bb898416358ac5463eebbf30049 (diff)
intel_reg_dumper: Add support for reading register dumps from files
Also add intel_reg_snapshot for creating such snapshots, and relevant documentation. Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--lib/intel_gpu_tools.c27
-rw-r--r--lib/intel_gpu_tools.h1
-rw-r--r--man/intel_reg_dumper.119
-rw-r--r--man/intel_reg_snapshot.115
-rw-r--r--tools/Makefile.am1
-rw-r--r--tools/intel_reg_dumper.c7
-rw-r--r--tools/intel_reg_snapshot.c44
7 files changed, 109 insertions, 5 deletions
diff --git a/lib/intel_gpu_tools.c b/lib/intel_gpu_tools.c
index 6c85d2a1..a699ae82 100644
--- a/lib/intel_gpu_tools.c
+++ b/lib/intel_gpu_tools.c
@@ -25,12 +25,17 @@
*
*/
+#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <errno.h>
#include <err.h>
#include <assert.h>
#include <sys/ioctl.h>
+#include <sys/fcntl.h>
+#include <sys/stat.h>
+#include <sys/mman.h>
#include "intel_gpu_tools.h"
#include "i915_drm.h"
#include "intel_batchbuffer.h"
@@ -83,6 +88,28 @@ intel_get_pci_device(void)
}
void
+intel_map_file(char *file)
+{
+ int fd;
+ struct stat st;
+
+ fd = open(file, O_RDWR);
+ if (fd == -1) {
+ fprintf(stderr, "Couldn't open %s: %s\n", file,
+ strerror(errno));
+ exit(1);
+ }
+ fstat(fd, &st);
+ mmio = mmap(NULL, st.st_size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
+ if (mmio == MAP_FAILED) {
+ fprintf(stderr, "Couldn't mmap %s: %s\n", file,
+ strerror(errno));
+ exit(1);
+ }
+ close(fd);
+}
+
+void
intel_get_mmio(void)
{
int mmio_bar;
diff --git a/lib/intel_gpu_tools.h b/lib/intel_gpu_tools.h
index 07340cc9..259fd9a9 100644
--- a/lib/intel_gpu_tools.h
+++ b/lib/intel_gpu_tools.h
@@ -56,3 +56,4 @@ void intel_get_drm_devid(int fd);
void intel_copy_bo(struct intel_batchbuffer *batch,
drm_intel_bo *dst_bo, drm_intel_bo *src_bo,
int width, int height);
+void intel_map_file(char *);
diff --git a/man/intel_reg_dumper.1 b/man/intel_reg_dumper.1
index 9fbe300c..a92b054c 100644
--- a/man/intel_reg_dumper.1
+++ b/man/intel_reg_dumper.1
@@ -4,8 +4,21 @@
.SH NAME
intel_reg_dumper \- Decode a bunch of Intel GPU registers for debugging
.SH SYNOPSIS
-.B intel_reg_dumper
+.B intel_reg_dumper [ file ]
.SH DESCRIPTION
-.B intel_reg_write
+.B intel_reg_dumper
is a tool to read and decode the values of many Intel GPU registers. It is
-commonly used in debugging video mode setting issues.
+commonly used in debugging video mode setting issues. If the
+.B file
+argument is present, the registers will be decoded from the given file
+instead of the current registers. Use the
+.B intel_reg_snapshot
+tool to generate such files.
+.SH ENVIRONMENT
+.BR HAS_PCH_SPLIT
+.PP
+If set, decode as though the GPU has a PCH split. This is only necessary for
+Intel HD (Ironlake) and later register dumps in files; live decodes get this
+correct automatically.
+.SH SEE ALSO
+.BR intel_reg_snapshot(1)
diff --git a/man/intel_reg_snapshot.1 b/man/intel_reg_snapshot.1
new file mode 100644
index 00000000..07cfb6e3
--- /dev/null
+++ b/man/intel_reg_snapshot.1
@@ -0,0 +1,15 @@
+.\" shorthand for double quote that works everywhere.
+.ds q \N'34'
+.TH intel_reg_snapshot 1 "intel_reg_snapshot 1.0"
+.SH NAME
+intel_reg_snapshot \- Take a GPU register snapshot
+.SH SYNOPSIS
+.B intel_reg_snapshot
+.SH DESCRIPTION
+.B intel_reg_snapshot
+takes a snapshot of the registers of an Intel GPU, and writes it to standard
+output. These files can be inspected later with the
+.B intel_reg_dumper
+tool.
+.SH SEE ALSO
+.BR intel_reg_dumper(1)
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 659f0161..bf201aca 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -10,6 +10,7 @@ bin_PROGRAMS = \
intel_lid \
intel_stepping \
intel_reg_dumper \
+ intel_reg_snapshot \
intel_reg_write \
intel_reg_read
diff --git a/tools/intel_reg_dumper.c b/tools/intel_reg_dumper.c
index d3eec1de..8a9cf7a0 100644
--- a/tools/intel_reg_dumper.c
+++ b/tools/intel_reg_dumper.c
@@ -1658,9 +1658,12 @@ intel_dump_regs(void)
int main(int argc, char** argv)
{
- intel_get_mmio();
+ if (argc == 2)
+ intel_map_file(argv[1]);
+ else
+ intel_get_mmio();
- if (HAS_PCH_SPLIT(devid))
+ if (HAS_PCH_SPLIT(devid) || getenv("HAS_PCH_SPLIT"))
ironlake_dump_regs();
else
intel_dump_regs();
diff --git a/tools/intel_reg_snapshot.c b/tools/intel_reg_snapshot.c
new file mode 100644
index 00000000..f8219280
--- /dev/null
+++ b/tools/intel_reg_snapshot.c
@@ -0,0 +1,44 @@
+/*
+ * Copyright © 2010 Red Hat, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Authors:
+ * Adam Jackson <ajax@redhat.com>
+ */
+
+#include <unistd.h>
+#include "intel_gpu_tools.h"
+
+int main(int argc, char** argv)
+{
+ int mmio_bar;
+
+ intel_get_mmio();
+
+ if (IS_9XX(devid))
+ mmio_bar = 0;
+ else
+ mmio_bar = 1;
+
+ write(1, mmio, pci_dev->regions[mmio_bar].size);
+
+ return 0;
+}