blob: b684e0b46fd739fae9e9533e38b7b414c82f45bc [file] [log] [blame]
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +02001/*
Gustavo Padovane912c882016-08-11 12:26:42 -03002 * Sync File validation framework and debug information
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +02003 *
4 * Copyright (C) 2012 Google, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/debugfs.h>
Gustavo Padovan1fe82e22016-05-31 16:59:12 -030018#include "sync_debug.h"
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020019
Gustavo Padovan8a004482016-01-21 10:49:17 -020020static struct dentry *dbgfs;
21
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020022static LIST_HEAD(sync_timeline_list_head);
23static DEFINE_SPINLOCK(sync_timeline_list_lock);
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -020024static LIST_HEAD(sync_file_list_head);
25static DEFINE_SPINLOCK(sync_file_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020026
27void sync_timeline_debug_add(struct sync_timeline *obj)
28{
29 unsigned long flags;
30
31 spin_lock_irqsave(&sync_timeline_list_lock, flags);
32 list_add_tail(&obj->sync_timeline_list, &sync_timeline_list_head);
33 spin_unlock_irqrestore(&sync_timeline_list_lock, flags);
34}
35
36void sync_timeline_debug_remove(struct sync_timeline *obj)
37{
38 unsigned long flags;
39
40 spin_lock_irqsave(&sync_timeline_list_lock, flags);
41 list_del(&obj->sync_timeline_list);
42 spin_unlock_irqrestore(&sync_timeline_list_lock, flags);
43}
44
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -020045void sync_file_debug_add(struct sync_file *sync_file)
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020046{
47 unsigned long flags;
48
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -020049 spin_lock_irqsave(&sync_file_list_lock, flags);
50 list_add_tail(&sync_file->sync_file_list, &sync_file_list_head);
51 spin_unlock_irqrestore(&sync_file_list_lock, flags);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020052}
53
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -020054void sync_file_debug_remove(struct sync_file *sync_file)
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020055{
56 unsigned long flags;
57
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -020058 spin_lock_irqsave(&sync_file_list_lock, flags);
59 list_del(&sync_file->sync_file_list);
60 spin_unlock_irqrestore(&sync_file_list_lock, flags);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020061}
62
63static const char *sync_status_str(int status)
64{
65 if (status == 0)
66 return "signaled";
Peter Senna Tschudin95451352014-07-12 21:55:56 +020067
68 if (status > 0)
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020069 return "active";
Peter Senna Tschudin95451352014-07-12 21:55:56 +020070
71 return "error";
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020072}
73
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020074static void sync_print_fence(struct seq_file *s, struct fence *fence, bool show)
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020075{
76 int status = 1;
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020077 struct sync_timeline *parent = fence_parent(fence);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020078
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020079 if (fence_is_signaled_locked(fence))
80 status = fence->status;
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020081
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020082 seq_printf(s, " %s%sfence %s",
83 show ? parent->name : "",
84 show ? "_" : "",
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020085 sync_status_str(status));
86
87 if (status <= 0) {
Steve Pennington0541cdf2014-12-24 09:33:02 -060088 struct timespec64 ts64 =
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020089 ktime_to_timespec64(fence->timestamp);
Peter Senna Tschudin95451352014-07-12 21:55:56 +020090
Tapasweni Pathak353fdf12014-10-26 19:20:16 +053091 seq_printf(s, "@%lld.%09ld", (s64)ts64.tv_sec, ts64.tv_nsec);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020092 }
93
Gustavo Padovan724812d2016-05-31 16:59:02 -030094 if (fence->ops->timeline_value_str &&
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020095 fence->ops->fence_value_str) {
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +020096 char value[64];
Maarten Lankhorst73465f12015-12-11 13:11:49 +000097 bool success;
Peter Senna Tschudin95451352014-07-12 21:55:56 +020098
Gustavo Padovanb55b54b2016-01-21 10:49:21 -020099 fence->ops->fence_value_str(fence, value, sizeof(value));
Maarten Lankhorst73465f12015-12-11 13:11:49 +0000100 success = strlen(value);
101
Gustavo Padovan724812d2016-05-31 16:59:02 -0300102 if (success) {
Maarten Lankhorst73465f12015-12-11 13:11:49 +0000103 seq_printf(s, ": %s", value);
104
Gustavo Padovanb55b54b2016-01-21 10:49:21 -0200105 fence->ops->timeline_value_str(fence, value,
106 sizeof(value));
Maarten Lankhorst73465f12015-12-11 13:11:49 +0000107
108 if (strlen(value))
109 seq_printf(s, " / %s", value);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200110 }
111 }
112
113 seq_puts(s, "\n");
114}
115
116static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj)
117{
118 struct list_head *pos;
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200119
Gustavo Padovanb9bc2b72016-05-31 16:59:11 -0300120 seq_printf(s, "%s: %d\n", obj->name, obj->value);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200121
Chris Wilsonf14ad422017-06-29 13:59:27 +0100122 spin_lock_irq(&obj->child_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200123 list_for_each(pos, &obj->child_list_head) {
Gustavo Padovan0431b902016-05-31 16:59:04 -0300124 struct sync_pt *pt =
125 container_of(pos, struct sync_pt, child_list);
126 sync_print_fence(s, &pt->base, false);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200127 }
Chris Wilsonf14ad422017-06-29 13:59:27 +0100128 spin_unlock_irq(&obj->child_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200129}
130
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -0200131static void sync_print_sync_file(struct seq_file *s,
132 struct sync_file *sync_file)
Gustavo Padovanb55b54b2016-01-21 10:49:21 -0200133{
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200134 int i;
135
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -0200136 seq_printf(s, "[%p] %s: %s\n", sync_file, sync_file->name,
Linus Torvalds6b25e212016-10-11 18:12:22 -0700137 sync_status_str(!fence_is_signaled(sync_file->fence)));
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200138
Linus Torvalds6b25e212016-10-11 18:12:22 -0700139 if (fence_is_array(sync_file->fence)) {
140 struct fence_array *array = to_fence_array(sync_file->fence);
141
142 for (i = 0; i < array->num_fences; ++i)
143 sync_print_fence(s, array->fences[i], true);
144 } else {
145 sync_print_fence(s, sync_file->fence, true);
146 }
Gustavo Padovanb55b54b2016-01-21 10:49:21 -0200147}
148
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200149static int sync_debugfs_show(struct seq_file *s, void *unused)
150{
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200151 struct list_head *pos;
152
153 seq_puts(s, "objs:\n--------------\n");
154
Chris Wilsonf14ad422017-06-29 13:59:27 +0100155 spin_lock_irq(&sync_timeline_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200156 list_for_each(pos, &sync_timeline_list_head) {
157 struct sync_timeline *obj =
158 container_of(pos, struct sync_timeline,
159 sync_timeline_list);
160
161 sync_print_obj(s, obj);
162 seq_puts(s, "\n");
163 }
Chris Wilsonf14ad422017-06-29 13:59:27 +0100164 spin_unlock_irq(&sync_timeline_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200165
166 seq_puts(s, "fences:\n--------------\n");
167
Chris Wilsonf14ad422017-06-29 13:59:27 +0100168 spin_lock_irq(&sync_file_list_lock);
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -0200169 list_for_each(pos, &sync_file_list_head) {
170 struct sync_file *sync_file =
171 container_of(pos, struct sync_file, sync_file_list);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200172
Gustavo Padovand7fdb0a2016-01-21 10:49:19 -0200173 sync_print_sync_file(s, sync_file);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200174 seq_puts(s, "\n");
175 }
Chris Wilsonf14ad422017-06-29 13:59:27 +0100176 spin_unlock_irq(&sync_file_list_lock);
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200177 return 0;
178}
179
Gustavo Padovan8a004482016-01-21 10:49:17 -0200180static int sync_info_debugfs_open(struct inode *inode, struct file *file)
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200181{
182 return single_open(file, sync_debugfs_show, inode->i_private);
183}
184
Gustavo Padovan8a004482016-01-21 10:49:17 -0200185static const struct file_operations sync_info_debugfs_fops = {
186 .open = sync_info_debugfs_open,
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200187 .read = seq_read,
188 .llseek = seq_lseek,
189 .release = single_release,
190};
191
192static __init int sync_debugfs_init(void)
193{
Gustavo Padovan8a004482016-01-21 10:49:17 -0200194 dbgfs = debugfs_create_dir("sync", NULL);
195
Nicolai Stange0fd9da92016-05-27 20:03:54 +0200196 /*
197 * The debugfs files won't ever get removed and thus, there is
198 * no need to protect it against removal races. The use of
199 * debugfs_create_file_unsafe() is actually safe here.
200 */
201 debugfs_create_file_unsafe("info", 0444, dbgfs, NULL,
202 &sync_info_debugfs_fops);
203 debugfs_create_file_unsafe("sw_sync", 0644, dbgfs, NULL,
204 &sw_sync_debugfs_fops);
Gustavo Padovan8a004482016-01-21 10:49:17 -0200205
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200206 return 0;
207}
208late_initcall(sync_debugfs_init);
209
210#define DUMP_CHUNK 256
211static char sync_dump_buf[64 * 1024];
212void sync_dump(void)
213{
214 struct seq_file s = {
215 .buf = sync_dump_buf,
216 .size = sizeof(sync_dump_buf) - 1,
217 };
218 int i;
219
220 sync_debugfs_show(&s, NULL);
221
222 for (i = 0; i < s.count; i += DUMP_CHUNK) {
223 if ((s.count - i) > DUMP_CHUNK) {
224 char c = s.buf[i + DUMP_CHUNK];
Peter Senna Tschudin95451352014-07-12 21:55:56 +0200225
Maarten Lankhorst0f0d8402014-07-01 12:57:31 +0200226 s.buf[i + DUMP_CHUNK] = 0;
227 pr_cont("%s", s.buf + i);
228 s.buf[i + DUMP_CHUNK] = c;
229 } else {
230 s.buf[s.count] = 0;
231 pr_cont("%s", s.buf + i);
232 }
233 }
234}