3 Broadcom BCM43xx wireless driver
5 debugfs driver debugging code
7 Copyright (c) 2005 Michael Buesch <mbuesch@freenet.de>
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.
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.
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.
29 #include <linux/debugfs.h>
30 #include <linux/slab.h>
31 #include <linux/netdevice.h>
32 #include <linux/pci.h>
36 #include "bcm43xx_main.h"
37 #include "bcm43xx_debugfs.h"
38 #include "bcm43xx_dma.h"
39 #include "bcm43xx_pio.h"
40 #include "bcm43xx_xmit.h"
42 #define REALLY_BIG_BUFFER_SIZE (1024*256)
44 static struct bcm43xx_debugfs fs;
45 static char really_big_buffer[REALLY_BIG_BUFFER_SIZE];
46 static DECLARE_MUTEX(big_buffer_sem);
49 static ssize_t write_file_dummy(struct file *file, const char __user *buf,
50 size_t count, loff_t *ppos)
55 static int open_file_generic(struct inode *inode, struct file *file)
57 file->private_data = inode->u.generic_ip;
61 #define fappend(fmt, x...) pos += snprintf(buf + pos, len - pos, fmt , ##x)
63 static ssize_t devinfo_read_file(struct file *file, char __user *userbuf,
64 size_t count, loff_t *ppos)
66 const size_t len = REALLY_BIG_BUFFER_SIZE;
68 struct bcm43xx_private *bcm = file->private_data;
69 char *buf = really_big_buffer;
72 struct net_device *net_dev;
73 struct pci_dev *pci_dev;
78 down(&big_buffer_sem);
80 bcm43xx_lock_irqsafe(bcm, flags);
81 if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) {
82 fappend("Board not initialized.\n");
85 net_dev = bcm->net_dev;
86 pci_dev = bcm->pci_dev;
88 /* This is where the information is written to the "devinfo" file */
89 fappend("*** %s devinfo ***\n", net_dev->name);
90 fappend("vendor: 0x%04x device: 0x%04x\n",
91 pci_dev->vendor, pci_dev->device);
92 fappend("subsystem_vendor: 0x%04x subsystem_device: 0x%04x\n",
93 pci_dev->subsystem_vendor, pci_dev->subsystem_device);
94 fappend("IRQ: %d\n", bcm->irq);
95 fappend("mmio_addr: 0x%p\n", bcm->mmio_addr);
96 fappend("chip_id: 0x%04x chip_rev: 0x%02x\n", bcm->chip_id, bcm->chip_rev);
97 if ((bcm->core_80211[0].rev >= 3) && (bcm43xx_read32(bcm, 0x0158) & (1 << 16)))
98 fappend("Radio disabled by hardware!\n");
99 if ((bcm->core_80211[0].rev < 3) && !(bcm43xx_read16(bcm, 0x049A) & (1 << 4)))
100 fappend("Radio disabled by hardware!\n");
101 fappend("board_vendor: 0x%04x board_type: 0x%04x\n", bcm->board_vendor,
104 fappend("\nCores:\n");
105 #define fappend_core(name, info) fappend("core \"" name "\" %s, %s, id: 0x%04x, " \
106 "rev: 0x%02x, index: 0x%02x\n", \
108 ? "available" : "nonavailable", \
110 ? "enabled" : "disabled", \
111 (info).id, (info).rev, (info).index)
112 fappend_core("CHIPCOMMON", bcm->core_chipcommon);
113 fappend_core("PCI", bcm->core_pci);
114 fappend_core("first 80211", bcm->core_80211[0]);
115 fappend_core("second 80211", bcm->core_80211[1]);
117 tmp16 = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL);
119 for (i = 0; i < BCM43xx_NR_LEDS; i++)
120 fappend("%d ", !!(tmp16 & (1 << i)));
124 bcm43xx_unlock_irqsafe(bcm, flags);
125 res = simple_read_from_buffer(userbuf, count, ppos, buf, pos);
130 static ssize_t drvinfo_read_file(struct file *file, char __user *userbuf,
131 size_t count, loff_t *ppos)
133 const size_t len = REALLY_BIG_BUFFER_SIZE;
135 char *buf = really_big_buffer;
139 down(&big_buffer_sem);
141 /* This is where the information is written to the "driver" file */
142 fappend(KBUILD_MODNAME " driver\n");
143 fappend("Compiled at: %s %s\n", __DATE__, __TIME__);
145 res = simple_read_from_buffer(userbuf, count, ppos, buf, pos);
150 static ssize_t spromdump_read_file(struct file *file, char __user *userbuf,
151 size_t count, loff_t *ppos)
153 const size_t len = REALLY_BIG_BUFFER_SIZE;
155 struct bcm43xx_private *bcm = file->private_data;
156 char *buf = really_big_buffer;
161 down(&big_buffer_sem);
162 bcm43xx_lock_irqsafe(bcm, flags);
163 if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) {
164 fappend("Board not initialized.\n");
168 /* This is where the information is written to the "sprom_dump" file */
169 fappend("boardflags: 0x%04x\n", bcm->sprom.boardflags);
172 bcm43xx_unlock_irqsafe(bcm, flags);
173 res = simple_read_from_buffer(userbuf, count, ppos, buf, pos);
178 static ssize_t tsf_read_file(struct file *file, char __user *userbuf,
179 size_t count, loff_t *ppos)
181 const size_t len = REALLY_BIG_BUFFER_SIZE;
183 struct bcm43xx_private *bcm = file->private_data;
184 char *buf = really_big_buffer;
190 down(&big_buffer_sem);
191 bcm43xx_lock_irqsafe(bcm, flags);
192 if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) {
193 fappend("Board not initialized.\n");
196 bcm43xx_tsf_read(bcm, &tsf);
197 fappend("0x%08x%08x\n",
198 (unsigned int)((tsf & 0xFFFFFFFF00000000ULL) >> 32),
199 (unsigned int)(tsf & 0xFFFFFFFFULL));
202 bcm43xx_unlock_irqsafe(bcm, flags);
203 res = simple_read_from_buffer(userbuf, count, ppos, buf, pos);
208 static ssize_t tsf_write_file(struct file *file, const char __user *user_buf,
209 size_t count, loff_t *ppos)
211 struct bcm43xx_private *bcm = file->private_data;
212 char *buf = really_big_buffer;
218 buf_size = min(count, sizeof (really_big_buffer) - 1);
219 down(&big_buffer_sem);
220 if (copy_from_user(buf, user_buf, buf_size)) {
224 bcm43xx_lock_irqsafe(bcm, flags);
225 if (bcm43xx_status(bcm) != BCM43xx_STAT_INITIALIZED) {
226 printk(KERN_INFO PFX "debugfs: Board not initialized.\n");
230 if (sscanf(buf, "%lli", &tsf) != 1) {
231 printk(KERN_INFO PFX "debugfs: invalid values for \"tsf\"\n");
235 bcm43xx_tsf_write(bcm, tsf);
240 bcm43xx_unlock_irqsafe(bcm, flags);
246 static ssize_t txstat_read_file(struct file *file, char __user *userbuf,
247 size_t count, loff_t *ppos)
249 const size_t len = REALLY_BIG_BUFFER_SIZE;
251 struct bcm43xx_private *bcm = file->private_data;
252 char *buf = really_big_buffer;
256 struct bcm43xx_dfsentry *e;
257 struct bcm43xx_xmitstatus *status;
260 down(&big_buffer_sem);
261 bcm43xx_lock_irqsafe(bcm, flags);
263 fappend("Last %d logged xmitstatus blobs (Latest first):\n\n",
264 BCM43xx_NR_LOGGED_XMITSTATUS);
266 if (e->xmitstatus_printing == 0) {
267 /* At the beginning, make a copy of all data to avoid
268 * concurrency, as this function is called multiple
269 * times for big logs. Without copying, the data might
270 * change between reads. This would result in total trash.
272 e->xmitstatus_printing = 1;
273 e->saved_xmitstatus_ptr = e->xmitstatus_ptr;
274 e->saved_xmitstatus_cnt = e->xmitstatus_cnt;
275 memcpy(e->xmitstatus_print_buffer, e->xmitstatus_buffer,
276 BCM43xx_NR_LOGGED_XMITSTATUS * sizeof(*(e->xmitstatus_buffer)));
278 i = e->saved_xmitstatus_ptr - 1;
280 i = BCM43xx_NR_LOGGED_XMITSTATUS - 1;
281 cnt = e->saved_xmitstatus_cnt;
283 status = e->xmitstatus_print_buffer + i;
284 fappend("0x%02x: cookie: 0x%04x, flags: 0x%02x, "
285 "cnt1: 0x%02x, cnt2: 0x%02x, seq: 0x%04x, "
287 status->cookie, status->flags,
288 status->cnt1, status->cnt2, status->seq,
294 i = BCM43xx_NR_LOGGED_XMITSTATUS - 1;
297 bcm43xx_unlock_irqsafe(bcm, flags);
298 res = simple_read_from_buffer(userbuf, count, ppos, buf, pos);
299 bcm43xx_lock_irqsafe(bcm, flags);
301 /* Done. Drop the copied data. */
302 e->xmitstatus_printing = 0;
304 bcm43xx_unlock_irqsafe(bcm, flags);
312 static struct file_operations devinfo_fops = {
313 .read = devinfo_read_file,
314 .write = write_file_dummy,
315 .open = open_file_generic,
318 static struct file_operations spromdump_fops = {
319 .read = spromdump_read_file,
320 .write = write_file_dummy,
321 .open = open_file_generic,
324 static struct file_operations drvinfo_fops = {
325 .read = drvinfo_read_file,
326 .write = write_file_dummy,
327 .open = open_file_generic,
330 static struct file_operations tsf_fops = {
331 .read = tsf_read_file,
332 .write = tsf_write_file,
333 .open = open_file_generic,
336 static struct file_operations txstat_fops = {
337 .read = txstat_read_file,
338 .write = write_file_dummy,
339 .open = open_file_generic,
343 void bcm43xx_debugfs_add_device(struct bcm43xx_private *bcm)
345 struct bcm43xx_dfsentry *e;
346 char devdir[IFNAMSIZ];
349 e = kzalloc(sizeof(*e), GFP_KERNEL);
351 printk(KERN_ERR PFX "out of memory\n");
355 e->xmitstatus_buffer = kzalloc(BCM43xx_NR_LOGGED_XMITSTATUS
356 * sizeof(*(e->xmitstatus_buffer)),
358 if (!e->xmitstatus_buffer) {
359 printk(KERN_ERR PFX "out of memory\n");
363 e->xmitstatus_print_buffer = kzalloc(BCM43xx_NR_LOGGED_XMITSTATUS
364 * sizeof(*(e->xmitstatus_buffer)),
366 if (!e->xmitstatus_print_buffer) {
367 printk(KERN_ERR PFX "out of memory\n");
375 strncpy(devdir, bcm->net_dev->name, ARRAY_SIZE(devdir));
376 e->subdir = debugfs_create_dir(devdir, fs.root);
377 e->dentry_devinfo = debugfs_create_file("devinfo", 0444, e->subdir,
379 if (!e->dentry_devinfo)
380 printk(KERN_ERR PFX "debugfs: creating \"devinfo\" for \"%s\" failed!\n", devdir);
381 e->dentry_spromdump = debugfs_create_file("sprom_dump", 0444, e->subdir,
382 bcm, &spromdump_fops);
383 if (!e->dentry_spromdump)
384 printk(KERN_ERR PFX "debugfs: creating \"sprom_dump\" for \"%s\" failed!\n", devdir);
385 e->dentry_tsf = debugfs_create_file("tsf", 0666, e->subdir,
388 printk(KERN_ERR PFX "debugfs: creating \"tsf\" for \"%s\" failed!\n", devdir);
389 e->dentry_txstat = debugfs_create_file("tx_status", 0444, e->subdir,
391 if (!e->dentry_txstat)
392 printk(KERN_ERR PFX "debugfs: creating \"tx_status\" for \"%s\" failed!\n", devdir);
395 void bcm43xx_debugfs_remove_device(struct bcm43xx_private *bcm)
397 struct bcm43xx_dfsentry *e;
404 debugfs_remove(e->dentry_spromdump);
405 debugfs_remove(e->dentry_devinfo);
406 debugfs_remove(e->dentry_tsf);
407 debugfs_remove(e->dentry_txstat);
408 debugfs_remove(e->subdir);
409 kfree(e->xmitstatus_buffer);
410 kfree(e->xmitstatus_print_buffer);
414 void bcm43xx_debugfs_log_txstat(struct bcm43xx_private *bcm,
415 struct bcm43xx_xmitstatus *status)
417 struct bcm43xx_dfsentry *e;
418 struct bcm43xx_xmitstatus *savedstatus;
420 /* This is protected by bcm->_lock */
423 savedstatus = e->xmitstatus_buffer + e->xmitstatus_ptr;
424 memcpy(savedstatus, status, sizeof(*status));
426 if (e->xmitstatus_ptr >= BCM43xx_NR_LOGGED_XMITSTATUS)
427 e->xmitstatus_ptr = 0;
428 if (e->xmitstatus_cnt < BCM43xx_NR_LOGGED_XMITSTATUS)
432 void bcm43xx_debugfs_init(void)
434 memset(&fs, 0, sizeof(fs));
435 fs.root = debugfs_create_dir(KBUILD_MODNAME, NULL);
437 printk(KERN_ERR PFX "debugfs: creating \"" KBUILD_MODNAME "\" subdir failed!\n");
438 fs.dentry_driverinfo = debugfs_create_file("driver", 0444, fs.root, NULL, &drvinfo_fops);
439 if (!fs.dentry_driverinfo)
440 printk(KERN_ERR PFX "debugfs: creating \"" KBUILD_MODNAME "/driver\" failed!\n");
443 void bcm43xx_debugfs_exit(void)
445 debugfs_remove(fs.dentry_driverinfo);
446 debugfs_remove(fs.root);
449 void bcm43xx_printk_dump(const char *data,
451 const char *description)
456 printk(KERN_INFO PFX "Data dump (%s, %zd bytes):",
458 for (i = 0; i < size; i++) {
461 printk("\n" KERN_INFO PFX "0x%08zx: 0x%02x, ", i, c & 0xff);
463 printk("0x%02x, ", c & 0xff);
468 void bcm43xx_printk_bitdump(const unsigned char *data,
469 size_t bytes, int msb_to_lsb,
470 const char *description)
474 const unsigned char *d;
476 printk(KERN_INFO PFX "*** Bitdump (%s, %zd bytes, %s) ***",
477 description, bytes, msb_to_lsb ? "MSB to LSB" : "LSB to MSB");
478 for (i = 0; i < bytes; i++) {
481 printk("\n" KERN_INFO PFX "0x%08zx: ", i);
483 for (j = 7; j >= 0; j--) {
490 for (j = 0; j < 8; j++) {