diff options
author | Christian König <christian.koenig@amd.com> | 2016-09-25 10:11:52 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-09-28 16:16:26 -0400 |
commit | ec2f05f034688468ddf42e79755b66bd6dd8281e (patch) | |
tree | d91491fca6fb7977a3f96120852de05e569ca4c4 /drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h | |
parent | 186294f9c57856887b0efe3ce0dd8ca66605caef (diff) |
drm/amdgpu: improve VM PTE trace points
Use a separate one for the copy operation and
log all the interesting parameters.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h index 0d8d65eb46cd..067e5e683bb3 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h | |||
@@ -247,7 +247,7 @@ DEFINE_EVENT(amdgpu_vm_mapping, amdgpu_vm_bo_mapping, | |||
247 | TP_ARGS(mapping) | 247 | TP_ARGS(mapping) |
248 | ); | 248 | ); |
249 | 249 | ||
250 | TRACE_EVENT(amdgpu_vm_set_page, | 250 | TRACE_EVENT(amdgpu_vm_set_ptes, |
251 | TP_PROTO(uint64_t pe, uint64_t addr, unsigned count, | 251 | TP_PROTO(uint64_t pe, uint64_t addr, unsigned count, |
252 | uint32_t incr, uint32_t flags), | 252 | uint32_t incr, uint32_t flags), |
253 | TP_ARGS(pe, addr, count, incr, flags), | 253 | TP_ARGS(pe, addr, count, incr, flags), |
@@ -271,6 +271,24 @@ TRACE_EVENT(amdgpu_vm_set_page, | |||
271 | __entry->flags, __entry->count) | 271 | __entry->flags, __entry->count) |
272 | ); | 272 | ); |
273 | 273 | ||
274 | TRACE_EVENT(amdgpu_vm_copy_ptes, | ||
275 | TP_PROTO(uint64_t pe, uint64_t src, unsigned count), | ||
276 | TP_ARGS(pe, src, count), | ||
277 | TP_STRUCT__entry( | ||
278 | __field(u64, pe) | ||
279 | __field(u64, src) | ||
280 | __field(u32, count) | ||
281 | ), | ||
282 | |||
283 | TP_fast_assign( | ||
284 | __entry->pe = pe; | ||
285 | __entry->src = src; | ||
286 | __entry->count = count; | ||
287 | ), | ||
288 | TP_printk("pe=%010Lx, src=%010Lx, count=%u", | ||
289 | __entry->pe, __entry->src, __entry->count) | ||
290 | ); | ||
291 | |||
274 | TRACE_EVENT(amdgpu_vm_flush, | 292 | TRACE_EVENT(amdgpu_vm_flush, |
275 | TP_PROTO(uint64_t pd_addr, unsigned ring, unsigned id), | 293 | TP_PROTO(uint64_t pd_addr, unsigned ring, unsigned id), |
276 | TP_ARGS(pd_addr, ring, id), | 294 | TP_ARGS(pd_addr, ring, id), |