1b8e80941Smrg/*
2b8e80941Smrg * Copyright 2015 Advanced Micro Devices, Inc.
3b8e80941Smrg *
4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
6b8e80941Smrg * to deal in the Software without restriction, including without limitation
7b8e80941Smrg * on the rights to use, copy, modify, merge, publish, distribute, sub
8b8e80941Smrg * license, and/or sell copies of the Software, and to permit persons to whom
9b8e80941Smrg * the Software is furnished to do so, subject to the following conditions:
10b8e80941Smrg *
11b8e80941Smrg * The above copyright notice and this permission notice (including the next
12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
13b8e80941Smrg * Software.
14b8e80941Smrg *
15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18b8e80941Smrg * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19b8e80941Smrg * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20b8e80941Smrg * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21b8e80941Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE.
22b8e80941Smrg */
23b8e80941Smrg
24b8e80941Smrg#ifndef AC_DEBUG_H
25b8e80941Smrg#define AC_DEBUG_H
26b8e80941Smrg
27b8e80941Smrg#include <stdint.h>
28b8e80941Smrg#include <stdio.h>
29b8e80941Smrg#include <stdbool.h>
30b8e80941Smrg
31b8e80941Smrg#include "amd_family.h"
32b8e80941Smrg
33b8e80941Smrg#define AC_ENCODE_TRACE_POINT(id)       (0xcafe0000 | ((id) & 0xffff))
34b8e80941Smrg#define AC_IS_TRACE_POINT(x)            (((x) & 0xcafe0000) == 0xcafe0000)
35b8e80941Smrg#define AC_GET_TRACE_POINT_ID(x)        ((x) & 0xffff)
36b8e80941Smrg
37b8e80941Smrg#define AC_MAX_WAVES_PER_CHIP (64 * 40)
38b8e80941Smrg
39b8e80941Smrgstruct ac_wave_info {
40b8e80941Smrg	unsigned se; /* shader engine */
41b8e80941Smrg	unsigned sh; /* shader array */
42b8e80941Smrg	unsigned cu; /* compute unit */
43b8e80941Smrg	unsigned simd;
44b8e80941Smrg	unsigned wave;
45b8e80941Smrg	uint32_t status;
46b8e80941Smrg	uint64_t pc; /* program counter */
47b8e80941Smrg	uint32_t inst_dw0;
48b8e80941Smrg	uint32_t inst_dw1;
49b8e80941Smrg	uint64_t exec;
50b8e80941Smrg	bool matched; /* whether the wave is used by a currently-bound shader */
51b8e80941Smrg};
52b8e80941Smrg
53b8e80941Smrgtypedef void *(*ac_debug_addr_callback)(void *data, uint64_t addr);
54b8e80941Smrg
55b8e80941Smrgvoid ac_dump_reg(FILE *file, enum chip_class chip_class, unsigned offset,
56b8e80941Smrg		 uint32_t value, uint32_t field_mask);
57b8e80941Smrgvoid ac_parse_ib_chunk(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids,
58b8e80941Smrg		       unsigned trace_id_count, enum chip_class chip_class,
59b8e80941Smrg		       ac_debug_addr_callback addr_callback, void *addr_callback_data);
60b8e80941Smrgvoid ac_parse_ib(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids,
61b8e80941Smrg		 unsigned trace_id_count, const char *name, enum chip_class chip_class,
62b8e80941Smrg		 ac_debug_addr_callback addr_callback, void *addr_callback_data);
63b8e80941Smrg
64b8e80941Smrgbool ac_vm_fault_occured(enum chip_class chip_class,
65b8e80941Smrg			 uint64_t *old_dmesg_timestamp, uint64_t *out_addr);
66b8e80941Smrg
67b8e80941Smrgunsigned ac_get_wave_info(struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]);
68b8e80941Smrg
69b8e80941Smrg#endif
70