mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
tools/decode: add missing shift to MI_SEM_MBOX decoder
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
17ceccedbf
commit
a2dfbbf3e7
@ -148,7 +148,7 @@ decode_mi(uint32_t *data, int count, uint32_t hw_offset, int *failures)
|
||||
data[0] & (1<<21) ? " update semaphore," : "",
|
||||
data[0] & (1<<20) ? " compare semaphore," : "",
|
||||
data[0] & (1<<18) ? " use compare reg" : "",
|
||||
data[0] & (0x3<<16));
|
||||
(data[0] & (0x3<<16)) >> 16);
|
||||
instr_out(data, hw_offset, 1, "value\n");
|
||||
instr_out(data, hw_offset, 2, "address\n");
|
||||
return len;
|
||||
|
Loading…
x
Reference in New Issue
Block a user