Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Randy Dunlap | 55dff49 | 2009-09-23 15:56:17 -0700 | [diff] [blame] | 12 | * See Documentation/DocBook/filesystems for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef _DEBUGFS_H_ |
| 16 | #define _DEBUGFS_H_ |
| 17 | |
| 18 | #include <linux/fs.h> |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 19 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Roland Dreier | a7a76ce | 2005-04-18 21:57:33 -0700 | [diff] [blame] | 21 | #include <linux/types.h> |
| 22 | |
Arend van Spriel | f30d0a8 | 2014-11-30 16:31:21 +0100 | [diff] [blame] | 23 | struct device; |
Roland Dreier | a7a76ce | 2005-04-18 21:57:33 -0700 | [diff] [blame] | 24 | struct file_operations; |
| 25 | |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 26 | struct debugfs_blob_wrapper { |
| 27 | void *data; |
| 28 | unsigned long size; |
| 29 | }; |
| 30 | |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 31 | struct debugfs_reg32 { |
| 32 | char *name; |
| 33 | unsigned long offset; |
| 34 | }; |
| 35 | |
| 36 | struct debugfs_regset32 { |
Felipe Balbi | 833d6e0 | 2013-01-18 22:40:32 +0200 | [diff] [blame] | 37 | const struct debugfs_reg32 *regs; |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 38 | int nregs; |
| 39 | void __iomem *base; |
| 40 | }; |
| 41 | |
venkatesh.pallipadi@intel.com | ae79cda | 2008-07-18 16:08:13 -0700 | [diff] [blame] | 42 | extern struct dentry *arch_debugfs_dir; |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #if defined(CONFIG_DEBUG_FS) |
Harvey Harrison | 3634634 | 2008-02-13 17:08:16 -0800 | [diff] [blame] | 45 | |
| 46 | /* declared over in file.c */ |
| 47 | extern const struct file_operations debugfs_file_operations; |
| 48 | extern const struct inode_operations debugfs_link_operations; |
| 49 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 50 | struct dentry *debugfs_create_file(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | struct dentry *parent, void *data, |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 52 | const struct file_operations *fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
David Howells | e59b4e9 | 2015-01-21 20:03:40 +0000 | [diff] [blame] | 54 | struct dentry *debugfs_create_file_size(const char *name, umode_t mode, |
| 55 | struct dentry *parent, void *data, |
| 56 | const struct file_operations *fops, |
| 57 | loff_t file_size); |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent); |
| 60 | |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 61 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, |
| 62 | const char *dest); |
| 63 | |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 64 | struct dentry *debugfs_create_automount(const char *name, |
| 65 | struct dentry *parent, |
| 66 | struct vfsmount *(*f)(void *), |
| 67 | void *data); |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | void debugfs_remove(struct dentry *dentry); |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 70 | void debugfs_remove_recursive(struct dentry *dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 72 | struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, |
| 73 | struct dentry *new_dir, const char *new_name); |
| 74 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 75 | struct dentry *debugfs_create_u8(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | struct dentry *parent, u8 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 77 | struct dentry *debugfs_create_u16(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | struct dentry *parent, u16 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 79 | struct dentry *debugfs_create_u32(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | struct dentry *parent, u32 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 81 | struct dentry *debugfs_create_u64(const char *name, umode_t mode, |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 82 | struct dentry *parent, u64 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 83 | struct dentry *debugfs_create_x8(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 84 | struct dentry *parent, u8 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 85 | struct dentry *debugfs_create_x16(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 86 | struct dentry *parent, u16 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 87 | struct dentry *debugfs_create_x32(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 88 | struct dentry *parent, u32 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 89 | struct dentry *debugfs_create_x64(const char *name, umode_t mode, |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 90 | struct dentry *parent, u64 *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 91 | struct dentry *debugfs_create_size_t(const char *name, umode_t mode, |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 92 | struct dentry *parent, size_t *value); |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 93 | struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode, |
| 94 | struct dentry *parent, atomic_t *value); |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 95 | struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | struct dentry *parent, u32 *value); |
| 97 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 98 | struct dentry *debugfs_create_blob(const char *name, umode_t mode, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 99 | struct dentry *parent, |
| 100 | struct debugfs_blob_wrapper *blob); |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 101 | |
Al Viro | 8818739 | 2012-03-20 06:00:24 -0400 | [diff] [blame] | 102 | struct dentry *debugfs_create_regset32(const char *name, umode_t mode, |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 103 | struct dentry *parent, |
| 104 | struct debugfs_regset32 *regset); |
| 105 | |
Joe Perches | 9761536 | 2014-09-29 16:08:26 -0700 | [diff] [blame] | 106 | void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs, |
| 107 | int nregs, void __iomem *base, char *prefix); |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 108 | |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 109 | struct dentry *debugfs_create_u32_array(const char *name, umode_t mode, |
| 110 | struct dentry *parent, |
| 111 | u32 *array, u32 elements); |
| 112 | |
Arend van Spriel | 98210b7 | 2014-11-09 11:31:58 +0100 | [diff] [blame] | 113 | struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name, |
| 114 | struct dentry *parent, |
| 115 | int (*read_fn)(struct seq_file *s, |
| 116 | void *data)); |
| 117 | |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 118 | bool debugfs_initialized(void); |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #else |
Roland Dreier | a7a76ce | 2005-04-18 21:57:33 -0700 | [diff] [blame] | 121 | |
| 122 | #include <linux/err.h> |
| 123 | |
Arend van Spriel | 98210b7 | 2014-11-09 11:31:58 +0100 | [diff] [blame] | 124 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled |
| 126 | * so users have a chance to detect if there was a real error or not. We don't |
| 127 | * want to duplicate the design decision mistakes of procfs and devfs again. |
| 128 | */ |
| 129 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 130 | static inline struct dentry *debugfs_create_file(const char *name, umode_t mode, |
Jean Delvare | bde11d7 | 2006-04-18 21:30:22 -0700 | [diff] [blame] | 131 | struct dentry *parent, void *data, |
| 132 | const struct file_operations *fops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
| 134 | return ERR_PTR(-ENODEV); |
| 135 | } |
| 136 | |
David Howells | e59b4e9 | 2015-01-21 20:03:40 +0000 | [diff] [blame] | 137 | static inline struct dentry *debugfs_create_file_size(const char *name, umode_t mode, |
| 138 | struct dentry *parent, void *data, |
| 139 | const struct file_operations *fops, |
| 140 | loff_t file_size) |
| 141 | { |
| 142 | return ERR_PTR(-ENODEV); |
| 143 | } |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | static inline struct dentry *debugfs_create_dir(const char *name, |
| 146 | struct dentry *parent) |
| 147 | { |
| 148 | return ERR_PTR(-ENODEV); |
| 149 | } |
| 150 | |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 151 | static inline struct dentry *debugfs_create_symlink(const char *name, |
| 152 | struct dentry *parent, |
| 153 | const char *dest) |
| 154 | { |
| 155 | return ERR_PTR(-ENODEV); |
| 156 | } |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | static inline void debugfs_remove(struct dentry *dentry) |
| 159 | { } |
| 160 | |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 161 | static inline void debugfs_remove_recursive(struct dentry *dentry) |
| 162 | { } |
| 163 | |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 164 | static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, |
| 165 | struct dentry *new_dir, char *new_name) |
| 166 | { |
| 167 | return ERR_PTR(-ENODEV); |
| 168 | } |
| 169 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 170 | static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | struct dentry *parent, |
| 172 | u8 *value) |
| 173 | { |
| 174 | return ERR_PTR(-ENODEV); |
| 175 | } |
| 176 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 177 | static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | struct dentry *parent, |
Michal Ostrowski | 7b55863 | 2005-04-18 21:57:34 -0700 | [diff] [blame] | 179 | u16 *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
| 181 | return ERR_PTR(-ENODEV); |
| 182 | } |
| 183 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 184 | static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | struct dentry *parent, |
Michal Ostrowski | 7b55863 | 2005-04-18 21:57:34 -0700 | [diff] [blame] | 186 | u32 *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 188 | return ERR_PTR(-ENODEV); |
| 189 | } |
| 190 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 191 | static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode, |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 192 | struct dentry *parent, |
| 193 | u64 *value) |
| 194 | { |
| 195 | return ERR_PTR(-ENODEV); |
| 196 | } |
| 197 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 198 | static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 199 | struct dentry *parent, |
| 200 | u8 *value) |
| 201 | { |
| 202 | return ERR_PTR(-ENODEV); |
| 203 | } |
| 204 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 205 | static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 206 | struct dentry *parent, |
| 207 | u16 *value) |
| 208 | { |
| 209 | return ERR_PTR(-ENODEV); |
| 210 | } |
| 211 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 212 | static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 213 | struct dentry *parent, |
| 214 | u32 *value) |
| 215 | { |
| 216 | return ERR_PTR(-ENODEV); |
| 217 | } |
| 218 | |
Johannes Berg | 3159269 | 2013-08-26 09:58:30 +0200 | [diff] [blame] | 219 | static inline struct dentry *debugfs_create_x64(const char *name, umode_t mode, |
| 220 | struct dentry *parent, |
| 221 | u64 *value) |
| 222 | { |
| 223 | return ERR_PTR(-ENODEV); |
| 224 | } |
| 225 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 226 | static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode, |
Inaky Perez-Gonzalez | 8adb711 | 2009-01-20 12:17:28 -0800 | [diff] [blame] | 227 | struct dentry *parent, |
| 228 | size_t *value) |
| 229 | { |
| 230 | return ERR_PTR(-ENODEV); |
| 231 | } |
| 232 | |
Weijie Yang | 5b88021 | 2013-09-27 17:09:07 +0800 | [diff] [blame] | 233 | static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode, |
| 234 | struct dentry *parent, atomic_t *value) |
| 235 | { |
| 236 | return ERR_PTR(-ENODEV); |
| 237 | } |
| 238 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 239 | static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | struct dentry *parent, |
Michal Ostrowski | 7b55863 | 2005-04-18 21:57:34 -0700 | [diff] [blame] | 241 | u32 *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
| 243 | return ERR_PTR(-ENODEV); |
| 244 | } |
| 245 | |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 246 | static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 247 | struct dentry *parent, |
| 248 | struct debugfs_blob_wrapper *blob) |
| 249 | { |
| 250 | return ERR_PTR(-ENODEV); |
| 251 | } |
| 252 | |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 253 | static inline struct dentry *debugfs_create_regset32(const char *name, |
Al Viro | 8818739 | 2012-03-20 06:00:24 -0400 | [diff] [blame] | 254 | umode_t mode, struct dentry *parent, |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 255 | struct debugfs_regset32 *regset) |
| 256 | { |
| 257 | return ERR_PTR(-ENODEV); |
| 258 | } |
| 259 | |
Joe Perches | 9761536 | 2014-09-29 16:08:26 -0700 | [diff] [blame] | 260 | static inline void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs, |
Weijie Yang | 5b88021 | 2013-09-27 17:09:07 +0800 | [diff] [blame] | 261 | int nregs, void __iomem *base, char *prefix) |
| 262 | { |
Weijie Yang | 5b88021 | 2013-09-27 17:09:07 +0800 | [diff] [blame] | 263 | } |
| 264 | |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 265 | static inline bool debugfs_initialized(void) |
| 266 | { |
| 267 | return false; |
| 268 | } |
| 269 | |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 270 | static inline struct dentry *debugfs_create_u32_array(const char *name, umode_t mode, |
| 271 | struct dentry *parent, |
| 272 | u32 *array, u32 elements) |
| 273 | { |
| 274 | return ERR_PTR(-ENODEV); |
| 275 | } |
| 276 | |
Arend van Spriel | 98210b7 | 2014-11-09 11:31:58 +0100 | [diff] [blame] | 277 | static inline struct dentry *debugfs_create_devm_seqfile(struct device *dev, |
| 278 | const char *name, |
| 279 | struct dentry *parent, |
| 280 | int (*read_fn)(struct seq_file *s, |
| 281 | void *data)) |
| 282 | { |
| 283 | return ERR_PTR(-ENODEV); |
| 284 | } |
| 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | #endif |
| 287 | |
| 288 | #endif |