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