blob: 19c066dce1dab2e0a4dfab9f2851d6998d0f8716 [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;
Harvey Harrison36346342008-02-13 17:08:16 -080048
Al Virof4ae40a2011-07-24 04:33:43 -040049struct dentry *debugfs_create_file(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct dentry *parent, void *data,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -080051 const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Howellse59b4e92015-01-21 20:03:40 +000053struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
54 struct dentry *parent, void *data,
55 const struct file_operations *fops,
56 loff_t file_size);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
59
Peter Oberparleiter66f54962007-02-13 12:13:54 +010060struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
61 const char *dest);
62
Al Viro77b3da62015-01-25 15:10:32 -050063struct dentry *debugfs_create_automount(const char *name,
64 struct dentry *parent,
65 struct vfsmount *(*f)(void *),
66 void *data);
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068void debugfs_remove(struct dentry *dentry);
Haavard Skinnemoen9505e632008-07-01 15:14:51 +020069void debugfs_remove_recursive(struct dentry *dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Jan Karacfc94cd2007-05-09 13:19:52 +020071struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
72 struct dentry *new_dir, const char *new_name);
73
Al Virof4ae40a2011-07-24 04:33:43 -040074struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040076struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040078struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040080struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +100081 struct dentry *parent, u64 *value);
Viresh Kumarc23fe832015-10-18 22:43:19 +053082struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
83 struct dentry *parent, unsigned long *value);
Al Virof4ae40a2011-07-24 04:33:43 -040084struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040085 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040086struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040087 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040088struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040089 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040090struct dentry *debugfs_create_x64(const char *name, umode_t mode,
Huang Ying15b0bea2010-05-18 14:35:23 +080091 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040092struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -080093 struct dentry *parent, size_t *value);
Seth Jennings3a76e5e2013-06-03 15:33:02 -050094struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
95 struct dentry *parent, atomic_t *value);
Al Virof4ae40a2011-07-24 04:33:43 -040096struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Viresh Kumar621a5f72015-09-26 15:04:07 -070097 struct dentry *parent, bool *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Al Virof4ae40a2011-07-24 04:33:43 -040099struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100100 struct dentry *parent,
101 struct debugfs_blob_wrapper *blob);
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100102
Al Viro88187392012-03-20 06:00:24 -0400103struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100104 struct dentry *parent,
105 struct debugfs_regset32 *regset);
106
Joe Perches97615362014-09-29 16:08:26 -0700107void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
108 int nregs, void __iomem *base, char *prefix);
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100109
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530110struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
111 struct dentry *parent,
112 u32 *array, u32 elements);
113
Arend van Spriel98210b72014-11-09 11:31:58 +0100114struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name,
115 struct dentry *parent,
116 int (*read_fn)(struct seq_file *s,
117 void *data));
118
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100119bool debugfs_initialized(void);
120
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100121ssize_t debugfs_read_file_bool(struct file *file, char __user *user_buf,
122 size_t count, loff_t *ppos);
123
124ssize_t debugfs_write_file_bool(struct file *file, const char __user *user_buf,
125 size_t count, loff_t *ppos);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#else
Roland Dreiera7a76ce2005-04-18 21:57:33 -0700128
129#include <linux/err.h>
130
Arend van Spriel98210b72014-11-09 11:31:58 +0100131/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
133 * so users have a chance to detect if there was a real error or not. We don't
134 * want to duplicate the design decision mistakes of procfs and devfs again.
135 */
136
Al Virof4ae40a2011-07-24 04:33:43 -0400137static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
Jean Delvarebde11d72006-04-18 21:30:22 -0700138 struct dentry *parent, void *data,
139 const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 return ERR_PTR(-ENODEV);
142}
143
David Howellse59b4e92015-01-21 20:03:40 +0000144static inline struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
145 struct dentry *parent, void *data,
146 const struct file_operations *fops,
147 loff_t file_size)
148{
149 return ERR_PTR(-ENODEV);
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static inline struct dentry *debugfs_create_dir(const char *name,
153 struct dentry *parent)
154{
155 return ERR_PTR(-ENODEV);
156}
157
Peter Oberparleiter66f54962007-02-13 12:13:54 +0100158static inline struct dentry *debugfs_create_symlink(const char *name,
159 struct dentry *parent,
160 const char *dest)
161{
162 return ERR_PTR(-ENODEV);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static inline void debugfs_remove(struct dentry *dentry)
166{ }
167
Haavard Skinnemoen9505e632008-07-01 15:14:51 +0200168static inline void debugfs_remove_recursive(struct dentry *dentry)
169{ }
170
Jan Karacfc94cd2007-05-09 13:19:52 +0200171static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
172 struct dentry *new_dir, char *new_name)
173{
174 return ERR_PTR(-ENODEV);
175}
176
Al Virof4ae40a2011-07-24 04:33:43 -0400177static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct dentry *parent,
179 u8 *value)
180{
181 return ERR_PTR(-ENODEV);
182}
183
Al Virof4ae40a2011-07-24 04:33:43 -0400184static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700186 u16 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 return ERR_PTR(-ENODEV);
189}
190
Al Virof4ae40a2011-07-24 04:33:43 -0400191static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700193 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 return ERR_PTR(-ENODEV);
196}
197
Al Virof4ae40a2011-07-24 04:33:43 -0400198static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +1000199 struct dentry *parent,
200 u64 *value)
201{
202 return ERR_PTR(-ENODEV);
203}
204
Al Virof4ae40a2011-07-24 04:33:43 -0400205static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400206 struct dentry *parent,
207 u8 *value)
208{
209 return ERR_PTR(-ENODEV);
210}
211
Al Virof4ae40a2011-07-24 04:33:43 -0400212static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400213 struct dentry *parent,
214 u16 *value)
215{
216 return ERR_PTR(-ENODEV);
217}
218
Al Virof4ae40a2011-07-24 04:33:43 -0400219static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400220 struct dentry *parent,
221 u32 *value)
222{
223 return ERR_PTR(-ENODEV);
224}
225
Johannes Berg31592692013-08-26 09:58:30 +0200226static inline struct dentry *debugfs_create_x64(const char *name, umode_t mode,
227 struct dentry *parent,
228 u64 *value)
229{
230 return ERR_PTR(-ENODEV);
231}
232
Al Virof4ae40a2011-07-24 04:33:43 -0400233static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez8adb7112009-01-20 12:17:28 -0800234 struct dentry *parent,
235 size_t *value)
236{
237 return ERR_PTR(-ENODEV);
238}
239
Weijie Yang5b880212013-09-27 17:09:07 +0800240static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
241 struct dentry *parent, atomic_t *value)
242{
243 return ERR_PTR(-ENODEV);
244}
245
Al Virof4ae40a2011-07-24 04:33:43 -0400246static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct dentry *parent,
Viresh Kumar621a5f72015-09-26 15:04:07 -0700248 bool *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 return ERR_PTR(-ENODEV);
251}
252
Al Virof4ae40a2011-07-24 04:33:43 -0400253static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100254 struct dentry *parent,
255 struct debugfs_blob_wrapper *blob)
256{
257 return ERR_PTR(-ENODEV);
258}
259
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100260static inline struct dentry *debugfs_create_regset32(const char *name,
Al Viro88187392012-03-20 06:00:24 -0400261 umode_t mode, struct dentry *parent,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100262 struct debugfs_regset32 *regset)
263{
264 return ERR_PTR(-ENODEV);
265}
266
Joe Perches97615362014-09-29 16:08:26 -0700267static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
Weijie Yang5b880212013-09-27 17:09:07 +0800268 int nregs, void __iomem *base, char *prefix)
269{
Weijie Yang5b880212013-09-27 17:09:07 +0800270}
271
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100272static inline bool debugfs_initialized(void)
273{
274 return false;
275}
276
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530277static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
278 struct dentry *parent,
279 u32 *array, u32 elements)
280{
281 return ERR_PTR(-ENODEV);
282}
283
Arend van Spriel98210b72014-11-09 11:31:58 +0100284static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev,
285 const char *name,
286 struct dentry *parent,
287 int (*read_fn)(struct seq_file *s,
288 void *data))
289{
290 return ERR_PTR(-ENODEV);
291}
292
Richard Fitzgerald0642ef62015-06-23 14:32:54 +0100293static inline ssize_t debugfs_read_file_bool(struct file *file,
294 char __user *user_buf,
295 size_t count, loff_t *ppos)
296{
297 return -ENODEV;
298}
299
300static inline ssize_t debugfs_write_file_bool(struct file *file,
301 const char __user *user_buf,
302 size_t count, loff_t *ppos)
303{
304 return -ENODEV;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
308
309#endif