radv: save the bound pipeline pointers into the trace BO
[mesa.git] / src / amd / vulkan / radv_debug.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based in part on anv driver which is:
6 * Copyright © 2015 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 * IN THE SOFTWARE.
26 */
27
28 #include <stdlib.h>
29 #include <stdio.h>
30
31 #include "ac_debug.h"
32 #include "radv_debug.h"
33 #include "radv_shader.h"
34
35 #define TRACE_BO_SIZE 4096
36
37 /* Trace BO layout (offsets are 4 bytes):
38 *
39 * [0]: primary trace ID
40 * [1]: secondary trace ID
41 * [2-3]: 64-bit GFX pipeline pointer
42 * [4-5]: 64-bit COMPUTE pipeline pointer
43 */
44
45 bool
46 radv_init_trace(struct radv_device *device)
47 {
48 struct radeon_winsys *ws = device->ws;
49
50 device->trace_bo = ws->buffer_create(ws, TRACE_BO_SIZE, 8,
51 RADEON_DOMAIN_VRAM,
52 RADEON_FLAG_CPU_ACCESS);
53 if (!device->trace_bo)
54 return false;
55
56 device->trace_id_ptr = ws->buffer_map(device->trace_bo);
57 if (!device->trace_id_ptr)
58 return false;
59
60 memset(device->trace_id_ptr, 0, TRACE_BO_SIZE);
61
62 ac_vm_fault_occured(device->physical_device->rad_info.chip_class,
63 &device->dmesg_timestamp, NULL);
64
65 return true;
66 }
67
68 static void
69 radv_dump_trace(struct radv_device *device, struct radeon_winsys_cs *cs)
70 {
71 const char *filename = getenv("RADV_TRACE_FILE");
72 FILE *f = fopen(filename, "w");
73
74 if (!f) {
75 fprintf(stderr, "Failed to write trace dump to %s\n", filename);
76 return;
77 }
78
79 fprintf(f, "Trace ID: %x\n", *device->trace_id_ptr);
80 device->ws->cs_dump(cs, f, (const int*)device->trace_id_ptr, 2);
81 fclose(f);
82 }
83
84 static bool
85 radv_gpu_hang_occured(struct radv_queue *queue)
86 {
87 struct radeon_winsys *ws = queue->device->ws;
88 enum ring_type ring;
89
90 ring = radv_queue_family_to_ring(queue->queue_family_index);
91
92 if (!ws->ctx_wait_idle(queue->hw_ctx, ring, queue->queue_idx))
93 return true;
94
95 return false;
96 }
97
98 void
99 radv_check_gpu_hangs(struct radv_queue *queue, struct radeon_winsys_cs *cs)
100 {
101 struct radv_device *device = queue->device;
102 uint64_t addr;
103
104 bool hang_occurred = radv_gpu_hang_occured(queue);
105 bool vm_fault_occurred = false;
106 if (queue->device->instance->debug_flags & RADV_DEBUG_VM_FAULTS)
107 vm_fault_occurred = ac_vm_fault_occured(device->physical_device->rad_info.chip_class,
108 &device->dmesg_timestamp, &addr);
109 if (!hang_occurred && !vm_fault_occurred)
110 return;
111
112 if (vm_fault_occurred) {
113 fprintf(stderr, "VM fault report.\n\n");
114 fprintf(stderr, "Failing VM page: 0x%08"PRIx64"\n\n", addr);
115 }
116
117 radv_dump_trace(queue->device, cs);
118 abort();
119 }
120
121 void
122 radv_print_spirv(struct radv_shader_module *module, FILE *fp)
123 {
124 char path[] = "/tmp/fileXXXXXX";
125 char line[2048], command[128];
126 FILE *p;
127 int fd;
128
129 /* Dump the binary into a temporary file. */
130 fd = mkstemp(path);
131 if (fd < 0)
132 return;
133
134 if (write(fd, module->data, module->size) == -1)
135 goto fail;
136
137 sprintf(command, "spirv-dis %s", path);
138
139 /* Disassemble using spirv-dis if installed. */
140 p = popen(command, "r");
141 if (p) {
142 while (fgets(line, sizeof(line), p))
143 fprintf(fp, "%s", line);
144 pclose(p);
145 }
146
147 fail:
148 close(fd);
149 unlink(path);
150 }