Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 1 | /* |
Gustavo Padovan | e912c88 | 2016-08-11 12:26:42 -0300 | [diff] [blame] | 2 | * Sync File validation framework and debug information |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 3 | * |
| 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 Padovan | 1fe82e2 | 2016-05-31 16:59:12 -0300 | [diff] [blame] | 18 | #include "sync_debug.h" |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 19 | |
Gustavo Padovan | 8a00448 | 2016-01-21 10:49:17 -0200 | [diff] [blame] | 20 | static struct dentry *dbgfs; |
| 21 | |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 22 | static LIST_HEAD(sync_timeline_list_head); |
| 23 | static DEFINE_SPINLOCK(sync_timeline_list_lock); |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 24 | static LIST_HEAD(sync_file_list_head); |
| 25 | static DEFINE_SPINLOCK(sync_file_list_lock); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 26 | |
| 27 | void 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 | |
| 36 | void 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 Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 45 | void sync_file_debug_add(struct sync_file *sync_file) |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 46 | { |
| 47 | unsigned long flags; |
| 48 | |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 49 | 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 Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 52 | } |
| 53 | |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 54 | void sync_file_debug_remove(struct sync_file *sync_file) |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 55 | { |
| 56 | unsigned long flags; |
| 57 | |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 58 | 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 Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static const char *sync_status_str(int status) |
| 64 | { |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 65 | if (status < 0) |
| 66 | return "error"; |
Peter Senna Tschudin | 9545135 | 2014-07-12 21:55:56 +0200 | [diff] [blame] | 67 | |
| 68 | if (status > 0) |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 69 | return "signaled"; |
Peter Senna Tschudin | 9545135 | 2014-07-12 21:55:56 +0200 | [diff] [blame] | 70 | |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 71 | return "active"; |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 72 | } |
| 73 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 74 | static void sync_print_fence(struct seq_file *s, |
| 75 | struct dma_fence *fence, bool show) |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 76 | { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 77 | struct sync_timeline *parent = dma_fence_parent(fence); |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 78 | int status; |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 79 | |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 80 | status = dma_fence_get_status_locked(fence); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 81 | |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 82 | seq_printf(s, " %s%sfence %s", |
| 83 | show ? parent->name : "", |
| 84 | show ? "_" : "", |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 85 | sync_status_str(status)); |
| 86 | |
Chris Wilson | 76250f2 | 2017-02-14 12:40:01 +0000 | [diff] [blame] | 87 | if (test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) { |
Steve Pennington | 0541cdf | 2014-12-24 09:33:02 -0600 | [diff] [blame] | 88 | struct timespec64 ts64 = |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 89 | ktime_to_timespec64(fence->timestamp); |
Peter Senna Tschudin | 9545135 | 2014-07-12 21:55:56 +0200 | [diff] [blame] | 90 | |
Tapasweni Pathak | 353fdf1 | 2014-10-26 19:20:16 +0530 | [diff] [blame] | 91 | seq_printf(s, "@%lld.%09ld", (s64)ts64.tv_sec, ts64.tv_nsec); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Gustavo Padovan | 724812d | 2016-05-31 16:59:02 -0300 | [diff] [blame] | 94 | if (fence->ops->timeline_value_str && |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 95 | fence->ops->fence_value_str) { |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 96 | char value[64]; |
Maarten Lankhorst | 73465f1 | 2015-12-11 13:11:49 +0000 | [diff] [blame] | 97 | bool success; |
Peter Senna Tschudin | 9545135 | 2014-07-12 21:55:56 +0200 | [diff] [blame] | 98 | |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 99 | fence->ops->fence_value_str(fence, value, sizeof(value)); |
Maarten Lankhorst | 73465f1 | 2015-12-11 13:11:49 +0000 | [diff] [blame] | 100 | success = strlen(value); |
| 101 | |
Gustavo Padovan | 724812d | 2016-05-31 16:59:02 -0300 | [diff] [blame] | 102 | if (success) { |
Maarten Lankhorst | 73465f1 | 2015-12-11 13:11:49 +0000 | [diff] [blame] | 103 | seq_printf(s, ": %s", value); |
| 104 | |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 105 | fence->ops->timeline_value_str(fence, value, |
| 106 | sizeof(value)); |
Maarten Lankhorst | 73465f1 | 2015-12-11 13:11:49 +0000 | [diff] [blame] | 107 | |
| 108 | if (strlen(value)) |
| 109 | seq_printf(s, " / %s", value); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 110 | } |
| 111 | } |
| 112 | |
Markus Elfring | 47a369d | 2017-05-08 10:55:42 +0200 | [diff] [blame] | 113 | seq_putc(s, '\n'); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj) |
| 117 | { |
| 118 | struct list_head *pos; |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 119 | |
Gustavo Padovan | b9bc2b7 | 2016-05-31 16:59:11 -0300 | [diff] [blame] | 120 | seq_printf(s, "%s: %d\n", obj->name, obj->value); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 121 | |
Chris Wilson | d3862e4 | 2017-06-29 22:05:32 +0100 | [diff] [blame] | 122 | spin_lock_irq(&obj->lock); |
| 123 | list_for_each(pos, &obj->pt_list) { |
| 124 | struct sync_pt *pt = container_of(pos, struct sync_pt, link); |
Gustavo Padovan | 0431b90 | 2016-05-31 16:59:04 -0300 | [diff] [blame] | 125 | sync_print_fence(s, &pt->base, false); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 126 | } |
Chris Wilson | d3862e4 | 2017-06-29 22:05:32 +0100 | [diff] [blame] | 127 | spin_unlock_irq(&obj->lock); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 128 | } |
| 129 | |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 130 | static void sync_print_sync_file(struct seq_file *s, |
| 131 | struct sync_file *sync_file) |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 132 | { |
Chris Wilson | 71ebc9a | 2017-05-16 12:10:42 +0100 | [diff] [blame] | 133 | char buf[128]; |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 134 | int i; |
| 135 | |
Chris Wilson | 71ebc9a | 2017-05-16 12:10:42 +0100 | [diff] [blame] | 136 | seq_printf(s, "[%p] %s: %s\n", sync_file, |
| 137 | sync_file_get_name(sync_file, buf, sizeof(buf)), |
Chris Wilson | d6c99f4 | 2017-01-04 14:12:21 +0000 | [diff] [blame] | 138 | sync_status_str(dma_fence_get_status(sync_file->fence))); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 139 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 140 | if (dma_fence_is_array(sync_file->fence)) { |
| 141 | struct dma_fence_array *array = to_dma_fence_array(sync_file->fence); |
Linus Torvalds | 6b25e21 | 2016-10-11 18:12:22 -0700 | [diff] [blame] | 142 | |
| 143 | for (i = 0; i < array->num_fences; ++i) |
| 144 | sync_print_fence(s, array->fences[i], true); |
| 145 | } else { |
| 146 | sync_print_fence(s, sync_file->fence, true); |
| 147 | } |
Gustavo Padovan | b55b54b | 2016-01-21 10:49:21 -0200 | [diff] [blame] | 148 | } |
| 149 | |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 150 | static int sync_debugfs_show(struct seq_file *s, void *unused) |
| 151 | { |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 152 | struct list_head *pos; |
| 153 | |
| 154 | seq_puts(s, "objs:\n--------------\n"); |
| 155 | |
Chris Wilson | a6aa8fc | 2017-06-29 13:59:27 +0100 | [diff] [blame] | 156 | spin_lock_irq(&sync_timeline_list_lock); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 157 | list_for_each(pos, &sync_timeline_list_head) { |
| 158 | struct sync_timeline *obj = |
| 159 | container_of(pos, struct sync_timeline, |
| 160 | sync_timeline_list); |
| 161 | |
| 162 | sync_print_obj(s, obj); |
Markus Elfring | 47a369d | 2017-05-08 10:55:42 +0200 | [diff] [blame] | 163 | seq_putc(s, '\n'); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 164 | } |
Chris Wilson | a6aa8fc | 2017-06-29 13:59:27 +0100 | [diff] [blame] | 165 | spin_unlock_irq(&sync_timeline_list_lock); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 166 | |
| 167 | seq_puts(s, "fences:\n--------------\n"); |
| 168 | |
Chris Wilson | a6aa8fc | 2017-06-29 13:59:27 +0100 | [diff] [blame] | 169 | spin_lock_irq(&sync_file_list_lock); |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 170 | list_for_each(pos, &sync_file_list_head) { |
| 171 | struct sync_file *sync_file = |
| 172 | container_of(pos, struct sync_file, sync_file_list); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 173 | |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 174 | sync_print_sync_file(s, sync_file); |
Markus Elfring | 47a369d | 2017-05-08 10:55:42 +0200 | [diff] [blame] | 175 | seq_putc(s, '\n'); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 176 | } |
Chris Wilson | a6aa8fc | 2017-06-29 13:59:27 +0100 | [diff] [blame] | 177 | spin_unlock_irq(&sync_file_list_lock); |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 178 | return 0; |
| 179 | } |
| 180 | |
Gustavo Padovan | 8a00448 | 2016-01-21 10:49:17 -0200 | [diff] [blame] | 181 | static int sync_info_debugfs_open(struct inode *inode, struct file *file) |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 182 | { |
| 183 | return single_open(file, sync_debugfs_show, inode->i_private); |
| 184 | } |
| 185 | |
Gustavo Padovan | 8a00448 | 2016-01-21 10:49:17 -0200 | [diff] [blame] | 186 | static const struct file_operations sync_info_debugfs_fops = { |
| 187 | .open = sync_info_debugfs_open, |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 188 | .read = seq_read, |
| 189 | .llseek = seq_lseek, |
| 190 | .release = single_release, |
| 191 | }; |
| 192 | |
| 193 | static __init int sync_debugfs_init(void) |
| 194 | { |
Gustavo Padovan | 8a00448 | 2016-01-21 10:49:17 -0200 | [diff] [blame] | 195 | dbgfs = debugfs_create_dir("sync", NULL); |
| 196 | |
Nicolai Stange | 0fd9da9 | 2016-05-27 20:03:54 +0200 | [diff] [blame] | 197 | /* |
| 198 | * The debugfs files won't ever get removed and thus, there is |
| 199 | * no need to protect it against removal races. The use of |
| 200 | * debugfs_create_file_unsafe() is actually safe here. |
| 201 | */ |
| 202 | debugfs_create_file_unsafe("info", 0444, dbgfs, NULL, |
| 203 | &sync_info_debugfs_fops); |
| 204 | debugfs_create_file_unsafe("sw_sync", 0644, dbgfs, NULL, |
| 205 | &sw_sync_debugfs_fops); |
Gustavo Padovan | 8a00448 | 2016-01-21 10:49:17 -0200 | [diff] [blame] | 206 | |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | late_initcall(sync_debugfs_init); |
| 210 | |
| 211 | #define DUMP_CHUNK 256 |
| 212 | static char sync_dump_buf[64 * 1024]; |
| 213 | void sync_dump(void) |
| 214 | { |
| 215 | struct seq_file s = { |
| 216 | .buf = sync_dump_buf, |
| 217 | .size = sizeof(sync_dump_buf) - 1, |
| 218 | }; |
| 219 | int i; |
| 220 | |
| 221 | sync_debugfs_show(&s, NULL); |
| 222 | |
| 223 | for (i = 0; i < s.count; i += DUMP_CHUNK) { |
| 224 | if ((s.count - i) > DUMP_CHUNK) { |
| 225 | char c = s.buf[i + DUMP_CHUNK]; |
Peter Senna Tschudin | 9545135 | 2014-07-12 21:55:56 +0200 | [diff] [blame] | 226 | |
Maarten Lankhorst | 0f0d840 | 2014-07-01 12:57:31 +0200 | [diff] [blame] | 227 | s.buf[i + DUMP_CHUNK] = 0; |
| 228 | pr_cont("%s", s.buf + i); |
| 229 | s.buf[i + DUMP_CHUNK] = c; |
| 230 | } else { |
| 231 | s.buf[s.count] = 0; |
| 232 | pr_cont("%s", s.buf + i); |
| 233 | } |
| 234 | } |
| 235 | } |