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> |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 20 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/debugfs.h> |
Alessandro Rubini | 03e099f | 2011-11-21 10:01:40 +0100 | [diff] [blame] | 22 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | static ssize_t default_read_file(struct file *file, char __user *buf, |
| 25 | size_t count, loff_t *ppos) |
| 26 | { |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | static ssize_t default_write_file(struct file *file, const char __user *buf, |
| 31 | size_t count, loff_t *ppos) |
| 32 | { |
| 33 | return count; |
| 34 | } |
| 35 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 36 | const struct file_operations debugfs_file_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | .read = default_read_file, |
| 38 | .write = default_write_file, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame^] | 39 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 40 | .llseek = noop_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 43 | static void *debugfs_follow_link(struct dentry *dentry, struct nameidata *nd) |
| 44 | { |
| 45 | nd_set_link(nd, dentry->d_inode->i_private); |
| 46 | return NULL; |
| 47 | } |
| 48 | |
| 49 | const struct inode_operations debugfs_link_operations = { |
| 50 | .readlink = generic_readlink, |
| 51 | .follow_link = debugfs_follow_link, |
| 52 | }; |
| 53 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 54 | static int debugfs_u8_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 55 | { |
| 56 | *(u8 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 57 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 58 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 59 | static int debugfs_u8_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 60 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 61 | *val = *(u8 *)data; |
| 62 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 63 | } |
| 64 | DEFINE_SIMPLE_ATTRIBUTE(fops_u8, debugfs_u8_get, debugfs_u8_set, "%llu\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 65 | DEFINE_SIMPLE_ATTRIBUTE(fops_u8_ro, debugfs_u8_get, NULL, "%llu\n"); |
| 66 | DEFINE_SIMPLE_ATTRIBUTE(fops_u8_wo, NULL, debugfs_u8_set, "%llu\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 69 | * 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] | 70 | * @name: a pointer to a string containing the name of the file to create. |
| 71 | * @mode: the permission that the file should have |
| 72 | * @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] | 73 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * file will be created in the root of the debugfs filesystem. |
| 75 | * @value: a pointer to the variable that the file should read to and write |
| 76 | * from. |
| 77 | * |
| 78 | * This function creates a file in debugfs with the given name that |
| 79 | * contains the value of the variable @value. If the @mode variable is so |
| 80 | * set, it can be read from, and written to. |
| 81 | * |
| 82 | * This function will return a pointer to a dentry if it succeeds. This |
| 83 | * pointer must be passed to the debugfs_remove() function when the file is |
| 84 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 85 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 87 | * 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] | 88 | * 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] | 89 | * %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] | 90 | * code. |
| 91 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 92 | struct dentry *debugfs_create_u8(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | struct dentry *parent, u8 *value) |
| 94 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 95 | /* if there are no write bits set, make read only */ |
| 96 | if (!(mode & S_IWUGO)) |
| 97 | return debugfs_create_file(name, mode, parent, value, &fops_u8_ro); |
| 98 | /* if there are no read bits set, make write only */ |
| 99 | if (!(mode & S_IRUGO)) |
| 100 | return debugfs_create_file(name, mode, parent, value, &fops_u8_wo); |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return debugfs_create_file(name, mode, parent, value, &fops_u8); |
| 103 | } |
| 104 | EXPORT_SYMBOL_GPL(debugfs_create_u8); |
| 105 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 106 | static int debugfs_u16_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 107 | { |
| 108 | *(u16 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 109 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 110 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 111 | static int debugfs_u16_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 112 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 113 | *val = *(u16 *)data; |
| 114 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 115 | } |
| 116 | DEFINE_SIMPLE_ATTRIBUTE(fops_u16, debugfs_u16_get, debugfs_u16_set, "%llu\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 117 | DEFINE_SIMPLE_ATTRIBUTE(fops_u16_ro, debugfs_u16_get, NULL, "%llu\n"); |
| 118 | DEFINE_SIMPLE_ATTRIBUTE(fops_u16_wo, NULL, debugfs_u16_set, "%llu\n"); |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 121 | * 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] | 122 | * @name: a pointer to a string containing the name of the file to create. |
| 123 | * @mode: the permission that the file should have |
| 124 | * @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] | 125 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * file will be created in the root of the debugfs filesystem. |
| 127 | * @value: a pointer to the variable that the file should read to and write |
| 128 | * from. |
| 129 | * |
| 130 | * This function creates a file in debugfs with the given name that |
| 131 | * contains the value of the variable @value. If the @mode variable is so |
| 132 | * set, it can be read from, and written to. |
| 133 | * |
| 134 | * This function will return a pointer to a dentry if it succeeds. This |
| 135 | * pointer must be passed to the debugfs_remove() function when the file is |
| 136 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 137 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 139 | * 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] | 140 | * 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] | 141 | * %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] | 142 | * code. |
| 143 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 144 | struct dentry *debugfs_create_u16(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | struct dentry *parent, u16 *value) |
| 146 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 147 | /* if there are no write bits set, make read only */ |
| 148 | if (!(mode & S_IWUGO)) |
| 149 | return debugfs_create_file(name, mode, parent, value, &fops_u16_ro); |
| 150 | /* if there are no read bits set, make write only */ |
| 151 | if (!(mode & S_IRUGO)) |
| 152 | return debugfs_create_file(name, mode, parent, value, &fops_u16_wo); |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | return debugfs_create_file(name, mode, parent, value, &fops_u16); |
| 155 | } |
| 156 | EXPORT_SYMBOL_GPL(debugfs_create_u16); |
| 157 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 158 | static int debugfs_u32_set(void *data, u64 val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 159 | { |
| 160 | *(u32 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 161 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 162 | } |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 163 | static int debugfs_u32_get(void *data, u64 *val) |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 164 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 165 | *val = *(u32 *)data; |
| 166 | return 0; |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 167 | } |
| 168 | DEFINE_SIMPLE_ATTRIBUTE(fops_u32, debugfs_u32_get, debugfs_u32_set, "%llu\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 169 | DEFINE_SIMPLE_ATTRIBUTE(fops_u32_ro, debugfs_u32_get, NULL, "%llu\n"); |
| 170 | DEFINE_SIMPLE_ATTRIBUTE(fops_u32_wo, NULL, debugfs_u32_set, "%llu\n"); |
Arnd Bergmann | acaefc2 | 2005-05-18 14:40:59 +0200 | [diff] [blame] | 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 173 | * 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] | 174 | * @name: a pointer to a string containing the name of the file to create. |
| 175 | * @mode: the permission that the file should have |
| 176 | * @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] | 177 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | * file will be created in the root of the debugfs filesystem. |
| 179 | * @value: a pointer to the variable that the file should read to and write |
| 180 | * from. |
| 181 | * |
| 182 | * This function creates a file in debugfs with the given name that |
| 183 | * contains the value of the variable @value. If the @mode variable is so |
| 184 | * set, it can be read from, and written to. |
| 185 | * |
| 186 | * This function will return a pointer to a dentry if it succeeds. This |
| 187 | * pointer must be passed to the debugfs_remove() function when the file is |
| 188 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 189 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 191 | * 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] | 192 | * 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] | 193 | * %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] | 194 | * code. |
| 195 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 196 | struct dentry *debugfs_create_u32(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | struct dentry *parent, u32 *value) |
| 198 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 199 | /* if there are no write bits set, make read only */ |
| 200 | if (!(mode & S_IWUGO)) |
| 201 | return debugfs_create_file(name, mode, parent, value, &fops_u32_ro); |
| 202 | /* if there are no read bits set, make write only */ |
| 203 | if (!(mode & S_IRUGO)) |
| 204 | return debugfs_create_file(name, mode, parent, value, &fops_u32_wo); |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | return debugfs_create_file(name, mode, parent, value, &fops_u32); |
| 207 | } |
| 208 | EXPORT_SYMBOL_GPL(debugfs_create_u32); |
| 209 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 210 | static int debugfs_u64_set(void *data, u64 val) |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 211 | { |
| 212 | *(u64 *)data = val; |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 213 | return 0; |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 214 | } |
| 215 | |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 216 | static int debugfs_u64_get(void *data, u64 *val) |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 217 | { |
Christoph Hellwig | 8b88b09 | 2008-02-08 04:20:26 -0800 | [diff] [blame] | 218 | *val = *(u64 *)data; |
| 219 | return 0; |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 220 | } |
| 221 | DEFINE_SIMPLE_ATTRIBUTE(fops_u64, debugfs_u64_get, debugfs_u64_set, "%llu\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 222 | DEFINE_SIMPLE_ATTRIBUTE(fops_u64_ro, debugfs_u64_get, NULL, "%llu\n"); |
| 223 | DEFINE_SIMPLE_ATTRIBUTE(fops_u64_wo, NULL, debugfs_u64_set, "%llu\n"); |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 224 | |
| 225 | /** |
| 226 | * debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit value |
| 227 | * @name: a pointer to a string containing the name of the file to create. |
| 228 | * @mode: the permission that the file should have |
| 229 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 230 | * directory dentry if set. If this parameter is %NULL, then the |
| 231 | * file will be created in the root of the debugfs filesystem. |
| 232 | * @value: a pointer to the variable that the file should read to and write |
| 233 | * from. |
| 234 | * |
| 235 | * This function creates a file in debugfs with the given name that |
| 236 | * contains the value of the variable @value. If the @mode variable is so |
| 237 | * set, it can be read from, and written to. |
| 238 | * |
| 239 | * This function will return a pointer to a dentry if it succeeds. This |
| 240 | * pointer must be passed to the debugfs_remove() function when the file is |
| 241 | * to be removed (no automatic cleanup happens if your module is unloaded, |
| 242 | * you are responsible here.) If an error occurs, %NULL will be returned. |
| 243 | * |
| 244 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 245 | * returned. It is not wise to check for this value, but rather, check for |
| 246 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
| 247 | * code. |
| 248 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 249 | struct dentry *debugfs_create_u64(const char *name, umode_t mode, |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 250 | struct dentry *parent, u64 *value) |
| 251 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 252 | /* if there are no write bits set, make read only */ |
| 253 | if (!(mode & S_IWUGO)) |
| 254 | return debugfs_create_file(name, mode, parent, value, &fops_u64_ro); |
| 255 | /* if there are no read bits set, make write only */ |
| 256 | if (!(mode & S_IRUGO)) |
| 257 | return debugfs_create_file(name, mode, parent, value, &fops_u64_wo); |
| 258 | |
Michael Ellerman | 8447891 | 2007-04-17 15:59:36 +1000 | [diff] [blame] | 259 | return debugfs_create_file(name, mode, parent, value, &fops_u64); |
| 260 | } |
| 261 | EXPORT_SYMBOL_GPL(debugfs_create_u64); |
| 262 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 263 | DEFINE_SIMPLE_ATTRIBUTE(fops_x8, debugfs_u8_get, debugfs_u8_set, "0x%02llx\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 264 | DEFINE_SIMPLE_ATTRIBUTE(fops_x8_ro, debugfs_u8_get, NULL, "0x%02llx\n"); |
| 265 | DEFINE_SIMPLE_ATTRIBUTE(fops_x8_wo, NULL, debugfs_u8_set, "0x%02llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 266 | |
| 267 | DEFINE_SIMPLE_ATTRIBUTE(fops_x16, debugfs_u16_get, debugfs_u16_set, "0x%04llx\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 268 | DEFINE_SIMPLE_ATTRIBUTE(fops_x16_ro, debugfs_u16_get, NULL, "0x%04llx\n"); |
| 269 | DEFINE_SIMPLE_ATTRIBUTE(fops_x16_wo, NULL, debugfs_u16_set, "0x%04llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 270 | |
| 271 | DEFINE_SIMPLE_ATTRIBUTE(fops_x32, debugfs_u32_get, debugfs_u32_set, "0x%08llx\n"); |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 272 | DEFINE_SIMPLE_ATTRIBUTE(fops_x32_ro, debugfs_u32_get, NULL, "0x%08llx\n"); |
| 273 | DEFINE_SIMPLE_ATTRIBUTE(fops_x32_wo, NULL, debugfs_u32_set, "0x%08llx\n"); |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 274 | |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 275 | DEFINE_SIMPLE_ATTRIBUTE(fops_x64, debugfs_u64_get, debugfs_u64_set, "0x%016llx\n"); |
| 276 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 277 | /* |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 278 | * 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] | 279 | * |
| 280 | * These functions are exactly the same as the above functions (but use a hex |
| 281 | * output for the decimal challenged). For details look at the above unsigned |
| 282 | * decimal functions. |
| 283 | */ |
| 284 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 285 | /** |
| 286 | * 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] | 287 | * @name: a pointer to a string containing the name of the file to create. |
| 288 | * @mode: the permission that the file should have |
| 289 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 290 | * directory dentry if set. If this parameter is %NULL, then the |
| 291 | * file will be created in the root of the debugfs filesystem. |
| 292 | * @value: a pointer to the variable that the file should read to and write |
| 293 | * from. |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 294 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 295 | struct dentry *debugfs_create_x8(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 296 | struct dentry *parent, u8 *value) |
| 297 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 298 | /* if there are no write bits set, make read only */ |
| 299 | if (!(mode & S_IWUGO)) |
| 300 | return debugfs_create_file(name, mode, parent, value, &fops_x8_ro); |
| 301 | /* if there are no read bits set, make write only */ |
| 302 | if (!(mode & S_IRUGO)) |
| 303 | return debugfs_create_file(name, mode, parent, value, &fops_x8_wo); |
| 304 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 305 | return debugfs_create_file(name, mode, parent, value, &fops_x8); |
| 306 | } |
| 307 | EXPORT_SYMBOL_GPL(debugfs_create_x8); |
| 308 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 309 | /** |
| 310 | * debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit value |
| 311 | * @name: a pointer to a string containing the name of the file to create. |
| 312 | * @mode: the permission that the file should have |
| 313 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 314 | * directory dentry if set. If this parameter is %NULL, then the |
| 315 | * file will be created in the root of the debugfs filesystem. |
| 316 | * @value: a pointer to the variable that the file should read to and write |
| 317 | * from. |
| 318 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 319 | struct dentry *debugfs_create_x16(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 320 | struct dentry *parent, u16 *value) |
| 321 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 322 | /* if there are no write bits set, make read only */ |
| 323 | if (!(mode & S_IWUGO)) |
| 324 | return debugfs_create_file(name, mode, parent, value, &fops_x16_ro); |
| 325 | /* if there are no read bits set, make write only */ |
| 326 | if (!(mode & S_IRUGO)) |
| 327 | return debugfs_create_file(name, mode, parent, value, &fops_x16_wo); |
| 328 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 329 | return debugfs_create_file(name, mode, parent, value, &fops_x16); |
| 330 | } |
| 331 | EXPORT_SYMBOL_GPL(debugfs_create_x16); |
| 332 | |
Randy Dunlap | e6716b8 | 2007-10-15 17:30:19 -0700 | [diff] [blame] | 333 | /** |
| 334 | * debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit value |
| 335 | * @name: a pointer to a string containing the name of the file to create. |
| 336 | * @mode: the permission that the file should have |
| 337 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 338 | * directory dentry if set. If this parameter is %NULL, then the |
| 339 | * file will be created in the root of the debugfs filesystem. |
| 340 | * @value: a pointer to the variable that the file should read to and write |
| 341 | * from. |
| 342 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 343 | struct dentry *debugfs_create_x32(const char *name, umode_t mode, |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 344 | struct dentry *parent, u32 *value) |
| 345 | { |
Robin Getz | e4792aa | 2009-06-02 03:00:47 -0400 | [diff] [blame] | 346 | /* if there are no write bits set, make read only */ |
| 347 | if (!(mode & S_IWUGO)) |
| 348 | return debugfs_create_file(name, mode, parent, value, &fops_x32_ro); |
| 349 | /* if there are no read bits set, make write only */ |
| 350 | if (!(mode & S_IRUGO)) |
| 351 | return debugfs_create_file(name, mode, parent, value, &fops_x32_wo); |
| 352 | |
Robin Getz | 2ebefc5 | 2007-08-02 18:23:50 -0400 | [diff] [blame] | 353 | return debugfs_create_file(name, mode, parent, value, &fops_x32); |
| 354 | } |
| 355 | EXPORT_SYMBOL_GPL(debugfs_create_x32); |
| 356 | |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 357 | /** |
| 358 | * debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit value |
| 359 | * @name: a pointer to a string containing the name of the file to create. |
| 360 | * @mode: the permission that the file should have |
| 361 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 362 | * directory dentry if set. If this parameter is %NULL, then the |
| 363 | * file will be created in the root of the debugfs filesystem. |
| 364 | * @value: a pointer to the variable that the file should read to and write |
| 365 | * from. |
| 366 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 367 | struct dentry *debugfs_create_x64(const char *name, umode_t mode, |
Huang Ying | 15b0bea | 2010-05-18 14:35:23 +0800 | [diff] [blame] | 368 | struct dentry *parent, u64 *value) |
| 369 | { |
| 370 | return debugfs_create_file(name, mode, parent, value, &fops_x64); |
| 371 | } |
| 372 | EXPORT_SYMBOL_GPL(debugfs_create_x64); |
| 373 | |
Inaky Perez-Gonzalez | 5e07878 | 2008-12-20 16:57:39 -0800 | [diff] [blame] | 374 | |
| 375 | static int debugfs_size_t_set(void *data, u64 val) |
| 376 | { |
| 377 | *(size_t *)data = val; |
| 378 | return 0; |
| 379 | } |
| 380 | static int debugfs_size_t_get(void *data, u64 *val) |
| 381 | { |
| 382 | *val = *(size_t *)data; |
| 383 | return 0; |
| 384 | } |
| 385 | DEFINE_SIMPLE_ATTRIBUTE(fops_size_t, debugfs_size_t_get, debugfs_size_t_set, |
| 386 | "%llu\n"); /* %llu and %zu are more or less the same */ |
| 387 | |
| 388 | /** |
| 389 | * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value |
| 390 | * @name: a pointer to a string containing the name of the file to create. |
| 391 | * @mode: the permission that the file should have |
| 392 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 393 | * directory dentry if set. If this parameter is %NULL, then the |
| 394 | * file will be created in the root of the debugfs filesystem. |
| 395 | * @value: a pointer to the variable that the file should read to and write |
| 396 | * from. |
| 397 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 398 | 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] | 399 | struct dentry *parent, size_t *value) |
| 400 | { |
| 401 | return debugfs_create_file(name, mode, parent, value, &fops_size_t); |
| 402 | } |
| 403 | EXPORT_SYMBOL_GPL(debugfs_create_size_t); |
| 404 | |
| 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | static ssize_t read_file_bool(struct file *file, char __user *user_buf, |
| 407 | size_t count, loff_t *ppos) |
| 408 | { |
| 409 | char buf[3]; |
| 410 | u32 *val = file->private_data; |
| 411 | |
| 412 | if (*val) |
| 413 | buf[0] = 'Y'; |
| 414 | else |
| 415 | buf[0] = 'N'; |
| 416 | buf[1] = '\n'; |
| 417 | buf[2] = 0x00; |
| 418 | return simple_read_from_buffer(user_buf, count, ppos, buf, 2); |
| 419 | } |
| 420 | |
| 421 | static ssize_t write_file_bool(struct file *file, const char __user *user_buf, |
| 422 | size_t count, loff_t *ppos) |
| 423 | { |
| 424 | char buf[32]; |
Stephen Boyd | c42d223 | 2011-05-12 16:50:07 -0700 | [diff] [blame] | 425 | size_t buf_size; |
Jonathan Cameron | 8705b48 | 2011-04-19 12:43:46 +0100 | [diff] [blame] | 426 | bool bv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | u32 *val = file->private_data; |
| 428 | |
| 429 | buf_size = min(count, (sizeof(buf)-1)); |
| 430 | if (copy_from_user(buf, user_buf, buf_size)) |
| 431 | return -EFAULT; |
| 432 | |
Jonathan Cameron | 8705b48 | 2011-04-19 12:43:46 +0100 | [diff] [blame] | 433 | if (strtobool(buf, &bv) == 0) |
| 434 | *val = bv; |
| 435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return count; |
| 437 | } |
| 438 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 439 | static const struct file_operations fops_bool = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | .read = read_file_bool, |
| 441 | .write = write_file_bool, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame^] | 442 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 443 | .llseek = default_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | }; |
| 445 | |
| 446 | /** |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 447 | * 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] | 448 | * @name: a pointer to a string containing the name of the file to create. |
| 449 | * @mode: the permission that the file should have |
| 450 | * @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] | 451 | * directory dentry if set. If this parameter is %NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | * file will be created in the root of the debugfs filesystem. |
| 453 | * @value: a pointer to the variable that the file should read to and write |
| 454 | * from. |
| 455 | * |
| 456 | * This function creates a file in debugfs with the given name that |
| 457 | * contains the value of the variable @value. If the @mode variable is so |
| 458 | * set, it can be read from, and written to. |
| 459 | * |
| 460 | * This function will return a pointer to a dentry if it succeeds. This |
| 461 | * pointer must be passed to the debugfs_remove() function when the file is |
| 462 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 463 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 465 | * 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] | 466 | * 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] | 467 | * %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] | 468 | * code. |
| 469 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 470 | struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | struct dentry *parent, u32 *value) |
| 472 | { |
| 473 | return debugfs_create_file(name, mode, parent, value, &fops_bool); |
| 474 | } |
| 475 | EXPORT_SYMBOL_GPL(debugfs_create_bool); |
| 476 | |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 477 | static ssize_t read_file_blob(struct file *file, char __user *user_buf, |
| 478 | size_t count, loff_t *ppos) |
| 479 | { |
| 480 | struct debugfs_blob_wrapper *blob = file->private_data; |
| 481 | return simple_read_from_buffer(user_buf, count, ppos, blob->data, |
| 482 | blob->size); |
| 483 | } |
| 484 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 485 | static const struct file_operations fops_blob = { |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 486 | .read = read_file_blob, |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame^] | 487 | .open = simple_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 488 | .llseek = default_llseek, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 489 | }; |
| 490 | |
| 491 | /** |
Jonathan Corbet | 400ced6 | 2009-05-25 10:15:27 -0600 | [diff] [blame] | 492 | * 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] | 493 | * @name: a pointer to a string containing the name of the file to create. |
| 494 | * @mode: the permission that the file should have |
| 495 | * @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] | 496 | * directory dentry if set. If this parameter is %NULL, then the |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 497 | * file will be created in the root of the debugfs filesystem. |
| 498 | * @blob: a pointer to a struct debugfs_blob_wrapper which contains a pointer |
| 499 | * to the blob data and the size of the data. |
| 500 | * |
| 501 | * This function creates a file in debugfs with the given name that exports |
| 502 | * @blob->data as a binary blob. If the @mode variable is so set it can be |
| 503 | * read from. Writing is not supported. |
| 504 | * |
| 505 | * This function will return a pointer to a dentry if it succeeds. This |
| 506 | * pointer must be passed to the debugfs_remove() function when the file is |
| 507 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 508 | * you are responsible here.) If an error occurs, %NULL will be returned. |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 509 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 510 | * 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] | 511 | * 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] | 512 | * %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] | 513 | * code. |
| 514 | */ |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 515 | struct dentry *debugfs_create_blob(const char *name, umode_t mode, |
Michael Ellerman | dd308bc | 2006-03-07 21:41:59 +1100 | [diff] [blame] | 516 | struct dentry *parent, |
| 517 | struct debugfs_blob_wrapper *blob) |
| 518 | { |
| 519 | return debugfs_create_file(name, mode, parent, blob, &fops_blob); |
| 520 | } |
| 521 | EXPORT_SYMBOL_GPL(debugfs_create_blob); |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 522 | |
Heiko Carstens | 3b85e4a | 2011-12-27 15:08:28 +0100 | [diff] [blame] | 523 | #ifdef CONFIG_HAS_IOMEM |
| 524 | |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 525 | /* |
| 526 | * The regset32 stuff is used to print 32-bit registers using the |
| 527 | * seq_file utilities. We offer printing a register set in an already-opened |
| 528 | * sequential file or create a debugfs file that only prints a regset32. |
| 529 | */ |
| 530 | |
| 531 | /** |
| 532 | * debugfs_print_regs32 - use seq_print to describe a set of registers |
| 533 | * @s: the seq_file structure being used to generate output |
| 534 | * @regs: an array if struct debugfs_reg32 structures |
Randy Dunlap | b5763ac | 2012-01-21 11:02:42 -0800 | [diff] [blame] | 535 | * @nregs: the length of the above array |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 536 | * @base: the base address to be used in reading the registers |
| 537 | * @prefix: a string to be prefixed to every output line |
| 538 | * |
| 539 | * This function outputs a text block describing the current values of |
| 540 | * some 32-bit hardware registers. It is meant to be used within debugfs |
| 541 | * files based on seq_file that need to show registers, intermixed with other |
| 542 | * information. The prefix argument may be used to specify a leading string, |
| 543 | * because some peripherals have several blocks of identical registers, |
| 544 | * for example configuration of dma channels |
| 545 | */ |
Alessandro Rubini | 8ee4dd9 | 2011-11-18 23:53:29 +0100 | [diff] [blame] | 546 | int debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs, |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 547 | int nregs, void __iomem *base, char *prefix) |
| 548 | { |
| 549 | int i, ret = 0; |
| 550 | |
| 551 | for (i = 0; i < nregs; i++, regs++) { |
| 552 | if (prefix) |
| 553 | ret += seq_printf(s, "%s", prefix); |
| 554 | ret += seq_printf(s, "%s = 0x%08x\n", regs->name, |
Dan Carpenter | 5858441 | 2011-11-24 10:22:08 +0300 | [diff] [blame] | 555 | readl(base + regs->offset)); |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 556 | } |
| 557 | return ret; |
| 558 | } |
| 559 | EXPORT_SYMBOL_GPL(debugfs_print_regs32); |
| 560 | |
| 561 | static int debugfs_show_regset32(struct seq_file *s, void *data) |
| 562 | { |
| 563 | struct debugfs_regset32 *regset = s->private; |
| 564 | |
| 565 | debugfs_print_regs32(s, regset->regs, regset->nregs, regset->base, ""); |
| 566 | return 0; |
| 567 | } |
| 568 | |
| 569 | static int debugfs_open_regset32(struct inode *inode, struct file *file) |
| 570 | { |
| 571 | return single_open(file, debugfs_show_regset32, inode->i_private); |
| 572 | } |
| 573 | |
| 574 | static const struct file_operations fops_regset32 = { |
| 575 | .open = debugfs_open_regset32, |
| 576 | .read = seq_read, |
| 577 | .llseek = seq_lseek, |
| 578 | .release = single_release, |
| 579 | }; |
| 580 | |
| 581 | /** |
| 582 | * debugfs_create_regset32 - create a debugfs file that returns register values |
| 583 | * @name: a pointer to a string containing the name of the file to create. |
| 584 | * @mode: the permission that the file should have |
| 585 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 586 | * directory dentry if set. If this parameter is %NULL, then the |
| 587 | * file will be created in the root of the debugfs filesystem. |
| 588 | * @regset: a pointer to a struct debugfs_regset32, which contains a pointer |
| 589 | * to an array of register definitions, the array size and the base |
| 590 | * address where the register bank is to be found. |
| 591 | * |
| 592 | * This function creates a file in debugfs with the given name that reports |
| 593 | * the names and values of a set of 32-bit registers. If the @mode variable |
| 594 | * is so set it can be read from. Writing is not supported. |
| 595 | * |
| 596 | * This function will return a pointer to a dentry if it succeeds. This |
| 597 | * pointer must be passed to the debugfs_remove() function when the file is |
| 598 | * to be removed (no automatic cleanup happens if your module is unloaded, |
| 599 | * you are responsible here.) If an error occurs, %NULL will be returned. |
| 600 | * |
| 601 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 602 | * returned. It is not wise to check for this value, but rather, check for |
| 603 | * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling |
| 604 | * code. |
| 605 | */ |
Al Viro | 8818739 | 2012-03-20 06:00:24 -0400 | [diff] [blame] | 606 | struct dentry *debugfs_create_regset32(const char *name, umode_t mode, |
Alessandro Rubini | 1a087c6 | 2011-11-18 14:50:21 +0100 | [diff] [blame] | 607 | struct dentry *parent, |
| 608 | struct debugfs_regset32 *regset) |
| 609 | { |
| 610 | return debugfs_create_file(name, mode, parent, regset, &fops_regset32); |
| 611 | } |
| 612 | EXPORT_SYMBOL_GPL(debugfs_create_regset32); |
Heiko Carstens | 3b85e4a | 2011-12-27 15:08:28 +0100 | [diff] [blame] | 613 | |
| 614 | #endif /* CONFIG_HAS_IOMEM */ |