diff options
author | Samuel Pitoiset <[email protected]> | 2019-07-07 19:32:29 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-07-08 09:10:57 +0200 |
commit | 49e5136887a063e5450f1fe9af2f9ea1a6ea1ea4 (patch) | |
tree | 12f40d60b2e8079c6fad136e8be7c32837ef1eaf /src/amd/common/ac_debug.h | |
parent | 4d118ad44a46cf3f9c2acee20849951692bb562d (diff) |
ac: select the GFX ring when halting waves with UMR on GFX10
GFX10 has two rings, so UMR want to know which one to halt.
Select the first one by default.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/common/ac_debug.h')
-rw-r--r-- | src/amd/common/ac_debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/common/ac_debug.h b/src/amd/common/ac_debug.h index 23343fe1304..0d5c1dd9eac 100644 --- a/src/amd/common/ac_debug.h +++ b/src/amd/common/ac_debug.h @@ -64,6 +64,7 @@ void ac_parse_ib(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids, bool ac_vm_fault_occured(enum chip_class chip_class, uint64_t *old_dmesg_timestamp, uint64_t *out_addr); -unsigned ac_get_wave_info(struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]); +unsigned ac_get_wave_info(enum chip_class chip_class, + struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]); #endif |