blob: da4c4983adbe950c94ab8e1538a00a1ec72cabc0 [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
54struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
55
Peter Oberparleiter66f54962007-02-13 12:13:54 +010056struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
57 const char *dest);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059void debugfs_remove(struct dentry *dentry);
Haavard Skinnemoen9505e632008-07-01 15:14:51 +020060void debugfs_remove_recursive(struct dentry *dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Jan Karacfc94cd2007-05-09 13:19:52 +020062struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
63 struct dentry *new_dir, const char *new_name);
64
Al Virof4ae40a2011-07-24 04:33:43 -040065struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040067struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040069struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040071struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +100072 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040073struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040074 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040075struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040076 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040077struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040078 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040079struct dentry *debugfs_create_x64(const char *name, umode_t mode,
Huang Ying15b0bea2010-05-18 14:35:23 +080080 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040081struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -080082 struct dentry *parent, size_t *value);
Seth Jennings3a76e5e2013-06-03 15:33:02 -050083struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
84 struct dentry *parent, atomic_t *value);
Al Virof4ae40a2011-07-24 04:33:43 -040085struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct dentry *parent, u32 *value);
87
Al Virof4ae40a2011-07-24 04:33:43 -040088struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +110089 struct dentry *parent,
90 struct debugfs_blob_wrapper *blob);
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +010091
Al Viro88187392012-03-20 06:00:24 -040092struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
Alessandro Rubini1a087c62011-11-18 14:50:21 +010093 struct dentry *parent,
94 struct debugfs_regset32 *regset);
95
Joe Perches97615362014-09-29 16:08:26 -070096void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
97 int nregs, void __iomem *base, char *prefix);
Alessandro Rubini1a087c62011-11-18 14:50:21 +010098
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +053099struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
100 struct dentry *parent,
101 u32 *array, u32 elements);
102
Arend van Spriel98210b72014-11-09 11:31:58 +0100103struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name,
104 struct dentry *parent,
105 int (*read_fn)(struct seq_file *s,
106 void *data));
107
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100108bool debugfs_initialized(void);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#else
Roland Dreiera7a76ce2005-04-18 21:57:33 -0700111
112#include <linux/err.h>
113
Arend van Spriel98210b72014-11-09 11:31:58 +0100114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
116 * so users have a chance to detect if there was a real error or not. We don't
117 * want to duplicate the design decision mistakes of procfs and devfs again.
118 */
119
Al Virof4ae40a2011-07-24 04:33:43 -0400120static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
Jean Delvarebde11d72006-04-18 21:30:22 -0700121 struct dentry *parent, void *data,
122 const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 return ERR_PTR(-ENODEV);
125}
126
127static inline struct dentry *debugfs_create_dir(const char *name,
128 struct dentry *parent)
129{
130 return ERR_PTR(-ENODEV);
131}
132
Peter Oberparleiter66f54962007-02-13 12:13:54 +0100133static inline struct dentry *debugfs_create_symlink(const char *name,
134 struct dentry *parent,
135 const char *dest)
136{
137 return ERR_PTR(-ENODEV);
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static inline void debugfs_remove(struct dentry *dentry)
141{ }
142
Haavard Skinnemoen9505e632008-07-01 15:14:51 +0200143static inline void debugfs_remove_recursive(struct dentry *dentry)
144{ }
145
Jan Karacfc94cd2007-05-09 13:19:52 +0200146static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
147 struct dentry *new_dir, char *new_name)
148{
149 return ERR_PTR(-ENODEV);
150}
151
Al Virof4ae40a2011-07-24 04:33:43 -0400152static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct dentry *parent,
154 u8 *value)
155{
156 return ERR_PTR(-ENODEV);
157}
158
Al Virof4ae40a2011-07-24 04:33:43 -0400159static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700161 u16 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 return ERR_PTR(-ENODEV);
164}
165
Al Virof4ae40a2011-07-24 04:33:43 -0400166static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700168 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 return ERR_PTR(-ENODEV);
171}
172
Al Virof4ae40a2011-07-24 04:33:43 -0400173static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +1000174 struct dentry *parent,
175 u64 *value)
176{
177 return ERR_PTR(-ENODEV);
178}
179
Al Virof4ae40a2011-07-24 04:33:43 -0400180static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400181 struct dentry *parent,
182 u8 *value)
183{
184 return ERR_PTR(-ENODEV);
185}
186
Al Virof4ae40a2011-07-24 04:33:43 -0400187static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400188 struct dentry *parent,
189 u16 *value)
190{
191 return ERR_PTR(-ENODEV);
192}
193
Al Virof4ae40a2011-07-24 04:33:43 -0400194static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400195 struct dentry *parent,
196 u32 *value)
197{
198 return ERR_PTR(-ENODEV);
199}
200
Johannes Berg31592692013-08-26 09:58:30 +0200201static inline struct dentry *debugfs_create_x64(const char *name, umode_t mode,
202 struct dentry *parent,
203 u64 *value)
204{
205 return ERR_PTR(-ENODEV);
206}
207
Al Virof4ae40a2011-07-24 04:33:43 -0400208static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez8adb7112009-01-20 12:17:28 -0800209 struct dentry *parent,
210 size_t *value)
211{
212 return ERR_PTR(-ENODEV);
213}
214
Weijie Yang5b880212013-09-27 17:09:07 +0800215static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
216 struct dentry *parent, atomic_t *value)
217{
218 return ERR_PTR(-ENODEV);
219}
220
Al Virof4ae40a2011-07-24 04:33:43 -0400221static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700223 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 return ERR_PTR(-ENODEV);
226}
227
Al Virof4ae40a2011-07-24 04:33:43 -0400228static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100229 struct dentry *parent,
230 struct debugfs_blob_wrapper *blob)
231{
232 return ERR_PTR(-ENODEV);
233}
234
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100235static inline struct dentry *debugfs_create_regset32(const char *name,
Al Viro88187392012-03-20 06:00:24 -0400236 umode_t mode, struct dentry *parent,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100237 struct debugfs_regset32 *regset)
238{
239 return ERR_PTR(-ENODEV);
240}
241
Joe Perches97615362014-09-29 16:08:26 -0700242static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
Weijie Yang5b880212013-09-27 17:09:07 +0800243 int nregs, void __iomem *base, char *prefix)
244{
Weijie Yang5b880212013-09-27 17:09:07 +0800245}
246
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100247static inline bool debugfs_initialized(void)
248{
249 return false;
250}
251
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530252static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
253 struct dentry *parent,
254 u32 *array, u32 elements)
255{
256 return ERR_PTR(-ENODEV);
257}
258
Arend van Spriel98210b72014-11-09 11:31:58 +0100259static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev,
260 const char *name,
261 struct dentry *parent,
262 int (*read_fn)(struct seq_file *s,
263 void *data))
264{
265 return ERR_PTR(-ENODEV);
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#endif
269
270#endif