asahi/decode: Handle VDM barriers

We emit these now (for transform feedback).

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21675>
This commit is contained in:
Alyssa Rosenzweig 2023-02-25 11:21:37 -05:00 committed by Marge Bot
parent 2eb1efd181
commit f083e1807d

View file

@ -578,6 +578,11 @@ agxdecode_vdm(const uint8_t *map, uint64_t *link, bool verbose,
enum agx_vdm_block_type block_type = (map[3] >> 5);
switch (block_type) {
case AGX_VDM_BLOCK_TYPE_BARRIER: {
agx_unpack(agxdecode_dump_stream, map, VDM_BARRIER, cmd);
return AGX_VDM_BARRIER_LENGTH;
}
case AGX_VDM_BLOCK_TYPE_PPP_STATE_UPDATE: {
agx_unpack(agxdecode_dump_stream, map, PPP_STATE, cmd);