Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * file.c - part of debugfs, 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. |
Robert P. J. Day | 883ce42 | 2008-04-25 08:52:51 -0400 | [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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
| 17 | #include <linux/fs.h> |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 18 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/pagemap.h> |
| 20 | #include <linux/debugfs.h> |
Alessandro Rubini | 03e099f | 2011-11-21 10:01:40 +0100 | [diff] [blame] | 21 | #include <linux/io.h> |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 22 | #include <linux/slab.h> |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 23 | #include <linux/atomic.h> |
Arend van Spriel | 98210b7 | 2014-11-09 11:31:58 +0100 | [diff] [blame] | 24 | #include <linux/device.h> |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 25 | #include <linux/srcu.h> |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 26 | #include <asm/poll.h> |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 27 | |
| 28 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 30 | struct poll_table_struct; |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | static ssize_t default_read_file(struct file *file, char __user *buf, |
| 33 | size_t count, loff_t *ppos) |
| 34 | { |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | static ssize_t default_write_file(struct file *file, const char __user *buf, |
| 39 | size_t count, loff_t *ppos) |
| 40 | { |
| 41 | return count; |
| 42 | } |
| 43 | |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 44 | const struct file_operations debugfs_noop_file_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | .read = default_read_file, |
| 46 | .write = default_write_file, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 47 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 48 | .llseek = noop_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 51 | /** |
| 52 | * debugfs_use_file_start - mark the beginning of file data access |
| 53 | * @dentry: the dentry object whose data is being accessed. |
| 54 | * @srcu_idx: a pointer to some memory to store a SRCU index in. |
| 55 | * |
| 56 | * Up to a matching call to debugfs_use_file_finish(), any |
| 57 | * successive call into the file removing functions debugfs_remove() |
| 58 | * and debugfs_remove_recursive() will block. Since associated private |
| 59 | * file data may only get freed after a successful return of any of |
| 60 | * the removal functions, you may safely access it after a successful |
| 61 | * call to debugfs_use_file_start() without worrying about |
| 62 | * lifetime issues. |
| 63 | * |
| 64 | * If -%EIO is returned, the file has already been removed and thus, |
| 65 | * it is not safe to access any of its data. If, on the other hand, |
| 66 | * it is allowed to access the file data, zero is returned. |
| 67 | * |
| 68 | * Regardless of the return code, any call to |
| 69 | * debugfs_use_file_start() must be followed by a matching call |
| 70 | * to debugfs_use_file_finish(). |
| 71 | */ |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 72 | int debugfs_use_file_start(const struct dentry *dentry, int *srcu_idx) |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 73 | __acquires(&debugfs_srcu) |
| 74 | { |
| 75 | *srcu_idx = srcu_read_lock(&debugfs_srcu); |
| 76 | barrier(); |
| 77 | if (d_unlinked(dentry)) |
| 78 | return -EIO; |
| 79 | return 0; |
| 80 | } |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 81 | EXPORT_SYMBOL_GPL(debugfs_use_file_start); |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 82 | |
| 83 | /** |
| 84 | * debugfs_use_file_finish - mark the end of file data access |
| 85 | * @srcu_idx: the SRCU index "created" by a former call to |
| 86 | * debugfs_use_file_start(). |
| 87 | * |
| 88 | * Allow any ongoing concurrent call into debugfs_remove() or |
| 89 | * debugfs_remove_recursive() blocked by a former call to |
| 90 | * debugfs_use_file_start() to proceed and return to its caller. |
| 91 | */ |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 92 | void debugfs_use_file_finish(int srcu_idx) __releases(&debugfs_srcu) |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 93 | { |
| 94 | srcu_read_unlock(&debugfs_srcu, srcu_idx); |
| 95 | } |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 96 | EXPORT_SYMBOL_GPL(debugfs_use_file_finish); |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 97 | |
| 98 | #define F_DENTRY(filp) ((filp)->f_path.dentry) |
| 99 | |
| 100 | #define REAL_FOPS_DEREF(dentry) \ |
| 101 | ((const struct file_operations *)(dentry)->d_fsdata) |
| 102 | |
| 103 | static int open_proxy_open(struct inode *inode, struct file *filp) |
| 104 | { |
| 105 | const struct dentry *dentry = F_DENTRY(filp); |
| 106 | const struct file_operations *real_fops = NULL; |
| 107 | int srcu_idx, r; |
| 108 | |
| 109 | r = debugfs_use_file_start(dentry, &srcu_idx); |
| 110 | if (r) { |
| 111 | r = -ENOENT; |
| 112 | goto out; |
| 113 | } |
| 114 | |
| 115 | real_fops = REAL_FOPS_DEREF(dentry); |
| 116 | real_fops = fops_get(real_fops); |
| 117 | if (!real_fops) { |
| 118 | /* Huh? Module did not clean up after itself at exit? */ |
| 119 | WARN(1, "debugfs file owner did not clean up at exit: %pd", |
| 120 | dentry); |
| 121 | r = -ENXIO; |
| 122 | goto out; |
| 123 | } |
| 124 | replace_fops(filp, real_fops); |
| 125 | |
| 126 | if (real_fops->open) |
| 127 | r = real_fops->open(inode, filp); |
| 128 | |
| 129 | out: |
| 130 | fops_put(real_fops); |
| 131 | debugfs_use_file_finish(srcu_idx); |
| 132 | return r; |
| 133 | } |
| 134 | |
| 135 | const struct file_operations debugfs_open_proxy_file_operations = { |
| 136 | .open = open_proxy_open, |
| 137 | }; |
| 138 | |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 139 | #define PROTO(args...) args |
| 140 | #define ARGS(args...) args |
| 141 | |
| 142 | #define FULL_PROXY_FUNC(name, ret_type, filp, proto, args) \ |
| 143 | static ret_type full_proxy_ ## name(proto) \ |
| 144 | { \ |
| 145 | const struct dentry *dentry = F_DENTRY(filp); \ |
| 146 | const struct file_operations *real_fops = \ |
| 147 | REAL_FOPS_DEREF(dentry); \ |
| 148 | int srcu_idx; \ |
| 149 | ret_type r; \ |
| 150 | \ |
| 151 | r = debugfs_use_file_start(dentry, &srcu_idx); \ |
| 152 | if (likely(!r)) \ |
| 153 | r = real_fops->name(args); \ |
| 154 | debugfs_use_file_finish(srcu_idx); \ |
| 155 | return r; \ |
| 156 | } |
| 157 | |
| 158 | FULL_PROXY_FUNC(llseek, loff_t, filp, |
| 159 | PROTO(struct file *filp, loff_t offset, int whence), |
| 160 | ARGS(filp, offset, whence)); |
| 161 | |
| 162 | FULL_PROXY_FUNC(read, ssize_t, filp, |
| 163 | PROTO(struct file *filp, char __user *buf, size_t size, |
| 164 | loff_t *ppos), |
| 165 | ARGS(filp, buf, size, ppos)); |
| 166 | |
| 167 | FULL_PROXY_FUNC(write, ssize_t, filp, |
| 168 | PROTO(struct file *filp, const char __user *buf, size_t size, |
| 169 | loff_t *ppos), |
| 170 | ARGS(filp, buf, size, ppos)); |
| 171 | |
| 172 | FULL_PROXY_FUNC(unlocked_ioctl, long, filp, |
| 173 | PROTO(struct file *filp, unsigned int cmd, unsigned long arg), |
| 174 | ARGS(filp, cmd, arg)); |
| 175 | |
| 176 | static unsigned int full_proxy_poll(struct file *filp, |
| 177 | struct poll_table_struct *wait) |
| 178 | { |
| 179 | const struct dentry *dentry = F_DENTRY(filp); |
| 180 | const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry); |
| 181 | int srcu_idx; |
| 182 | unsigned int r = 0; |
| 183 | |
| 184 | if (debugfs_use_file_start(dentry, &srcu_idx)) { |
| 185 | debugfs_use_file_finish(srcu_idx); |
| 186 | return POLLHUP; |
| 187 | } |
| 188 | |
| 189 | r = real_fops->poll(filp, wait); |
| 190 | debugfs_use_file_finish(srcu_idx); |
| 191 | return r; |
| 192 | } |
| 193 | |
| 194 | static int full_proxy_release(struct inode *inode, struct file *filp) |
| 195 | { |
| 196 | const struct dentry *dentry = F_DENTRY(filp); |
| 197 | const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry); |
| 198 | const struct file_operations *proxy_fops = filp->f_op; |
| 199 | int r = 0; |
| 200 | |
| 201 | /* |
| 202 | * We must not protect this against removal races here: the |
| 203 | * original releaser should be called unconditionally in order |
| 204 | * not to leak any resources. Releasers must not assume that |
| 205 | * ->i_private is still being meaningful here. |
| 206 | */ |
| 207 | if (real_fops->release) |
| 208 | r = real_fops->release(inode, filp); |
| 209 | |
| 210 | replace_fops(filp, d_inode(dentry)->i_fop); |
| 211 | kfree((void *)proxy_fops); |
| 212 | fops_put(real_fops); |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static void __full_proxy_fops_init(struct file_operations *proxy_fops, |
| 217 | const struct file_operations *real_fops) |
| 218 | { |
| 219 | proxy_fops->release = full_proxy_release; |
| 220 | if (real_fops->llseek) |
| 221 | proxy_fops->llseek = full_proxy_llseek; |
| 222 | if (real_fops->read) |
| 223 | proxy_fops->read = full_proxy_read; |
| 224 | if (real_fops->write) |
| 225 | proxy_fops->write = full_proxy_write; |
| 226 | if (real_fops->poll) |
| 227 | proxy_fops->poll = full_proxy_poll; |
| 228 | if (real_fops->unlocked_ioctl) |
| 229 | proxy_fops->unlocked_ioctl = full_proxy_unlocked_ioctl; |
| 230 | } |
| 231 | |
| 232 | static int full_proxy_open(struct inode *inode, struct file *filp) |
| 233 | { |
| 234 | const struct dentry *dentry = F_DENTRY(filp); |
| 235 | const struct file_operations *real_fops = NULL; |
| 236 | struct file_operations *proxy_fops = NULL; |
| 237 | int srcu_idx, r; |
| 238 | |
| 239 | r = debugfs_use_file_start(dentry, &srcu_idx); |
| 240 | if (r) { |
| 241 | r = -ENOENT; |
| 242 | goto out; |
| 243 | } |
| 244 | |
| 245 | real_fops = REAL_FOPS_DEREF(dentry); |
| 246 | real_fops = fops_get(real_fops); |
| 247 | if (!real_fops) { |
| 248 | /* Huh? Module did not cleanup after itself at exit? */ |
| 249 | WARN(1, "debugfs file owner did not clean up at exit: %pd", |
| 250 | dentry); |
| 251 | r = -ENXIO; |
| 252 | goto out; |
| 253 | } |
| 254 | |
| 255 | proxy_fops = kzalloc(sizeof(*proxy_fops), GFP_KERNEL); |
| 256 | if (!proxy_fops) { |
| 257 | r = -ENOMEM; |
| 258 | goto free_proxy; |
| 259 | } |
| 260 | __full_proxy_fops_init(proxy_fops, real_fops); |
| 261 | replace_fops(filp, proxy_fops); |
| 262 | |
| 263 | if (real_fops->open) { |
| 264 | r = real_fops->open(inode, filp); |
| 265 | |
| 266 | if (filp->f_op != proxy_fops) { |
| 267 | /* No protection against file removal anymore. */ |
| 268 | WARN(1, "debugfs file owner replaced proxy fops: %pd", |
| 269 | dentry); |
| 270 | goto free_proxy; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | goto out; |
| 275 | free_proxy: |
| 276 | kfree(proxy_fops); |
| 277 | fops_put(real_fops); |
| 278 | out: |
| 279 | debugfs_use_file_finish(srcu_idx); |
| 280 | return r; |
| 281 | } |
| 282 | |
| 283 | const struct file_operations debugfs_full_proxy_file_operations = { |
| 284 | .open = full_proxy_open, |
| 285 | }; |
| 286 | |
Nicolai Stange | c646880 | 2016-03-22 14:11:15 +0100 | [diff] [blame] | 287 | ssize_t debugfs_attr_read(struct file *file, char __user *buf, |
| 288 | size_t len, loff_t *ppos) |
| 289 | { |
| 290 | ssize_t ret; |
| 291 | int srcu_idx; |
| 292 | |
| 293 | ret = debugfs_use_file_start(F_DENTRY(file), &srcu_idx); |
| 294 | if (likely(!ret)) |
| 295 | ret = simple_attr_read(file, buf, len, ppos); |
| 296 | debugfs_use_file_finish(srcu_idx); |
| 297 | return ret; |
| 298 | } |
| 299 | EXPORT_SYMBOL_GPL(debugfs_attr_read); |
| 300 | |
| 301 | ssize_t debugfs_attr_write(struct file *file, const char __user *buf, |
| 302 | size_t len, loff_t *ppos) |
| 303 | { |
| 304 | ssize_t ret; |
| 305 | int srcu_idx; |
| 306 | |
| 307 | ret = debugfs_use_file_start(F_DENTRY(file), &srcu_idx); |
| 308 | if (likely(!ret)) |
| 309 | ret = simple_attr_write(file, buf, len, ppos); |
| 310 | debugfs_use_file_finish(srcu_idx); |
| 311 | return ret; |
| 312 | } |
| 313 | EXPORT_SYMBOL_GPL(debugfs_attr_write); |
| 314 | |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 315 | static struct dentry *debugfs_create_mode_unsafe(const char *name, umode_t mode, |
| 316 | struct dentry *parent, void *value, |
| 317 | const struct file_operations *fops, |
| 318 | const struct file_operations *fops_ro, |
| 319 | const struct file_operations *fops_wo) |
| 320 | { |
| 321 | /* if there are no write bits set, make read only */ |
| 322 | if (!(mode & S_IWUGO)) |
| 323 | return debugfs_create_file_unsafe(name, mode, parent, value, |
| 324 | fops_ro); |
| 325 | /* if there are no read bits set, make write only */ |
| 326 | if (!(mode & S_IRUGO)) |
| 327 | return debugfs_create_file_unsafe(name, mode, parent, value, |
| 328 | fops_wo); |
| 329 | |
| 330 | return debugfs_create_file_unsafe(name, mode, parent, value, fops); |
| 331 | } |
| 332 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 333 | static int debugfs_u8_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 334 | { |
| 335 | *(u8 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 336 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 337 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 338 | static int debugfs_u8_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 339 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 340 | *val = *(u8 *)data; |
| 341 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 342 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 343 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u8, debugfs_u8_get, debugfs_u8_set, "%llu\n"); |
| 344 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u8_ro, debugfs_u8_get, NULL, "%llu\n"); |
| 345 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u8_wo, NULL, debugfs_u8_set, "%llu\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
| 347 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 348 | * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | * @name: a pointer to a string containing the name of the file to create. |
| 350 | * @mode: the permission that the file should have |
| 351 | * @parent: a pointer to the parent dentry for this file. This should be a |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 352 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | * file will be created in the root of the debugfs filesystem. |
| 354 | * @value: a pointer to the variable that the file should read to and write |
| 355 | * from. |
| 356 | * |
| 357 | * This function creates a file in debugfs with the given name that |
| 358 | * contains the value of the variable @value. If the @mode variable is so |
| 359 | * set, it can be read from, and written to. |
| 360 | * |
| 361 | * This function will return a pointer to a dentry if it succeeds. This |
| 362 | * pointer must be passed to the debugfs_remove() function when the file is |
| 363 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 364 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 366 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | * returned. It is not wise to check for this value, but rather, check for |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 368 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | * code. |
| 370 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 371 | struct dentry *debugfs_create_u8(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | struct dentry *parent, u8 *value) |
| 373 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 374 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u8, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 375 | &fops_u8_ro, &fops_u8_wo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | EXPORT_SYMBOL_GPL(debugfs_create_u8); |
| 378 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 379 | static int debugfs_u16_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 380 | { |
| 381 | *(u16 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 382 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 383 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 384 | static int debugfs_u16_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 385 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 386 | *val = *(u16 *)data; |
| 387 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 388 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 389 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u16, debugfs_u16_get, debugfs_u16_set, "%llu\n"); |
| 390 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u16_ro, debugfs_u16_get, NULL, "%llu\n"); |
| 391 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u16_wo, NULL, debugfs_u16_set, "%llu\n"); |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 394 | * debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | * @name: a pointer to a string containing the name of the file to create. |
| 396 | * @mode: the permission that the file should have |
| 397 | * @parent: a pointer to the parent dentry for this file. This should be a |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 398 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | * file will be created in the root of the debugfs filesystem. |
| 400 | * @value: a pointer to the variable that the file should read to and write |
| 401 | * from. |
| 402 | * |
| 403 | * This function creates a file in debugfs with the given name that |
| 404 | * contains the value of the variable @value. If the @mode variable is so |
| 405 | * set, it can be read from, and written to. |
| 406 | * |
| 407 | * This function will return a pointer to a dentry if it succeeds. This |
| 408 | * pointer must be passed to the debugfs_remove() function when the file is |
| 409 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 410 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 412 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | * returned. It is not wise to check for this value, but rather, check for |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 414 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | * code. |
| 416 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 417 | struct dentry *debugfs_create_u16(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | struct dentry *parent, u16 *value) |
| 419 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 420 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u16, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 421 | &fops_u16_ro, &fops_u16_wo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | EXPORT_SYMBOL_GPL(debugfs_create_u16); |
| 424 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 425 | static int debugfs_u32_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 426 | { |
| 427 | *(u32 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 428 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 429 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 430 | static int debugfs_u32_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 431 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 432 | *val = *(u32 *)data; |
| 433 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 434 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 435 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u32, debugfs_u32_get, debugfs_u32_set, "%llu\n"); |
| 436 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u32_ro, debugfs_u32_get, NULL, "%llu\n"); |
| 437 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u32_wo, NULL, debugfs_u32_set, "%llu\n"); |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 440 | * debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | * @name: a pointer to a string containing the name of the file to create. |
| 442 | * @mode: the permission that the file should have |
| 443 | * @parent: a pointer to the parent dentry for this file. This should be a |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 444 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | * file will be created in the root of the debugfs filesystem. |
| 446 | * @value: a pointer to the variable that the file should read to and write |
| 447 | * from. |
| 448 | * |
| 449 | * This function creates a file in debugfs with the given name that |
| 450 | * contains the value of the variable @value. If the @mode variable is so |
| 451 | * set, it can be read from, and written to. |
| 452 | * |
| 453 | * This function will return a pointer to a dentry if it succeeds. This |
| 454 | * pointer must be passed to the debugfs_remove() function when the file is |
| 455 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 456 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 458 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | * returned. It is not wise to check for this value, but rather, check for |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 460 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | * code. |
| 462 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 463 | struct dentry *debugfs_create_u32(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | struct dentry *parent, u32 *value) |
| 465 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 466 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u32, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 467 | &fops_u32_ro, &fops_u32_wo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | EXPORT_SYMBOL_GPL(debugfs_create_u32); |
| 470 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 471 | static int debugfs_u64_set(void *data, u64 val) |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 472 | { |
| 473 | *(u64 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 474 | return 0; |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 475 | } |
| 476 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 477 | static int debugfs_u64_get(void *data, u64 *val) |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 478 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 479 | *val = *(u64 *)data; |
| 480 | return 0; |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 481 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 482 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u64, debugfs_u64_get, debugfs_u64_set, "%llu\n"); |
| 483 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u64_ro, debugfs_u64_get, NULL, "%llu\n"); |
| 484 | DEFINE_DEBUGFS_ATTRIBUTE(fops_u64_wo, NULL, debugfs_u64_set, "%llu\n"); |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 485 | |
| 486 | /** |
| 487 | * debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit value |
| 488 | * @name: a pointer to a string containing the name of the file to create. |
| 489 | * @mode: the permission that the file should have |
| 490 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 491 | * directory dentry if set. If this parameter is %NULL, then the |
| 492 | * file will be created in the root of the debugfs filesystem. |
| 493 | * @value: a pointer to the variable that the file should read to and write |
| 494 | * from. |
| 495 | * |
| 496 | * This function creates a file in debugfs with the given name that |
| 497 | * contains the value of the variable @value. If the @mode variable is so |
| 498 | * set, it can be read from, and written to. |
| 499 | * |
| 500 | * This function will return a pointer to a dentry if it succeeds. This |
| 501 | * pointer must be passed to the debugfs_remove() function when the file is |
| 502 | * to be removed (no automatic cleanup happens if your module is unloaded, |
| 503 | * you are responsible here.) If an error occurs, %NULL will be returned. |
| 504 | * |
| 505 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 506 | * returned. It is not wise to check for this value, but rather, check for |
| 507 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
| 508 | * code. |
| 509 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 510 | struct dentry *debugfs_create_u64(const char *name, umode_t mode, |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 511 | struct dentry *parent, u64 *value) |
| 512 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 513 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u64, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 514 | &fops_u64_ro, &fops_u64_wo); |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 515 | } |
| 516 | EXPORT_SYMBOL_GPL(debugfs_create_u64); |
| 517 | |
Viresh Kumar | c23fe83 | 2015-10-18 22:43:19 +0530 | [diff] [blame] | 518 | static int debugfs_ulong_set(void *data, u64 val) |
| 519 | { |
| 520 | *(unsigned long *)data = val; |
| 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | static int debugfs_ulong_get(void *data, u64 *val) |
| 525 | { |
| 526 | *val = *(unsigned long *)data; |
| 527 | return 0; |
| 528 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 529 | DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong, debugfs_ulong_get, debugfs_ulong_set, |
| 530 | "%llu\n"); |
| 531 | DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong_ro, debugfs_ulong_get, NULL, "%llu\n"); |
| 532 | DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong_wo, NULL, debugfs_ulong_set, "%llu\n"); |
Viresh Kumar | c23fe83 | 2015-10-18 22:43:19 +0530 | [diff] [blame] | 533 | |
| 534 | /** |
| 535 | * debugfs_create_ulong - create a debugfs file that is used to read and write |
| 536 | * an unsigned long value. |
| 537 | * @name: a pointer to a string containing the name of the file to create. |
| 538 | * @mode: the permission that the file should have |
| 539 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 540 | * directory dentry if set. If this parameter is %NULL, then the |
| 541 | * file will be created in the root of the debugfs filesystem. |
| 542 | * @value: a pointer to the variable that the file should read to and write |
| 543 | * from. |
| 544 | * |
| 545 | * This function creates a file in debugfs with the given name that |
| 546 | * contains the value of the variable @value. If the @mode variable is so |
| 547 | * set, it can be read from, and written to. |
| 548 | * |
| 549 | * This function will return a pointer to a dentry if it succeeds. This |
| 550 | * pointer must be passed to the debugfs_remove() function when the file is |
| 551 | * to be removed (no automatic cleanup happens if your module is unloaded, |
| 552 | * you are responsible here.) If an error occurs, %NULL will be returned. |
| 553 | * |
| 554 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 555 | * returned. It is not wise to check for this value, but rather, check for |
| 556 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
| 557 | * code. |
| 558 | */ |
| 559 | struct dentry *debugfs_create_ulong(const char *name, umode_t mode, |
| 560 | struct dentry *parent, unsigned long *value) |
| 561 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 562 | return debugfs_create_mode_unsafe(name, mode, parent, value, |
| 563 | &fops_ulong, &fops_ulong_ro, |
| 564 | &fops_ulong_wo); |
Viresh Kumar | c23fe83 | 2015-10-18 22:43:19 +0530 | [diff] [blame] | 565 | } |
| 566 | EXPORT_SYMBOL_GPL(debugfs_create_ulong); |
| 567 | |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 568 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x8, debugfs_u8_get, debugfs_u8_set, "0x%02llx\n"); |
| 569 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x8_ro, debugfs_u8_get, NULL, "0x%02llx\n"); |
| 570 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x8_wo, NULL, debugfs_u8_set, "0x%02llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 571 | |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 572 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x16, debugfs_u16_get, debugfs_u16_set, |
| 573 | "0x%04llx\n"); |
| 574 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x16_ro, debugfs_u16_get, NULL, "0x%04llx\n"); |
| 575 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x16_wo, NULL, debugfs_u16_set, "0x%04llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 576 | |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 577 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x32, debugfs_u32_get, debugfs_u32_set, |
| 578 | "0x%08llx\n"); |
| 579 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x32_ro, debugfs_u32_get, NULL, "0x%08llx\n"); |
| 580 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x32_wo, NULL, debugfs_u32_set, "0x%08llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 581 | |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 582 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x64, debugfs_u64_get, debugfs_u64_set, |
| 583 | "0x%016llx\n"); |
| 584 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x64_ro, debugfs_u64_get, NULL, "0x%016llx\n"); |
| 585 | DEFINE_DEBUGFS_ATTRIBUTE(fops_x64_wo, NULL, debugfs_u64_set, "0x%016llx\n"); |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 586 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 587 | /* |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 588 | * debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned {8,16,32,64}-bit value |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 589 | * |
| 590 | * These functions are exactly the same as the above functions (but use a hex |
| 591 | * output for the decimal challenged). For details look at the above unsigned |
| 592 | * decimal functions. |
| 593 | */ |
| 594 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 595 | /** |
| 596 | * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 597 | * @name: a pointer to a string containing the name of the file to create. |
| 598 | * @mode: the permission that the file should have |
| 599 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 600 | * directory dentry if set. If this parameter is %NULL, then the |
| 601 | * file will be created in the root of the debugfs filesystem. |
| 602 | * @value: a pointer to the variable that the file should read to and write |
| 603 | * from. |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 604 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 605 | struct dentry *debugfs_create_x8(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 606 | struct dentry *parent, u8 *value) |
| 607 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 608 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x8, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 609 | &fops_x8_ro, &fops_x8_wo); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 610 | } |
| 611 | EXPORT_SYMBOL_GPL(debugfs_create_x8); |
| 612 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 613 | /** |
| 614 | * debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit value |
| 615 | * @name: a pointer to a string containing the name of the file to create. |
| 616 | * @mode: the permission that the file should have |
| 617 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 618 | * directory dentry if set. If this parameter is %NULL, then the |
| 619 | * file will be created in the root of the debugfs filesystem. |
| 620 | * @value: a pointer to the variable that the file should read to and write |
| 621 | * from. |
| 622 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 623 | struct dentry *debugfs_create_x16(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 624 | struct dentry *parent, u16 *value) |
| 625 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 626 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x16, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 627 | &fops_x16_ro, &fops_x16_wo); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 628 | } |
| 629 | EXPORT_SYMBOL_GPL(debugfs_create_x16); |
| 630 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 631 | /** |
| 632 | * debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit value |
| 633 | * @name: a pointer to a string containing the name of the file to create. |
| 634 | * @mode: the permission that the file should have |
| 635 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 636 | * directory dentry if set. If this parameter is %NULL, then the |
| 637 | * file will be created in the root of the debugfs filesystem. |
| 638 | * @value: a pointer to the variable that the file should read to and write |
| 639 | * from. |
| 640 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 641 | struct dentry *debugfs_create_x32(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 642 | struct dentry *parent, u32 *value) |
| 643 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 644 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x32, |
Stephen Boyd | b97f679 | 2015-10-12 18:09:09 -0700 | [diff] [blame] | 645 | &fops_x32_ro, &fops_x32_wo); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 646 | } |
| 647 | EXPORT_SYMBOL_GPL(debugfs_create_x32); |
| 648 | |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 649 | /** |
| 650 | * debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit value |
| 651 | * @name: a pointer to a string containing the name of the file to create. |
| 652 | * @mode: the permission that the file should have |
| 653 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 654 | * directory dentry if set. If this parameter is %NULL, then the |
| 655 | * file will be created in the root of the debugfs filesystem. |
| 656 | * @value: a pointer to the variable that the file should read to and write |
| 657 | * from. |
| 658 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 659 | struct dentry *debugfs_create_x64(const char *name, umode_t mode, |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 660 | struct dentry *parent, u64 *value) |
| 661 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 662 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x64, |
Stephen Boyd | 82b7d4f | 2015-10-12 18:09:10 -0700 | [diff] [blame] | 663 | &fops_x64_ro, &fops_x64_wo); |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 664 | } |
| 665 | EXPORT_SYMBOL_GPL(debugfs_create_x64); |
| 666 | |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 667 | |
| 668 | static int debugfs_size_t_set(void *data, u64 val) |
| 669 | { |
| 670 | *(size_t *)data = val; |
| 671 | return 0; |
| 672 | } |
| 673 | static int debugfs_size_t_get(void *data, u64 *val) |
| 674 | { |
| 675 | *val = *(size_t *)data; |
| 676 | return 0; |
| 677 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 678 | DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t, debugfs_size_t_get, debugfs_size_t_set, |
| 679 | "%llu\n"); /* %llu and %zu are more or less the same */ |
| 680 | DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t_ro, debugfs_size_t_get, NULL, "%llu\n"); |
| 681 | DEFINE_DEBUGFS_ATTRIBUTE(fops_size_t_wo, NULL, debugfs_size_t_set, "%llu\n"); |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 682 | |
| 683 | /** |
| 684 | * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value |
| 685 | * @name: a pointer to a string containing the name of the file to create. |
| 686 | * @mode: the permission that the file should have |
| 687 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 688 | * directory dentry if set. If this parameter is %NULL, then the |
| 689 | * file will be created in the root of the debugfs filesystem. |
| 690 | * @value: a pointer to the variable that the file should read to and write |
| 691 | * from. |
| 692 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 693 | 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] | 694 | struct dentry *parent, size_t *value) |
| 695 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 696 | return debugfs_create_mode_unsafe(name, mode, parent, value, |
| 697 | &fops_size_t, &fops_size_t_ro, |
| 698 | &fops_size_t_wo); |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 699 | } |
| 700 | EXPORT_SYMBOL_GPL(debugfs_create_size_t); |
| 701 | |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 702 | static int debugfs_atomic_t_set(void *data, u64 val) |
| 703 | { |
| 704 | atomic_set((atomic_t *)data, val); |
| 705 | return 0; |
| 706 | } |
| 707 | static int debugfs_atomic_t_get(void *data, u64 *val) |
| 708 | { |
| 709 | *val = atomic_read((atomic_t *)data); |
| 710 | return 0; |
| 711 | } |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 712 | DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t, debugfs_atomic_t_get, |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 713 | debugfs_atomic_t_set, "%lld\n"); |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 714 | DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t_ro, debugfs_atomic_t_get, NULL, |
| 715 | "%lld\n"); |
| 716 | DEFINE_DEBUGFS_ATTRIBUTE(fops_atomic_t_wo, NULL, debugfs_atomic_t_set, |
| 717 | "%lld\n"); |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 718 | |
| 719 | /** |
| 720 | * debugfs_create_atomic_t - create a debugfs file that is used to read and |
| 721 | * write an atomic_t value |
| 722 | * @name: a pointer to a string containing the name of the file to create. |
| 723 | * @mode: the permission that the file should have |
| 724 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 725 | * directory dentry if set. If this parameter is %NULL, then the |
| 726 | * file will be created in the root of the debugfs filesystem. |
| 727 | * @value: a pointer to the variable that the file should read to and write |
| 728 | * from. |
| 729 | */ |
| 730 | struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode, |
| 731 | struct dentry *parent, atomic_t *value) |
| 732 | { |
Nicolai Stange | 4909f16 | 2016-03-22 14:11:17 +0100 | [diff] [blame] | 733 | return debugfs_create_mode_unsafe(name, mode, parent, value, |
| 734 | &fops_atomic_t, &fops_atomic_t_ro, |
| 735 | &fops_atomic_t_wo); |
Seth Jennings | 3a76e5e | 2013-06-03 15:33:02 -0500 | [diff] [blame] | 736 | } |
| 737 | EXPORT_SYMBOL_GPL(debugfs_create_atomic_t); |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 738 | |
Richard Fitzgerald | 0642ef6 | 2015-06-23 14:32:54 +0100 | [diff] [blame] | 739 | ssize_t debugfs_read_file_bool(struct file *file, char __user *user_buf, |
| 740 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { |
| 742 | char buf[3]; |
Nicolai Stange | 4d45f79 | 2016-03-22 14:11:18 +0100 | [diff] [blame^] | 743 | bool val; |
| 744 | int r, srcu_idx; |
Rahul Bedarkar | 88e412e | 2014-06-06 23:12:04 +0530 | [diff] [blame] | 745 | |
Nicolai Stange | 4d45f79 | 2016-03-22 14:11:18 +0100 | [diff] [blame^] | 746 | r = debugfs_use_file_start(F_DENTRY(file), &srcu_idx); |
| 747 | if (likely(!r)) |
| 748 | val = *(bool *)file->private_data; |
| 749 | debugfs_use_file_finish(srcu_idx); |
| 750 | if (r) |
| 751 | return r; |
| 752 | |
| 753 | if (val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | buf[0] = 'Y'; |
| 755 | else |
| 756 | buf[0] = 'N'; |
| 757 | buf[1] = '\n'; |
| 758 | buf[2] = 0x00; |
| 759 | return simple_read_from_buffer(user_buf, count, ppos, buf, 2); |
| 760 | } |
Richard Fitzgerald | 0642ef6 | 2015-06-23 14:32:54 +0100 | [diff] [blame] | 761 | EXPORT_SYMBOL_GPL(debugfs_read_file_bool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
Richard Fitzgerald | 0642ef6 | 2015-06-23 14:32:54 +0100 | [diff] [blame] | 763 | ssize_t debugfs_write_file_bool(struct file *file, const char __user *user_buf, |
| 764 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | { |
| 766 | char buf[32]; |
Stephen Boyd | c42d223 | 2011-05-12 16:50:07 -0700 | [diff] [blame] | 767 | size_t buf_size; |
Jonathan Cameron | 8705b48 | 2011-04-19 12:43:46 +0100 | [diff] [blame] | 768 | bool bv; |
Nicolai Stange | 4d45f79 | 2016-03-22 14:11:18 +0100 | [diff] [blame^] | 769 | int r, srcu_idx; |
Viresh Kumar | 621a5f7 | 2015-09-26 15:04:07 -0700 | [diff] [blame] | 770 | bool *val = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
| 772 | buf_size = min(count, (sizeof(buf)-1)); |
| 773 | if (copy_from_user(buf, user_buf, buf_size)) |
| 774 | return -EFAULT; |
| 775 | |
Mathias Krause | a3b2c8c7 | 2013-05-31 23:24:29 +0200 | [diff] [blame] | 776 | buf[buf_size] = '\0'; |
Nicolai Stange | 4d45f79 | 2016-03-22 14:11:18 +0100 | [diff] [blame^] | 777 | if (strtobool(buf, &bv) == 0) { |
| 778 | r = debugfs_use_file_start(F_DENTRY(file), &srcu_idx); |
| 779 | if (likely(!r)) |
| 780 | *val = bv; |
| 781 | debugfs_use_file_finish(srcu_idx); |
| 782 | if (r) |
| 783 | return r; |
| 784 | } |
Jonathan Cameron | 8705b48 | 2011-04-19 12:43:46 +0100 | [diff] [blame] | 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | return count; |
| 787 | } |
Richard Fitzgerald | 0642ef6 | 2015-06-23 14:32:54 +0100 | [diff] [blame] | 788 | EXPORT_SYMBOL_GPL(debugfs_write_file_bool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 790 | static const struct file_operations fops_bool = { |
Richard Fitzgerald | 0642ef6 | 2015-06-23 14:32:54 +0100 | [diff] [blame] | 791 | .read = debugfs_read_file_bool, |
| 792 | .write = debugfs_write_file_bool, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 793 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 794 | .llseek = default_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | }; |
| 796 | |
Stephen Boyd | 6713e8f | 2015-10-12 18:09:12 -0700 | [diff] [blame] | 797 | static const struct file_operations fops_bool_ro = { |
| 798 | .read = debugfs_read_file_bool, |
| 799 | .open = simple_open, |
| 800 | .llseek = default_llseek, |
| 801 | }; |
| 802 | |
| 803 | static const struct file_operations fops_bool_wo = { |
| 804 | .write = debugfs_write_file_bool, |
| 805 | .open = simple_open, |
| 806 | .llseek = default_llseek, |
| 807 | }; |
| 808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 810 | * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | * @name: a pointer to a string containing the name of the file to create. |
| 812 | * @mode: the permission that the file should have |
| 813 | * @parent: a pointer to the parent dentry for this file. This should be a |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 814 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | * file will be created in the root of the debugfs filesystem. |
| 816 | * @value: a pointer to the variable that the file should read to and write |
| 817 | * from. |
| 818 | * |
| 819 | * This function creates a file in debugfs with the given name that |
| 820 | * contains the value of the variable @value. If the @mode variable is so |
| 821 | * set, it can be read from, and written to. |
| 822 | * |
| 823 | * This function will return a pointer to a dentry if it succeeds. This |
| 824 | * pointer must be passed to the debugfs_remove() function when the file is |
| 825 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 826 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 828 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | * returned. It is not wise to check for this value, but rather, check for |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 830 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | * code. |
| 832 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 833 | struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
Viresh Kumar | 621a5f7 | 2015-09-26 15:04:07 -0700 | [diff] [blame] | 834 | struct dentry *parent, bool *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | { |
Nicolai Stange | 4d45f79 | 2016-03-22 14:11:18 +0100 | [diff] [blame^] | 836 | return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_bool, |
Stephen Boyd | 6713e8f | 2015-10-12 18:09:12 -0700 | [diff] [blame] | 837 | &fops_bool_ro, &fops_bool_wo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | EXPORT_SYMBOL_GPL(debugfs_create_bool); |
| 840 | |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 841 | static ssize_t read_file_blob(struct file *file, char __user *user_buf, |
| 842 | size_t count, loff_t *ppos) |
| 843 | { |
| 844 | struct debugfs_blob_wrapper *blob = file->private_data; |
| 845 | return simple_read_from_buffer(user_buf, count, ppos, blob->data, |
| 846 | blob->size); |
| 847 | } |
| 848 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 849 | static const struct file_operations fops_blob = { |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 850 | .read = read_file_blob, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 851 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 852 | .llseek = default_llseek, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 853 | }; |
| 854 | |
| 855 | /** |
Jonathan Corbet | 400ced6 | 2009-05-25 10:15:27 -0600 | [diff] [blame] | 856 | * debugfs_create_blob - create a debugfs file that is used to read a binary blob |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 857 | * @name: a pointer to a string containing the name of the file to create. |
| 858 | * @mode: the permission that the file should have |
| 859 | * @parent: a pointer to the parent dentry for this file. This should be a |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 860 | * directory dentry if set. If this parameter is %NULL, then the |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 861 | * file will be created in the root of the debugfs filesystem. |
| 862 | * @blob: a pointer to a struct debugfs_blob_wrapper which contains a pointer |
| 863 | * to the blob data and the size of the data. |
| 864 | * |
| 865 | * This function creates a file in debugfs with the given name that exports |
| 866 | * @blob->data as a binary blob. If the @mode variable is so set it can be |
| 867 | * read from. Writing is not supported. |
| 868 | * |
| 869 | * This function will return a pointer to a dentry if it succeeds. This |
| 870 | * pointer must be passed to the debugfs_remove() function when the file is |
| 871 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 872 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 873 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 874 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 875 | * returned. It is not wise to check for this value, but rather, check for |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 876 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 877 | * code. |
| 878 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 879 | struct dentry *debugfs_create_blob(const char *name, umode_t mode, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 880 | struct dentry *parent, |
| 881 | struct debugfs_blob_wrapper *blob) |
| 882 | { |
| 883 | return debugfs_create_file(name, mode, parent, blob, &fops_blob); |
| 884 | } |
| 885 | EXPORT_SYMBOL_GPL(debugfs_create_blob); |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 886 | |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 887 | struct array_data { |
| 888 | void *array; |
| 889 | u32 elements; |
| 890 | }; |
| 891 | |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 892 | static size_t u32_format_array(char *buf, size_t bufsize, |
| 893 | u32 *array, int array_size) |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 894 | { |
| 895 | size_t ret = 0; |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 896 | |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 897 | while (--array_size >= 0) { |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 898 | size_t len; |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 899 | char term = array_size ? ' ' : '\n'; |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 900 | |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 901 | len = snprintf(buf, bufsize, "%u%c", *array++, term); |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 902 | ret += len; |
| 903 | |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 904 | buf += len; |
| 905 | bufsize -= len; |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 906 | } |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 907 | return ret; |
| 908 | } |
| 909 | |
David Rientjes | 3604885 | 2012-09-21 02:16:29 -0700 | [diff] [blame] | 910 | static int u32_array_open(struct inode *inode, struct file *file) |
| 911 | { |
| 912 | struct array_data *data = inode->i_private; |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 913 | int size, elements = data->elements; |
| 914 | char *buf; |
David Rientjes | 3604885 | 2012-09-21 02:16:29 -0700 | [diff] [blame] | 915 | |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 916 | /* |
| 917 | * Max size: |
| 918 | * - 10 digits + ' '/'\n' = 11 bytes per number |
| 919 | * - terminating NUL character |
| 920 | */ |
| 921 | size = elements*11; |
| 922 | buf = kmalloc(size+1, GFP_KERNEL); |
| 923 | if (!buf) |
David Rientjes | 3604885 | 2012-09-21 02:16:29 -0700 | [diff] [blame] | 924 | return -ENOMEM; |
Linus Torvalds | e05e279 | 2012-09-21 11:48:05 -0700 | [diff] [blame] | 925 | buf[size] = 0; |
| 926 | |
| 927 | file->private_data = buf; |
| 928 | u32_format_array(buf, size, data->array, data->elements); |
| 929 | |
David Rientjes | 3604885 | 2012-09-21 02:16:29 -0700 | [diff] [blame] | 930 | return nonseekable_open(inode, file); |
| 931 | } |
| 932 | |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 933 | static ssize_t u32_array_read(struct file *file, char __user *buf, size_t len, |
| 934 | loff_t *ppos) |
| 935 | { |
David Rientjes | 3604885 | 2012-09-21 02:16:29 -0700 | [diff] [blame] | 936 | size_t size = strlen(file->private_data); |
Srivatsa Vaddagiri | 9fe2a70 | 2012-03-23 13:36:28 +0530 | [diff] [blame] | 937 | |
| 938 | return simple_read_from_buffer(buf, len, ppos, |
| 939 | file->private_data, size); |
| 940 | } |
| 941 | |
| 942 | static int u32_array_release(struct inode *inode, struct file *file) |
| 943 | { |
| 944 | kfree(file->private_data); |
| 945 | |
| 946 | return 0; |
| 947 | } |
| 948 | |
| 949 | static const struct file_operations u32_array_fops = { |
| 950 | .owner = THIS_MODULE, |
| 951 | .open = u32_array_open, |
| 952 | .release = u32_array_release, |
| 953 | .read = u32_array_read, |
| 954 | .llseek = no_llseek, |
| 955 | }; |
| 956 | |
| 957 | /** |
| 958 | * debugfs_create_u32_array - create a debugfs file that is used to read u32 |
| 959 | * array. |
| 960 | * @name: a pointer to a string containing the name of the file to create. |
| 961 | * @mode: the permission that the file should have. |
| 962 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 963 | * directory dentry if set. If this parameter is %NULL, then the |
| 964 | * file will be created in the root of the debugfs filesystem. |
| 965 | * @array: u32 array that provides data. |
| 966 | * @elements: total number of elements in the array. |
| 967 | * |
| 968 | * This function creates a file in debugfs with the given name that exports |
| 969 | * @array as data. If the @mode variable is so set it can be read from. |
| 970 | * Writing is not supported. Seek within the file is also not supported. |
| 971 | * Once array is created its size can not be changed. |
| 972 | * |
| 973 | * The function returns a pointer to dentry on success. If debugfs is not |
| 974 | * enabled in the kernel, the value -%ENODEV will be returned. |
| 975 | */ |
| 976 | struct dentry *debugfs_create_u32_array(const char *name, umode_t mode, |
| 977 | struct dentry *parent, |
| 978 | u32 *array, u32 elements) |
| 979 | { |
| 980 | struct array_data *data = kmalloc(sizeof(*data), GFP_KERNEL); |
| 981 | |
| 982 | if (data == NULL) |
| 983 | return NULL; |
| 984 | |
| 985 | data->array = array; |
| 986 | data->elements = elements; |
| 987 | |
| 988 | return debugfs_create_file(name, mode, parent, data, &u32_array_fops); |
| 989 | } |
| 990 | EXPORT_SYMBOL_GPL(debugfs_create_u32_array); |
| 991 | |
Heiko Carstens | 3b85e4a | 2011-12-27 15:08:28 +0100 | [diff] [blame] | 992 | #ifdef CONFIG_HAS_IOMEM |
| 993 | |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 994 | /* |
| 995 | * The regset32 stuff is used to print 32-bit registers using the |
| 996 | * seq_file utilities. We offer printing a register set in an already-opened |
| 997 | * sequential file or create a debugfs file that only prints a regset32. |
| 998 | */ |
| 999 | |
| 1000 | /** |
| 1001 | * debugfs_print_regs32 - use seq_print to describe a set of registers |
| 1002 | * @s: the seq_file structure being used to generate output |
| 1003 | * @regs: an array if struct debugfs_reg32 structures |
Randy Dunlap | b5763ac | 2012-01-21 11:02:42 -0800 | [diff] [blame] | 1004 | * @nregs: the length of the above array |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1005 | * @base: the base address to be used in reading the registers |
| 1006 | * @prefix: a string to be prefixed to every output line |
| 1007 | * |
| 1008 | * This function outputs a text block describing the current values of |
| 1009 | * some 32-bit hardware registers. It is meant to be used within debugfs |
| 1010 | * files based on seq_file that need to show registers, intermixed with other |
| 1011 | * information. The prefix argument may be used to specify a leading string, |
| 1012 | * because some peripherals have several blocks of identical registers, |
| 1013 | * for example configuration of dma channels |
| 1014 | */ |
Joe Perches | 9761536 | 2014-09-29 16:08:26 -0700 | [diff] [blame] | 1015 | void debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs, |
| 1016 | int nregs, void __iomem *base, char *prefix) |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1017 | { |
Joe Perches | 9761536 | 2014-09-29 16:08:26 -0700 | [diff] [blame] | 1018 | int i; |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1019 | |
| 1020 | for (i = 0; i < nregs; i++, regs++) { |
| 1021 | if (prefix) |
Joe Perches | 9761536 | 2014-09-29 16:08:26 -0700 | [diff] [blame] | 1022 | seq_printf(s, "%s", prefix); |
| 1023 | seq_printf(s, "%s = 0x%08x\n", regs->name, |
| 1024 | readl(base + regs->offset)); |
| 1025 | if (seq_has_overflowed(s)) |
| 1026 | break; |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1027 | } |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1028 | } |
| 1029 | EXPORT_SYMBOL_GPL(debugfs_print_regs32); |
| 1030 | |
| 1031 | static int debugfs_show_regset32(struct seq_file *s, void *data) |
| 1032 | { |
| 1033 | struct debugfs_regset32 *regset = s->private; |
| 1034 | |
| 1035 | debugfs_print_regs32(s, regset->regs, regset->nregs, regset->base, ""); |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | static int debugfs_open_regset32(struct inode *inode, struct file *file) |
| 1040 | { |
| 1041 | return single_open(file, debugfs_show_regset32, inode->i_private); |
| 1042 | } |
| 1043 | |
| 1044 | static const struct file_operations fops_regset32 = { |
| 1045 | .open = debugfs_open_regset32, |
| 1046 | .read = seq_read, |
| 1047 | .llseek = seq_lseek, |
| 1048 | .release = single_release, |
| 1049 | }; |
| 1050 | |
| 1051 | /** |
| 1052 | * debugfs_create_regset32 - create a debugfs file that returns register values |
| 1053 | * @name: a pointer to a string containing the name of the file to create. |
| 1054 | * @mode: the permission that the file should have |
| 1055 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 1056 | * directory dentry if set. If this parameter is %NULL, then the |
| 1057 | * file will be created in the root of the debugfs filesystem. |
| 1058 | * @regset: a pointer to a struct debugfs_regset32, which contains a pointer |
| 1059 | * to an array of register definitions, the array size and the base |
| 1060 | * address where the register bank is to be found. |
| 1061 | * |
| 1062 | * This function creates a file in debugfs with the given name that reports |
| 1063 | * the names and values of a set of 32-bit registers. If the @mode variable |
| 1064 | * is so set it can be read from. Writing is not supported. |
| 1065 | * |
| 1066 | * This function will return a pointer to a dentry if it succeeds. This |
| 1067 | * pointer must be passed to the debugfs_remove() function when the file is |
| 1068 | * to be removed (no automatic cleanup happens if your module is unloaded, |
| 1069 | * you are responsible here.) If an error occurs, %NULL will be returned. |
| 1070 | * |
| 1071 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 1072 | * returned. It is not wise to check for this value, but rather, check for |
| 1073 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
| 1074 | * code. |
| 1075 | */ |
Al Viro | 8818739 | 2012-03-20 06:00:24 -0400 | [diff] [blame] | 1076 | struct dentry *debugfs_create_regset32(const char *name, umode_t mode, |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 1077 | struct dentry *parent, |
| 1078 | struct debugfs_regset32 *regset) |
| 1079 | { |
| 1080 | return debugfs_create_file(name, mode, parent, regset, &fops_regset32); |
| 1081 | } |
| 1082 | EXPORT_SYMBOL_GPL(debugfs_create_regset32); |
Heiko Carstens | 3b85e4a | 2011-12-27 15:08:28 +0100 | [diff] [blame] | 1083 | |
| 1084 | #endif /* CONFIG_HAS_IOMEM */ |
Arend van Spriel | 98210b7 | 2014-11-09 11:31:58 +0100 | [diff] [blame] | 1085 | |
| 1086 | struct debugfs_devm_entry { |
| 1087 | int (*read)(struct seq_file *seq, void *data); |
| 1088 | struct device *dev; |
| 1089 | }; |
| 1090 | |
| 1091 | static int debugfs_devm_entry_open(struct inode *inode, struct file *f) |
| 1092 | { |
| 1093 | struct debugfs_devm_entry *entry = inode->i_private; |
| 1094 | |
| 1095 | return single_open(f, entry->read, entry->dev); |
| 1096 | } |
| 1097 | |
| 1098 | static const struct file_operations debugfs_devm_entry_ops = { |
| 1099 | .owner = THIS_MODULE, |
| 1100 | .open = debugfs_devm_entry_open, |
| 1101 | .release = single_release, |
| 1102 | .read = seq_read, |
| 1103 | .llseek = seq_lseek |
| 1104 | }; |
| 1105 | |
| 1106 | /** |
| 1107 | * debugfs_create_devm_seqfile - create a debugfs file that is bound to device. |
| 1108 | * |
| 1109 | * @dev: device related to this debugfs file. |
| 1110 | * @name: name of the debugfs file. |
| 1111 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 1112 | * directory dentry if set. If this parameter is %NULL, then the |
| 1113 | * file will be created in the root of the debugfs filesystem. |
| 1114 | * @read_fn: function pointer called to print the seq_file content. |
| 1115 | */ |
| 1116 | struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name, |
| 1117 | struct dentry *parent, |
| 1118 | int (*read_fn)(struct seq_file *s, |
| 1119 | void *data)) |
| 1120 | { |
| 1121 | struct debugfs_devm_entry *entry; |
| 1122 | |
| 1123 | if (IS_ERR(parent)) |
| 1124 | return ERR_PTR(-ENOENT); |
| 1125 | |
| 1126 | entry = devm_kzalloc(dev, sizeof(*entry), GFP_KERNEL); |
| 1127 | if (!entry) |
| 1128 | return ERR_PTR(-ENOMEM); |
| 1129 | |
| 1130 | entry->read = read_fn; |
| 1131 | entry->dev = dev; |
| 1132 | |
| 1133 | return debugfs_create_file(name, S_IRUGO, parent, entry, |
| 1134 | &debugfs_devm_entry_ops); |
| 1135 | } |
| 1136 | EXPORT_SYMBOL_GPL(debugfs_create_devm_seqfile); |
| 1137 | |