Linux-libre 5.3.12-gnu
[librecmc/linux-libre.git] / drivers / gpu / drm / vc4 / vc4_debugfs.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  Copyright © 2014 Broadcom
4  */
5
6 #include <linux/seq_file.h>
7 #include <linux/circ_buf.h>
8 #include <linux/ctype.h>
9 #include <linux/debugfs.h>
10 #include <drm/drmP.h>
11
12 #include "vc4_drv.h"
13 #include "vc4_regs.h"
14
15 struct vc4_debugfs_info_entry {
16         struct list_head link;
17         struct drm_info_list info;
18 };
19
20 /**
21  * Called at drm_dev_register() time on each of the minors registered
22  * by the DRM device, to attach the debugfs files.
23  */
24 int
25 vc4_debugfs_init(struct drm_minor *minor)
26 {
27         struct vc4_dev *vc4 = to_vc4_dev(minor->dev);
28         struct vc4_debugfs_info_entry *entry;
29
30         debugfs_create_bool("hvs_load_tracker", S_IRUGO | S_IWUSR,
31                             minor->debugfs_root, &vc4->load_tracker_enabled);
32
33         list_for_each_entry(entry, &vc4->debugfs_list, link) {
34                 int ret = drm_debugfs_create_files(&entry->info, 1,
35                                                    minor->debugfs_root, minor);
36
37                 if (ret)
38                         return ret;
39         }
40
41         return 0;
42 }
43
44 static int vc4_debugfs_regset32(struct seq_file *m, void *unused)
45 {
46         struct drm_info_node *node = (struct drm_info_node *)m->private;
47         struct debugfs_regset32 *regset = node->info_ent->data;
48         struct drm_printer p = drm_seq_file_printer(m);
49
50         drm_print_regset32(&p, regset);
51
52         return 0;
53 }
54
55 /**
56  * Registers a debugfs file with a callback function for a vc4 component.
57  *
58  * This is like drm_debugfs_create_files(), but that can only be
59  * called a given DRM minor, while the various VC4 components want to
60  * register their debugfs files during the component bind process.  We
61  * track the request and delay it to be called on each minor during
62  * vc4_debugfs_init().
63  */
64 void vc4_debugfs_add_file(struct drm_device *dev,
65                           const char *name,
66                           int (*show)(struct seq_file*, void*),
67                           void *data)
68 {
69         struct vc4_dev *vc4 = to_vc4_dev(dev);
70
71         struct vc4_debugfs_info_entry *entry =
72                 devm_kzalloc(dev->dev, sizeof(*entry), GFP_KERNEL);
73
74         if (!entry)
75                 return;
76
77         entry->info.name = name;
78         entry->info.show = show;
79         entry->info.data = data;
80
81         list_add(&entry->link, &vc4->debugfs_list);
82 }
83
84 void vc4_debugfs_add_regset32(struct drm_device *drm,
85                               const char *name,
86                               struct debugfs_regset32 *regset)
87 {
88         vc4_debugfs_add_file(drm, name, vc4_debugfs_regset32, regset);
89 }