blob: 9569fb4e5bc5625b5586b13294b6435fbb83e398 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07003 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00lib
23 Abstract: rt2x00 debugfs specific routines.
24 */
25
Ivo van Doorn95ea3622007-09-25 17:57:13 -070026#include <linux/debugfs.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010029#include <linux/poll.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040030#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070032#include <linux/uaccess.h>
33
34#include "rt2x00.h"
35#include "rt2x00lib.h"
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010036#include "rt2x00dump.h"
Ivo van Doorn95ea3622007-09-25 17:57:13 -070037
Ivo van Doorn68598d292008-02-10 22:50:28 +010038#define MAX_LINE_LENGTH 64
Ivo van Doorn95ea3622007-09-25 17:57:13 -070039
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020040struct rt2x00debug_crypto {
41 unsigned long success;
42 unsigned long icv_error;
43 unsigned long mic_error;
44 unsigned long key_error;
45};
46
Ivo van Doorn95ea3622007-09-25 17:57:13 -070047struct rt2x00debug_intf {
48 /*
49 * Pointer to driver structure where
50 * this debugfs entry belongs to.
51 */
52 struct rt2x00_dev *rt2x00dev;
53
54 /*
55 * Reference to the rt2x00debug structure
56 * which can be used to communicate with
57 * the registers.
58 */
59 const struct rt2x00debug *debug;
60
61 /*
62 * Debugfs entries for:
63 * - driver folder
Ivo van Doorn91921a42007-11-27 21:48:16 +010064 * - driver file
65 * - chipset file
66 * - device flags file
67 * - register folder
68 * - csr offset/value files
69 * - eeprom offset/value files
70 * - bbp offset/value files
71 * - rf offset/value files
Ivo van Doorn68598d292008-02-10 22:50:28 +010072 * - queue folder
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010073 * - frame dump file
Ivo van Doorn68598d292008-02-10 22:50:28 +010074 * - queue stats file
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020075 * - crypto stats file
Ivo van Doorn95ea3622007-09-25 17:57:13 -070076 */
77 struct dentry *driver_folder;
78 struct dentry *driver_entry;
79 struct dentry *chipset_entry;
Ivo van Doorn643b2522007-09-25 20:13:51 +020080 struct dentry *dev_flags;
Ivo van Doorn91921a42007-11-27 21:48:16 +010081 struct dentry *register_folder;
Ivo van Doorn95ea3622007-09-25 17:57:13 -070082 struct dentry *csr_off_entry;
83 struct dentry *csr_val_entry;
84 struct dentry *eeprom_off_entry;
85 struct dentry *eeprom_val_entry;
86 struct dentry *bbp_off_entry;
87 struct dentry *bbp_val_entry;
88 struct dentry *rf_off_entry;
89 struct dentry *rf_val_entry;
Ivo van Doorn68598d292008-02-10 22:50:28 +010090 struct dentry *queue_folder;
91 struct dentry *queue_frame_dump_entry;
92 struct dentry *queue_stats_entry;
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020093 struct dentry *crypto_stats_entry;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010094
95 /*
96 * The frame dump file only allows a single reader,
97 * so we need to store the current state here.
98 */
99 unsigned long frame_dump_flags;
100#define FRAME_DUMP_FILE_OPEN 1
101
102 /*
103 * We queue each frame before dumping it to the user,
104 * per read command we will pass a single skb structure
105 * so we should be prepared to queue multiple sk buffers
106 * before sending it to userspace.
107 */
108 struct sk_buff_head frame_dump_skbqueue;
109 wait_queue_head_t frame_dump_waitqueue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700110
111 /*
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200112 * HW crypto statistics.
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800113 * All statistics are stored separately per cipher type.
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200114 */
115 struct rt2x00debug_crypto crypto_stats[CIPHER_MAX];
116
117 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700118 * Driver and chipset files will use a data buffer
119 * that has been created in advance. This will simplify
120 * the code since we can use the debugfs functions.
121 */
122 struct debugfs_blob_wrapper driver_blob;
123 struct debugfs_blob_wrapper chipset_blob;
124
125 /*
126 * Requested offset for each register type.
127 */
128 unsigned int offset_csr;
129 unsigned int offset_eeprom;
130 unsigned int offset_bbp;
131 unsigned int offset_rf;
132};
133
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200134void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn84e31962008-12-20 10:53:29 +0100135 struct rxdone_entry_desc *rxdesc)
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200136{
137 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100138 enum cipher cipher = rxdesc->cipher;
139 enum rx_crypto status = rxdesc->cipher_status;
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200140
141 if (cipher == CIPHER_TKIP_NO_MIC)
142 cipher = CIPHER_TKIP;
Roel Kluina6c67332009-05-20 02:12:56 +0200143 if (cipher == CIPHER_NONE || cipher >= CIPHER_MAX)
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200144 return;
145
146 /* Remove CIPHER_NONE index */
147 cipher--;
148
149 intf->crypto_stats[cipher].success += (status == RX_CRYPTO_SUCCESS);
150 intf->crypto_stats[cipher].icv_error += (status == RX_CRYPTO_FAIL_ICV);
151 intf->crypto_stats[cipher].mic_error += (status == RX_CRYPTO_FAIL_MIC);
152 intf->crypto_stats[cipher].key_error += (status == RX_CRYPTO_FAIL_KEY);
153}
154
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100155void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn5a6e5992008-05-10 13:41:32 +0200156 enum rt2x00_dump_type type, struct sk_buff *skb)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100157{
158 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500159 struct skb_frame_desc *desc = get_skb_frame_desc(skb);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100160 struct sk_buff *skbcopy;
161 struct rt2x00dump_hdr *dump_hdr;
162 struct timeval timestamp;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100163
164 do_gettimeofday(&timestamp);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100165
166 if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags))
167 return;
168
169 if (skb_queue_len(&intf->frame_dump_skbqueue) > 20) {
170 DEBUG(rt2x00dev, "txrx dump queue length exceeded.\n");
171 return;
172 }
173
Gertjan van Wingerded56d4532008-06-06 22:54:08 +0200174 skbcopy = alloc_skb(sizeof(*dump_hdr) + desc->desc_len + skb->len,
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100175 GFP_ATOMIC);
176 if (!skbcopy) {
177 DEBUG(rt2x00dev, "Failed to copy skb for dump.\n");
178 return;
179 }
180
181 dump_hdr = (struct rt2x00dump_hdr *)skb_put(skbcopy, sizeof(*dump_hdr));
182 dump_hdr->version = cpu_to_le32(DUMP_HEADER_VERSION);
183 dump_hdr->header_length = cpu_to_le32(sizeof(*dump_hdr));
184 dump_hdr->desc_length = cpu_to_le32(desc->desc_len);
Gertjan van Wingerded56d4532008-06-06 22:54:08 +0200185 dump_hdr->data_length = cpu_to_le32(skb->len);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100186 dump_hdr->chip_rt = cpu_to_le16(rt2x00dev->chip.rt);
187 dump_hdr->chip_rf = cpu_to_le16(rt2x00dev->chip.rf);
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +0100188 dump_hdr->chip_rev = cpu_to_le16(rt2x00dev->chip.rev);
Ivo van Doorn5a6e5992008-05-10 13:41:32 +0200189 dump_hdr->type = cpu_to_le16(type);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500190 dump_hdr->queue_index = desc->entry->queue->qid;
Ivo van Doorn04267102008-01-06 23:39:25 +0100191 dump_hdr->entry_index = desc->entry->entry_idx;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100192 dump_hdr->timestamp_sec = cpu_to_le32(timestamp.tv_sec);
193 dump_hdr->timestamp_usec = cpu_to_le32(timestamp.tv_usec);
194
195 memcpy(skb_put(skbcopy, desc->desc_len), desc->desc, desc->desc_len);
Gertjan van Wingerded56d4532008-06-06 22:54:08 +0200196 memcpy(skb_put(skbcopy, skb->len), skb->data, skb->len);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100197
198 skb_queue_tail(&intf->frame_dump_skbqueue, skbcopy);
199 wake_up_interruptible(&intf->frame_dump_waitqueue);
200
201 /*
202 * Verify that the file has not been closed while we were working.
203 */
204 if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags))
205 skb_queue_purge(&intf->frame_dump_skbqueue);
206}
207
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700208static int rt2x00debug_file_open(struct inode *inode, struct file *file)
209{
210 struct rt2x00debug_intf *intf = inode->i_private;
211
212 file->private_data = inode->i_private;
213
214 if (!try_module_get(intf->debug->owner))
215 return -EBUSY;
216
217 return 0;
218}
219
220static int rt2x00debug_file_release(struct inode *inode, struct file *file)
221{
222 struct rt2x00debug_intf *intf = file->private_data;
223
224 module_put(intf->debug->owner);
225
226 return 0;
227}
228
Ivo van Doorn181d6902008-02-05 16:42:23 -0500229static int rt2x00debug_open_queue_dump(struct inode *inode, struct file *file)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100230{
231 struct rt2x00debug_intf *intf = inode->i_private;
232 int retval;
233
234 retval = rt2x00debug_file_open(inode, file);
235 if (retval)
236 return retval;
237
238 if (test_and_set_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags)) {
239 rt2x00debug_file_release(inode, file);
240 return -EBUSY;
241 }
242
243 return 0;
244}
245
Ivo van Doorn181d6902008-02-05 16:42:23 -0500246static int rt2x00debug_release_queue_dump(struct inode *inode, struct file *file)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100247{
248 struct rt2x00debug_intf *intf = inode->i_private;
249
250 skb_queue_purge(&intf->frame_dump_skbqueue);
251
252 clear_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags);
253
254 return rt2x00debug_file_release(inode, file);
255}
256
Ivo van Doorn181d6902008-02-05 16:42:23 -0500257static ssize_t rt2x00debug_read_queue_dump(struct file *file,
258 char __user *buf,
259 size_t length,
260 loff_t *offset)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100261{
262 struct rt2x00debug_intf *intf = file->private_data;
263 struct sk_buff *skb;
264 size_t status;
265 int retval;
266
267 if (file->f_flags & O_NONBLOCK)
268 return -EAGAIN;
269
270 retval =
271 wait_event_interruptible(intf->frame_dump_waitqueue,
272 (skb =
273 skb_dequeue(&intf->frame_dump_skbqueue)));
274 if (retval)
275 return retval;
276
277 status = min((size_t)skb->len, length);
278 if (copy_to_user(buf, skb->data, status)) {
279 status = -EFAULT;
280 goto exit;
281 }
282
283 *offset += status;
284
285exit:
286 kfree_skb(skb);
287
288 return status;
289}
290
Ivo van Doorn181d6902008-02-05 16:42:23 -0500291static unsigned int rt2x00debug_poll_queue_dump(struct file *file,
John Daiker55887512008-10-17 12:16:17 -0700292 poll_table *wait)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100293{
294 struct rt2x00debug_intf *intf = file->private_data;
295
296 poll_wait(file, &intf->frame_dump_waitqueue, wait);
297
298 if (!skb_queue_empty(&intf->frame_dump_skbqueue))
299 return POLLOUT | POLLWRNORM;
300
301 return 0;
302}
303
Ivo van Doorn181d6902008-02-05 16:42:23 -0500304static const struct file_operations rt2x00debug_fop_queue_dump = {
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100305 .owner = THIS_MODULE,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500306 .read = rt2x00debug_read_queue_dump,
307 .poll = rt2x00debug_poll_queue_dump,
308 .open = rt2x00debug_open_queue_dump,
309 .release = rt2x00debug_release_queue_dump,
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100310};
311
Ivo van Doorn68598d292008-02-10 22:50:28 +0100312static ssize_t rt2x00debug_read_queue_stats(struct file *file,
313 char __user *buf,
314 size_t length,
315 loff_t *offset)
316{
317 struct rt2x00debug_intf *intf = file->private_data;
318 struct data_queue *queue;
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100319 unsigned long irqflags;
Ivo van Doorn68598d292008-02-10 22:50:28 +0100320 unsigned int lines = 1 + intf->rt2x00dev->data_queues;
321 size_t size;
322 char *data;
323 char *temp;
324
325 if (*offset)
326 return 0;
327
328 data = kzalloc(lines * MAX_LINE_LENGTH, GFP_KERNEL);
329 if (!data)
330 return -ENOMEM;
331
332 temp = data +
333 sprintf(data, "qid\tcount\tlimit\tlength\tindex\tdone\tcrypto\n");
334
335 queue_for_each(intf->rt2x00dev, queue) {
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100336 spin_lock_irqsave(&queue->lock, irqflags);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100337
338 temp += sprintf(temp, "%d\t%d\t%d\t%d\t%d\t%d\t%d\n", queue->qid,
339 queue->count, queue->limit, queue->length,
340 queue->index[Q_INDEX],
341 queue->index[Q_INDEX_DONE],
342 queue->index[Q_INDEX_CRYPTO]);
343
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100344 spin_unlock_irqrestore(&queue->lock, irqflags);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100345 }
346
347 size = strlen(data);
348 size = min(size, length);
349
350 if (copy_to_user(buf, data, size)) {
351 kfree(data);
352 return -EFAULT;
353 }
354
355 kfree(data);
356
357 *offset += size;
358 return size;
359}
360
361static const struct file_operations rt2x00debug_fop_queue_stats = {
362 .owner = THIS_MODULE,
363 .read = rt2x00debug_read_queue_stats,
364 .open = rt2x00debug_file_open,
365 .release = rt2x00debug_file_release,
366};
367
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200368#ifdef CONFIG_RT2X00_LIB_CRYPTO
369static ssize_t rt2x00debug_read_crypto_stats(struct file *file,
370 char __user *buf,
371 size_t length,
372 loff_t *offset)
373{
374 struct rt2x00debug_intf *intf = file->private_data;
375 char *name[] = { "WEP64", "WEP128", "TKIP", "AES" };
376 char *data;
377 char *temp;
378 size_t size;
379 unsigned int i;
380
381 if (*offset)
382 return 0;
383
John Daiker55887512008-10-17 12:16:17 -0700384 data = kzalloc((1 + CIPHER_MAX) * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200385 if (!data)
386 return -ENOMEM;
387
388 temp = data;
389 temp += sprintf(data, "cipher\tsuccess\ticv err\tmic err\tkey err\n");
390
391 for (i = 0; i < CIPHER_MAX; i++) {
392 temp += sprintf(temp, "%s\t%lu\t%lu\t%lu\t%lu\n", name[i],
393 intf->crypto_stats[i].success,
394 intf->crypto_stats[i].icv_error,
395 intf->crypto_stats[i].mic_error,
396 intf->crypto_stats[i].key_error);
397 }
398
399 size = strlen(data);
400 size = min(size, length);
401
402 if (copy_to_user(buf, data, size)) {
403 kfree(data);
404 return -EFAULT;
405 }
406
407 kfree(data);
408
409 *offset += size;
410 return size;
411}
412
413static const struct file_operations rt2x00debug_fop_crypto_stats = {
414 .owner = THIS_MODULE,
415 .read = rt2x00debug_read_crypto_stats,
416 .open = rt2x00debug_file_open,
417 .release = rt2x00debug_file_release,
418};
419#endif
420
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700421#define RT2X00DEBUGFS_OPS_READ(__name, __format, __type) \
422static ssize_t rt2x00debug_read_##__name(struct file *file, \
423 char __user *buf, \
424 size_t length, \
425 loff_t *offset) \
426{ \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100427 struct rt2x00debug_intf *intf = file->private_data; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700428 const struct rt2x00debug *debug = intf->debug; \
429 char line[16]; \
430 size_t size; \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100431 unsigned int index = intf->offset_##__name; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700432 __type value; \
433 \
434 if (*offset) \
435 return 0; \
436 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100437 if (index >= debug->__name.word_count) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700438 return -EINVAL; \
439 \
Ivo van Doornabd2fdb2009-02-17 14:04:29 +0100440 index += (debug->__name.word_base / \
441 debug->__name.word_size); \
442 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100443 if (debug->__name.flags & RT2X00DEBUGFS_OFFSET) \
444 index *= debug->__name.word_size; \
445 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100446 debug->__name.read(intf->rt2x00dev, index, &value); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700447 \
448 size = sprintf(line, __format, value); \
449 \
450 if (copy_to_user(buf, line, size)) \
451 return -EFAULT; \
452 \
453 *offset += size; \
454 return size; \
455}
456
457#define RT2X00DEBUGFS_OPS_WRITE(__name, __type) \
458static ssize_t rt2x00debug_write_##__name(struct file *file, \
459 const char __user *buf,\
460 size_t length, \
461 loff_t *offset) \
462{ \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100463 struct rt2x00debug_intf *intf = file->private_data; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700464 const struct rt2x00debug *debug = intf->debug; \
465 char line[16]; \
466 size_t size; \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100467 unsigned int index = intf->offset_##__name; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700468 __type value; \
469 \
470 if (*offset) \
471 return 0; \
472 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100473 if (index >= debug->__name.word_count) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700474 return -EINVAL; \
475 \
476 if (copy_from_user(line, buf, length)) \
477 return -EFAULT; \
478 \
479 size = strlen(line); \
480 value = simple_strtoul(line, NULL, 0); \
481 \
Ivo van Doornabd2fdb2009-02-17 14:04:29 +0100482 index += (debug->__name.word_base / \
483 debug->__name.word_size); \
484 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100485 if (debug->__name.flags & RT2X00DEBUGFS_OFFSET) \
486 index *= debug->__name.word_size; \
487 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100488 debug->__name.write(intf->rt2x00dev, index, value); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700489 \
490 *offset += size; \
491 return size; \
492}
493
494#define RT2X00DEBUGFS_OPS(__name, __format, __type) \
495RT2X00DEBUGFS_OPS_READ(__name, __format, __type); \
496RT2X00DEBUGFS_OPS_WRITE(__name, __type); \
497 \
498static const struct file_operations rt2x00debug_fop_##__name = {\
499 .owner = THIS_MODULE, \
500 .read = rt2x00debug_read_##__name, \
501 .write = rt2x00debug_write_##__name, \
502 .open = rt2x00debug_file_open, \
503 .release = rt2x00debug_file_release, \
504};
505
506RT2X00DEBUGFS_OPS(csr, "0x%.8x\n", u32);
507RT2X00DEBUGFS_OPS(eeprom, "0x%.4x\n", u16);
508RT2X00DEBUGFS_OPS(bbp, "0x%.2x\n", u8);
509RT2X00DEBUGFS_OPS(rf, "0x%.8x\n", u32);
510
Ivo van Doorn643b2522007-09-25 20:13:51 +0200511static ssize_t rt2x00debug_read_dev_flags(struct file *file,
512 char __user *buf,
513 size_t length,
514 loff_t *offset)
515{
516 struct rt2x00debug_intf *intf = file->private_data;
517 char line[16];
518 size_t size;
519
520 if (*offset)
521 return 0;
522
523 size = sprintf(line, "0x%.8x\n", (unsigned int)intf->rt2x00dev->flags);
524
525 if (copy_to_user(buf, line, size))
526 return -EFAULT;
527
528 *offset += size;
529 return size;
530}
531
532static const struct file_operations rt2x00debug_fop_dev_flags = {
533 .owner = THIS_MODULE,
534 .read = rt2x00debug_read_dev_flags,
535 .open = rt2x00debug_file_open,
536 .release = rt2x00debug_file_release,
537};
538
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700539static struct dentry *rt2x00debug_create_file_driver(const char *name,
540 struct rt2x00debug_intf
541 *intf,
542 struct debugfs_blob_wrapper
543 *blob)
544{
545 char *data;
546
Ivo van Doorn68598d292008-02-10 22:50:28 +0100547 data = kzalloc(3 * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700548 if (!data)
549 return NULL;
550
551 blob->data = data;
Ivo van Doorn860559f2009-03-03 18:14:18 +0100552 data += sprintf(data, "driver:\t%s\n", intf->rt2x00dev->ops->name);
553 data += sprintf(data, "version:\t%s\n", DRV_VERSION);
554 data += sprintf(data, "compiled:\t%s %s\n", __DATE__, __TIME__);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700555 blob->size = strlen(blob->data);
556
Ivo van Doornd2b69072008-07-27 15:06:05 +0200557 return debugfs_create_blob(name, S_IRUSR, intf->driver_folder, blob);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700558}
559
560static struct dentry *rt2x00debug_create_file_chipset(const char *name,
561 struct rt2x00debug_intf
562 *intf,
563 struct
564 debugfs_blob_wrapper
565 *blob)
566{
567 const struct rt2x00debug *debug = intf->debug;
568 char *data;
569
Ivo van Doorn68598d292008-02-10 22:50:28 +0100570 data = kzalloc(8 * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700571 if (!data)
572 return NULL;
573
Ivo van Doorn3e34c6d2008-01-06 23:38:10 +0100574 blob->data = data;
Ivo van Doorn860559f2009-03-03 18:14:18 +0100575 data += sprintf(data, "rt chip:\t%04x\n", intf->rt2x00dev->chip.rt);
576 data += sprintf(data, "rf chip:\t%04x\n", intf->rt2x00dev->chip.rf);
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +0100577 data += sprintf(data, "revision:\t%04x\n", intf->rt2x00dev->chip.rev);
Ivo van Doorn22c96c22007-11-27 21:48:37 +0100578 data += sprintf(data, "\n");
Ivo van Doorn860559f2009-03-03 18:14:18 +0100579 data += sprintf(data, "register\tbase\twords\twordsize\n");
580 data += sprintf(data, "csr\t%d\t%d\t%d\n",
581 debug->csr.word_base,
582 debug->csr.word_count,
583 debug->csr.word_size);
584 data += sprintf(data, "eeprom\t%d\t%d\t%d\n",
585 debug->eeprom.word_base,
586 debug->eeprom.word_count,
587 debug->eeprom.word_size);
588 data += sprintf(data, "bbp\t%d\t%d\t%d\n",
589 debug->bbp.word_base,
590 debug->bbp.word_count,
591 debug->bbp.word_size);
592 data += sprintf(data, "rf\t%d\t%d\t%d\n",
593 debug->rf.word_base,
594 debug->rf.word_count,
595 debug->rf.word_size);
Ivo van Doorn3e34c6d2008-01-06 23:38:10 +0100596 blob->size = strlen(blob->data);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700597
Ivo van Doornd2b69072008-07-27 15:06:05 +0200598 return debugfs_create_blob(name, S_IRUSR, intf->driver_folder, blob);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700599}
600
601void rt2x00debug_register(struct rt2x00_dev *rt2x00dev)
602{
603 const struct rt2x00debug *debug = rt2x00dev->ops->debugfs;
604 struct rt2x00debug_intf *intf;
605
606 intf = kzalloc(sizeof(struct rt2x00debug_intf), GFP_KERNEL);
607 if (!intf) {
608 ERROR(rt2x00dev, "Failed to allocate debug handler.\n");
609 return;
610 }
611
612 intf->debug = debug;
613 intf->rt2x00dev = rt2x00dev;
614 rt2x00dev->debugfs_intf = intf;
615
616 intf->driver_folder =
617 debugfs_create_dir(intf->rt2x00dev->ops->name,
618 rt2x00dev->hw->wiphy->debugfsdir);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800619 if (IS_ERR(intf->driver_folder) || !intf->driver_folder)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700620 goto exit;
621
622 intf->driver_entry =
623 rt2x00debug_create_file_driver("driver", intf, &intf->driver_blob);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800624 if (IS_ERR(intf->driver_entry) || !intf->driver_entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700625 goto exit;
626
627 intf->chipset_entry =
628 rt2x00debug_create_file_chipset("chipset",
629 intf, &intf->chipset_blob);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800630 if (IS_ERR(intf->chipset_entry) || !intf->chipset_entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700631 goto exit;
632
Ivo van Doornd2b69072008-07-27 15:06:05 +0200633 intf->dev_flags = debugfs_create_file("dev_flags", S_IRUSR,
Ivo van Doorn643b2522007-09-25 20:13:51 +0200634 intf->driver_folder, intf,
635 &rt2x00debug_fop_dev_flags);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800636 if (IS_ERR(intf->dev_flags) || !intf->dev_flags)
Ivo van Doorn643b2522007-09-25 20:13:51 +0200637 goto exit;
638
Ivo van Doorn91921a42007-11-27 21:48:16 +0100639 intf->register_folder =
640 debugfs_create_dir("register", intf->driver_folder);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800641 if (IS_ERR(intf->register_folder) || !intf->register_folder)
Ivo van Doorn91921a42007-11-27 21:48:16 +0100642 goto exit;
643
644#define RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(__intf, __name) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700645({ \
646 (__intf)->__name##_off_entry = \
647 debugfs_create_u32(__stringify(__name) "_offset", \
Ivo van Doornd2b69072008-07-27 15:06:05 +0200648 S_IRUSR | S_IWUSR, \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100649 (__intf)->register_folder, \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700650 &(__intf)->offset_##__name); \
Zhaoleicfa3fa42008-10-22 17:07:25 +0800651 if (IS_ERR((__intf)->__name##_off_entry) \
652 || !(__intf)->__name##_off_entry) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700653 goto exit; \
654 \
655 (__intf)->__name##_val_entry = \
656 debugfs_create_file(__stringify(__name) "_value", \
Ivo van Doornd2b69072008-07-27 15:06:05 +0200657 S_IRUSR | S_IWUSR, \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100658 (__intf)->register_folder, \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700659 (__intf), &rt2x00debug_fop_##__name);\
Zhaoleicfa3fa42008-10-22 17:07:25 +0800660 if (IS_ERR((__intf)->__name##_val_entry) \
661 || !(__intf)->__name##_val_entry) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700662 goto exit; \
663})
664
Ivo van Doorn91921a42007-11-27 21:48:16 +0100665 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, csr);
666 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, eeprom);
667 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, bbp);
668 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, rf);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700669
Ivo van Doorn91921a42007-11-27 21:48:16 +0100670#undef RT2X00DEBUGFS_CREATE_REGISTER_ENTRY
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700671
Ivo van Doorn68598d292008-02-10 22:50:28 +0100672 intf->queue_folder =
673 debugfs_create_dir("queue", intf->driver_folder);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800674 if (IS_ERR(intf->queue_folder) || !intf->queue_folder)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100675 goto exit;
676
Ivo van Doorn68598d292008-02-10 22:50:28 +0100677 intf->queue_frame_dump_entry =
Ivo van Doornd2b69072008-07-27 15:06:05 +0200678 debugfs_create_file("dump", S_IRUSR, intf->queue_folder,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500679 intf, &rt2x00debug_fop_queue_dump);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800680 if (IS_ERR(intf->queue_frame_dump_entry)
681 || !intf->queue_frame_dump_entry)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100682 goto exit;
683
684 skb_queue_head_init(&intf->frame_dump_skbqueue);
685 init_waitqueue_head(&intf->frame_dump_waitqueue);
686
Ivo van Doorn68598d292008-02-10 22:50:28 +0100687 intf->queue_stats_entry =
Ivo van Doornd2b69072008-07-27 15:06:05 +0200688 debugfs_create_file("queue", S_IRUSR, intf->queue_folder,
Ivo van Doorn68598d292008-02-10 22:50:28 +0100689 intf, &rt2x00debug_fop_queue_stats);
690
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200691#ifdef CONFIG_RT2X00_LIB_CRYPTO
692 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags))
693 intf->crypto_stats_entry =
694 debugfs_create_file("crypto", S_IRUGO, intf->queue_folder,
695 intf, &rt2x00debug_fop_crypto_stats);
696#endif
697
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700698 return;
699
700exit:
701 rt2x00debug_deregister(rt2x00dev);
702 ERROR(rt2x00dev, "Failed to register debug handler.\n");
703
704 return;
705}
706
707void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev)
708{
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100709 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700710
711 if (unlikely(!intf))
712 return;
713
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100714 skb_queue_purge(&intf->frame_dump_skbqueue);
715
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200716#ifdef CONFIG_RT2X00_LIB_CRYPTO
717 debugfs_remove(intf->crypto_stats_entry);
718#endif
Ivo van Doorn68598d292008-02-10 22:50:28 +0100719 debugfs_remove(intf->queue_stats_entry);
720 debugfs_remove(intf->queue_frame_dump_entry);
721 debugfs_remove(intf->queue_folder);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700722 debugfs_remove(intf->rf_val_entry);
723 debugfs_remove(intf->rf_off_entry);
724 debugfs_remove(intf->bbp_val_entry);
725 debugfs_remove(intf->bbp_off_entry);
726 debugfs_remove(intf->eeprom_val_entry);
727 debugfs_remove(intf->eeprom_off_entry);
728 debugfs_remove(intf->csr_val_entry);
729 debugfs_remove(intf->csr_off_entry);
Ivo van Doorn91921a42007-11-27 21:48:16 +0100730 debugfs_remove(intf->register_folder);
Ivo van Doorn643b2522007-09-25 20:13:51 +0200731 debugfs_remove(intf->dev_flags);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700732 debugfs_remove(intf->chipset_entry);
733 debugfs_remove(intf->driver_entry);
734 debugfs_remove(intf->driver_folder);
735 kfree(intf->chipset_blob.data);
736 kfree(intf->driver_blob.data);
737 kfree(intf);
738
739 rt2x00dev->debugfs_intf = NULL;
740}