xref: /OK3568_Linux_fs/kernel/include/linux/debugfs.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  *  debugfs.h - a tiny little debug file system
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  *  Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
6*4882a593Smuzhiyun  *  Copyright (C) 2004 IBM Inc.
7*4882a593Smuzhiyun  *
8*4882a593Smuzhiyun  *  debugfs is for people to use instead of /proc or /sys.
9*4882a593Smuzhiyun  *  See Documentation/filesystems/ for more details.
10*4882a593Smuzhiyun  */
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #ifndef _DEBUGFS_H_
13*4882a593Smuzhiyun #define _DEBUGFS_H_
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun #include <linux/fs.h>
16*4882a593Smuzhiyun #include <linux/seq_file.h>
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #include <linux/types.h>
19*4882a593Smuzhiyun #include <linux/compiler.h>
20*4882a593Smuzhiyun 
21*4882a593Smuzhiyun struct device;
22*4882a593Smuzhiyun struct file_operations;
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun struct debugfs_blob_wrapper {
25*4882a593Smuzhiyun 	void *data;
26*4882a593Smuzhiyun 	unsigned long size;
27*4882a593Smuzhiyun };
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun struct debugfs_reg32 {
30*4882a593Smuzhiyun 	char *name;
31*4882a593Smuzhiyun 	unsigned long offset;
32*4882a593Smuzhiyun };
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun struct debugfs_regset32 {
35*4882a593Smuzhiyun 	const struct debugfs_reg32 *regs;
36*4882a593Smuzhiyun 	int nregs;
37*4882a593Smuzhiyun 	void __iomem *base;
38*4882a593Smuzhiyun 	struct device *dev;	/* Optional device for Runtime PM */
39*4882a593Smuzhiyun };
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun struct debugfs_u32_array {
42*4882a593Smuzhiyun 	u32 *array;
43*4882a593Smuzhiyun 	u32 n_elements;
44*4882a593Smuzhiyun };
45*4882a593Smuzhiyun 
46*4882a593Smuzhiyun extern struct dentry *arch_debugfs_dir;
47*4882a593Smuzhiyun 
48*4882a593Smuzhiyun #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt)		\
49*4882a593Smuzhiyun static int __fops ## _open(struct inode *inode, struct file *file)	\
50*4882a593Smuzhiyun {									\
51*4882a593Smuzhiyun 	__simple_attr_check_format(__fmt, 0ull);			\
52*4882a593Smuzhiyun 	return simple_attr_open(inode, file, __get, __set, __fmt);	\
53*4882a593Smuzhiyun }									\
54*4882a593Smuzhiyun static const struct file_operations __fops = {				\
55*4882a593Smuzhiyun 	.owner	 = THIS_MODULE,						\
56*4882a593Smuzhiyun 	.open	 = __fops ## _open,					\
57*4882a593Smuzhiyun 	.release = simple_attr_release,					\
58*4882a593Smuzhiyun 	.read	 = debugfs_attr_read,					\
59*4882a593Smuzhiyun 	.write	 = debugfs_attr_write,					\
60*4882a593Smuzhiyun 	.llseek  = no_llseek,						\
61*4882a593Smuzhiyun }
62*4882a593Smuzhiyun 
63*4882a593Smuzhiyun typedef struct vfsmount *(*debugfs_automount_t)(struct dentry *, void *);
64*4882a593Smuzhiyun 
65*4882a593Smuzhiyun #if defined(CONFIG_DEBUG_FS)
66*4882a593Smuzhiyun 
67*4882a593Smuzhiyun struct dentry *debugfs_lookup(const char *name, struct dentry *parent);
68*4882a593Smuzhiyun 
69*4882a593Smuzhiyun struct dentry *debugfs_create_file(const char *name, umode_t mode,
70*4882a593Smuzhiyun 				   struct dentry *parent, void *data,
71*4882a593Smuzhiyun 				   const struct file_operations *fops);
72*4882a593Smuzhiyun struct dentry *debugfs_create_file_unsafe(const char *name, umode_t mode,
73*4882a593Smuzhiyun 				   struct dentry *parent, void *data,
74*4882a593Smuzhiyun 				   const struct file_operations *fops);
75*4882a593Smuzhiyun 
76*4882a593Smuzhiyun void debugfs_create_file_size(const char *name, umode_t mode,
77*4882a593Smuzhiyun 			      struct dentry *parent, void *data,
78*4882a593Smuzhiyun 			      const struct file_operations *fops,
79*4882a593Smuzhiyun 			      loff_t file_size);
80*4882a593Smuzhiyun 
81*4882a593Smuzhiyun struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
82*4882a593Smuzhiyun 
83*4882a593Smuzhiyun struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
84*4882a593Smuzhiyun 				      const char *dest);
85*4882a593Smuzhiyun 
86*4882a593Smuzhiyun struct dentry *debugfs_create_automount(const char *name,
87*4882a593Smuzhiyun 					struct dentry *parent,
88*4882a593Smuzhiyun 					debugfs_automount_t f,
89*4882a593Smuzhiyun 					void *data);
90*4882a593Smuzhiyun 
91*4882a593Smuzhiyun void debugfs_remove(struct dentry *dentry);
92*4882a593Smuzhiyun #define debugfs_remove_recursive debugfs_remove
93*4882a593Smuzhiyun 
94*4882a593Smuzhiyun void debugfs_lookup_and_remove(const char *name, struct dentry *parent);
95*4882a593Smuzhiyun 
96*4882a593Smuzhiyun const struct file_operations *debugfs_real_fops(const struct file *filp);
97*4882a593Smuzhiyun 
98*4882a593Smuzhiyun int debugfs_file_get(struct dentry *dentry);
99*4882a593Smuzhiyun void debugfs_file_put(struct dentry *dentry);
100*4882a593Smuzhiyun 
101*4882a593Smuzhiyun ssize_t debugfs_attr_read(struct file *file, char __user *buf,
102*4882a593Smuzhiyun 			size_t len, loff_t *ppos);
103*4882a593Smuzhiyun ssize_t debugfs_attr_write(struct file *file, const char __user *buf,
104*4882a593Smuzhiyun 			size_t len, loff_t *ppos);
105*4882a593Smuzhiyun 
106*4882a593Smuzhiyun struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
107*4882a593Smuzhiyun                 struct dentry *new_dir, const char *new_name);
108*4882a593Smuzhiyun 
109*4882a593Smuzhiyun void debugfs_create_u8(const char *name, umode_t mode, struct dentry *parent,
110*4882a593Smuzhiyun 		       u8 *value);
111*4882a593Smuzhiyun void debugfs_create_u16(const char *name, umode_t mode, struct dentry *parent,
112*4882a593Smuzhiyun 			u16 *value);
113*4882a593Smuzhiyun void debugfs_create_u32(const char *name, umode_t mode, struct dentry *parent,
114*4882a593Smuzhiyun 			u32 *value);
115*4882a593Smuzhiyun void debugfs_create_u64(const char *name, umode_t mode, struct dentry *parent,
116*4882a593Smuzhiyun 			u64 *value);
117*4882a593Smuzhiyun struct dentry *debugfs_create_ulong(const char *name, umode_t mode,
118*4882a593Smuzhiyun 				    struct dentry *parent, unsigned long *value);
119*4882a593Smuzhiyun void debugfs_create_x8(const char *name, umode_t mode, struct dentry *parent,
120*4882a593Smuzhiyun 		       u8 *value);
121*4882a593Smuzhiyun void debugfs_create_x16(const char *name, umode_t mode, struct dentry *parent,
122*4882a593Smuzhiyun 			u16 *value);
123*4882a593Smuzhiyun void debugfs_create_x32(const char *name, umode_t mode, struct dentry *parent,
124*4882a593Smuzhiyun 			u32 *value);
125*4882a593Smuzhiyun void debugfs_create_x64(const char *name, umode_t mode, struct dentry *parent,
126*4882a593Smuzhiyun 			u64 *value);
127*4882a593Smuzhiyun void debugfs_create_size_t(const char *name, umode_t mode,
128*4882a593Smuzhiyun 			   struct dentry *parent, size_t *value);
129*4882a593Smuzhiyun void debugfs_create_atomic_t(const char *name, umode_t mode,
130*4882a593Smuzhiyun 			     struct dentry *parent, atomic_t *value);
131*4882a593Smuzhiyun struct dentry *debugfs_create_bool(const char *name, umode_t mode,
132*4882a593Smuzhiyun 				  struct dentry *parent, bool *value);
133*4882a593Smuzhiyun 
134*4882a593Smuzhiyun struct dentry *debugfs_create_blob(const char *name, umode_t mode,
135*4882a593Smuzhiyun 				  struct dentry *parent,
136*4882a593Smuzhiyun 				  struct debugfs_blob_wrapper *blob);
137*4882a593Smuzhiyun 
138*4882a593Smuzhiyun void debugfs_create_regset32(const char *name, umode_t mode,
139*4882a593Smuzhiyun 			     struct dentry *parent,
140*4882a593Smuzhiyun 			     struct debugfs_regset32 *regset);
141*4882a593Smuzhiyun 
142*4882a593Smuzhiyun void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
143*4882a593Smuzhiyun 			  int nregs, void __iomem *base, char *prefix);
144*4882a593Smuzhiyun 
145*4882a593Smuzhiyun void debugfs_create_u32_array(const char *name, umode_t mode,
146*4882a593Smuzhiyun 			      struct dentry *parent,
147*4882a593Smuzhiyun 			      struct debugfs_u32_array *array);
148*4882a593Smuzhiyun 
149*4882a593Smuzhiyun void debugfs_create_devm_seqfile(struct device *dev, const char *name,
150*4882a593Smuzhiyun 				 struct dentry *parent,
151*4882a593Smuzhiyun 				 int (*read_fn)(struct seq_file *s, void *data));
152*4882a593Smuzhiyun 
153*4882a593Smuzhiyun bool debugfs_initialized(void);
154*4882a593Smuzhiyun 
155*4882a593Smuzhiyun ssize_t debugfs_read_file_bool(struct file *file, char __user *user_buf,
156*4882a593Smuzhiyun 			       size_t count, loff_t *ppos);
157*4882a593Smuzhiyun 
158*4882a593Smuzhiyun ssize_t debugfs_write_file_bool(struct file *file, const char __user *user_buf,
159*4882a593Smuzhiyun 				size_t count, loff_t *ppos);
160*4882a593Smuzhiyun 
161*4882a593Smuzhiyun #else
162*4882a593Smuzhiyun 
163*4882a593Smuzhiyun #include <linux/err.h>
164*4882a593Smuzhiyun 
165*4882a593Smuzhiyun /*
166*4882a593Smuzhiyun  * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
167*4882a593Smuzhiyun  * so users have a chance to detect if there was a real error or not.  We don't
168*4882a593Smuzhiyun  * want to duplicate the design decision mistakes of procfs and devfs again.
169*4882a593Smuzhiyun  */
170*4882a593Smuzhiyun 
debugfs_lookup(const char * name,struct dentry * parent)171*4882a593Smuzhiyun static inline struct dentry *debugfs_lookup(const char *name,
172*4882a593Smuzhiyun 					    struct dentry *parent)
173*4882a593Smuzhiyun {
174*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
175*4882a593Smuzhiyun }
176*4882a593Smuzhiyun 
debugfs_create_file(const char * name,umode_t mode,struct dentry * parent,void * data,const struct file_operations * fops)177*4882a593Smuzhiyun static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
178*4882a593Smuzhiyun 					struct dentry *parent, void *data,
179*4882a593Smuzhiyun 					const struct file_operations *fops)
180*4882a593Smuzhiyun {
181*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
182*4882a593Smuzhiyun }
183*4882a593Smuzhiyun 
debugfs_create_file_unsafe(const char * name,umode_t mode,struct dentry * parent,void * data,const struct file_operations * fops)184*4882a593Smuzhiyun static inline struct dentry *debugfs_create_file_unsafe(const char *name,
185*4882a593Smuzhiyun 					umode_t mode, struct dentry *parent,
186*4882a593Smuzhiyun 					void *data,
187*4882a593Smuzhiyun 					const struct file_operations *fops)
188*4882a593Smuzhiyun {
189*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
190*4882a593Smuzhiyun }
191*4882a593Smuzhiyun 
debugfs_create_file_size(const char * name,umode_t mode,struct dentry * parent,void * data,const struct file_operations * fops,loff_t file_size)192*4882a593Smuzhiyun static inline void debugfs_create_file_size(const char *name, umode_t mode,
193*4882a593Smuzhiyun 					    struct dentry *parent, void *data,
194*4882a593Smuzhiyun 					    const struct file_operations *fops,
195*4882a593Smuzhiyun 					    loff_t file_size)
196*4882a593Smuzhiyun { }
197*4882a593Smuzhiyun 
debugfs_create_dir(const char * name,struct dentry * parent)198*4882a593Smuzhiyun static inline struct dentry *debugfs_create_dir(const char *name,
199*4882a593Smuzhiyun 						struct dentry *parent)
200*4882a593Smuzhiyun {
201*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
202*4882a593Smuzhiyun }
203*4882a593Smuzhiyun 
debugfs_create_symlink(const char * name,struct dentry * parent,const char * dest)204*4882a593Smuzhiyun static inline struct dentry *debugfs_create_symlink(const char *name,
205*4882a593Smuzhiyun 						    struct dentry *parent,
206*4882a593Smuzhiyun 						    const char *dest)
207*4882a593Smuzhiyun {
208*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
209*4882a593Smuzhiyun }
210*4882a593Smuzhiyun 
debugfs_create_automount(const char * name,struct dentry * parent,debugfs_automount_t f,void * data)211*4882a593Smuzhiyun static inline struct dentry *debugfs_create_automount(const char *name,
212*4882a593Smuzhiyun 					struct dentry *parent,
213*4882a593Smuzhiyun 					debugfs_automount_t f,
214*4882a593Smuzhiyun 					void *data)
215*4882a593Smuzhiyun {
216*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
217*4882a593Smuzhiyun }
218*4882a593Smuzhiyun 
debugfs_remove(struct dentry * dentry)219*4882a593Smuzhiyun static inline void debugfs_remove(struct dentry *dentry)
220*4882a593Smuzhiyun { }
221*4882a593Smuzhiyun 
debugfs_remove_recursive(struct dentry * dentry)222*4882a593Smuzhiyun static inline void debugfs_remove_recursive(struct dentry *dentry)
223*4882a593Smuzhiyun { }
224*4882a593Smuzhiyun 
debugfs_lookup_and_remove(const char * name,struct dentry * parent)225*4882a593Smuzhiyun static inline void debugfs_lookup_and_remove(const char *name,
226*4882a593Smuzhiyun 					     struct dentry *parent)
227*4882a593Smuzhiyun { }
228*4882a593Smuzhiyun 
229*4882a593Smuzhiyun const struct file_operations *debugfs_real_fops(const struct file *filp);
230*4882a593Smuzhiyun 
debugfs_file_get(struct dentry * dentry)231*4882a593Smuzhiyun static inline int debugfs_file_get(struct dentry *dentry)
232*4882a593Smuzhiyun {
233*4882a593Smuzhiyun 	return 0;
234*4882a593Smuzhiyun }
235*4882a593Smuzhiyun 
debugfs_file_put(struct dentry * dentry)236*4882a593Smuzhiyun static inline void debugfs_file_put(struct dentry *dentry)
237*4882a593Smuzhiyun { }
238*4882a593Smuzhiyun 
debugfs_attr_read(struct file * file,char __user * buf,size_t len,loff_t * ppos)239*4882a593Smuzhiyun static inline ssize_t debugfs_attr_read(struct file *file, char __user *buf,
240*4882a593Smuzhiyun 					size_t len, loff_t *ppos)
241*4882a593Smuzhiyun {
242*4882a593Smuzhiyun 	return -ENODEV;
243*4882a593Smuzhiyun }
244*4882a593Smuzhiyun 
debugfs_attr_write(struct file * file,const char __user * buf,size_t len,loff_t * ppos)245*4882a593Smuzhiyun static inline ssize_t debugfs_attr_write(struct file *file,
246*4882a593Smuzhiyun 					const char __user *buf,
247*4882a593Smuzhiyun 					size_t len, loff_t *ppos)
248*4882a593Smuzhiyun {
249*4882a593Smuzhiyun 	return -ENODEV;
250*4882a593Smuzhiyun }
251*4882a593Smuzhiyun 
debugfs_rename(struct dentry * old_dir,struct dentry * old_dentry,struct dentry * new_dir,char * new_name)252*4882a593Smuzhiyun static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
253*4882a593Smuzhiyun                 struct dentry *new_dir, char *new_name)
254*4882a593Smuzhiyun {
255*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
256*4882a593Smuzhiyun }
257*4882a593Smuzhiyun 
debugfs_create_u8(const char * name,umode_t mode,struct dentry * parent,u8 * value)258*4882a593Smuzhiyun static inline void debugfs_create_u8(const char *name, umode_t mode,
259*4882a593Smuzhiyun 				     struct dentry *parent, u8 *value) { }
260*4882a593Smuzhiyun 
debugfs_create_u16(const char * name,umode_t mode,struct dentry * parent,u16 * value)261*4882a593Smuzhiyun static inline void debugfs_create_u16(const char *name, umode_t mode,
262*4882a593Smuzhiyun 				      struct dentry *parent, u16 *value) { }
263*4882a593Smuzhiyun 
debugfs_create_u32(const char * name,umode_t mode,struct dentry * parent,u32 * value)264*4882a593Smuzhiyun static inline void debugfs_create_u32(const char *name, umode_t mode,
265*4882a593Smuzhiyun 				      struct dentry *parent, u32 *value) { }
266*4882a593Smuzhiyun 
debugfs_create_u64(const char * name,umode_t mode,struct dentry * parent,u64 * value)267*4882a593Smuzhiyun static inline void debugfs_create_u64(const char *name, umode_t mode,
268*4882a593Smuzhiyun 				      struct dentry *parent, u64 *value) { }
269*4882a593Smuzhiyun 
debugfs_create_ulong(const char * name,umode_t mode,struct dentry * parent,unsigned long * value)270*4882a593Smuzhiyun static inline struct dentry *debugfs_create_ulong(const char *name,
271*4882a593Smuzhiyun 						umode_t mode,
272*4882a593Smuzhiyun 						struct dentry *parent,
273*4882a593Smuzhiyun 						unsigned long *value)
274*4882a593Smuzhiyun {
275*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
276*4882a593Smuzhiyun }
277*4882a593Smuzhiyun 
debugfs_create_x8(const char * name,umode_t mode,struct dentry * parent,u8 * value)278*4882a593Smuzhiyun static inline void debugfs_create_x8(const char *name, umode_t mode,
279*4882a593Smuzhiyun 				     struct dentry *parent, u8 *value) { }
280*4882a593Smuzhiyun 
debugfs_create_x16(const char * name,umode_t mode,struct dentry * parent,u16 * value)281*4882a593Smuzhiyun static inline void debugfs_create_x16(const char *name, umode_t mode,
282*4882a593Smuzhiyun 				      struct dentry *parent, u16 *value) { }
283*4882a593Smuzhiyun 
debugfs_create_x32(const char * name,umode_t mode,struct dentry * parent,u32 * value)284*4882a593Smuzhiyun static inline void debugfs_create_x32(const char *name, umode_t mode,
285*4882a593Smuzhiyun 				      struct dentry *parent, u32 *value) { }
286*4882a593Smuzhiyun 
debugfs_create_x64(const char * name,umode_t mode,struct dentry * parent,u64 * value)287*4882a593Smuzhiyun static inline void debugfs_create_x64(const char *name, umode_t mode,
288*4882a593Smuzhiyun 				      struct dentry *parent, u64 *value) { }
289*4882a593Smuzhiyun 
debugfs_create_size_t(const char * name,umode_t mode,struct dentry * parent,size_t * value)290*4882a593Smuzhiyun static inline void debugfs_create_size_t(const char *name, umode_t mode,
291*4882a593Smuzhiyun 					 struct dentry *parent, size_t *value)
292*4882a593Smuzhiyun { }
293*4882a593Smuzhiyun 
debugfs_create_atomic_t(const char * name,umode_t mode,struct dentry * parent,atomic_t * value)294*4882a593Smuzhiyun static inline void debugfs_create_atomic_t(const char *name, umode_t mode,
295*4882a593Smuzhiyun 					   struct dentry *parent,
296*4882a593Smuzhiyun 					   atomic_t *value)
297*4882a593Smuzhiyun { }
298*4882a593Smuzhiyun 
debugfs_create_bool(const char * name,umode_t mode,struct dentry * parent,bool * value)299*4882a593Smuzhiyun static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
300*4882a593Smuzhiyun 						 struct dentry *parent,
301*4882a593Smuzhiyun 						 bool *value)
302*4882a593Smuzhiyun {
303*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
304*4882a593Smuzhiyun }
305*4882a593Smuzhiyun 
debugfs_create_blob(const char * name,umode_t mode,struct dentry * parent,struct debugfs_blob_wrapper * blob)306*4882a593Smuzhiyun static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
307*4882a593Smuzhiyun 				  struct dentry *parent,
308*4882a593Smuzhiyun 				  struct debugfs_blob_wrapper *blob)
309*4882a593Smuzhiyun {
310*4882a593Smuzhiyun 	return ERR_PTR(-ENODEV);
311*4882a593Smuzhiyun }
312*4882a593Smuzhiyun 
debugfs_create_regset32(const char * name,umode_t mode,struct dentry * parent,struct debugfs_regset32 * regset)313*4882a593Smuzhiyun static inline void debugfs_create_regset32(const char *name, umode_t mode,
314*4882a593Smuzhiyun 					   struct dentry *parent,
315*4882a593Smuzhiyun 					   struct debugfs_regset32 *regset)
316*4882a593Smuzhiyun {
317*4882a593Smuzhiyun }
318*4882a593Smuzhiyun 
debugfs_print_regs32(struct seq_file * s,const struct debugfs_reg32 * regs,int nregs,void __iomem * base,char * prefix)319*4882a593Smuzhiyun static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
320*4882a593Smuzhiyun 			 int nregs, void __iomem *base, char *prefix)
321*4882a593Smuzhiyun {
322*4882a593Smuzhiyun }
323*4882a593Smuzhiyun 
debugfs_initialized(void)324*4882a593Smuzhiyun static inline bool debugfs_initialized(void)
325*4882a593Smuzhiyun {
326*4882a593Smuzhiyun 	return false;
327*4882a593Smuzhiyun }
328*4882a593Smuzhiyun 
debugfs_create_u32_array(const char * name,umode_t mode,struct dentry * parent,struct debugfs_u32_array * array)329*4882a593Smuzhiyun static inline void debugfs_create_u32_array(const char *name, umode_t mode,
330*4882a593Smuzhiyun 					    struct dentry *parent,
331*4882a593Smuzhiyun 					    struct debugfs_u32_array *array)
332*4882a593Smuzhiyun {
333*4882a593Smuzhiyun }
334*4882a593Smuzhiyun 
debugfs_create_devm_seqfile(struct device * dev,const char * name,struct dentry * parent,int (* read_fn)(struct seq_file * s,void * data))335*4882a593Smuzhiyun static inline void debugfs_create_devm_seqfile(struct device *dev,
336*4882a593Smuzhiyun 					       const char *name,
337*4882a593Smuzhiyun 					       struct dentry *parent,
338*4882a593Smuzhiyun 					       int (*read_fn)(struct seq_file *s,
339*4882a593Smuzhiyun 							      void *data))
340*4882a593Smuzhiyun {
341*4882a593Smuzhiyun }
342*4882a593Smuzhiyun 
debugfs_read_file_bool(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)343*4882a593Smuzhiyun static inline ssize_t debugfs_read_file_bool(struct file *file,
344*4882a593Smuzhiyun 					     char __user *user_buf,
345*4882a593Smuzhiyun 					     size_t count, loff_t *ppos)
346*4882a593Smuzhiyun {
347*4882a593Smuzhiyun 	return -ENODEV;
348*4882a593Smuzhiyun }
349*4882a593Smuzhiyun 
debugfs_write_file_bool(struct file * file,const char __user * user_buf,size_t count,loff_t * ppos)350*4882a593Smuzhiyun static inline ssize_t debugfs_write_file_bool(struct file *file,
351*4882a593Smuzhiyun 					      const char __user *user_buf,
352*4882a593Smuzhiyun 					      size_t count, loff_t *ppos)
353*4882a593Smuzhiyun {
354*4882a593Smuzhiyun 	return -ENODEV;
355*4882a593Smuzhiyun }
356*4882a593Smuzhiyun 
357*4882a593Smuzhiyun #endif
358*4882a593Smuzhiyun 
359*4882a593Smuzhiyun /**
360*4882a593Smuzhiyun  * debugfs_create_xul - create a debugfs file that is used to read and write an
361*4882a593Smuzhiyun  * unsigned long value, formatted in hexadecimal
362*4882a593Smuzhiyun  * @name: a pointer to a string containing the name of the file to create.
363*4882a593Smuzhiyun  * @mode: the permission that the file should have
364*4882a593Smuzhiyun  * @parent: a pointer to the parent dentry for this file.  This should be a
365*4882a593Smuzhiyun  *          directory dentry if set.  If this parameter is %NULL, then the
366*4882a593Smuzhiyun  *          file will be created in the root of the debugfs filesystem.
367*4882a593Smuzhiyun  * @value: a pointer to the variable that the file should read to and write
368*4882a593Smuzhiyun  *         from.
369*4882a593Smuzhiyun  */
debugfs_create_xul(const char * name,umode_t mode,struct dentry * parent,unsigned long * value)370*4882a593Smuzhiyun static inline void debugfs_create_xul(const char *name, umode_t mode,
371*4882a593Smuzhiyun 				      struct dentry *parent,
372*4882a593Smuzhiyun 				      unsigned long *value)
373*4882a593Smuzhiyun {
374*4882a593Smuzhiyun 	if (sizeof(*value) == sizeof(u32))
375*4882a593Smuzhiyun 		debugfs_create_x32(name, mode, parent, (u32 *)value);
376*4882a593Smuzhiyun 	else
377*4882a593Smuzhiyun 		debugfs_create_x64(name, mode, parent, (u64 *)value);
378*4882a593Smuzhiyun }
379*4882a593Smuzhiyun 
380*4882a593Smuzhiyun #endif
381