blob: 66c434f5dd1e05243d616f408679fa4a843336cb [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
23struct file_operations;
24
Michael Ellermandd308bc2006-03-07 21:41:59 +110025struct debugfs_blob_wrapper {
26 void *data;
27 unsigned long size;
28};
29
Alessandro Rubini1a087c62011-11-18 14:50:21 +010030struct debugfs_reg32 {
31 char *name;
32 unsigned long offset;
33};
34
35struct debugfs_regset32 {
36 struct debugfs_reg32 *regs;
37 int nregs;
38 void __iomem *base;
39};
40
venkatesh.pallipadi@intel.comae79cda2008-07-18 16:08:13 -070041extern struct dentry *arch_debugfs_dir;
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#if defined(CONFIG_DEBUG_FS)
Harvey Harrison36346342008-02-13 17:08:16 -080044
45/* declared over in file.c */
46extern const struct file_operations debugfs_file_operations;
47extern const struct inode_operations debugfs_link_operations;
48
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
53struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
54
Peter Oberparleiter66f54962007-02-13 12:13:54 +010055struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
56 const char *dest);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058void debugfs_remove(struct dentry *dentry);
Haavard Skinnemoen9505e632008-07-01 15:14:51 +020059void debugfs_remove_recursive(struct dentry *dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jan Karacfc94cd2007-05-09 13:19:52 +020061struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
62 struct dentry *new_dir, const char *new_name);
63
Al Virof4ae40a2011-07-24 04:33:43 -040064struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040066struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040068struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040070struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +100071 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040072struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040073 struct dentry *parent, u8 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040074struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040075 struct dentry *parent, u16 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040076struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -040077 struct dentry *parent, u32 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040078struct dentry *debugfs_create_x64(const char *name, umode_t mode,
Huang Ying15b0bea2010-05-18 14:35:23 +080079 struct dentry *parent, u64 *value);
Al Virof4ae40a2011-07-24 04:33:43 -040080struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez5e078782008-12-20 16:57:39 -080081 struct dentry *parent, size_t *value);
Al Virof4ae40a2011-07-24 04:33:43 -040082struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct dentry *parent, u32 *value);
84
Al Virof4ae40a2011-07-24 04:33:43 -040085struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +110086 struct dentry *parent,
87 struct debugfs_blob_wrapper *blob);
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +010088
Al Viro88187392012-03-20 06:00:24 -040089struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
Alessandro Rubini1a087c62011-11-18 14:50:21 +010090 struct dentry *parent,
91 struct debugfs_regset32 *regset);
92
Alessandro Rubini8ee4dd92011-11-18 23:53:29 +010093int debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
Alessandro Rubini1a087c62011-11-18 14:50:21 +010094 int nregs, void __iomem *base, char *prefix);
95
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +053096struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
97 struct dentry *parent,
98 u32 *array, u32 elements);
99
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100100bool debugfs_initialized(void);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#else
Roland Dreiera7a76ce2005-04-18 21:57:33 -0700103
104#include <linux/err.h>
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
108 * so users have a chance to detect if there was a real error or not. We don't
109 * want to duplicate the design decision mistakes of procfs and devfs again.
110 */
111
Al Virof4ae40a2011-07-24 04:33:43 -0400112static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
Jean Delvarebde11d72006-04-18 21:30:22 -0700113 struct dentry *parent, void *data,
114 const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 return ERR_PTR(-ENODEV);
117}
118
119static inline struct dentry *debugfs_create_dir(const char *name,
120 struct dentry *parent)
121{
122 return ERR_PTR(-ENODEV);
123}
124
Peter Oberparleiter66f54962007-02-13 12:13:54 +0100125static inline struct dentry *debugfs_create_symlink(const char *name,
126 struct dentry *parent,
127 const char *dest)
128{
129 return ERR_PTR(-ENODEV);
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static inline void debugfs_remove(struct dentry *dentry)
133{ }
134
Haavard Skinnemoen9505e632008-07-01 15:14:51 +0200135static inline void debugfs_remove_recursive(struct dentry *dentry)
136{ }
137
Jan Karacfc94cd2007-05-09 13:19:52 +0200138static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
139 struct dentry *new_dir, char *new_name)
140{
141 return ERR_PTR(-ENODEV);
142}
143
Al Virof4ae40a2011-07-24 04:33:43 -0400144static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct dentry *parent,
146 u8 *value)
147{
148 return ERR_PTR(-ENODEV);
149}
150
Al Virof4ae40a2011-07-24 04:33:43 -0400151static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700153 u16 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 return ERR_PTR(-ENODEV);
156}
157
Al Virof4ae40a2011-07-24 04:33:43 -0400158static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700160 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 return ERR_PTR(-ENODEV);
163}
164
Al Virof4ae40a2011-07-24 04:33:43 -0400165static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
Michael Ellerman84478912007-04-17 15:59:36 +1000166 struct dentry *parent,
167 u64 *value)
168{
169 return ERR_PTR(-ENODEV);
170}
171
Al Virof4ae40a2011-07-24 04:33:43 -0400172static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400173 struct dentry *parent,
174 u8 *value)
175{
176 return ERR_PTR(-ENODEV);
177}
178
Al Virof4ae40a2011-07-24 04:33:43 -0400179static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400180 struct dentry *parent,
181 u16 *value)
182{
183 return ERR_PTR(-ENODEV);
184}
185
Al Virof4ae40a2011-07-24 04:33:43 -0400186static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
Robin Getz2ebefc52007-08-02 18:23:50 -0400187 struct dentry *parent,
188 u32 *value)
189{
190 return ERR_PTR(-ENODEV);
191}
192
Al Virof4ae40a2011-07-24 04:33:43 -0400193static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
Inaky Perez-Gonzalez8adb7112009-01-20 12:17:28 -0800194 struct dentry *parent,
195 size_t *value)
196{
197 return ERR_PTR(-ENODEV);
198}
199
Al Virof4ae40a2011-07-24 04:33:43 -0400200static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct dentry *parent,
Michal Ostrowski7b558632005-04-18 21:57:34 -0700202 u32 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 return ERR_PTR(-ENODEV);
205}
206
Al Virof4ae40a2011-07-24 04:33:43 -0400207static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
Michael Ellermandd308bc2006-03-07 21:41:59 +1100208 struct dentry *parent,
209 struct debugfs_blob_wrapper *blob)
210{
211 return ERR_PTR(-ENODEV);
212}
213
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100214static inline struct dentry *debugfs_create_regset32(const char *name,
Al Viro88187392012-03-20 06:00:24 -0400215 umode_t mode, struct dentry *parent,
Alessandro Rubini1a087c62011-11-18 14:50:21 +0100216 struct debugfs_regset32 *regset)
217{
218 return ERR_PTR(-ENODEV);
219}
220
Frederic Weisbeckerc0f92ba2009-03-22 23:10:44 +0100221static inline bool debugfs_initialized(void)
222{
223 return false;
224}
225
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530226static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
227 struct dentry *parent,
228 u32 *array, u32 elements)
229{
230 return ERR_PTR(-ENODEV);
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif
234
235#endif