Merge tag 'trace-fixes-v4.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / include / linux / debugfs.h
CommitLineData
1da177e4
LT
1/*
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.
55dff495 12 * See Documentation/DocBook/filesystems for more details.
1da177e4
LT
13 */
14
15#ifndef _DEBUGFS_H_
16#define _DEBUGFS_H_
17
18#include <linux/fs.h>
1a087c6a 19#include <linux/seq_file.h>
1da177e4 20
a7a76cef
RD
21#include <linux/types.h>
22
f30d0a81 23struct device;
a7a76cef
RD
24struct file_operations;
25
dd308bc3
ME
26struct debugfs_blob_wrapper {
27 void *data;
28 unsigned long size;
29};
30
1a087c6a
AR
31struct debugfs_reg32 {
32 char *name;
33 unsigned long offset;
34};
35
36struct debugfs_regset32 {
833d6e01 37 const struct debugfs_reg32 *regs;
1a087c6a
AR
38 int nregs;
39 void __iomem *base;
40};
41
ae79cdaa 42extern struct dentry *arch_debugfs_dir;
43
1da177e4 44#if defined(CONFIG_DEBUG_FS)
3634634e
HH
45
46/* declared over in file.c */
47extern const struct file_operations debugfs_file_operations;
3634634e 48
f4ae40a6 49struct dentry *debugfs_create_file(const char *name, umode_t mode,
1da177e4 50 struct dentry *parent, void *data,
99ac48f5 51 const struct file_operations *fops);
1da177e4 52
e59b4e91
DH
53struct 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
1da177e4
LT
58struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
59
66f54963
PO
60struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
61 const char *dest);
62
77b3da6e
AV
63struct dentry *debugfs_create_automount(const char *name,
64 struct dentry *parent,
65 struct vfsmount *(*f)(void *),
66 void *data);
67
1da177e4 68void debugfs_remove(struct dentry *dentry);
9505e637 69void debugfs_remove_recursive(struct dentry *dentry);
1da177e4 70
cfc94cdf
JK
71struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
72 struct dentry *new_dir, const char *new_name);
73
f4ae40a6 74struct dentry *debugfs_create_u8(const char *name, umode_t mode,
1da177e4 75 struct dentry *parent, u8 *value);
f4ae40a6 76struct dentry *debugfs_create_u16(const char *name, umode_t mode,
1da177e4 77 struct dentry *parent, u16 *value);
f4ae40a6 78struct dentry *debugfs_create_u32(const char *name, umode_t mode,
1da177e4 79 struct dentry *parent, u32 *value);
f4ae40a6 80struct dentry *debugfs_create_u64(const char *name, umode_t mode,
8447891f 81 struct dentry *parent, u64 *value);
c23fe831
VK
82struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
83 struct dentry *parent, unsigned long *value);
f4ae40a6 84struct dentry *debugfs_create_x8(const char *name, umode_t mode,
2ebefc50 85 struct dentry *parent, u8 *value);
f4ae40a6 86struct dentry *debugfs_create_x16(const char *name, umode_t mode,
2ebefc50 87 struct dentry *parent, u16 *value);
f4ae40a6 88struct dentry *debugfs_create_x32(const char *name, umode_t mode,
2ebefc50 89 struct dentry *parent, u32 *value);
f4ae40a6 90struct dentry *debugfs_create_x64(const char *name, umode_t mode,
15b0beaa 91 struct dentry *parent, u64 *value);
f4ae40a6 92struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
5e078787 93 struct dentry *parent, size_t *value);
3a76e5e0
SJ
94struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
95 struct dentry *parent, atomic_t *value);
f4ae40a6 96struct dentry *debugfs_create_bool(const char *name, umode_t mode,
621a5f7a 97 struct dentry *parent, bool *value);
1da177e4 98
f4ae40a6 99struct dentry *debugfs_create_blob(const char *name, umode_t mode,
dd308bc3
ME
100 struct dentry *parent,
101 struct debugfs_blob_wrapper *blob);
c0f92ba9 102
88187398 103struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
1a087c6a
AR
104 struct dentry *parent,
105 struct debugfs_regset32 *regset);
106
9761536e
JP
107void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
108 int nregs, void __iomem *base, char *prefix);
1a087c6a 109
9fe2a701
SV
110struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
111 struct dentry *parent,
112 u32 *array, u32 elements);
113
98210b7f
AS
114struct 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
c0f92ba9
FW
119bool debugfs_initialized(void);
120
0642ef6f
RF
121ssize_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
1da177e4 127#else
a7a76cef
RD
128
129#include <linux/err.h>
130
98210b7f 131/*
1da177e4
LT
132 * 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
f4ae40a6 137static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
bde11d79
JD
138 struct dentry *parent, void *data,
139 const struct file_operations *fops)
1da177e4
LT
140{
141 return ERR_PTR(-ENODEV);
142}
143
e59b4e91
DH
144static 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
1da177e4
LT
152static inline struct dentry *debugfs_create_dir(const char *name,
153 struct dentry *parent)
154{
155 return ERR_PTR(-ENODEV);
156}
157
66f54963
PO
158static 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
94e1dec7
JW
165static inline struct dentry *debugfs_create_automount(const char *name,
166 struct dentry *parent,
167 struct vfsmount *(*f)(void *),
168 void *data)
169{
170 return ERR_PTR(-ENODEV);
171}
172
1da177e4
LT
173static inline void debugfs_remove(struct dentry *dentry)
174{ }
175
9505e637
HS
176static inline void debugfs_remove_recursive(struct dentry *dentry)
177{ }
178
cfc94cdf
JK
179static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
180 struct dentry *new_dir, char *new_name)
181{
182 return ERR_PTR(-ENODEV);
183}
184
f4ae40a6 185static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
1da177e4
LT
186 struct dentry *parent,
187 u8 *value)
188{
189 return ERR_PTR(-ENODEV);
190}
191
f4ae40a6 192static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
1da177e4 193 struct dentry *parent,
7b558637 194 u16 *value)
1da177e4
LT
195{
196 return ERR_PTR(-ENODEV);
197}
198
f4ae40a6 199static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
1da177e4 200 struct dentry *parent,
7b558637 201 u32 *value)
1da177e4
LT
202{
203 return ERR_PTR(-ENODEV);
204}
205
f4ae40a6 206static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
8447891f
ME
207 struct dentry *parent,
208 u64 *value)
209{
210 return ERR_PTR(-ENODEV);
211}
212
f4ae40a6 213static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
2ebefc50
RG
214 struct dentry *parent,
215 u8 *value)
216{
217 return ERR_PTR(-ENODEV);
218}
219
f4ae40a6 220static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
2ebefc50
RG
221 struct dentry *parent,
222 u16 *value)
223{
224 return ERR_PTR(-ENODEV);
225}
226
f4ae40a6 227static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
2ebefc50
RG
228 struct dentry *parent,
229 u32 *value)
230{
231 return ERR_PTR(-ENODEV);
232}
233
3159269e
JB
234static inline struct dentry *debugfs_create_x64(const char *name, umode_t mode,
235 struct dentry *parent,
236 u64 *value)
237{
238 return ERR_PTR(-ENODEV);
239}
240
f4ae40a6 241static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
8adb711f
IPG
242 struct dentry *parent,
243 size_t *value)
244{
245 return ERR_PTR(-ENODEV);
246}
247
5b880214
WY
248static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
249 struct dentry *parent, atomic_t *value)
250{
251 return ERR_PTR(-ENODEV);
252}
253
f4ae40a6 254static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
1da177e4 255 struct dentry *parent,
621a5f7a 256 bool *value)
1da177e4
LT
257{
258 return ERR_PTR(-ENODEV);
259}
260
f4ae40a6 261static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
dd308bc3
ME
262 struct dentry *parent,
263 struct debugfs_blob_wrapper *blob)
264{
265 return ERR_PTR(-ENODEV);
266}
267
1a087c6a 268static inline struct dentry *debugfs_create_regset32(const char *name,
88187398 269 umode_t mode, struct dentry *parent,
1a087c6a
AR
270 struct debugfs_regset32 *regset)
271{
272 return ERR_PTR(-ENODEV);
273}
274
9761536e 275static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
5b880214
WY
276 int nregs, void __iomem *base, char *prefix)
277{
5b880214
WY
278}
279
c0f92ba9
FW
280static inline bool debugfs_initialized(void)
281{
282 return false;
283}
284
9fe2a701
SV
285static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
286 struct dentry *parent,
287 u32 *array, u32 elements)
288{
289 return ERR_PTR(-ENODEV);
290}
291
98210b7f
AS
292static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev,
293 const char *name,
294 struct dentry *parent,
295 int (*read_fn)(struct seq_file *s,
296 void *data))
297{
298 return ERR_PTR(-ENODEV);
299}
300
0642ef6f
RF
301static inline ssize_t debugfs_read_file_bool(struct file *file,
302 char __user *user_buf,
303 size_t count, loff_t *ppos)
304{
305 return -ENODEV;
306}
307
308static inline ssize_t debugfs_write_file_bool(struct file *file,
309 const char __user *user_buf,
310 size_t count, loff_t *ppos)
311{
312 return -ENODEV;
313}
314
1da177e4
LT
315#endif
316
317#endif