blob: 550f29de6c1fc0e2ebfcb1bb5831576545e9b940 [file] [log] [blame]
Ben Gamari28a62272009-02-17 20:08:49 -05001/*
2 * Created: Sun Dec 21 13:08:50 2008 by bgamari@gmail.com
3 *
4 * Copyright 2008 Ben Gamari <bgamari@gmail.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#include <linux/debugfs.h>
27#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040029#include <linux/export.h>
Daniel Vetter48344422017-03-22 21:53:36 +010030
31#include <drm/drm_debugfs.h>
Thomas Wood4cf2b282014-06-18 17:52:33 +010032#include <drm/drm_edid.h>
Rob Clark6559c902016-11-05 11:08:10 -040033#include <drm/drm_atomic.h>
Daniel Vetter48344422017-03-22 21:53:36 +010034#include <drm/drmP.h>
35
Daniel Vetter67d0ec42014-09-10 12:43:53 +020036#include "drm_internal.h"
Daniel Vetter5bc9cb42016-12-14 00:08:03 +010037#include "drm_crtc_internal.h"
Ben Gamari28a62272009-02-17 20:08:49 -050038
39#if defined(CONFIG_DEBUG_FS)
40
41/***************************************************
42 * Initialization, etc.
43 **************************************************/
44
Lespiau, Damien36f73b22013-10-17 19:09:55 +010045static const struct drm_info_list drm_debugfs_list[] = {
Ben Gamari28a62272009-02-17 20:08:49 -050046 {"name", drm_name_info, 0},
Ben Gamari28a62272009-02-17 20:08:49 -050047 {"clients", drm_clients_info, 0},
Ben Gamari28a62272009-02-17 20:08:49 -050048 {"gem_names", drm_gem_name_info, DRIVER_GEM},
Ben Gamari28a62272009-02-17 20:08:49 -050049};
50#define DRM_DEBUGFS_ENTRIES ARRAY_SIZE(drm_debugfs_list)
51
52
53static int drm_debugfs_open(struct inode *inode, struct file *file)
54{
55 struct drm_info_node *node = inode->i_private;
56
57 return single_open(file, node->info_ent->show, node);
58}
59
60
61static const struct file_operations drm_debugfs_fops = {
62 .owner = THIS_MODULE,
63 .open = drm_debugfs_open,
64 .read = seq_read,
65 .llseek = seq_lseek,
66 .release = single_release,
67};
68
69
70/**
Daniel Vetter0cad7f72017-03-22 21:54:01 +010071 * drm_debugfs_create_files - Initialize a given set of debugfs files for DRM
72 * minor
73 * @files: The array of files to create
74 * @count: The number of files given
75 * @root: DRI debugfs dir entry.
76 * @minor: device minor number
Ben Gamari28a62272009-02-17 20:08:49 -050077 *
78 * Create a given set of debugfs files represented by an array of
Daniel Vetter0cad7f72017-03-22 21:54:01 +010079 * &struct drm_info_list in the given root directory. These files will be removed
Noralf Trønnes086f2e52017-01-26 23:56:03 +010080 * automatically on drm_debugfs_cleanup().
Ben Gamari28a62272009-02-17 20:08:49 -050081 */
Lespiau, Damien7d747952013-10-17 19:09:53 +010082int drm_debugfs_create_files(const struct drm_info_list *files, int count,
Ben Gamari28a62272009-02-17 20:08:49 -050083 struct dentry *root, struct drm_minor *minor)
84{
85 struct drm_device *dev = minor->dev;
86 struct dentry *ent;
87 struct drm_info_node *tmp;
Ben Gamari28a62272009-02-17 20:08:49 -050088 int i, ret;
89
90 for (i = 0; i < count; i++) {
91 u32 features = files[i].driver_features;
92
93 if (features != 0 &&
94 (dev->driver->driver_features & features) != features)
95 continue;
96
Eric Anholt9a298b22009-03-24 12:23:04 -070097 tmp = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
Jiri Slabyd25e3a62009-07-13 23:20:20 +020098 if (tmp == NULL) {
99 ret = -1;
100 goto fail;
101 }
Ben Gamari28a62272009-02-17 20:08:49 -0500102 ent = debugfs_create_file(files[i].name, S_IFREG | S_IRUGO,
103 root, tmp, &drm_debugfs_fops);
104 if (!ent) {
Al Virobcd599e2016-08-07 12:22:20 -0400105 DRM_ERROR("Cannot create /sys/kernel/debug/dri/%pd/%s\n",
106 root, files[i].name);
Eric Anholt9a298b22009-03-24 12:23:04 -0700107 kfree(tmp);
Ben Gamari28a62272009-02-17 20:08:49 -0500108 ret = -1;
109 goto fail;
110 }
111
112 tmp->minor = minor;
113 tmp->dent = ent;
114 tmp->info_ent = &files[i];
Marcin Slusarzb3e067c2011-11-09 22:20:35 +0100115
116 mutex_lock(&minor->debugfs_lock);
117 list_add(&tmp->list, &minor->debugfs_list);
118 mutex_unlock(&minor->debugfs_lock);
Ben Gamari28a62272009-02-17 20:08:49 -0500119 }
120 return 0;
121
122fail:
123 drm_debugfs_remove_files(files, count, minor);
124 return ret;
125}
126EXPORT_SYMBOL(drm_debugfs_create_files);
127
Ben Gamari28a62272009-02-17 20:08:49 -0500128int drm_debugfs_init(struct drm_minor *minor, int minor_id,
129 struct dentry *root)
130{
131 struct drm_device *dev = minor->dev;
132 char name[64];
133 int ret;
134
Marcin Slusarzb3e067c2011-11-09 22:20:35 +0100135 INIT_LIST_HEAD(&minor->debugfs_list);
136 mutex_init(&minor->debugfs_lock);
Ben Gamari28a62272009-02-17 20:08:49 -0500137 sprintf(name, "%d", minor_id);
138 minor->debugfs_root = debugfs_create_dir(name, root);
139 if (!minor->debugfs_root) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900140 DRM_ERROR("Cannot create /sys/kernel/debug/dri/%s\n", name);
Ben Gamari28a62272009-02-17 20:08:49 -0500141 return -1;
142 }
143
144 ret = drm_debugfs_create_files(drm_debugfs_list, DRM_DEBUGFS_ENTRIES,
145 minor->debugfs_root, minor);
146 if (ret) {
147 debugfs_remove(minor->debugfs_root);
148 minor->debugfs_root = NULL;
149 DRM_ERROR("Failed to create core drm debugfs files\n");
150 return ret;
151 }
152
Rob Clark6559c902016-11-05 11:08:10 -0400153 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
154 ret = drm_atomic_debugfs_init(minor);
155 if (ret) {
156 DRM_ERROR("Failed to create atomic debugfs files\n");
157 return ret;
158 }
159 }
160
Noralf Trønnes45d58b42017-11-07 20:13:40 +0100161 ret = drm_framebuffer_debugfs_init(minor);
162 if (ret) {
163 DRM_ERROR("Failed to create framebuffer debugfs file\n");
164 return ret;
165 }
166
Ben Gamari28a62272009-02-17 20:08:49 -0500167 if (dev->driver->debugfs_init) {
168 ret = dev->driver->debugfs_init(minor);
169 if (ret) {
170 DRM_ERROR("DRM: Driver failed to initialize "
GeunSik Lim156f5a72009-06-02 15:01:37 +0900171 "/sys/kernel/debug/dri.\n");
Ben Gamari28a62272009-02-17 20:08:49 -0500172 return ret;
173 }
174 }
175 return 0;
176}
177
178
Lespiau, Damien7d747952013-10-17 19:09:53 +0100179int drm_debugfs_remove_files(const struct drm_info_list *files, int count,
Ben Gamari28a62272009-02-17 20:08:49 -0500180 struct drm_minor *minor)
181{
182 struct list_head *pos, *q;
183 struct drm_info_node *tmp;
184 int i;
185
Marcin Slusarzb3e067c2011-11-09 22:20:35 +0100186 mutex_lock(&minor->debugfs_lock);
Ben Gamari28a62272009-02-17 20:08:49 -0500187 for (i = 0; i < count; i++) {
Marcin Slusarzb3e067c2011-11-09 22:20:35 +0100188 list_for_each_safe(pos, q, &minor->debugfs_list) {
Ben Gamari28a62272009-02-17 20:08:49 -0500189 tmp = list_entry(pos, struct drm_info_node, list);
190 if (tmp->info_ent == &files[i]) {
191 debugfs_remove(tmp->dent);
192 list_del(pos);
Eric Anholt9a298b22009-03-24 12:23:04 -0700193 kfree(tmp);
Ben Gamari28a62272009-02-17 20:08:49 -0500194 }
195 }
196 }
Marcin Slusarzb3e067c2011-11-09 22:20:35 +0100197 mutex_unlock(&minor->debugfs_lock);
Ben Gamari28a62272009-02-17 20:08:49 -0500198 return 0;
199}
200EXPORT_SYMBOL(drm_debugfs_remove_files);
201
Noralf Trønnes086f2e52017-01-26 23:56:03 +0100202static void drm_debugfs_remove_all_files(struct drm_minor *minor)
203{
204 struct drm_info_node *node, *tmp;
205
206 mutex_lock(&minor->debugfs_lock);
207 list_for_each_entry_safe(node, tmp, &minor->debugfs_list, list) {
208 debugfs_remove(node->dent);
209 list_del(&node->list);
210 kfree(node);
211 }
212 mutex_unlock(&minor->debugfs_lock);
213}
214
Ben Gamari28a62272009-02-17 20:08:49 -0500215int drm_debugfs_cleanup(struct drm_minor *minor)
216{
Ben Gamari28a62272009-02-17 20:08:49 -0500217 if (!minor->debugfs_root)
218 return 0;
219
Noralf Trønnes086f2e52017-01-26 23:56:03 +0100220 drm_debugfs_remove_all_files(minor);
Ben Gamari28a62272009-02-17 20:08:49 -0500221
Noralf Trønnes086f2e52017-01-26 23:56:03 +0100222 debugfs_remove_recursive(minor->debugfs_root);
Ben Gamari28a62272009-02-17 20:08:49 -0500223 minor->debugfs_root = NULL;
224
225 return 0;
226}
227
Thomas Wood30f65702014-06-18 17:52:32 +0100228static int connector_show(struct seq_file *m, void *data)
229{
230 struct drm_connector *connector = m->private;
Thomas Wood30f65702014-06-18 17:52:32 +0100231
Jani Nikula6140cf22017-02-20 10:51:48 +0200232 seq_printf(m, "%s\n", drm_get_connector_force_name(connector->force));
Thomas Wood30f65702014-06-18 17:52:32 +0100233
234 return 0;
235}
236
237static int connector_open(struct inode *inode, struct file *file)
238{
239 struct drm_connector *dev = inode->i_private;
240
241 return single_open(file, connector_show, dev);
242}
243
244static ssize_t connector_write(struct file *file, const char __user *ubuf,
245 size_t len, loff_t *offp)
246{
247 struct seq_file *m = file->private_data;
248 struct drm_connector *connector = m->private;
249 char buf[12];
250
251 if (len > sizeof(buf) - 1)
252 return -EINVAL;
253
254 if (copy_from_user(buf, ubuf, len))
255 return -EFAULT;
256
257 buf[len] = '\0';
258
259 if (!strcmp(buf, "on"))
260 connector->force = DRM_FORCE_ON;
261 else if (!strcmp(buf, "digital"))
262 connector->force = DRM_FORCE_ON_DIGITAL;
263 else if (!strcmp(buf, "off"))
264 connector->force = DRM_FORCE_OFF;
265 else if (!strcmp(buf, "unspecified"))
266 connector->force = DRM_FORCE_UNSPECIFIED;
267 else
268 return -EINVAL;
269
270 return len;
271}
272
Thomas Wood4cf2b282014-06-18 17:52:33 +0100273static int edid_show(struct seq_file *m, void *data)
274{
275 struct drm_connector *connector = m->private;
276 struct drm_property_blob *edid = connector->edid_blob_ptr;
277
278 if (connector->override_edid && edid)
279 seq_write(m, edid->data, edid->length);
280
281 return 0;
282}
283
284static int edid_open(struct inode *inode, struct file *file)
285{
286 struct drm_connector *dev = inode->i_private;
287
288 return single_open(file, edid_show, dev);
289}
290
291static ssize_t edid_write(struct file *file, const char __user *ubuf,
292 size_t len, loff_t *offp)
293{
294 struct seq_file *m = file->private_data;
295 struct drm_connector *connector = m->private;
296 char *buf;
297 struct edid *edid;
298 int ret;
299
300 buf = memdup_user(ubuf, len);
301 if (IS_ERR(buf))
302 return PTR_ERR(buf);
303
304 edid = (struct edid *) buf;
305
306 if (len == 5 && !strncmp(buf, "reset", 5)) {
307 connector->override_edid = false;
308 ret = drm_mode_connector_update_edid_property(connector, NULL);
309 } else if (len < EDID_LENGTH ||
310 EDID_LENGTH * (1 + edid->extensions) > len)
311 ret = -EINVAL;
312 else {
313 connector->override_edid = false;
314 ret = drm_mode_connector_update_edid_property(connector, edid);
315 if (!ret)
316 connector->override_edid = true;
317 }
318
319 kfree(buf);
320
321 return (ret) ? ret : len;
322}
323
324static const struct file_operations drm_edid_fops = {
325 .owner = THIS_MODULE,
326 .open = edid_open,
327 .read = seq_read,
328 .llseek = seq_lseek,
329 .release = single_release,
330 .write = edid_write
331};
332
333
Thomas Wood30f65702014-06-18 17:52:32 +0100334static const struct file_operations drm_connector_fops = {
335 .owner = THIS_MODULE,
336 .open = connector_open,
337 .read = seq_read,
338 .llseek = seq_lseek,
339 .release = single_release,
340 .write = connector_write
341};
342
343int drm_debugfs_connector_add(struct drm_connector *connector)
344{
345 struct drm_minor *minor = connector->dev->primary;
346 struct dentry *root, *ent;
347
348 if (!minor->debugfs_root)
349 return -1;
350
351 root = debugfs_create_dir(connector->name, minor->debugfs_root);
352 if (!root)
353 return -ENOMEM;
354
355 connector->debugfs_entry = root;
356
357 /* force */
358 ent = debugfs_create_file("force", S_IRUGO | S_IWUSR, root, connector,
359 &drm_connector_fops);
360 if (!ent)
361 goto error;
362
Thomas Wood4cf2b282014-06-18 17:52:33 +0100363 /* edid */
364 ent = debugfs_create_file("edid_override", S_IRUGO | S_IWUSR, root,
365 connector, &drm_edid_fops);
366 if (!ent)
367 goto error;
368
Thomas Wood30f65702014-06-18 17:52:32 +0100369 return 0;
370
371error:
372 debugfs_remove_recursive(connector->debugfs_entry);
373 connector->debugfs_entry = NULL;
374 return -ENOMEM;
375}
376
377void drm_debugfs_connector_remove(struct drm_connector *connector)
378{
379 if (!connector->debugfs_entry)
380 return;
381
382 debugfs_remove_recursive(connector->debugfs_entry);
383
384 connector->debugfs_entry = NULL;
385}
386
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200387int drm_debugfs_crtc_add(struct drm_crtc *crtc)
388{
389 struct drm_minor *minor = crtc->dev->primary;
390 struct dentry *root;
391 char *name;
Ben Gamari28a62272009-02-17 20:08:49 -0500392
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200393 name = kasprintf(GFP_KERNEL, "crtc-%d", crtc->index);
394 if (!name)
395 return -ENOMEM;
396
397 root = debugfs_create_dir(name, minor->debugfs_root);
398 kfree(name);
399 if (!root)
400 return -ENOMEM;
401
402 crtc->debugfs_entry = root;
403
404 if (drm_debugfs_crtc_crc_add(crtc))
405 goto error;
406
407 return 0;
408
409error:
410 drm_debugfs_crtc_remove(crtc);
411 return -ENOMEM;
412}
413
414void drm_debugfs_crtc_remove(struct drm_crtc *crtc)
415{
416 debugfs_remove_recursive(crtc->debugfs_entry);
417 crtc->debugfs_entry = NULL;
418}
419
420#endif /* CONFIG_DEBUG_FS */