John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom BCM43xx wireless driver |
| 4 | |
| 5 | debugfs driver debugging code |
| 6 | |
| 7 | Copyright (c) 2005 Michael Buesch <mbuesch@freenet.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 | |
| 27 | |
| 28 | #include <linux/fs.h> |
| 29 | #include <linux/debugfs.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/netdevice.h> |
| 32 | #include <linux/pci.h> |
| 33 | #include <asm/io.h> |
| 34 | |
| 35 | #include "bcm43xx.h" |
| 36 | #include "bcm43xx_main.h" |
| 37 | #include "bcm43xx_debugfs.h" |
| 38 | #include "bcm43xx_dma.h" |
| 39 | #include "bcm43xx_pio.h" |
Michael Buesch | f398f02 | 2006-02-23 21:15:39 +0100 | [diff] [blame] | 40 | #include "bcm43xx_xmit.h" |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 41 | |
| 42 | #define REALLY_BIG_BUFFER_SIZE (1024*256) |
| 43 | |
| 44 | static struct bcm43xx_debugfs fs; |
| 45 | static char really_big_buffer[REALLY_BIG_BUFFER_SIZE]; |
| 46 | static DECLARE_MUTEX(big_buffer_sem); |
| 47 | |
| 48 | |
| 49 | static ssize_t write_file_dummy(struct file *file, const char __user *buf, |
| 50 | size_t count, loff_t *ppos) |
| 51 | { |
| 52 | return count; |
| 53 | } |
| 54 | |
| 55 | static int open_file_generic(struct inode *inode, struct file *file) |
| 56 | { |
| 57 | file->private_data = inode->u.generic_ip; |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | #define fappend(fmt, x...) pos += snprintf(buf + pos, len - pos, fmt , ##x) |
| 62 | |
| 63 | static ssize_t devinfo_read_file(struct file *file, char __user *userbuf, |
| 64 | size_t count, loff_t *ppos) |
| 65 | { |
| 66 | const size_t len = REALLY_BIG_BUFFER_SIZE; |
| 67 | |
| 68 | struct bcm43xx_private *bcm = file->private_data; |
| 69 | char *buf = really_big_buffer; |
| 70 | size_t pos = 0; |
| 71 | ssize_t res; |
| 72 | struct net_device *net_dev; |
| 73 | struct pci_dev *pci_dev; |
| 74 | unsigned long flags; |
| 75 | u16 tmp16; |
| 76 | int i; |
| 77 | |
| 78 | down(&big_buffer_sem); |
| 79 | |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 80 | mutex_lock(&bcm->mutex); |
| 81 | spin_lock_irqsave(&bcm->irq_lock, flags); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 82 | if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 83 | fappend("Board not initialized.\n"); |
| 84 | goto out; |
| 85 | } |
| 86 | net_dev = bcm->net_dev; |
| 87 | pci_dev = bcm->pci_dev; |
| 88 | |
| 89 | /* This is where the information is written to the "devinfo" file */ |
| 90 | fappend("*** %s devinfo ***\n", net_dev->name); |
| 91 | fappend("vendor: 0x%04x device: 0x%04x\n", |
| 92 | pci_dev->vendor, pci_dev->device); |
| 93 | fappend("subsystem_vendor: 0x%04x subsystem_device: 0x%04x\n", |
| 94 | pci_dev->subsystem_vendor, pci_dev->subsystem_device); |
| 95 | fappend("IRQ: %d\n", bcm->irq); |
Michael Buesch | cc93571 | 2006-04-10 02:08:33 +0200 | [diff] [blame] | 96 | fappend("mmio_addr: 0x%p\n", bcm->mmio_addr); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 97 | fappend("chip_id: 0x%04x chip_rev: 0x%02x\n", bcm->chip_id, bcm->chip_rev); |
| 98 | if ((bcm->core_80211[0].rev >= 3) && (bcm43xx_read32(bcm, 0x0158) & (1 << 16))) |
| 99 | fappend("Radio disabled by hardware!\n"); |
| 100 | if ((bcm->core_80211[0].rev < 3) && !(bcm43xx_read16(bcm, 0x049A) & (1 << 4))) |
| 101 | fappend("Radio disabled by hardware!\n"); |
| 102 | fappend("board_vendor: 0x%04x board_type: 0x%04x\n", bcm->board_vendor, |
| 103 | bcm->board_type); |
| 104 | |
| 105 | fappend("\nCores:\n"); |
| 106 | #define fappend_core(name, info) fappend("core \"" name "\" %s, %s, id: 0x%04x, " \ |
| 107 | "rev: 0x%02x, index: 0x%02x\n", \ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 108 | (info).available \ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 109 | ? "available" : "nonavailable", \ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 110 | (info).enabled \ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 111 | ? "enabled" : "disabled", \ |
| 112 | (info).id, (info).rev, (info).index) |
| 113 | fappend_core("CHIPCOMMON", bcm->core_chipcommon); |
| 114 | fappend_core("PCI", bcm->core_pci); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 115 | fappend_core("first 80211", bcm->core_80211[0]); |
| 116 | fappend_core("second 80211", bcm->core_80211[1]); |
| 117 | #undef fappend_core |
| 118 | tmp16 = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL); |
| 119 | fappend("LEDs: "); |
| 120 | for (i = 0; i < BCM43xx_NR_LEDS; i++) |
| 121 | fappend("%d ", !!(tmp16 & (1 << i))); |
| 122 | fappend("\n"); |
| 123 | |
| 124 | out: |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 125 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
| 126 | mutex_unlock(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 127 | res = simple_read_from_buffer(userbuf, count, ppos, buf, pos); |
| 128 | up(&big_buffer_sem); |
| 129 | return res; |
| 130 | } |
| 131 | |
| 132 | static ssize_t drvinfo_read_file(struct file *file, char __user *userbuf, |
| 133 | size_t count, loff_t *ppos) |
| 134 | { |
| 135 | const size_t len = REALLY_BIG_BUFFER_SIZE; |
| 136 | |
| 137 | char *buf = really_big_buffer; |
| 138 | size_t pos = 0; |
| 139 | ssize_t res; |
| 140 | |
| 141 | down(&big_buffer_sem); |
| 142 | |
| 143 | /* This is where the information is written to the "driver" file */ |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 144 | fappend(KBUILD_MODNAME " driver\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 145 | fappend("Compiled at: %s %s\n", __DATE__, __TIME__); |
| 146 | |
| 147 | res = simple_read_from_buffer(userbuf, count, ppos, buf, pos); |
| 148 | up(&big_buffer_sem); |
| 149 | return res; |
| 150 | } |
| 151 | |
| 152 | static ssize_t spromdump_read_file(struct file *file, char __user *userbuf, |
| 153 | size_t count, loff_t *ppos) |
| 154 | { |
| 155 | const size_t len = REALLY_BIG_BUFFER_SIZE; |
| 156 | |
| 157 | struct bcm43xx_private *bcm = file->private_data; |
| 158 | char *buf = really_big_buffer; |
| 159 | size_t pos = 0; |
| 160 | ssize_t res; |
| 161 | unsigned long flags; |
| 162 | |
| 163 | down(&big_buffer_sem); |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 164 | mutex_lock(&bcm->mutex); |
| 165 | spin_lock_irqsave(&bcm->irq_lock, flags); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 166 | if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 167 | fappend("Board not initialized.\n"); |
| 168 | goto out; |
| 169 | } |
| 170 | |
| 171 | /* This is where the information is written to the "sprom_dump" file */ |
| 172 | fappend("boardflags: 0x%04x\n", bcm->sprom.boardflags); |
| 173 | |
| 174 | out: |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 175 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
| 176 | mutex_unlock(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 177 | res = simple_read_from_buffer(userbuf, count, ppos, buf, pos); |
| 178 | up(&big_buffer_sem); |
| 179 | return res; |
| 180 | } |
| 181 | |
| 182 | static ssize_t tsf_read_file(struct file *file, char __user *userbuf, |
| 183 | size_t count, loff_t *ppos) |
| 184 | { |
| 185 | const size_t len = REALLY_BIG_BUFFER_SIZE; |
| 186 | |
| 187 | struct bcm43xx_private *bcm = file->private_data; |
| 188 | char *buf = really_big_buffer; |
| 189 | size_t pos = 0; |
| 190 | ssize_t res; |
| 191 | unsigned long flags; |
| 192 | u64 tsf; |
| 193 | |
| 194 | down(&big_buffer_sem); |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 195 | mutex_lock(&bcm->mutex); |
| 196 | spin_lock_irqsave(&bcm->irq_lock, flags); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 197 | if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 198 | fappend("Board not initialized.\n"); |
| 199 | goto out; |
| 200 | } |
| 201 | bcm43xx_tsf_read(bcm, &tsf); |
| 202 | fappend("0x%08x%08x\n", |
| 203 | (unsigned int)((tsf & 0xFFFFFFFF00000000ULL) >> 32), |
| 204 | (unsigned int)(tsf & 0xFFFFFFFFULL)); |
| 205 | |
| 206 | out: |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 207 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
| 208 | mutex_unlock(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 209 | res = simple_read_from_buffer(userbuf, count, ppos, buf, pos); |
| 210 | up(&big_buffer_sem); |
| 211 | return res; |
| 212 | } |
| 213 | |
| 214 | static ssize_t tsf_write_file(struct file *file, const char __user *user_buf, |
| 215 | size_t count, loff_t *ppos) |
| 216 | { |
| 217 | struct bcm43xx_private *bcm = file->private_data; |
| 218 | char *buf = really_big_buffer; |
| 219 | ssize_t buf_size; |
| 220 | ssize_t res; |
| 221 | unsigned long flags; |
| 222 | u64 tsf; |
| 223 | |
| 224 | buf_size = min(count, sizeof (really_big_buffer) - 1); |
| 225 | down(&big_buffer_sem); |
| 226 | if (copy_from_user(buf, user_buf, buf_size)) { |
| 227 | res = -EFAULT; |
| 228 | goto out_up; |
| 229 | } |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 230 | mutex_lock(&bcm->mutex); |
| 231 | spin_lock_irqsave(&bcm->irq_lock, flags); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 232 | if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 233 | printk(KERN_INFO PFX "debugfs: Board not initialized.\n"); |
| 234 | res = -EFAULT; |
| 235 | goto out_unlock; |
| 236 | } |
| 237 | if (sscanf(buf, "%lli", &tsf) != 1) { |
| 238 | printk(KERN_INFO PFX "debugfs: invalid values for \"tsf\"\n"); |
| 239 | res = -EINVAL; |
| 240 | goto out_unlock; |
| 241 | } |
| 242 | bcm43xx_tsf_write(bcm, tsf); |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 243 | mmiowb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 244 | res = buf_size; |
| 245 | |
| 246 | out_unlock: |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 247 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
| 248 | mutex_unlock(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 249 | out_up: |
| 250 | up(&big_buffer_sem); |
| 251 | return res; |
| 252 | } |
| 253 | |
| 254 | static ssize_t txstat_read_file(struct file *file, char __user *userbuf, |
| 255 | size_t count, loff_t *ppos) |
| 256 | { |
| 257 | const size_t len = REALLY_BIG_BUFFER_SIZE; |
| 258 | |
| 259 | struct bcm43xx_private *bcm = file->private_data; |
| 260 | char *buf = really_big_buffer; |
| 261 | size_t pos = 0; |
| 262 | ssize_t res; |
| 263 | unsigned long flags; |
| 264 | struct bcm43xx_dfsentry *e; |
| 265 | struct bcm43xx_xmitstatus *status; |
| 266 | int i, cnt, j = 0; |
| 267 | |
| 268 | down(&big_buffer_sem); |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 269 | mutex_lock(&bcm->mutex); |
| 270 | spin_lock_irqsave(&bcm->irq_lock, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 271 | |
| 272 | fappend("Last %d logged xmitstatus blobs (Latest first):\n\n", |
| 273 | BCM43xx_NR_LOGGED_XMITSTATUS); |
| 274 | e = bcm->dfsentry; |
| 275 | if (e->xmitstatus_printing == 0) { |
| 276 | /* At the beginning, make a copy of all data to avoid |
| 277 | * concurrency, as this function is called multiple |
| 278 | * times for big logs. Without copying, the data might |
| 279 | * change between reads. This would result in total trash. |
| 280 | */ |
| 281 | e->xmitstatus_printing = 1; |
| 282 | e->saved_xmitstatus_ptr = e->xmitstatus_ptr; |
| 283 | e->saved_xmitstatus_cnt = e->xmitstatus_cnt; |
| 284 | memcpy(e->xmitstatus_print_buffer, e->xmitstatus_buffer, |
| 285 | BCM43xx_NR_LOGGED_XMITSTATUS * sizeof(*(e->xmitstatus_buffer))); |
| 286 | } |
| 287 | i = e->saved_xmitstatus_ptr - 1; |
| 288 | if (i < 0) |
| 289 | i = BCM43xx_NR_LOGGED_XMITSTATUS - 1; |
| 290 | cnt = e->saved_xmitstatus_cnt; |
| 291 | while (cnt) { |
| 292 | status = e->xmitstatus_print_buffer + i; |
| 293 | fappend("0x%02x: cookie: 0x%04x, flags: 0x%02x, " |
| 294 | "cnt1: 0x%02x, cnt2: 0x%02x, seq: 0x%04x, " |
| 295 | "unk: 0x%04x\n", j, |
| 296 | status->cookie, status->flags, |
| 297 | status->cnt1, status->cnt2, status->seq, |
| 298 | status->unknown); |
| 299 | j++; |
| 300 | cnt--; |
| 301 | i--; |
| 302 | if (i < 0) |
| 303 | i = BCM43xx_NR_LOGGED_XMITSTATUS - 1; |
| 304 | } |
| 305 | |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 306 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 307 | res = simple_read_from_buffer(userbuf, count, ppos, buf, pos); |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 308 | spin_lock_irqsave(&bcm->irq_lock, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 309 | if (*ppos == pos) { |
| 310 | /* Done. Drop the copied data. */ |
| 311 | e->xmitstatus_printing = 0; |
| 312 | } |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 313 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
| 314 | mutex_unlock(&bcm->mutex); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 315 | up(&big_buffer_sem); |
| 316 | return res; |
| 317 | } |
| 318 | |
| 319 | #undef fappend |
| 320 | |
| 321 | |
| 322 | static struct file_operations devinfo_fops = { |
| 323 | .read = devinfo_read_file, |
| 324 | .write = write_file_dummy, |
| 325 | .open = open_file_generic, |
| 326 | }; |
| 327 | |
| 328 | static struct file_operations spromdump_fops = { |
| 329 | .read = spromdump_read_file, |
| 330 | .write = write_file_dummy, |
| 331 | .open = open_file_generic, |
| 332 | }; |
| 333 | |
| 334 | static struct file_operations drvinfo_fops = { |
| 335 | .read = drvinfo_read_file, |
| 336 | .write = write_file_dummy, |
| 337 | .open = open_file_generic, |
| 338 | }; |
| 339 | |
| 340 | static struct file_operations tsf_fops = { |
| 341 | .read = tsf_read_file, |
| 342 | .write = tsf_write_file, |
| 343 | .open = open_file_generic, |
| 344 | }; |
| 345 | |
| 346 | static struct file_operations txstat_fops = { |
| 347 | .read = txstat_read_file, |
| 348 | .write = write_file_dummy, |
| 349 | .open = open_file_generic, |
| 350 | }; |
| 351 | |
| 352 | |
| 353 | void bcm43xx_debugfs_add_device(struct bcm43xx_private *bcm) |
| 354 | { |
| 355 | struct bcm43xx_dfsentry *e; |
| 356 | char devdir[IFNAMSIZ]; |
| 357 | |
| 358 | assert(bcm); |
| 359 | e = kzalloc(sizeof(*e), GFP_KERNEL); |
| 360 | if (!e) { |
| 361 | printk(KERN_ERR PFX "out of memory\n"); |
| 362 | return; |
| 363 | } |
| 364 | e->bcm = bcm; |
| 365 | e->xmitstatus_buffer = kzalloc(BCM43xx_NR_LOGGED_XMITSTATUS |
| 366 | * sizeof(*(e->xmitstatus_buffer)), |
| 367 | GFP_KERNEL); |
| 368 | if (!e->xmitstatus_buffer) { |
| 369 | printk(KERN_ERR PFX "out of memory\n"); |
| 370 | kfree(e); |
| 371 | return; |
| 372 | } |
| 373 | e->xmitstatus_print_buffer = kzalloc(BCM43xx_NR_LOGGED_XMITSTATUS |
| 374 | * sizeof(*(e->xmitstatus_buffer)), |
| 375 | GFP_KERNEL); |
| 376 | if (!e->xmitstatus_print_buffer) { |
| 377 | printk(KERN_ERR PFX "out of memory\n"); |
| 378 | kfree(e); |
| 379 | return; |
| 380 | } |
| 381 | |
| 382 | |
| 383 | bcm->dfsentry = e; |
| 384 | |
| 385 | strncpy(devdir, bcm->net_dev->name, ARRAY_SIZE(devdir)); |
| 386 | e->subdir = debugfs_create_dir(devdir, fs.root); |
| 387 | e->dentry_devinfo = debugfs_create_file("devinfo", 0444, e->subdir, |
| 388 | bcm, &devinfo_fops); |
| 389 | if (!e->dentry_devinfo) |
| 390 | printk(KERN_ERR PFX "debugfs: creating \"devinfo\" for \"%s\" failed!\n", devdir); |
| 391 | e->dentry_spromdump = debugfs_create_file("sprom_dump", 0444, e->subdir, |
| 392 | bcm, &spromdump_fops); |
| 393 | if (!e->dentry_spromdump) |
| 394 | printk(KERN_ERR PFX "debugfs: creating \"sprom_dump\" for \"%s\" failed!\n", devdir); |
| 395 | e->dentry_tsf = debugfs_create_file("tsf", 0666, e->subdir, |
| 396 | bcm, &tsf_fops); |
| 397 | if (!e->dentry_tsf) |
| 398 | printk(KERN_ERR PFX "debugfs: creating \"tsf\" for \"%s\" failed!\n", devdir); |
| 399 | e->dentry_txstat = debugfs_create_file("tx_status", 0444, e->subdir, |
| 400 | bcm, &txstat_fops); |
| 401 | if (!e->dentry_txstat) |
| 402 | printk(KERN_ERR PFX "debugfs: creating \"tx_status\" for \"%s\" failed!\n", devdir); |
| 403 | } |
| 404 | |
| 405 | void bcm43xx_debugfs_remove_device(struct bcm43xx_private *bcm) |
| 406 | { |
| 407 | struct bcm43xx_dfsentry *e; |
| 408 | |
| 409 | if (!bcm) |
| 410 | return; |
| 411 | |
| 412 | e = bcm->dfsentry; |
| 413 | assert(e); |
| 414 | debugfs_remove(e->dentry_spromdump); |
| 415 | debugfs_remove(e->dentry_devinfo); |
| 416 | debugfs_remove(e->dentry_tsf); |
| 417 | debugfs_remove(e->dentry_txstat); |
| 418 | debugfs_remove(e->subdir); |
| 419 | kfree(e->xmitstatus_buffer); |
| 420 | kfree(e->xmitstatus_print_buffer); |
| 421 | kfree(e); |
| 422 | } |
| 423 | |
| 424 | void bcm43xx_debugfs_log_txstat(struct bcm43xx_private *bcm, |
| 425 | struct bcm43xx_xmitstatus *status) |
| 426 | { |
| 427 | struct bcm43xx_dfsentry *e; |
| 428 | struct bcm43xx_xmitstatus *savedstatus; |
| 429 | |
Michael Buesch | efccb64 | 2006-03-11 13:39:14 +0100 | [diff] [blame] | 430 | /* This is protected by bcm->_lock */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 431 | e = bcm->dfsentry; |
| 432 | assert(e); |
| 433 | savedstatus = e->xmitstatus_buffer + e->xmitstatus_ptr; |
| 434 | memcpy(savedstatus, status, sizeof(*status)); |
| 435 | e->xmitstatus_ptr++; |
| 436 | if (e->xmitstatus_ptr >= BCM43xx_NR_LOGGED_XMITSTATUS) |
| 437 | e->xmitstatus_ptr = 0; |
| 438 | if (e->xmitstatus_cnt < BCM43xx_NR_LOGGED_XMITSTATUS) |
| 439 | e->xmitstatus_cnt++; |
| 440 | } |
| 441 | |
| 442 | void bcm43xx_debugfs_init(void) |
| 443 | { |
| 444 | memset(&fs, 0, sizeof(fs)); |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 445 | fs.root = debugfs_create_dir(KBUILD_MODNAME, NULL); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 446 | if (!fs.root) |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 447 | printk(KERN_ERR PFX "debugfs: creating \"" KBUILD_MODNAME "\" subdir failed!\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 448 | fs.dentry_driverinfo = debugfs_create_file("driver", 0444, fs.root, NULL, &drvinfo_fops); |
| 449 | if (!fs.dentry_driverinfo) |
Michael Buesch | 65f3f19 | 2006-01-31 20:11:38 +0100 | [diff] [blame] | 450 | printk(KERN_ERR PFX "debugfs: creating \"" KBUILD_MODNAME "/driver\" failed!\n"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | void bcm43xx_debugfs_exit(void) |
| 454 | { |
| 455 | debugfs_remove(fs.dentry_driverinfo); |
| 456 | debugfs_remove(fs.root); |
| 457 | } |
| 458 | |
| 459 | void bcm43xx_printk_dump(const char *data, |
| 460 | size_t size, |
| 461 | const char *description) |
| 462 | { |
| 463 | size_t i; |
| 464 | char c; |
| 465 | |
Randy Dunlap | 4c6f749 | 2006-04-11 14:31:56 -0700 | [diff] [blame] | 466 | printk(KERN_INFO PFX "Data dump (%s, %zd bytes):", |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 467 | description, size); |
| 468 | for (i = 0; i < size; i++) { |
| 469 | c = data[i]; |
| 470 | if (i % 8 == 0) |
Randy Dunlap | 4c6f749 | 2006-04-11 14:31:56 -0700 | [diff] [blame] | 471 | printk("\n" KERN_INFO PFX "0x%08zx: 0x%02x, ", i, c & 0xff); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 472 | else |
| 473 | printk("0x%02x, ", c & 0xff); |
| 474 | } |
| 475 | printk("\n"); |
| 476 | } |
| 477 | |
| 478 | void bcm43xx_printk_bitdump(const unsigned char *data, |
| 479 | size_t bytes, int msb_to_lsb, |
| 480 | const char *description) |
| 481 | { |
| 482 | size_t i; |
| 483 | int j; |
| 484 | const unsigned char *d; |
| 485 | |
Randy Dunlap | 4c6f749 | 2006-04-11 14:31:56 -0700 | [diff] [blame] | 486 | printk(KERN_INFO PFX "*** Bitdump (%s, %zd bytes, %s) ***", |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 487 | description, bytes, msb_to_lsb ? "MSB to LSB" : "LSB to MSB"); |
| 488 | for (i = 0; i < bytes; i++) { |
| 489 | d = data + i; |
| 490 | if (i % 8 == 0) |
Randy Dunlap | 4c6f749 | 2006-04-11 14:31:56 -0700 | [diff] [blame] | 491 | printk("\n" KERN_INFO PFX "0x%08zx: ", i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 492 | if (msb_to_lsb) { |
| 493 | for (j = 7; j >= 0; j--) { |
| 494 | if (*d & (1 << j)) |
| 495 | printk("1"); |
| 496 | else |
| 497 | printk("0"); |
| 498 | } |
| 499 | } else { |
| 500 | for (j = 0; j < 8; j++) { |
| 501 | if (*d & (1 << j)) |
| 502 | printk("1"); |
| 503 | else |
| 504 | printk("0"); |
| 505 | } |
| 506 | } |
| 507 | printk(" "); |
| 508 | } |
| 509 | printk("\n"); |
| 510 | } |