blob: fe5b1169a6a7bf3670a7e36b79e92fec2dc7827d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * debugfs.h - a tiny little debug file system
3 *
4 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
5 * Copyright (C) 2004 IBM Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 * debugfs is for people to use instead of /proc or /sys.
Randy Dunlap55dff492009-09-23 15:56:17 -070012 * See Documentation/DocBook/filesystems for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#ifndef _DEBUGFS_H_
16#define _DEBUGFS_H_
17
18#include <linux/fs.h>
Alessandro Rubini1a087c62011-11-18 14:50:21 +010019#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Roland Dreiera7a76ce2005-04-18 21:57:33 -070021#include <linux/types.h>
22
Arend van Sprielf30d0a82014-11-30 16:31:21 +010023struct device;
Roland Dreiera7a76ce2005-04-18 21:57:33 -070024struct file_operations;
25
Michael Ellermandd308bc2006-03-07 21:41:59 +110026struct debugfs_blob_wrapper {
27 void *data;
28 unsigned long size;
29};
30
Alessandro Rubini1a087c62011-11-18 14:50:21 +010031struct debugfs_reg32 {
32 char *name;
33 unsigned long offset;
34};
35
36struct debugfs_regset32 {
Felipe Balbi833d6e02013-01-18 22:40:32 +020037 const struct debugfs_reg32 *regs;
Alessandro Rubini1a087c62011-11-18 14:50:21 +010038 int nregs;
39 void __iomem *base;
40};
41
venkatesh.pallipadi@intel.comae79cda2008-07-18 16:08:13 -070042extern struct dentry *arch_debugfs_dir;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#if defined(CONFIG_DEBUG_FS)
Harvey Harrison36346342008-02-13 17:08:16 -080045
46/* declared over in file.c */
47extern const struct file_operations debugfs_file_operations;
48extern const struct inode_operations debugfs_link_operations;
49
Al Virof4ae40a2011-07-24 04:33:43 -040050struct dentry *debugfs_create_file(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct dentry *parent, void *data,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -080052 const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David Howellse59b4e92015-01-21 20:03:40 +000054struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
55 struct dentry *parent, void *data,
56 const struct file_operations *fops,
57 loff_t file_size);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
60
Peter Oberparleiter66f54962007-02-13 12:13:54 +010061struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
62 const char *dest);
63
Al Viro77b3da62015-01-25 15:10:32 -050064struct dentry *debugfs_create_automount(const char *name,
65 struct dentry *parent,
66 struct vfsmount *(*f)(void *),
67 void *data);
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069void debugfs_remove(struct dentry *dentry);
Haavard Skinnemoen9505e632008-07-01 15:14:51 +020070void debugfs_remove_recursive(struct dentry *dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Jan Karacfc94cd2007-05-09 13:19:52 +020072struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
73 struct dentry *new_dir, const char *new_name);
74
Al Virof4ae40a2011-07-24 04:33:43 -040075struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040077struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040079struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040081struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +100082 struct dentry *parent, u64 *value);
Viresh Kumar2c863212015-10-18 22:43:19 +053083struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
84 struct dentry *parent, unsigned long *value);
Al Virof4ae40a2011-07-24 04:33:43 -040085struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040086 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040087struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040088 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040089struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040090 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040091struct dentry *debugfs_create_x64(const char *name, umode_t mode,
Huang Ying15b0bea2010-05-18 14:35:23 +080092 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040093struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -080094 struct dentry *parent, size_t *value);
Seth Jennings3a76e5e2013-06-03 15:33:02 -050095struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
96 struct dentry *parent, atomic_t *value);
Al Virof4ae40a2011-07-24 04:33:43 -040097struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Viresh Kumar11f532e2015-09-26 15:04:07 -070098 struct dentry *parent, bool *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Al Virof4ae40a2011-07-24 04:33:43 -0400100struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100101 struct dentry *parent,
102 struct debugfs_blob_wrapper *blob);
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100103
Al Viro88187392012-03-20 06:00:24 -0400104struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100105 struct dentry *parent,
106 struct debugfs_regset32 *regset);
107
Joe Perches97615362014-09-29 16:08:26 -0700108void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
109 int nregs, void __iomem *base, char *prefix);
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100110
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530111struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
112 struct dentry *parent,
113 u32 *array, u32 elements);
114
Arend van Spriel98210b72014-11-09 11:31:58 +0100115struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name,
116 struct dentry *parent,
117 int (*read_fn)(struct seq_file *s,
118 void *data));
119
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100120bool debugfs_initialized(void);
121
Richard Fitzgeralde982b5a2015-06-23 14:32:54 +0100122ssize_t debugfs_read_file_bool(struct file *file, char __user *user_buf,
123 size_t count, loff_t *ppos);
124
125ssize_t debugfs_write_file_bool(struct file *file, const char __user *user_buf,
126 size_t count, loff_t *ppos);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#else
Roland Dreiera7a76ce2005-04-18 21:57:33 -0700129
130#include <linux/err.h>
131
Arend van Spriel98210b72014-11-09 11:31:58 +0100132/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
134 * so users have a chance to detect if there was a real error or not. We don't
135 * want to duplicate the design decision mistakes of procfs and devfs again.
136 */
137
Al Virof4ae40a2011-07-24 04:33:43 -0400138static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
Jean Delvarebde11d72006-04-18 21:30:22 -0700139 struct dentry *parent, void *data,
140 const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 return ERR_PTR(-ENODEV);
143}
144
David Howellse59b4e92015-01-21 20:03:40 +0000145static inline struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
146 struct dentry *parent, void *data,
147 const struct file_operations *fops,
148 loff_t file_size)
149{
150 return ERR_PTR(-ENODEV);
151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static inline struct dentry *debugfs_create_dir(const char *name,
154 struct dentry *parent)
155{
156 return ERR_PTR(-ENODEV);
157}
158
Peter Oberparleiter66f54962007-02-13 12:13:54 +0100159static inline struct dentry *debugfs_create_symlink(const char *name,
160 struct dentry *parent,
161 const char *dest)
162{
163 return ERR_PTR(-ENODEV);
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static inline void debugfs_remove(struct dentry *dentry)
167{ }
168
Haavard Skinnemoen9505e632008-07-01 15:14:51 +0200169static inline void debugfs_remove_recursive(struct dentry *dentry)
170{ }
171
Jan Karacfc94cd2007-05-09 13:19:52 +0200172static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
173 struct dentry *new_dir, char *new_name)
174{
175 return ERR_PTR(-ENODEV);
176}
177
Al Virof4ae40a2011-07-24 04:33:43 -0400178static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct dentry *parent,
180 u8 *value)
181{
182 return ERR_PTR(-ENODEV);
183}
184
Al Virof4ae40a2011-07-24 04:33:43 -0400185static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700187 u16 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 return ERR_PTR(-ENODEV);
190}
191
Al Virof4ae40a2011-07-24 04:33:43 -0400192static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700194 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 return ERR_PTR(-ENODEV);
197}
198
Al Virof4ae40a2011-07-24 04:33:43 -0400199static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +1000200 struct dentry *parent,
201 u64 *value)
202{
203 return ERR_PTR(-ENODEV);
204}
205
Al Virof4ae40a2011-07-24 04:33:43 -0400206static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400207 struct dentry *parent,
208 u8 *value)
209{
210 return ERR_PTR(-ENODEV);
211}
212
Al Virof4ae40a2011-07-24 04:33:43 -0400213static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400214 struct dentry *parent,
215 u16 *value)
216{
217 return ERR_PTR(-ENODEV);
218}
219
Al Virof4ae40a2011-07-24 04:33:43 -0400220static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400221 struct dentry *parent,
222 u32 *value)
223{
224 return ERR_PTR(-ENODEV);
225}
226
Johannes Berg31592692013-08-26 09:58:30 +0200227static inline struct dentry *debugfs_create_x64(const char *name, umode_t mode,
228 struct dentry *parent,
229 u64 *value)
230{
231 return ERR_PTR(-ENODEV);
232}
233
Al Virof4ae40a2011-07-24 04:33:43 -0400234static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez8adb7112009-01-20 12:17:28 -0800235 struct dentry *parent,
236 size_t *value)
237{
238 return ERR_PTR(-ENODEV);
239}
240
Weijie Yang5b880212013-09-27 17:09:07 +0800241static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
242 struct dentry *parent, atomic_t *value)
243{
244 return ERR_PTR(-ENODEV);
245}
246
Al Virof4ae40a2011-07-24 04:33:43 -0400247static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 struct dentry *parent,
Viresh Kumar11f532e2015-09-26 15:04:07 -0700249 bool *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 return ERR_PTR(-ENODEV);
252}
253
Al Virof4ae40a2011-07-24 04:33:43 -0400254static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100255 struct dentry *parent,
256 struct debugfs_blob_wrapper *blob)
257{
258 return ERR_PTR(-ENODEV);
259}
260
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100261static inline struct dentry *debugfs_create_regset32(const char *name,
Al Viro88187392012-03-20 06:00:24 -0400262 umode_t mode, struct dentry *parent,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100263 struct debugfs_regset32 *regset)
264{
265 return ERR_PTR(-ENODEV);
266}
267
Joe Perches97615362014-09-29 16:08:26 -0700268static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
Weijie Yang5b880212013-09-27 17:09:07 +0800269 int nregs, void __iomem *base, char *prefix)
270{
Weijie Yang5b880212013-09-27 17:09:07 +0800271}
272
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100273static inline bool debugfs_initialized(void)
274{
275 return false;
276}
277
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530278static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
279 struct dentry *parent,
280 u32 *array, u32 elements)
281{
282 return ERR_PTR(-ENODEV);
283}
284
Arend van Spriel98210b72014-11-09 11:31:58 +0100285static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev,
286 const char *name,
287 struct dentry *parent,
288 int (*read_fn)(struct seq_file *s,
289 void *data))
290{
291 return ERR_PTR(-ENODEV);
292}
293
Richard Fitzgeralde982b5a2015-06-23 14:32:54 +0100294static inline ssize_t debugfs_read_file_bool(struct file *file,
295 char __user *user_buf,
296 size_t count, loff_t *ppos)
297{
298 return -ENODEV;
299}
300
301static inline ssize_t debugfs_write_file_bool(struct file *file,
302 const char __user *user_buf,
303 size_t count, loff_t *ppos)
304{
305 return -ENODEV;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif
309
310#endif