Commit 2262acad authored by Sunil Khatri's avatar Sunil Khatri Committed by Alex Deucher

drm/amdgpu: add print support for gfx12 ipdump

Add support of gfx12 ipdump print so devcoredump
could trigger it to dump the captured registers
in devcoredump.
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarSunil Khatri <sunil.khatri@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent fbbbb621
...@@ -4756,6 +4756,21 @@ static void gfx_v12_0_emit_mem_sync(struct amdgpu_ring *ring) ...@@ -4756,6 +4756,21 @@ static void gfx_v12_0_emit_mem_sync(struct amdgpu_ring *ring)
amdgpu_ring_write(ring, gcr_cntl); /* GCR_CNTL */ amdgpu_ring_write(ring, gcr_cntl); /* GCR_CNTL */
} }
static void gfx_v12_ip_print(void *handle, struct drm_printer *p)
{
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
uint32_t i;
uint32_t reg_count = ARRAY_SIZE(gc_reg_list_12_0);
if (!adev->gfx.ip_dump_core)
return;
for (i = 0; i < reg_count; i++)
drm_printf(p, "%-50s \t 0x%08x\n",
gc_reg_list_12_0[i].reg_name,
adev->gfx.ip_dump_core[i]);
}
static void gfx_v12_ip_dump(void *handle) static void gfx_v12_ip_dump(void *handle)
{ {
struct amdgpu_device *adev = (struct amdgpu_device *)handle; struct amdgpu_device *adev = (struct amdgpu_device *)handle;
...@@ -4787,6 +4802,7 @@ static const struct amd_ip_funcs gfx_v12_0_ip_funcs = { ...@@ -4787,6 +4802,7 @@ static const struct amd_ip_funcs gfx_v12_0_ip_funcs = {
.set_powergating_state = gfx_v12_0_set_powergating_state, .set_powergating_state = gfx_v12_0_set_powergating_state,
.get_clockgating_state = gfx_v12_0_get_clockgating_state, .get_clockgating_state = gfx_v12_0_get_clockgating_state,
.dump_ip_state = gfx_v12_ip_dump, .dump_ip_state = gfx_v12_ip_dump,
.print_ip_state = gfx_v12_ip_print,
}; };
static const struct amdgpu_ring_funcs gfx_v12_0_ring_funcs_gfx = { static const struct amdgpu_ring_funcs gfx_v12_0_ring_funcs_gfx = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment