/*1* Copyright 2015 Advanced Micro Devices, Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* on the rights to use, copy, modify, merge, publish, distribute, sub7* license, and/or sell copies of the Software, and to permit persons to whom8* the Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice (including the next11* paragraph) shall be included in all copies or substantial portions of the12* Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL17* THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,18* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR19* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE20* USE OR OTHER DEALINGS IN THE SOFTWARE.21*/2223#ifndef AC_DEBUG_H24#define AC_DEBUG_H2526#include "amd_family.h"2728#include <stdbool.h>29#include <stdint.h>30#include <stdio.h>3132#define AC_ENCODE_TRACE_POINT(id) (0xcafe0000 | ((id)&0xffff))33#define AC_IS_TRACE_POINT(x) (((x)&0xcafe0000) == 0xcafe0000)34#define AC_GET_TRACE_POINT_ID(x) ((x)&0xffff)3536#define AC_MAX_WAVES_PER_CHIP (64 * 40)3738#ifdef __cplusplus39extern "C" {40#endif4142struct ac_wave_info {43unsigned se; /* shader engine */44unsigned sh; /* shader array */45unsigned cu; /* compute unit */46unsigned simd;47unsigned wave;48uint32_t status;49uint64_t pc; /* program counter */50uint32_t inst_dw0;51uint32_t inst_dw1;52uint64_t exec;53bool matched; /* whether the wave is used by a currently-bound shader */54};5556typedef void *(*ac_debug_addr_callback)(void *data, uint64_t addr);5758const char *ac_get_register_name(enum chip_class chip_class, unsigned offset);59void ac_dump_reg(FILE *file, enum chip_class chip_class, unsigned offset, uint32_t value,60uint32_t field_mask);61void ac_parse_ib_chunk(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids,62unsigned trace_id_count, enum chip_class chip_class,63ac_debug_addr_callback addr_callback, void *addr_callback_data);64void ac_parse_ib(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids, unsigned trace_id_count,65const char *name, enum chip_class chip_class, ac_debug_addr_callback addr_callback,66void *addr_callback_data);6768bool ac_vm_fault_occured(enum chip_class chip_class, uint64_t *old_dmesg_timestamp,69uint64_t *out_addr);7071unsigned ac_get_wave_info(enum chip_class chip_class,72struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]);7374#ifdef __cplusplus75}76#endif7778#endif798081