2019-05-29 14:17:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2014-07-01 10:57:31 +00:00
|
|
|
/*
|
2016-08-11 15:26:42 +00:00
|
|
|
* Sync File validation framework and debug information
|
2014-07-01 10:57:31 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Google, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/debugfs.h>
|
2016-05-31 19:59:12 +00:00
|
|
|
#include "sync_debug.h"
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2016-01-21 12:49:17 +00:00
|
|
|
static struct dentry *dbgfs;
|
|
|
|
|
2014-07-01 10:57:31 +00:00
|
|
|
static LIST_HEAD(sync_timeline_list_head);
|
|
|
|
static DEFINE_SPINLOCK(sync_timeline_list_lock);
|
2016-01-21 12:49:19 +00:00
|
|
|
static LIST_HEAD(sync_file_list_head);
|
|
|
|
static DEFINE_SPINLOCK(sync_file_list_lock);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
|
|
|
void sync_timeline_debug_add(struct sync_timeline *obj)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sync_timeline_list_lock, flags);
|
|
|
|
list_add_tail(&obj->sync_timeline_list, &sync_timeline_list_head);
|
|
|
|
spin_unlock_irqrestore(&sync_timeline_list_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sync_timeline_debug_remove(struct sync_timeline *obj)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sync_timeline_list_lock, flags);
|
|
|
|
list_del(&obj->sync_timeline_list);
|
|
|
|
spin_unlock_irqrestore(&sync_timeline_list_lock, flags);
|
|
|
|
}
|
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
void sync_file_debug_add(struct sync_file *sync_file)
|
2014-07-01 10:57:31 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
spin_lock_irqsave(&sync_file_list_lock, flags);
|
|
|
|
list_add_tail(&sync_file->sync_file_list, &sync_file_list_head);
|
|
|
|
spin_unlock_irqrestore(&sync_file_list_lock, flags);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
void sync_file_debug_remove(struct sync_file *sync_file)
|
2014-07-01 10:57:31 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
spin_lock_irqsave(&sync_file_list_lock, flags);
|
|
|
|
list_del(&sync_file->sync_file_list);
|
|
|
|
spin_unlock_irqrestore(&sync_file_list_lock, flags);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *sync_status_str(int status)
|
|
|
|
{
|
2017-01-04 14:12:21 +00:00
|
|
|
if (status < 0)
|
|
|
|
return "error";
|
2014-07-12 19:55:56 +00:00
|
|
|
|
|
|
|
if (status > 0)
|
2017-01-04 14:12:21 +00:00
|
|
|
return "signaled";
|
2014-07-12 19:55:56 +00:00
|
|
|
|
2017-01-04 14:12:21 +00:00
|
|
|
return "active";
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
2016-10-25 12:00:45 +00:00
|
|
|
static void sync_print_fence(struct seq_file *s,
|
|
|
|
struct dma_fence *fence, bool show)
|
2014-07-01 10:57:31 +00:00
|
|
|
{
|
2016-10-25 12:00:45 +00:00
|
|
|
struct sync_timeline *parent = dma_fence_parent(fence);
|
2017-01-04 14:12:21 +00:00
|
|
|
int status;
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2017-01-04 14:12:21 +00:00
|
|
|
status = dma_fence_get_status_locked(fence);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2016-01-21 12:49:21 +00:00
|
|
|
seq_printf(s, " %s%sfence %s",
|
|
|
|
show ? parent->name : "",
|
|
|
|
show ? "_" : "",
|
2014-07-01 10:57:31 +00:00
|
|
|
sync_status_str(status));
|
|
|
|
|
2017-02-14 12:40:01 +00:00
|
|
|
if (test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) {
|
2014-12-24 15:33:02 +00:00
|
|
|
struct timespec64 ts64 =
|
2016-01-21 12:49:21 +00:00
|
|
|
ktime_to_timespec64(fence->timestamp);
|
2014-07-12 19:55:56 +00:00
|
|
|
|
2014-10-26 13:50:16 +00:00
|
|
|
seq_printf(s, "@%lld.%09ld", (s64)ts64.tv_sec, ts64.tv_nsec);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
2016-05-31 19:59:02 +00:00
|
|
|
if (fence->ops->timeline_value_str &&
|
2016-01-21 12:49:21 +00:00
|
|
|
fence->ops->fence_value_str) {
|
2014-07-01 10:57:31 +00:00
|
|
|
char value[64];
|
2015-12-11 13:11:49 +00:00
|
|
|
bool success;
|
2014-07-12 19:55:56 +00:00
|
|
|
|
2016-01-21 12:49:21 +00:00
|
|
|
fence->ops->fence_value_str(fence, value, sizeof(value));
|
2015-12-11 13:11:49 +00:00
|
|
|
success = strlen(value);
|
|
|
|
|
2016-05-31 19:59:02 +00:00
|
|
|
if (success) {
|
2015-12-11 13:11:49 +00:00
|
|
|
seq_printf(s, ": %s", value);
|
|
|
|
|
2016-01-21 12:49:21 +00:00
|
|
|
fence->ops->timeline_value_str(fence, value,
|
|
|
|
sizeof(value));
|
2015-12-11 13:11:49 +00:00
|
|
|
|
|
|
|
if (strlen(value))
|
|
|
|
seq_printf(s, " / %s", value);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-08 08:55:42 +00:00
|
|
|
seq_putc(s, '\n');
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj)
|
|
|
|
{
|
|
|
|
struct list_head *pos;
|
|
|
|
|
2016-05-31 19:59:11 +00:00
|
|
|
seq_printf(s, "%s: %d\n", obj->name, obj->value);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2017-06-29 21:05:32 +00:00
|
|
|
spin_lock_irq(&obj->lock);
|
|
|
|
list_for_each(pos, &obj->pt_list) {
|
|
|
|
struct sync_pt *pt = container_of(pos, struct sync_pt, link);
|
2016-05-31 19:59:04 +00:00
|
|
|
sync_print_fence(s, &pt->base, false);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
2017-06-29 21:05:32 +00:00
|
|
|
spin_unlock_irq(&obj->lock);
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
static void sync_print_sync_file(struct seq_file *s,
|
|
|
|
struct sync_file *sync_file)
|
2016-01-21 12:49:21 +00:00
|
|
|
{
|
2017-05-16 11:10:42 +00:00
|
|
|
char buf[128];
|
2014-07-01 10:57:31 +00:00
|
|
|
int i;
|
|
|
|
|
2017-05-16 11:10:42 +00:00
|
|
|
seq_printf(s, "[%p] %s: %s\n", sync_file,
|
|
|
|
sync_file_get_name(sync_file, buf, sizeof(buf)),
|
2017-01-04 14:12:21 +00:00
|
|
|
sync_status_str(dma_fence_get_status(sync_file->fence)));
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2016-10-25 12:00:45 +00:00
|
|
|
if (dma_fence_is_array(sync_file->fence)) {
|
|
|
|
struct dma_fence_array *array = to_dma_fence_array(sync_file->fence);
|
2016-08-05 13:39:35 +00:00
|
|
|
|
|
|
|
for (i = 0; i < array->num_fences; ++i)
|
|
|
|
sync_print_fence(s, array->fences[i], true);
|
|
|
|
} else {
|
|
|
|
sync_print_fence(s, sync_file->fence, true);
|
|
|
|
}
|
2016-01-21 12:49:21 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 16:11:01 +00:00
|
|
|
static int sync_info_debugfs_show(struct seq_file *s, void *unused)
|
2014-07-01 10:57:31 +00:00
|
|
|
{
|
|
|
|
struct list_head *pos;
|
|
|
|
|
|
|
|
seq_puts(s, "objs:\n--------------\n");
|
|
|
|
|
2017-06-29 12:59:27 +00:00
|
|
|
spin_lock_irq(&sync_timeline_list_lock);
|
2014-07-01 10:57:31 +00:00
|
|
|
list_for_each(pos, &sync_timeline_list_head) {
|
|
|
|
struct sync_timeline *obj =
|
|
|
|
container_of(pos, struct sync_timeline,
|
|
|
|
sync_timeline_list);
|
|
|
|
|
|
|
|
sync_print_obj(s, obj);
|
2017-05-08 08:55:42 +00:00
|
|
|
seq_putc(s, '\n');
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
2017-06-29 12:59:27 +00:00
|
|
|
spin_unlock_irq(&sync_timeline_list_lock);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
|
|
|
seq_puts(s, "fences:\n--------------\n");
|
|
|
|
|
2017-06-29 12:59:27 +00:00
|
|
|
spin_lock_irq(&sync_file_list_lock);
|
2016-01-21 12:49:19 +00:00
|
|
|
list_for_each(pos, &sync_file_list_head) {
|
|
|
|
struct sync_file *sync_file =
|
|
|
|
container_of(pos, struct sync_file, sync_file_list);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
2016-01-21 12:49:19 +00:00
|
|
|
sync_print_sync_file(s, sync_file);
|
2017-05-08 08:55:42 +00:00
|
|
|
seq_putc(s, '\n');
|
2014-07-01 10:57:31 +00:00
|
|
|
}
|
2017-06-29 12:59:27 +00:00
|
|
|
spin_unlock_irq(&sync_file_list_lock);
|
2014-07-01 10:57:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-30 16:11:01 +00:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(sync_info_debugfs);
|
2014-07-01 10:57:31 +00:00
|
|
|
|
|
|
|
static __init int sync_debugfs_init(void)
|
|
|
|
{
|
2016-01-21 12:49:17 +00:00
|
|
|
dbgfs = debugfs_create_dir("sync", NULL);
|
|
|
|
|
2016-05-27 18:03:54 +00:00
|
|
|
/*
|
|
|
|
* The debugfs files won't ever get removed and thus, there is
|
|
|
|
* no need to protect it against removal races. The use of
|
|
|
|
* debugfs_create_file_unsafe() is actually safe here.
|
|
|
|
*/
|
|
|
|
debugfs_create_file_unsafe("info", 0444, dbgfs, NULL,
|
|
|
|
&sync_info_debugfs_fops);
|
|
|
|
debugfs_create_file_unsafe("sw_sync", 0644, dbgfs, NULL,
|
|
|
|
&sw_sync_debugfs_fops);
|
2016-01-21 12:49:17 +00:00
|
|
|
|
2014-07-01 10:57:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
late_initcall(sync_debugfs_init);
|