summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-11-18 11:39:54 -0800
committerJason Ekstrand <jason.ekstrand@intel.com>2016-11-22 08:33:25 -0800
commit9a58bd953a3f91c91a3fd3ec223cb57d45e9afbe (patch)
tree9a6ebe61ef5fce5b60f4b30ae4627a819863d156
parent09f2fe49b1425762e60bdccf90e631f6b8c95338 (diff)
aubdump: Handle 48-bit relocations properly
aubdump was only writing 32-bits regardless of platform. This is fine if the client being dumped leaves the top 32 bits zero since the aubdump GTT is fairly small. However, if the client does store something in the upper 32 bits, this results in an invalid relocation.
-rw-r--r--tools/aubdump.c31
1 files changed, 28 insertions, 3 deletions
diff --git a/tools/aubdump.c b/tools/aubdump.c
index 1aa9c3b6..04deacd5 100644
--- a/tools/aubdump.c
+++ b/tools/aubdump.c
@@ -289,6 +289,32 @@ aub_dump_ringbuffer(uint64_t batch_offset, uint64_t offset, int ring_flag)
data_out(ringbuffer, ring_count * 4);
}
+static void
+write_reloc(void *p, uint64_t v)
+{
+ if (gen >= 8) {
+ /* From the Broadwell PRM Vol. 2a,
+ * MI_LOAD_REGISTER_MEM::MemoryAddress:
+ *
+ * "This field specifies the address of the memory
+ * location where the register value specified in the
+ * DWord above will read from. The address specifies
+ * the DWord location of the data. Range =
+ * GraphicsVirtualAddress[63:2] for a DWord register
+ * GraphicsAddress [63:48] are ignored by the HW and
+ * assumed to be in correct canonical form [63:48] ==
+ * [47]."
+ *
+ * In practice, this will always mean the top bits are zero
+ * because of the GTT size limitation of the aubdump tool.
+ */
+ const int shift = 63 - 47;
+ *(uint64_t *)p = (((int64_t)v) << shift) >> shift;
+ } else {
+ *(uint32_t *)p = v;
+ }
+}
+
static void *
relocate_bo(struct bo *bo, const struct drm_i915_gem_execbuffer2 *execbuffer2,
const struct drm_i915_gem_exec_object2 *obj)
@@ -298,7 +324,6 @@ relocate_bo(struct bo *bo, const struct drm_i915_gem_execbuffer2 *execbuffer2,
const struct drm_i915_gem_relocation_entry *relocs =
(const struct drm_i915_gem_relocation_entry *) (uintptr_t) obj->relocs_ptr;
void *relocated;
- uint32_t *dw;
int handle;
relocated = malloc(bo->size);
@@ -312,8 +337,8 @@ relocate_bo(struct bo *bo, const struct drm_i915_gem_execbuffer2 *execbuffer2,
else
handle = relocs[i].target_handle;
- dw = (uint32_t*)(((char *) relocated) + relocs[i].offset);
- *dw = get_bo(handle)->offset + relocs[i].delta;
+ write_reloc(((char *)relocated) + relocs[i].offset,
+ get_bo(handle)->offset + relocs[i].delta);
}
return relocated;