/* * Copyright © 2021 Google, Inc. * SPDX-License-Identifier: MIT */ #ifndef __CRASHDEC_H__ #define __CRASHDEC_H__ #include #include #include #include #include #include #include #include #include #include #include "freedreno_pm4.h" #include "ir3/instr-a3xx.h" #include "buffers.h" #include "cffdec.h" #include "disasm.h" #include "pager.h" #include "rnnutil.h" #include "util.h" extern struct rnn *rnn_gmu; extern struct rnn *rnn_control; extern struct rnn *rnn_pipe; extern bool verbose; extern struct cffdec_options options; static inline bool have_rem_info(void) { return options.info->chip == 6 || options.info->chip == 7; } static inline bool is_a7xx(void) { return options.info->chip == 7; } static inline bool is_a6xx(void) { return options.info->chip == 6; } static inline bool is_a5xx(void) { return options.info->chip == 5; } static inline bool is_64b(void) { return options.info->chip >= 5; } static inline bool is_gmu_legacy(void) { switch (options.dev_id.gpu_id) { case 615: case 618: case 630: return true; default: return false; } } void dump_register(struct regacc *r); void dump_cp_mem_pool(uint32_t *mempool); void handle_prefetch(uint32_t *dwords, uint32_t sizedwords); struct a6xx_hfi_state { uint64_t iova; void *buf; uint32_t size; int32_t history[2][8]; }; void dump_gmu_hfi(struct a6xx_hfi_state *hfi); #endif /* __CRASHDEC_H__ */