GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / gpu / drm / msm / msm_rd.c
1 /*
2  * Copyright (C) 2013 Red Hat
3  * Author: Rob Clark <robdclark@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /* For debugging crashes, userspace can:
19  *
20  *   tail -f /sys/kernel/debug/dri/<minor>/rd > logfile.rd
21  *
22  * to log the cmdstream in a format that is understood by freedreno/cffdump
23  * utility.  By comparing the last successfully completed fence #, to the
24  * cmdstream for the next fence, you can narrow down which process and submit
25  * caused the gpu crash/lockup.
26  *
27  * Additionally:
28  *
29  *   tail -f /sys/kernel/debug/dri/<minor>/hangrd > logfile.rd
30  *
31  * will capture just the cmdstream from submits which triggered a GPU hang.
32  *
33  * This bypasses drm_debugfs_create_files() mainly because we need to use
34  * our own fops for a bit more control.  In particular, we don't want to
35  * do anything if userspace doesn't have the debugfs file open.
36  *
37  * The module-param "rd_full", which defaults to false, enables snapshotting
38  * all (non-written) buffers in the submit, rather than just cmdstream bo's.
39  * This is useful to capture the contents of (for example) vbo's or textures,
40  * or shader programs (if not emitted inline in cmdstream).
41  */
42
43 #ifdef CONFIG_DEBUG_FS
44
45 #include <linux/kfifo.h>
46 #include <linux/debugfs.h>
47 #include <linux/circ_buf.h>
48 #include <linux/wait.h>
49
50 #include "msm_drv.h"
51 #include "msm_gpu.h"
52 #include "msm_gem.h"
53
54 static bool rd_full = false;
55 MODULE_PARM_DESC(rd_full, "If true, $debugfs/.../rd will snapshot all buffer contents");
56 module_param_named(rd_full, rd_full, bool, 0600);
57
58 enum rd_sect_type {
59         RD_NONE,
60         RD_TEST,       /* ascii text */
61         RD_CMD,        /* ascii text */
62         RD_GPUADDR,    /* u32 gpuaddr, u32 size */
63         RD_CONTEXT,    /* raw dump */
64         RD_CMDSTREAM,  /* raw dump */
65         RD_CMDSTREAM_ADDR, /* gpu addr of cmdstream */
66         RD_PARAM,      /* u32 param_type, u32 param_val, u32 bitlen */
67         RD_FLUSH,      /* empty, clear previous params */
68         RD_PROGRAM,    /* shader program, raw dump */
69         RD_VERT_SHADER,
70         RD_FRAG_SHADER,
71         RD_BUFFER_CONTENTS,
72         RD_GPU_ID,
73 };
74
75 #define BUF_SZ 512  /* should be power of 2 */
76
77 /* space used: */
78 #define circ_count(circ) \
79         (CIRC_CNT((circ)->head, (circ)->tail, BUF_SZ))
80 #define circ_count_to_end(circ) \
81         (CIRC_CNT_TO_END((circ)->head, (circ)->tail, BUF_SZ))
82 /* space available: */
83 #define circ_space(circ) \
84         (CIRC_SPACE((circ)->head, (circ)->tail, BUF_SZ))
85 #define circ_space_to_end(circ) \
86         (CIRC_SPACE_TO_END((circ)->head, (circ)->tail, BUF_SZ))
87
88 struct msm_rd_state {
89         struct drm_device *dev;
90
91         bool open;
92
93         /* current submit to read out: */
94         struct msm_gem_submit *submit;
95
96         /* fifo access is synchronized on the producer side by
97          * struct_mutex held by submit code (otherwise we could
98          * end up w/ cmds logged in different order than they
99          * were executed).  And read_lock synchronizes the reads
100          */
101         struct mutex read_lock;
102
103         wait_queue_head_t fifo_event;
104         struct circ_buf fifo;
105
106         char buf[BUF_SZ];
107 };
108
109 static void rd_write(struct msm_rd_state *rd, const void *buf, int sz)
110 {
111         struct circ_buf *fifo = &rd->fifo;
112         const char *ptr = buf;
113
114         while (sz > 0) {
115                 char *fptr = &fifo->buf[fifo->head];
116                 int n;
117
118                 wait_event(rd->fifo_event, circ_space(&rd->fifo) > 0 || !rd->open);
119                 if (!rd->open)
120                         return;
121
122                 /* Note that smp_load_acquire() is not strictly required
123                  * as CIRC_SPACE_TO_END() does not access the tail more
124                  * than once.
125                  */
126                 n = min(sz, circ_space_to_end(&rd->fifo));
127                 memcpy(fptr, ptr, n);
128
129                 smp_store_release(&fifo->head, (fifo->head + n) & (BUF_SZ - 1));
130                 sz  -= n;
131                 ptr += n;
132
133                 wake_up_all(&rd->fifo_event);
134         }
135 }
136
137 static void rd_write_section(struct msm_rd_state *rd,
138                 enum rd_sect_type type, const void *buf, int sz)
139 {
140         rd_write(rd, &type, 4);
141         rd_write(rd, &sz, 4);
142         rd_write(rd, buf, sz);
143 }
144
145 static ssize_t rd_read(struct file *file, char __user *buf,
146                 size_t sz, loff_t *ppos)
147 {
148         struct msm_rd_state *rd = file->private_data;
149         struct circ_buf *fifo = &rd->fifo;
150         const char *fptr = &fifo->buf[fifo->tail];
151         int n = 0, ret = 0;
152
153         mutex_lock(&rd->read_lock);
154
155         ret = wait_event_interruptible(rd->fifo_event,
156                         circ_count(&rd->fifo) > 0);
157         if (ret)
158                 goto out;
159
160         /* Note that smp_load_acquire() is not strictly required
161          * as CIRC_CNT_TO_END() does not access the head more than
162          * once.
163          */
164         n = min_t(int, sz, circ_count_to_end(&rd->fifo));
165         if (copy_to_user(buf, fptr, n)) {
166                 ret = -EFAULT;
167                 goto out;
168         }
169
170         smp_store_release(&fifo->tail, (fifo->tail + n) & (BUF_SZ - 1));
171         *ppos += n;
172
173         wake_up_all(&rd->fifo_event);
174
175 out:
176         mutex_unlock(&rd->read_lock);
177         if (ret)
178                 return ret;
179         return n;
180 }
181
182 static int rd_open(struct inode *inode, struct file *file)
183 {
184         struct msm_rd_state *rd = inode->i_private;
185         struct drm_device *dev = rd->dev;
186         struct msm_drm_private *priv = dev->dev_private;
187         struct msm_gpu *gpu = priv->gpu;
188         uint64_t val;
189         uint32_t gpu_id;
190         int ret = 0;
191
192         mutex_lock(&dev->struct_mutex);
193
194         if (rd->open || !gpu) {
195                 ret = -EBUSY;
196                 goto out;
197         }
198
199         file->private_data = rd;
200         rd->open = true;
201
202         /* Reset fifo to clear any previously unread data: */
203         rd->fifo.head = rd->fifo.tail = 0;
204
205         /* the parsing tools need to know gpu-id to know which
206          * register database to load.
207          */
208         gpu->funcs->get_param(gpu, MSM_PARAM_GPU_ID, &val);
209         gpu_id = val;
210
211         rd_write_section(rd, RD_GPU_ID, &gpu_id, sizeof(gpu_id));
212
213 out:
214         mutex_unlock(&dev->struct_mutex);
215         return ret;
216 }
217
218 static int rd_release(struct inode *inode, struct file *file)
219 {
220         struct msm_rd_state *rd = inode->i_private;
221
222         rd->open = false;
223         wake_up_all(&rd->fifo_event);
224
225         return 0;
226 }
227
228
229 static const struct file_operations rd_debugfs_fops = {
230         .owner = THIS_MODULE,
231         .open = rd_open,
232         .read = rd_read,
233         .llseek = no_llseek,
234         .release = rd_release,
235 };
236
237
238 static void rd_cleanup(struct msm_rd_state *rd)
239 {
240         if (!rd)
241                 return;
242
243         mutex_destroy(&rd->read_lock);
244         kfree(rd);
245 }
246
247 static struct msm_rd_state *rd_init(struct drm_minor *minor, const char *name)
248 {
249         struct msm_rd_state *rd;
250         struct dentry *ent;
251         int ret = 0;
252
253         rd = kzalloc(sizeof(*rd), GFP_KERNEL);
254         if (!rd)
255                 return ERR_PTR(-ENOMEM);
256
257         rd->dev = minor->dev;
258         rd->fifo.buf = rd->buf;
259
260         mutex_init(&rd->read_lock);
261
262         init_waitqueue_head(&rd->fifo_event);
263
264         ent = debugfs_create_file(name, S_IFREG | S_IRUGO,
265                         minor->debugfs_root, rd, &rd_debugfs_fops);
266         if (!ent) {
267                 DRM_ERROR("Cannot create /sys/kernel/debug/dri/%pd/%s\n",
268                                 minor->debugfs_root, name);
269                 ret = -ENOMEM;
270                 goto fail;
271         }
272
273         return rd;
274
275 fail:
276         rd_cleanup(rd);
277         return ERR_PTR(ret);
278 }
279
280 int msm_rd_debugfs_init(struct drm_minor *minor)
281 {
282         struct msm_drm_private *priv = minor->dev->dev_private;
283         struct msm_rd_state *rd;
284         int ret;
285
286         /* only create on first minor: */
287         if (priv->rd)
288                 return 0;
289
290         rd = rd_init(minor, "rd");
291         if (IS_ERR(rd)) {
292                 ret = PTR_ERR(rd);
293                 goto fail;
294         }
295
296         priv->rd = rd;
297
298         rd = rd_init(minor, "hangrd");
299         if (IS_ERR(rd)) {
300                 ret = PTR_ERR(rd);
301                 goto fail;
302         }
303
304         priv->hangrd = rd;
305
306         return 0;
307
308 fail:
309         msm_rd_debugfs_cleanup(priv);
310         return ret;
311 }
312
313 void msm_rd_debugfs_cleanup(struct msm_drm_private *priv)
314 {
315         rd_cleanup(priv->rd);
316         priv->rd = NULL;
317
318         rd_cleanup(priv->hangrd);
319         priv->hangrd = NULL;
320 }
321
322 static void snapshot_buf(struct msm_rd_state *rd,
323                 struct msm_gem_submit *submit, int idx,
324                 uint64_t iova, uint32_t size)
325 {
326         struct msm_gem_object *obj = submit->bos[idx].obj;
327         unsigned offset = 0;
328         const char *buf;
329
330         if (iova) {
331                 offset = iova - submit->bos[idx].iova;
332         } else {
333                 iova = submit->bos[idx].iova;
334                 size = obj->base.size;
335         }
336
337         /*
338          * Always write the GPUADDR header so can get a complete list of all the
339          * buffers in the cmd
340          */
341         rd_write_section(rd, RD_GPUADDR,
342                         (uint32_t[3]){ iova, size, iova >> 32 }, 12);
343
344         /* But only dump the contents of buffers marked READ */
345         if (!(submit->bos[idx].flags & MSM_SUBMIT_BO_READ))
346                 return;
347
348         buf = msm_gem_get_vaddr_active(&obj->base);
349         if (IS_ERR(buf))
350                 return;
351
352         buf += offset;
353
354         rd_write_section(rd, RD_BUFFER_CONTENTS, buf, size);
355
356         msm_gem_put_vaddr(&obj->base);
357 }
358
359 /* called under struct_mutex */
360 void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
361                 const char *fmt, ...)
362 {
363         struct drm_device *dev = submit->dev;
364         struct task_struct *task;
365         char msg[256];
366         int i, n;
367
368         if (!rd->open)
369                 return;
370
371         /* writing into fifo is serialized by caller, and
372          * rd->read_lock is used to serialize the reads
373          */
374         WARN_ON(!mutex_is_locked(&dev->struct_mutex));
375
376         if (fmt) {
377                 va_list args;
378
379                 va_start(args, fmt);
380                 n = vsnprintf(msg, sizeof(msg), fmt, args);
381                 va_end(args);
382
383                 rd_write_section(rd, RD_CMD, msg, ALIGN(n, 4));
384         }
385
386         rcu_read_lock();
387         task = pid_task(submit->pid, PIDTYPE_PID);
388         if (task) {
389                 n = snprintf(msg, sizeof(msg), "%.*s/%d: fence=%u",
390                                 TASK_COMM_LEN, task->comm,
391                                 pid_nr(submit->pid), submit->seqno);
392         } else {
393                 n = snprintf(msg, sizeof(msg), "???/%d: fence=%u",
394                                 pid_nr(submit->pid), submit->seqno);
395         }
396         rcu_read_unlock();
397
398         rd_write_section(rd, RD_CMD, msg, ALIGN(n, 4));
399
400         for (i = 0; rd_full && i < submit->nr_bos; i++)
401                 snapshot_buf(rd, submit, i, 0, 0);
402
403         for (i = 0; i < submit->nr_cmds; i++) {
404                 uint64_t iova = submit->cmd[i].iova;
405                 uint32_t szd  = submit->cmd[i].size; /* in dwords */
406
407                 /* snapshot cmdstream bo's (if we haven't already): */
408                 if (!rd_full) {
409                         snapshot_buf(rd, submit, submit->cmd[i].idx,
410                                         submit->cmd[i].iova, szd * 4);
411                 }
412
413                 switch (submit->cmd[i].type) {
414                 case MSM_SUBMIT_CMD_IB_TARGET_BUF:
415                         /* ignore IB-targets, we've logged the buffer, the
416                          * parser tool will follow the IB based on the logged
417                          * buffer/gpuaddr, so nothing more to do.
418                          */
419                         break;
420                 case MSM_SUBMIT_CMD_CTX_RESTORE_BUF:
421                 case MSM_SUBMIT_CMD_BUF:
422                         rd_write_section(rd, RD_CMDSTREAM_ADDR,
423                                 (uint32_t[3]){ iova, szd, iova >> 32 }, 12);
424                         break;
425                 }
426         }
427 }
428 #endif