Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom B43legacy wireless driver |
| 4 | |
| 5 | debugfs driver debugging code |
| 6 | |
| 7 | Copyright (c) 2005-2007 Michael Buesch <mb@bu3sch.de> |
| 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with this program; see the file COPYING. If not, write to |
| 21 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 22 | Boston, MA 02110-1301, USA. |
| 23 | |
| 24 | */ |
| 25 | |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/debugfs.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/netdevice.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <linux/mutex.h> |
| 32 | |
| 33 | #include "b43legacy.h" |
| 34 | #include "main.h" |
| 35 | #include "debugfs.h" |
| 36 | #include "dma.h" |
| 37 | #include "pio.h" |
| 38 | #include "xmit.h" |
| 39 | |
| 40 | |
| 41 | /* The root directory. */ |
| 42 | static struct dentry *rootdir; |
| 43 | |
| 44 | struct b43legacy_debugfs_fops { |
| 45 | ssize_t (*read)(struct b43legacy_wldev *dev, char *buf, size_t bufsize); |
| 46 | int (*write)(struct b43legacy_wldev *dev, const char *buf, size_t count); |
| 47 | struct file_operations fops; |
| 48 | /* Offset of struct b43legacy_dfs_file in struct b43legacy_dfsentry */ |
| 49 | size_t file_struct_offset; |
| 50 | /* Take wl->irq_lock before calling read/write? */ |
| 51 | bool take_irqlock; |
| 52 | }; |
| 53 | |
| 54 | static inline |
| 55 | struct b43legacy_dfs_file * fops_to_dfs_file(struct b43legacy_wldev *dev, |
| 56 | const struct b43legacy_debugfs_fops *dfops) |
| 57 | { |
| 58 | void *p; |
| 59 | |
| 60 | p = dev->dfsentry; |
| 61 | p += dfops->file_struct_offset; |
| 62 | |
| 63 | return p; |
| 64 | } |
| 65 | |
| 66 | |
| 67 | #define fappend(fmt, x...) \ |
| 68 | do { \ |
| 69 | if (bufsize - count) \ |
| 70 | count += snprintf(buf + count, \ |
| 71 | bufsize - count, \ |
| 72 | fmt , ##x); \ |
| 73 | else \ |
| 74 | printk(KERN_ERR "b43legacy: fappend overflow\n"); \ |
| 75 | } while (0) |
| 76 | |
| 77 | |
| 78 | /* wl->irq_lock is locked */ |
| 79 | static ssize_t tsf_read_file(struct b43legacy_wldev *dev, char *buf, size_t bufsize) |
| 80 | { |
| 81 | ssize_t count = 0; |
| 82 | u64 tsf; |
| 83 | |
| 84 | b43legacy_tsf_read(dev, &tsf); |
| 85 | fappend("0x%08x%08x\n", |
| 86 | (unsigned int)((tsf & 0xFFFFFFFF00000000ULL) >> 32), |
| 87 | (unsigned int)(tsf & 0xFFFFFFFFULL)); |
| 88 | |
| 89 | return count; |
| 90 | } |
| 91 | |
| 92 | /* wl->irq_lock is locked */ |
| 93 | static int tsf_write_file(struct b43legacy_wldev *dev, const char *buf, size_t count) |
| 94 | { |
| 95 | u64 tsf; |
| 96 | |
| 97 | if (sscanf(buf, "%llu", (unsigned long long *)(&tsf)) != 1) |
| 98 | return -EINVAL; |
| 99 | b43legacy_tsf_write(dev, tsf); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | /* wl->irq_lock is locked */ |
| 105 | static ssize_t ucode_regs_read_file(struct b43legacy_wldev *dev, char *buf, size_t bufsize) |
| 106 | { |
| 107 | ssize_t count = 0; |
| 108 | int i; |
| 109 | |
| 110 | for (i = 0; i < 64; i++) { |
| 111 | fappend("r%d = 0x%04x\n", i, |
| 112 | b43legacy_shm_read16(dev, B43legacy_SHM_WIRELESS, i)); |
| 113 | } |
| 114 | |
| 115 | return count; |
| 116 | } |
| 117 | |
| 118 | /* wl->irq_lock is locked */ |
| 119 | static ssize_t shm_read_file(struct b43legacy_wldev *dev, char *buf, size_t bufsize) |
| 120 | { |
| 121 | ssize_t count = 0; |
| 122 | int i; |
| 123 | u16 tmp; |
| 124 | __le16 *le16buf = (__le16 *)buf; |
| 125 | |
| 126 | for (i = 0; i < 0x1000; i++) { |
Stefano Brivio | 187a9dc | 2007-11-06 22:48:36 +0100 | [diff] [blame] | 127 | if (bufsize < sizeof(tmp)) |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 128 | break; |
| 129 | tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 2 * i); |
| 130 | le16buf[i] = cpu_to_le16(tmp); |
| 131 | count += sizeof(tmp); |
| 132 | bufsize -= sizeof(tmp); |
| 133 | } |
| 134 | |
| 135 | return count; |
| 136 | } |
| 137 | |
| 138 | static ssize_t txstat_read_file(struct b43legacy_wldev *dev, char *buf, size_t bufsize) |
| 139 | { |
| 140 | struct b43legacy_txstatus_log *log = &dev->dfsentry->txstatlog; |
| 141 | ssize_t count = 0; |
| 142 | unsigned long flags; |
| 143 | int i, idx; |
| 144 | struct b43legacy_txstatus *stat; |
| 145 | |
| 146 | spin_lock_irqsave(&log->lock, flags); |
| 147 | if (log->end < 0) { |
| 148 | fappend("Nothing transmitted, yet\n"); |
| 149 | goto out_unlock; |
| 150 | } |
| 151 | fappend("b43legacy TX status reports:\n\n" |
| 152 | "index | cookie | seq | phy_stat | frame_count | " |
| 153 | "rts_count | supp_reason | pm_indicated | " |
| 154 | "intermediate | for_ampdu | acked\n" "---\n"); |
| 155 | i = log->end + 1; |
| 156 | idx = 0; |
| 157 | while (1) { |
| 158 | if (i == B43legacy_NR_LOGGED_TXSTATUS) |
| 159 | i = 0; |
| 160 | stat = &(log->log[i]); |
| 161 | if (stat->cookie) { |
| 162 | fappend("%03d | " |
| 163 | "0x%04X | 0x%04X | 0x%02X | " |
| 164 | "0x%X | 0x%X | " |
| 165 | "%u | %u | " |
| 166 | "%u | %u | %u\n", |
| 167 | idx, |
| 168 | stat->cookie, stat->seq, stat->phy_stat, |
| 169 | stat->frame_count, stat->rts_count, |
| 170 | stat->supp_reason, stat->pm_indicated, |
| 171 | stat->intermediate, stat->for_ampdu, |
| 172 | stat->acked); |
| 173 | idx++; |
| 174 | } |
| 175 | if (i == log->end) |
| 176 | break; |
| 177 | i++; |
| 178 | } |
| 179 | out_unlock: |
| 180 | spin_unlock_irqrestore(&log->lock, flags); |
| 181 | |
| 182 | return count; |
| 183 | } |
| 184 | |
| 185 | /* wl->irq_lock is locked */ |
| 186 | static int restart_write_file(struct b43legacy_wldev *dev, const char *buf, size_t count) |
| 187 | { |
| 188 | int err = 0; |
| 189 | |
| 190 | if (count > 0 && buf[0] == '1') { |
| 191 | b43legacy_controller_restart(dev, "manually restarted"); |
| 192 | } else |
| 193 | err = -EINVAL; |
| 194 | |
| 195 | return err; |
| 196 | } |
| 197 | |
| 198 | #undef fappend |
| 199 | |
| 200 | static int b43legacy_debugfs_open(struct inode *inode, struct file *file) |
| 201 | { |
| 202 | file->private_data = inode->i_private; |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | static ssize_t b43legacy_debugfs_read(struct file *file, char __user *userbuf, |
| 207 | size_t count, loff_t *ppos) |
| 208 | { |
| 209 | struct b43legacy_wldev *dev; |
| 210 | struct b43legacy_debugfs_fops *dfops; |
| 211 | struct b43legacy_dfs_file *dfile; |
Frank Lichtenheld | 125c5cc | 2007-11-24 21:11:08 +0100 | [diff] [blame] | 212 | ssize_t uninitialized_var(ret); |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 213 | char *buf; |
| 214 | const size_t bufsize = 1024 * 128; |
| 215 | const size_t buforder = get_order(bufsize); |
| 216 | int err = 0; |
| 217 | |
| 218 | if (!count) |
| 219 | return 0; |
| 220 | dev = file->private_data; |
| 221 | if (!dev) |
| 222 | return -ENODEV; |
| 223 | |
| 224 | mutex_lock(&dev->wl->mutex); |
| 225 | if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED) { |
| 226 | err = -ENODEV; |
| 227 | goto out_unlock; |
| 228 | } |
| 229 | |
| 230 | dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); |
| 231 | if (!dfops->read) { |
| 232 | err = -ENOSYS; |
| 233 | goto out_unlock; |
| 234 | } |
| 235 | dfile = fops_to_dfs_file(dev, dfops); |
| 236 | |
| 237 | if (!dfile->buffer) { |
| 238 | buf = (char *)__get_free_pages(GFP_KERNEL, buforder); |
| 239 | if (!buf) { |
| 240 | err = -ENOMEM; |
| 241 | goto out_unlock; |
| 242 | } |
| 243 | memset(buf, 0, bufsize); |
| 244 | if (dfops->take_irqlock) { |
| 245 | spin_lock_irq(&dev->wl->irq_lock); |
| 246 | ret = dfops->read(dev, buf, bufsize); |
| 247 | spin_unlock_irq(&dev->wl->irq_lock); |
| 248 | } else |
| 249 | ret = dfops->read(dev, buf, bufsize); |
| 250 | if (ret <= 0) { |
| 251 | free_pages((unsigned long)buf, buforder); |
| 252 | err = ret; |
| 253 | goto out_unlock; |
| 254 | } |
| 255 | dfile->data_len = ret; |
| 256 | dfile->buffer = buf; |
| 257 | } |
| 258 | |
| 259 | ret = simple_read_from_buffer(userbuf, count, ppos, |
| 260 | dfile->buffer, |
| 261 | dfile->data_len); |
| 262 | if (*ppos >= dfile->data_len) { |
| 263 | free_pages((unsigned long)dfile->buffer, buforder); |
| 264 | dfile->buffer = NULL; |
| 265 | dfile->data_len = 0; |
| 266 | } |
| 267 | out_unlock: |
| 268 | mutex_unlock(&dev->wl->mutex); |
| 269 | |
| 270 | return err ? err : ret; |
| 271 | } |
| 272 | |
| 273 | static ssize_t b43legacy_debugfs_write(struct file *file, |
| 274 | const char __user *userbuf, |
| 275 | size_t count, loff_t *ppos) |
| 276 | { |
| 277 | struct b43legacy_wldev *dev; |
| 278 | struct b43legacy_debugfs_fops *dfops; |
| 279 | char *buf; |
| 280 | int err = 0; |
| 281 | |
| 282 | if (!count) |
| 283 | return 0; |
| 284 | if (count > PAGE_SIZE) |
| 285 | return -E2BIG; |
| 286 | dev = file->private_data; |
| 287 | if (!dev) |
| 288 | return -ENODEV; |
| 289 | |
| 290 | mutex_lock(&dev->wl->mutex); |
| 291 | if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED) { |
| 292 | err = -ENODEV; |
| 293 | goto out_unlock; |
| 294 | } |
| 295 | |
| 296 | dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); |
| 297 | if (!dfops->write) { |
| 298 | err = -ENOSYS; |
| 299 | goto out_unlock; |
| 300 | } |
| 301 | |
| 302 | buf = (char *)get_zeroed_page(GFP_KERNEL); |
| 303 | if (!buf) { |
| 304 | err = -ENOMEM; |
| 305 | goto out_unlock; |
| 306 | } |
| 307 | if (copy_from_user(buf, userbuf, count)) { |
| 308 | err = -EFAULT; |
| 309 | goto out_freepage; |
| 310 | } |
| 311 | if (dfops->take_irqlock) { |
| 312 | spin_lock_irq(&dev->wl->irq_lock); |
| 313 | err = dfops->write(dev, buf, count); |
| 314 | spin_unlock_irq(&dev->wl->irq_lock); |
| 315 | } else |
| 316 | err = dfops->write(dev, buf, count); |
| 317 | if (err) |
| 318 | goto out_freepage; |
| 319 | |
| 320 | out_freepage: |
| 321 | free_page((unsigned long)buf); |
| 322 | out_unlock: |
| 323 | mutex_unlock(&dev->wl->mutex); |
| 324 | |
| 325 | return err ? err : count; |
| 326 | } |
| 327 | |
| 328 | |
| 329 | #define B43legacy_DEBUGFS_FOPS(name, _read, _write, _take_irqlock) \ |
| 330 | static struct b43legacy_debugfs_fops fops_##name = { \ |
| 331 | .read = _read, \ |
| 332 | .write = _write, \ |
| 333 | .fops = { \ |
| 334 | .open = b43legacy_debugfs_open, \ |
| 335 | .read = b43legacy_debugfs_read, \ |
| 336 | .write = b43legacy_debugfs_write, \ |
| 337 | }, \ |
| 338 | .file_struct_offset = offsetof(struct b43legacy_dfsentry, \ |
| 339 | file_##name), \ |
| 340 | .take_irqlock = _take_irqlock, \ |
| 341 | } |
| 342 | |
| 343 | B43legacy_DEBUGFS_FOPS(tsf, tsf_read_file, tsf_write_file, 1); |
| 344 | B43legacy_DEBUGFS_FOPS(ucode_regs, ucode_regs_read_file, NULL, 1); |
| 345 | B43legacy_DEBUGFS_FOPS(shm, shm_read_file, NULL, 1); |
| 346 | B43legacy_DEBUGFS_FOPS(txstat, txstat_read_file, NULL, 0); |
| 347 | B43legacy_DEBUGFS_FOPS(restart, NULL, restart_write_file, 1); |
| 348 | |
| 349 | |
| 350 | int b43legacy_debug(struct b43legacy_wldev *dev, enum b43legacy_dyndbg feature) |
| 351 | { |
| 352 | return !!(dev->dfsentry && dev->dfsentry->dyn_debug[feature]); |
| 353 | } |
| 354 | |
| 355 | static void b43legacy_remove_dynamic_debug(struct b43legacy_wldev *dev) |
| 356 | { |
| 357 | struct b43legacy_dfsentry *e = dev->dfsentry; |
| 358 | int i; |
| 359 | |
| 360 | for (i = 0; i < __B43legacy_NR_DYNDBG; i++) |
| 361 | debugfs_remove(e->dyn_debug_dentries[i]); |
| 362 | } |
| 363 | |
| 364 | static void b43legacy_add_dynamic_debug(struct b43legacy_wldev *dev) |
| 365 | { |
| 366 | struct b43legacy_dfsentry *e = dev->dfsentry; |
| 367 | struct dentry *d; |
| 368 | |
| 369 | #define add_dyn_dbg(name, id, initstate) do { \ |
| 370 | e->dyn_debug[id] = (initstate); \ |
| 371 | d = debugfs_create_bool(name, 0600, e->subdir, \ |
| 372 | &(e->dyn_debug[id])); \ |
| 373 | if (!IS_ERR(d)) \ |
| 374 | e->dyn_debug_dentries[id] = d; \ |
| 375 | } while (0) |
| 376 | |
| 377 | add_dyn_dbg("debug_xmitpower", B43legacy_DBG_XMITPOWER, 0); |
| 378 | add_dyn_dbg("debug_dmaoverflow", B43legacy_DBG_DMAOVERFLOW, 0); |
| 379 | add_dyn_dbg("debug_dmaverbose", B43legacy_DBG_DMAVERBOSE, 0); |
| 380 | add_dyn_dbg("debug_pwork_fast", B43legacy_DBG_PWORK_FAST, 0); |
| 381 | add_dyn_dbg("debug_pwork_stop", B43legacy_DBG_PWORK_STOP, 0); |
| 382 | |
| 383 | #undef add_dyn_dbg |
| 384 | } |
| 385 | |
| 386 | void b43legacy_debugfs_add_device(struct b43legacy_wldev *dev) |
| 387 | { |
| 388 | struct b43legacy_dfsentry *e; |
| 389 | struct b43legacy_txstatus_log *log; |
| 390 | char devdir[16]; |
| 391 | |
| 392 | B43legacy_WARN_ON(!dev); |
| 393 | e = kzalloc(sizeof(*e), GFP_KERNEL); |
| 394 | if (!e) { |
| 395 | b43legacyerr(dev->wl, "debugfs: add device OOM\n"); |
| 396 | return; |
| 397 | } |
| 398 | e->dev = dev; |
| 399 | log = &e->txstatlog; |
| 400 | log->log = kcalloc(B43legacy_NR_LOGGED_TXSTATUS, |
| 401 | sizeof(struct b43legacy_txstatus), GFP_KERNEL); |
| 402 | if (!log->log) { |
| 403 | b43legacyerr(dev->wl, "debugfs: add device txstatus OOM\n"); |
| 404 | kfree(e); |
| 405 | return; |
| 406 | } |
| 407 | log->end = -1; |
| 408 | spin_lock_init(&log->lock); |
| 409 | |
| 410 | dev->dfsentry = e; |
| 411 | |
| 412 | snprintf(devdir, sizeof(devdir), "%s", wiphy_name(dev->wl->hw->wiphy)); |
| 413 | e->subdir = debugfs_create_dir(devdir, rootdir); |
| 414 | if (!e->subdir || IS_ERR(e->subdir)) { |
| 415 | if (e->subdir == ERR_PTR(-ENODEV)) { |
| 416 | b43legacydbg(dev->wl, "DebugFS (CONFIG_DEBUG_FS) not " |
| 417 | "enabled in kernel config\n"); |
| 418 | } else { |
| 419 | b43legacyerr(dev->wl, "debugfs: cannot create %s directory\n", |
| 420 | devdir); |
| 421 | } |
| 422 | dev->dfsentry = NULL; |
| 423 | kfree(log->log); |
| 424 | kfree(e); |
| 425 | return; |
| 426 | } |
| 427 | |
| 428 | #define ADD_FILE(name, mode) \ |
| 429 | do { \ |
| 430 | struct dentry *d; \ |
| 431 | d = debugfs_create_file(__stringify(name), \ |
| 432 | mode, e->subdir, dev, \ |
| 433 | &fops_##name.fops); \ |
| 434 | e->file_##name.dentry = NULL; \ |
| 435 | if (!IS_ERR(d)) \ |
| 436 | e->file_##name.dentry = d; \ |
| 437 | } while (0) |
| 438 | |
| 439 | |
| 440 | ADD_FILE(tsf, 0600); |
| 441 | ADD_FILE(ucode_regs, 0400); |
| 442 | ADD_FILE(shm, 0400); |
| 443 | ADD_FILE(txstat, 0400); |
| 444 | ADD_FILE(restart, 0200); |
| 445 | |
| 446 | #undef ADD_FILE |
| 447 | |
| 448 | b43legacy_add_dynamic_debug(dev); |
| 449 | } |
| 450 | |
| 451 | void b43legacy_debugfs_remove_device(struct b43legacy_wldev *dev) |
| 452 | { |
| 453 | struct b43legacy_dfsentry *e; |
| 454 | |
| 455 | if (!dev) |
| 456 | return; |
| 457 | e = dev->dfsentry; |
| 458 | if (!e) |
| 459 | return; |
| 460 | b43legacy_remove_dynamic_debug(dev); |
| 461 | |
| 462 | debugfs_remove(e->file_tsf.dentry); |
| 463 | debugfs_remove(e->file_ucode_regs.dentry); |
| 464 | debugfs_remove(e->file_shm.dentry); |
| 465 | debugfs_remove(e->file_txstat.dentry); |
| 466 | debugfs_remove(e->file_restart.dentry); |
| 467 | |
| 468 | debugfs_remove(e->subdir); |
| 469 | kfree(e->txstatlog.log); |
| 470 | kfree(e); |
| 471 | } |
| 472 | |
| 473 | void b43legacy_debugfs_log_txstat(struct b43legacy_wldev *dev, |
| 474 | const struct b43legacy_txstatus *status) |
| 475 | { |
| 476 | struct b43legacy_dfsentry *e = dev->dfsentry; |
| 477 | struct b43legacy_txstatus_log *log; |
| 478 | struct b43legacy_txstatus *cur; |
| 479 | int i; |
| 480 | |
| 481 | if (!e) |
| 482 | return; |
| 483 | log = &e->txstatlog; |
| 484 | B43legacy_WARN_ON(!irqs_disabled()); |
| 485 | spin_lock(&log->lock); |
| 486 | i = log->end + 1; |
| 487 | if (i == B43legacy_NR_LOGGED_TXSTATUS) |
| 488 | i = 0; |
| 489 | log->end = i; |
| 490 | cur = &(log->log[i]); |
| 491 | memcpy(cur, status, sizeof(*cur)); |
| 492 | spin_unlock(&log->lock); |
| 493 | } |
| 494 | |
| 495 | void b43legacy_debugfs_init(void) |
| 496 | { |
| 497 | rootdir = debugfs_create_dir(KBUILD_MODNAME, NULL); |
| 498 | if (IS_ERR(rootdir)) |
| 499 | rootdir = NULL; |
| 500 | } |
| 501 | |
| 502 | void b43legacy_debugfs_exit(void) |
| 503 | { |
| 504 | debugfs_remove(rootdir); |
| 505 | } |