blob: 479bf24050f8a5f11375d0aa9f077cc70ec8e751 [file] [log] [blame]
Andy Gross6169a1482011-12-15 21:05:17 -06001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_debugfs.c
Andy Gross6169a1482011-12-15 21:05:17 -06003 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob.clark@linaro.org>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Arnd Bergmann2d802452016-05-11 18:01:45 +020020#include <linux/seq_file.h>
21
Laurent Pinchart2d278f52015-03-05 21:31:37 +020022#include <drm/drm_crtc.h>
23#include <drm/drm_fb_helper.h>
24
Andy Gross6169a1482011-12-15 21:05:17 -060025#include "omap_drv.h"
26#include "omap_dmm_tiler.h"
27
28#ifdef CONFIG_DEBUG_FS
29
Rob Clarkf6b60362012-03-05 10:48:36 -060030static int gem_show(struct seq_file *m, void *arg)
31{
32 struct drm_info_node *node = (struct drm_info_node *) m->private;
33 struct drm_device *dev = node->minor->dev;
34 struct omap_drm_private *priv = dev->dev_private;
35 int ret;
36
37 ret = mutex_lock_interruptible(&dev->struct_mutex);
38 if (ret)
39 return ret;
40
41 seq_printf(m, "All Objects:\n");
42 omap_gem_describe_objects(&priv->obj_list, m);
43
44 mutex_unlock(&dev->struct_mutex);
45
46 return 0;
47}
48
49static int mm_show(struct seq_file *m, void *arg)
50{
51 struct drm_info_node *node = (struct drm_info_node *) m->private;
52 struct drm_device *dev = node->minor->dev;
Daniel Vetterb04a5902013-12-11 14:24:46 +010053 return drm_mm_dump_table(m, &dev->vma_offset_manager->vm_addr_space_mm);
Rob Clarkf6b60362012-03-05 10:48:36 -060054}
55
Laurent Pincharte1c11742015-12-14 22:39:30 +020056#ifdef CONFIG_DRM_FBDEV_EMULATION
Rob Clarkf6b60362012-03-05 10:48:36 -060057static int fb_show(struct seq_file *m, void *arg)
58{
59 struct drm_info_node *node = (struct drm_info_node *) m->private;
60 struct drm_device *dev = node->minor->dev;
61 struct omap_drm_private *priv = dev->dev_private;
62 struct drm_framebuffer *fb;
Rob Clarkf6b60362012-03-05 10:48:36 -060063
64 seq_printf(m, "fbcon ");
65 omap_framebuffer_describe(priv->fbdev->fb, m);
66
Daniel Vetter4b096ac2012-12-10 21:19:18 +010067 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf6b60362012-03-05 10:48:36 -060068 list_for_each_entry(fb, &dev->mode_config.fb_list, head) {
69 if (fb == priv->fbdev->fb)
70 continue;
71
72 seq_printf(m, "user ");
73 omap_framebuffer_describe(fb, m);
74 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +010075 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf6b60362012-03-05 10:48:36 -060076
Rob Clarkf6b60362012-03-05 10:48:36 -060077 return 0;
78}
Laurent Pincharte1c11742015-12-14 22:39:30 +020079#endif
Rob Clarkf6b60362012-03-05 10:48:36 -060080
81/* list of debufs files that are applicable to all devices */
Andy Gross6169a1482011-12-15 21:05:17 -060082static struct drm_info_list omap_debugfs_list[] = {
Rob Clarkf6b60362012-03-05 10:48:36 -060083 {"gem", gem_show, 0},
84 {"mm", mm_show, 0},
Laurent Pincharte1c11742015-12-14 22:39:30 +020085#ifdef CONFIG_DRM_FBDEV_EMULATION
Rob Clarkf6b60362012-03-05 10:48:36 -060086 {"fb", fb_show, 0},
Laurent Pincharte1c11742015-12-14 22:39:30 +020087#endif
Rob Clarkf6b60362012-03-05 10:48:36 -060088};
89
90/* list of debugfs files that are specific to devices with dmm/tiler */
91static struct drm_info_list omap_dmm_debugfs_list[] = {
Andy Gross6169a1482011-12-15 21:05:17 -060092 {"tiler_map", tiler_map_show, 0},
93};
94
95int omap_debugfs_init(struct drm_minor *minor)
96{
Rob Clarkf6b60362012-03-05 10:48:36 -060097 struct drm_device *dev = minor->dev;
98 int ret;
99
100 ret = drm_debugfs_create_files(omap_debugfs_list,
Andy Gross6169a1482011-12-15 21:05:17 -0600101 ARRAY_SIZE(omap_debugfs_list),
102 minor->debugfs_root, minor);
Rob Clarkf6b60362012-03-05 10:48:36 -0600103
104 if (ret) {
105 dev_err(dev->dev, "could not install omap_debugfs_list\n");
106 return ret;
107 }
108
Andy Gross132390c2012-03-05 10:48:37 -0600109 if (dmm_is_available())
110 ret = drm_debugfs_create_files(omap_dmm_debugfs_list,
111 ARRAY_SIZE(omap_dmm_debugfs_list),
112 minor->debugfs_root, minor);
Rob Clarkf6b60362012-03-05 10:48:36 -0600113
114 if (ret) {
115 dev_err(dev->dev, "could not install omap_dmm_debugfs_list\n");
116 return ret;
117 }
118
119 return ret;
Andy Gross6169a1482011-12-15 21:05:17 -0600120}
121
122void omap_debugfs_cleanup(struct drm_minor *minor)
123{
124 drm_debugfs_remove_files(omap_debugfs_list,
125 ARRAY_SIZE(omap_debugfs_list), minor);
Andy Gross132390c2012-03-05 10:48:37 -0600126 if (dmm_is_available())
127 drm_debugfs_remove_files(omap_dmm_debugfs_list,
128 ARRAY_SIZE(omap_dmm_debugfs_list), minor);
Andy Gross6169a1482011-12-15 21:05:17 -0600129}
130
131#endif