blob: 0eee479583b86dcbebfcba02d8abe5ff946af2dd [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
Jeff Kirshera05b8c52013-12-06 03:32:11 -080016 along with this program; if not, see <http://www.gnu.org/licenses/>.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070017 */
18
19/*
20 Module: rt2x00lib
21 Abstract: rt2x00 debugfs specific routines.
22 */
23
Ivo van Doorn95ea3622007-09-25 17:57:13 -070024#include <linux/debugfs.h>
25#include <linux/kernel.h>
26#include <linux/module.h>
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010027#include <linux/poll.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040028#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070030#include <linux/uaccess.h>
31
32#include "rt2x00.h"
33#include "rt2x00lib.h"
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010034#include "rt2x00dump.h"
Ivo van Doorn95ea3622007-09-25 17:57:13 -070035
Ivo van Doorn68598d292008-02-10 22:50:28 +010036#define MAX_LINE_LENGTH 64
Ivo van Doorn95ea3622007-09-25 17:57:13 -070037
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020038struct rt2x00debug_crypto {
39 unsigned long success;
40 unsigned long icv_error;
41 unsigned long mic_error;
42 unsigned long key_error;
43};
44
Ivo van Doorn95ea3622007-09-25 17:57:13 -070045struct rt2x00debug_intf {
46 /*
47 * Pointer to driver structure where
48 * this debugfs entry belongs to.
49 */
50 struct rt2x00_dev *rt2x00dev;
51
52 /*
53 * Reference to the rt2x00debug structure
54 * which can be used to communicate with
55 * the registers.
56 */
57 const struct rt2x00debug *debug;
58
59 /*
60 * Debugfs entries for:
61 * - driver folder
Ivo van Doorn91921a42007-11-27 21:48:16 +010062 * - driver file
63 * - chipset file
Ivo van Doorn7dab73b2011-04-18 15:27:06 +020064 * - device state flags file
65 * - device capability flags file
Ivo van Doorn91921a42007-11-27 21:48:16 +010066 * - register folder
67 * - csr offset/value files
68 * - eeprom offset/value files
69 * - bbp offset/value files
70 * - rf offset/value files
Anisse Astierf2bd7f12012-04-19 15:53:10 +020071 * - rfcsr 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 Doorn7dab73b2011-04-18 15:27:06 +020081 struct dentry *cap_flags;
Ivo van Doorn91921a42007-11-27 21:48:16 +010082 struct dentry *register_folder;
Ivo van Doorn95ea3622007-09-25 17:57:13 -070083 struct dentry *csr_off_entry;
84 struct dentry *csr_val_entry;
85 struct dentry *eeprom_off_entry;
86 struct dentry *eeprom_val_entry;
87 struct dentry *bbp_off_entry;
88 struct dentry *bbp_val_entry;
89 struct dentry *rf_off_entry;
90 struct dentry *rf_val_entry;
Anisse Astierf2bd7f12012-04-19 15:53:10 +020091 struct dentry *rfcsr_off_entry;
92 struct dentry *rfcsr_val_entry;
Ivo van Doorn68598d292008-02-10 22:50:28 +010093 struct dentry *queue_folder;
94 struct dentry *queue_frame_dump_entry;
95 struct dentry *queue_stats_entry;
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020096 struct dentry *crypto_stats_entry;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +010097
98 /*
99 * The frame dump file only allows a single reader,
100 * so we need to store the current state here.
101 */
102 unsigned long frame_dump_flags;
103#define FRAME_DUMP_FILE_OPEN 1
104
105 /*
106 * We queue each frame before dumping it to the user,
107 * per read command we will pass a single skb structure
108 * so we should be prepared to queue multiple sk buffers
109 * before sending it to userspace.
110 */
111 struct sk_buff_head frame_dump_skbqueue;
112 wait_queue_head_t frame_dump_waitqueue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700113
114 /*
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200115 * HW crypto statistics.
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800116 * All statistics are stored separately per cipher type.
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200117 */
118 struct rt2x00debug_crypto crypto_stats[CIPHER_MAX];
119
120 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700121 * Driver and chipset files will use a data buffer
122 * that has been created in advance. This will simplify
123 * the code since we can use the debugfs functions.
124 */
125 struct debugfs_blob_wrapper driver_blob;
126 struct debugfs_blob_wrapper chipset_blob;
127
128 /*
129 * Requested offset for each register type.
130 */
131 unsigned int offset_csr;
132 unsigned int offset_eeprom;
133 unsigned int offset_bbp;
134 unsigned int offset_rf;
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200135 unsigned int offset_rfcsr;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700136};
137
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200138void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn84e31962008-12-20 10:53:29 +0100139 struct rxdone_entry_desc *rxdesc)
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200140{
141 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Ivo van Doorn84e31962008-12-20 10:53:29 +0100142 enum cipher cipher = rxdesc->cipher;
143 enum rx_crypto status = rxdesc->cipher_status;
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200144
145 if (cipher == CIPHER_TKIP_NO_MIC)
146 cipher = CIPHER_TKIP;
Roel Kluina6c67332009-05-20 02:12:56 +0200147 if (cipher == CIPHER_NONE || cipher >= CIPHER_MAX)
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200148 return;
149
150 /* Remove CIPHER_NONE index */
151 cipher--;
152
153 intf->crypto_stats[cipher].success += (status == RX_CRYPTO_SUCCESS);
154 intf->crypto_stats[cipher].icv_error += (status == RX_CRYPTO_FAIL_ICV);
155 intf->crypto_stats[cipher].mic_error += (status == RX_CRYPTO_FAIL_MIC);
156 intf->crypto_stats[cipher].key_error += (status == RX_CRYPTO_FAIL_KEY);
157}
158
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100159void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev,
Stanislaw Gruszka2ceb8132017-02-08 13:51:30 +0100160 enum rt2x00_dump_type type, struct queue_entry *entry)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100161{
162 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Stanislaw Gruszka2ceb8132017-02-08 13:51:30 +0100163 struct sk_buff *skb = entry->skb;
Gertjan van Wingerde878f7042010-05-11 23:51:37 +0200164 struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100165 struct sk_buff *skbcopy;
166 struct rt2x00dump_hdr *dump_hdr;
Arnd Bergmannf87eba92017-11-06 15:03:59 +0100167 struct timespec64 timestamp;
Gertjan van Wingerdefd76f142010-05-11 23:51:43 +0200168 u32 data_len;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100169
Helmut Schaae2f8c872010-11-04 20:38:56 +0100170 if (likely(!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags)))
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100171 return;
172
Arnd Bergmannf87eba92017-11-06 15:03:59 +0100173 ktime_get_ts64(&timestamp);
Helmut Schaae2f8c872010-11-04 20:38:56 +0100174
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100175 if (skb_queue_len(&intf->frame_dump_skbqueue) > 20) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700176 rt2x00_dbg(rt2x00dev, "txrx dump queue length exceeded\n");
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100177 return;
178 }
179
Gertjan van Wingerdefd76f142010-05-11 23:51:43 +0200180 data_len = skb->len;
181 if (skbdesc->flags & SKBDESC_DESC_IN_SKB)
182 data_len -= skbdesc->desc_len;
183
184 skbcopy = alloc_skb(sizeof(*dump_hdr) + skbdesc->desc_len + data_len,
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100185 GFP_ATOMIC);
186 if (!skbcopy) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700187 rt2x00_dbg(rt2x00dev, "Failed to copy skb for dump\n");
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100188 return;
189 }
190
Johannes Berg4df864c2017-06-16 14:29:21 +0200191 dump_hdr = skb_put(skbcopy, sizeof(*dump_hdr));
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100192 dump_hdr->version = cpu_to_le32(DUMP_HEADER_VERSION);
193 dump_hdr->header_length = cpu_to_le32(sizeof(*dump_hdr));
Gertjan van Wingerde878f7042010-05-11 23:51:37 +0200194 dump_hdr->desc_length = cpu_to_le32(skbdesc->desc_len);
Gertjan van Wingerdefd76f142010-05-11 23:51:43 +0200195 dump_hdr->data_length = cpu_to_le32(data_len);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100196 dump_hdr->chip_rt = cpu_to_le16(rt2x00dev->chip.rt);
197 dump_hdr->chip_rf = cpu_to_le16(rt2x00dev->chip.rf);
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +0100198 dump_hdr->chip_rev = cpu_to_le16(rt2x00dev->chip.rev);
Ivo van Doorn5a6e5992008-05-10 13:41:32 +0200199 dump_hdr->type = cpu_to_le16(type);
Stanislaw Gruszka2ceb8132017-02-08 13:51:30 +0100200 dump_hdr->queue_index = entry->queue->qid;
201 dump_hdr->entry_index = entry->entry_idx;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100202 dump_hdr->timestamp_sec = cpu_to_le32(timestamp.tv_sec);
Arnd Bergmannf87eba92017-11-06 15:03:59 +0100203 dump_hdr->timestamp_usec = cpu_to_le32(timestamp.tv_nsec /
204 NSEC_PER_USEC);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100205
Gertjan van Wingerdefd76f142010-05-11 23:51:43 +0200206 if (!(skbdesc->flags & SKBDESC_DESC_IN_SKB))
Johannes Berg59ae1d12017-06-16 14:29:20 +0200207 skb_put_data(skbcopy, skbdesc->desc, skbdesc->desc_len);
208 skb_put_data(skbcopy, skb->data, skb->len);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100209
210 skb_queue_tail(&intf->frame_dump_skbqueue, skbcopy);
211 wake_up_interruptible(&intf->frame_dump_waitqueue);
212
213 /*
214 * Verify that the file has not been closed while we were working.
215 */
216 if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags))
217 skb_queue_purge(&intf->frame_dump_skbqueue);
218}
Gertjan van Wingerdeb4df4702010-05-13 13:16:36 +0200219EXPORT_SYMBOL_GPL(rt2x00debug_dump_frame);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100220
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700221static int rt2x00debug_file_open(struct inode *inode, struct file *file)
222{
223 struct rt2x00debug_intf *intf = inode->i_private;
224
225 file->private_data = inode->i_private;
226
227 if (!try_module_get(intf->debug->owner))
228 return -EBUSY;
229
230 return 0;
231}
232
233static int rt2x00debug_file_release(struct inode *inode, struct file *file)
234{
235 struct rt2x00debug_intf *intf = file->private_data;
236
237 module_put(intf->debug->owner);
238
239 return 0;
240}
241
Ivo van Doorn181d6902008-02-05 16:42:23 -0500242static int rt2x00debug_open_queue_dump(struct inode *inode, struct file *file)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100243{
244 struct rt2x00debug_intf *intf = inode->i_private;
245 int retval;
246
247 retval = rt2x00debug_file_open(inode, file);
248 if (retval)
249 return retval;
250
251 if (test_and_set_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags)) {
252 rt2x00debug_file_release(inode, file);
253 return -EBUSY;
254 }
255
256 return 0;
257}
258
Ivo van Doorn181d6902008-02-05 16:42:23 -0500259static int rt2x00debug_release_queue_dump(struct inode *inode, struct file *file)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100260{
261 struct rt2x00debug_intf *intf = inode->i_private;
262
263 skb_queue_purge(&intf->frame_dump_skbqueue);
264
265 clear_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags);
266
267 return rt2x00debug_file_release(inode, file);
268}
269
Ivo van Doorn181d6902008-02-05 16:42:23 -0500270static ssize_t rt2x00debug_read_queue_dump(struct file *file,
271 char __user *buf,
272 size_t length,
273 loff_t *offset)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100274{
275 struct rt2x00debug_intf *intf = file->private_data;
276 struct sk_buff *skb;
277 size_t status;
278 int retval;
279
280 if (file->f_flags & O_NONBLOCK)
281 return -EAGAIN;
282
283 retval =
284 wait_event_interruptible(intf->frame_dump_waitqueue,
285 (skb =
286 skb_dequeue(&intf->frame_dump_skbqueue)));
287 if (retval)
288 return retval;
289
Silvan Jegenc8e49552014-02-25 18:12:52 +0100290 status = min_t(size_t, skb->len, length);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100291 if (copy_to_user(buf, skb->data, status)) {
292 status = -EFAULT;
293 goto exit;
294 }
295
296 *offset += status;
297
298exit:
299 kfree_skb(skb);
300
301 return status;
302}
303
Al Viroafc9a422017-07-03 06:39:46 -0400304static __poll_t rt2x00debug_poll_queue_dump(struct file *file,
John Daiker55887512008-10-17 12:16:17 -0700305 poll_table *wait)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100306{
307 struct rt2x00debug_intf *intf = file->private_data;
308
309 poll_wait(file, &intf->frame_dump_waitqueue, wait);
310
311 if (!skb_queue_empty(&intf->frame_dump_skbqueue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800312 return EPOLLOUT | EPOLLWRNORM;
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100313
314 return 0;
315}
316
Ivo van Doorn181d6902008-02-05 16:42:23 -0500317static const struct file_operations rt2x00debug_fop_queue_dump = {
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100318 .owner = THIS_MODULE,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500319 .read = rt2x00debug_read_queue_dump,
320 .poll = rt2x00debug_poll_queue_dump,
321 .open = rt2x00debug_open_queue_dump,
322 .release = rt2x00debug_release_queue_dump,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200323 .llseek = default_llseek,
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100324};
325
Ivo van Doorn68598d292008-02-10 22:50:28 +0100326static ssize_t rt2x00debug_read_queue_stats(struct file *file,
327 char __user *buf,
328 size_t length,
329 loff_t *offset)
330{
331 struct rt2x00debug_intf *intf = file->private_data;
332 struct data_queue *queue;
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100333 unsigned long irqflags;
Ivo van Doorn68598d292008-02-10 22:50:28 +0100334 unsigned int lines = 1 + intf->rt2x00dev->data_queues;
335 size_t size;
336 char *data;
337 char *temp;
338
339 if (*offset)
340 return 0;
341
Joe Perchesbaeb2ff2010-08-11 07:02:48 +0000342 data = kcalloc(lines, MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100343 if (!data)
344 return -ENOMEM;
345
346 temp = data +
Ivo van Doorn0b7fde52010-12-13 12:35:17 +0100347 sprintf(data, "qid\tflags\t\tcount\tlimit\tlength\tindex\tdma done\tdone\n");
Ivo van Doorn68598d292008-02-10 22:50:28 +0100348
349 queue_for_each(intf->rt2x00dev, queue) {
Ivo van Doorn813f0332010-11-06 15:48:05 +0100350 spin_lock_irqsave(&queue->index_lock, irqflags);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100351
Ivo van Doorn0b7fde52010-12-13 12:35:17 +0100352 temp += sprintf(temp, "%d\t0x%.8x\t%d\t%d\t%d\t%d\t%d\t\t%d\n",
353 queue->qid, (unsigned int)queue->flags,
Ivo van Doorn68598d292008-02-10 22:50:28 +0100354 queue->count, queue->limit, queue->length,
355 queue->index[Q_INDEX],
Ivo van Doorn652a9dd2010-08-30 21:15:19 +0200356 queue->index[Q_INDEX_DMA_DONE],
Ivo van Doorn54e34fb2010-08-23 19:54:41 +0200357 queue->index[Q_INDEX_DONE]);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100358
Ivo van Doorn813f0332010-11-06 15:48:05 +0100359 spin_unlock_irqrestore(&queue->index_lock, irqflags);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100360 }
361
362 size = strlen(data);
363 size = min(size, length);
364
365 if (copy_to_user(buf, data, size)) {
366 kfree(data);
367 return -EFAULT;
368 }
369
370 kfree(data);
371
372 *offset += size;
373 return size;
374}
375
376static const struct file_operations rt2x00debug_fop_queue_stats = {
377 .owner = THIS_MODULE,
378 .read = rt2x00debug_read_queue_stats,
379 .open = rt2x00debug_file_open,
380 .release = rt2x00debug_file_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200381 .llseek = default_llseek,
Ivo van Doorn68598d292008-02-10 22:50:28 +0100382};
383
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200384#ifdef CONFIG_RT2X00_LIB_CRYPTO
385static ssize_t rt2x00debug_read_crypto_stats(struct file *file,
386 char __user *buf,
387 size_t length,
388 loff_t *offset)
389{
390 struct rt2x00debug_intf *intf = file->private_data;
Joe Perches030bda02010-09-13 18:23:55 +0000391 static const char * const name[] = { "WEP64", "WEP128", "TKIP", "AES" };
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200392 char *data;
393 char *temp;
394 size_t size;
395 unsigned int i;
396
397 if (*offset)
398 return 0;
399
John Daiker55887512008-10-17 12:16:17 -0700400 data = kzalloc((1 + CIPHER_MAX) * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200401 if (!data)
402 return -ENOMEM;
403
404 temp = data;
405 temp += sprintf(data, "cipher\tsuccess\ticv err\tmic err\tkey err\n");
406
407 for (i = 0; i < CIPHER_MAX; i++) {
408 temp += sprintf(temp, "%s\t%lu\t%lu\t%lu\t%lu\n", name[i],
409 intf->crypto_stats[i].success,
410 intf->crypto_stats[i].icv_error,
411 intf->crypto_stats[i].mic_error,
412 intf->crypto_stats[i].key_error);
413 }
414
415 size = strlen(data);
416 size = min(size, length);
417
418 if (copy_to_user(buf, data, size)) {
419 kfree(data);
420 return -EFAULT;
421 }
422
423 kfree(data);
424
425 *offset += size;
426 return size;
427}
428
429static const struct file_operations rt2x00debug_fop_crypto_stats = {
430 .owner = THIS_MODULE,
431 .read = rt2x00debug_read_crypto_stats,
432 .open = rt2x00debug_file_open,
433 .release = rt2x00debug_file_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200434 .llseek = default_llseek,
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200435};
436#endif
437
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700438#define RT2X00DEBUGFS_OPS_READ(__name, __format, __type) \
439static ssize_t rt2x00debug_read_##__name(struct file *file, \
440 char __user *buf, \
441 size_t length, \
442 loff_t *offset) \
443{ \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100444 struct rt2x00debug_intf *intf = file->private_data; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700445 const struct rt2x00debug *debug = intf->debug; \
446 char line[16]; \
447 size_t size; \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100448 unsigned int index = intf->offset_##__name; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700449 __type value; \
450 \
451 if (*offset) \
452 return 0; \
453 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100454 if (index >= debug->__name.word_count) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700455 return -EINVAL; \
456 \
Ivo van Doornabd2fdb2009-02-17 14:04:29 +0100457 index += (debug->__name.word_base / \
458 debug->__name.word_size); \
459 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100460 if (debug->__name.flags & RT2X00DEBUGFS_OFFSET) \
461 index *= debug->__name.word_size; \
462 \
Arnd Bergmann6b817452017-05-17 16:46:53 +0200463 value = debug->__name.read(intf->rt2x00dev, index); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700464 \
465 size = sprintf(line, __format, value); \
466 \
467 if (copy_to_user(buf, line, size)) \
468 return -EFAULT; \
469 \
470 *offset += size; \
471 return size; \
472}
473
474#define RT2X00DEBUGFS_OPS_WRITE(__name, __type) \
475static ssize_t rt2x00debug_write_##__name(struct file *file, \
476 const char __user *buf,\
477 size_t length, \
478 loff_t *offset) \
479{ \
Ivo van Doorn91921a42007-11-27 21:48:16 +0100480 struct rt2x00debug_intf *intf = file->private_data; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700481 const struct rt2x00debug *debug = intf->debug; \
One Thousand Gnomes9cc3fdc2016-02-15 19:04:56 +0000482 char line[17]; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700483 size_t size; \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100484 unsigned int index = intf->offset_##__name; \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700485 __type value; \
486 \
487 if (*offset) \
488 return 0; \
489 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100490 if (index >= debug->__name.word_count) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700491 return -EINVAL; \
492 \
Arnaud Patard (Rtp)f8d8b7a2010-08-23 23:02:22 +0200493 if (length > sizeof(line)) \
494 return -EINVAL; \
495 \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700496 if (copy_from_user(line, buf, length)) \
497 return -EFAULT; \
One Thousand Gnomes9cc3fdc2016-02-15 19:04:56 +0000498 line[16] = 0; \
499 \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700500 size = strlen(line); \
501 value = simple_strtoul(line, NULL, 0); \
502 \
Ivo van Doornabd2fdb2009-02-17 14:04:29 +0100503 index += (debug->__name.word_base / \
504 debug->__name.word_size); \
505 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100506 if (debug->__name.flags & RT2X00DEBUGFS_OFFSET) \
507 index *= debug->__name.word_size; \
508 \
Ivo van Doorn743b97c2008-10-29 19:41:03 +0100509 debug->__name.write(intf->rt2x00dev, index, value); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700510 \
511 *offset += size; \
512 return size; \
513}
514
515#define RT2X00DEBUGFS_OPS(__name, __format, __type) \
516RT2X00DEBUGFS_OPS_READ(__name, __format, __type); \
517RT2X00DEBUGFS_OPS_WRITE(__name, __type); \
518 \
519static const struct file_operations rt2x00debug_fop_##__name = {\
520 .owner = THIS_MODULE, \
521 .read = rt2x00debug_read_##__name, \
522 .write = rt2x00debug_write_##__name, \
523 .open = rt2x00debug_file_open, \
524 .release = rt2x00debug_file_release, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200525 .llseek = generic_file_llseek, \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700526};
527
528RT2X00DEBUGFS_OPS(csr, "0x%.8x\n", u32);
529RT2X00DEBUGFS_OPS(eeprom, "0x%.4x\n", u16);
530RT2X00DEBUGFS_OPS(bbp, "0x%.2x\n", u8);
531RT2X00DEBUGFS_OPS(rf, "0x%.8x\n", u32);
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200532RT2X00DEBUGFS_OPS(rfcsr, "0x%.2x\n", u8);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700533
Ivo van Doorn643b2522007-09-25 20:13:51 +0200534static ssize_t rt2x00debug_read_dev_flags(struct file *file,
535 char __user *buf,
536 size_t length,
537 loff_t *offset)
538{
539 struct rt2x00debug_intf *intf = file->private_data;
540 char line[16];
541 size_t size;
542
543 if (*offset)
544 return 0;
545
546 size = sprintf(line, "0x%.8x\n", (unsigned int)intf->rt2x00dev->flags);
547
548 if (copy_to_user(buf, line, size))
549 return -EFAULT;
550
551 *offset += size;
552 return size;
553}
554
555static const struct file_operations rt2x00debug_fop_dev_flags = {
556 .owner = THIS_MODULE,
557 .read = rt2x00debug_read_dev_flags,
558 .open = rt2x00debug_file_open,
559 .release = rt2x00debug_file_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200560 .llseek = default_llseek,
Ivo van Doorn643b2522007-09-25 20:13:51 +0200561};
562
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200563static ssize_t rt2x00debug_read_cap_flags(struct file *file,
564 char __user *buf,
565 size_t length,
566 loff_t *offset)
567{
568 struct rt2x00debug_intf *intf = file->private_data;
569 char line[16];
570 size_t size;
571
572 if (*offset)
573 return 0;
574
575 size = sprintf(line, "0x%.8x\n", (unsigned int)intf->rt2x00dev->cap_flags);
576
577 if (copy_to_user(buf, line, size))
578 return -EFAULT;
579
580 *offset += size;
581 return size;
582}
583
584static const struct file_operations rt2x00debug_fop_cap_flags = {
585 .owner = THIS_MODULE,
586 .read = rt2x00debug_read_cap_flags,
587 .open = rt2x00debug_file_open,
588 .release = rt2x00debug_file_release,
589 .llseek = default_llseek,
590};
591
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700592static struct dentry *rt2x00debug_create_file_driver(const char *name,
593 struct rt2x00debug_intf
594 *intf,
595 struct debugfs_blob_wrapper
596 *blob)
597{
598 char *data;
599
Ivo van Doorn68598d292008-02-10 22:50:28 +0100600 data = kzalloc(3 * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700601 if (!data)
602 return NULL;
603
604 blob->data = data;
Ivo van Doorn860559f2009-03-03 18:14:18 +0100605 data += sprintf(data, "driver:\t%s\n", intf->rt2x00dev->ops->name);
606 data += sprintf(data, "version:\t%s\n", DRV_VERSION);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700607 blob->size = strlen(blob->data);
608
Joe Perches2ef00c52018-03-23 15:54:37 -0700609 return debugfs_create_blob(name, 0400, intf->driver_folder, blob);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700610}
611
612static struct dentry *rt2x00debug_create_file_chipset(const char *name,
613 struct rt2x00debug_intf
614 *intf,
615 struct
616 debugfs_blob_wrapper
617 *blob)
618{
619 const struct rt2x00debug *debug = intf->debug;
620 char *data;
621
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200622 data = kzalloc(9 * MAX_LINE_LENGTH, GFP_KERNEL);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700623 if (!data)
624 return NULL;
625
Ivo van Doorn3e34c6d2008-01-06 23:38:10 +0100626 blob->data = data;
Ivo van Doorn860559f2009-03-03 18:14:18 +0100627 data += sprintf(data, "rt chip:\t%04x\n", intf->rt2x00dev->chip.rt);
628 data += sprintf(data, "rf chip:\t%04x\n", intf->rt2x00dev->chip.rf);
Gertjan van Wingerde49e721e2010-02-13 20:55:49 +0100629 data += sprintf(data, "revision:\t%04x\n", intf->rt2x00dev->chip.rev);
Ivo van Doorn22c96c22007-11-27 21:48:37 +0100630 data += sprintf(data, "\n");
Ivo van Doorn860559f2009-03-03 18:14:18 +0100631 data += sprintf(data, "register\tbase\twords\twordsize\n");
Anisse Astierf2efd202012-04-19 15:04:52 +0200632#define RT2X00DEBUGFS_SPRINTF_REGISTER(__name) \
633{ \
Paul Mcquade5b451712015-10-17 22:11:23 +0100634 if (debug->__name.read) \
Anisse Astierf2efd202012-04-19 15:04:52 +0200635 data += sprintf(data, __stringify(__name) \
636 "\t%d\t%d\t%d\n", \
637 debug->__name.word_base, \
638 debug->__name.word_count, \
639 debug->__name.word_size); \
640}
641 RT2X00DEBUGFS_SPRINTF_REGISTER(csr);
642 RT2X00DEBUGFS_SPRINTF_REGISTER(eeprom);
643 RT2X00DEBUGFS_SPRINTF_REGISTER(bbp);
644 RT2X00DEBUGFS_SPRINTF_REGISTER(rf);
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200645 RT2X00DEBUGFS_SPRINTF_REGISTER(rfcsr);
Anisse Astierf2efd202012-04-19 15:04:52 +0200646#undef RT2X00DEBUGFS_SPRINTF_REGISTER
647
Ivo van Doorn3e34c6d2008-01-06 23:38:10 +0100648 blob->size = strlen(blob->data);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700649
Joe Perches2ef00c52018-03-23 15:54:37 -0700650 return debugfs_create_blob(name, 0400, intf->driver_folder, blob);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700651}
652
653void rt2x00debug_register(struct rt2x00_dev *rt2x00dev)
654{
655 const struct rt2x00debug *debug = rt2x00dev->ops->debugfs;
656 struct rt2x00debug_intf *intf;
657
658 intf = kzalloc(sizeof(struct rt2x00debug_intf), GFP_KERNEL);
659 if (!intf) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700660 rt2x00_err(rt2x00dev, "Failed to allocate debug handler\n");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700661 return;
662 }
663
664 intf->debug = debug;
665 intf->rt2x00dev = rt2x00dev;
666 rt2x00dev->debugfs_intf = intf;
667
668 intf->driver_folder =
669 debugfs_create_dir(intf->rt2x00dev->ops->name,
670 rt2x00dev->hw->wiphy->debugfsdir);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800671 if (IS_ERR(intf->driver_folder) || !intf->driver_folder)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700672 goto exit;
673
674 intf->driver_entry =
675 rt2x00debug_create_file_driver("driver", intf, &intf->driver_blob);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800676 if (IS_ERR(intf->driver_entry) || !intf->driver_entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700677 goto exit;
678
679 intf->chipset_entry =
680 rt2x00debug_create_file_chipset("chipset",
681 intf, &intf->chipset_blob);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800682 if (IS_ERR(intf->chipset_entry) || !intf->chipset_entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700683 goto exit;
684
Joe Perches2ef00c52018-03-23 15:54:37 -0700685 intf->dev_flags = debugfs_create_file("dev_flags", 0400,
Ivo van Doorn643b2522007-09-25 20:13:51 +0200686 intf->driver_folder, intf,
687 &rt2x00debug_fop_dev_flags);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800688 if (IS_ERR(intf->dev_flags) || !intf->dev_flags)
Ivo van Doorn643b2522007-09-25 20:13:51 +0200689 goto exit;
690
Joe Perches2ef00c52018-03-23 15:54:37 -0700691 intf->cap_flags = debugfs_create_file("cap_flags", 0400,
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200692 intf->driver_folder, intf,
693 &rt2x00debug_fop_cap_flags);
694 if (IS_ERR(intf->cap_flags) || !intf->cap_flags)
695 goto exit;
696
Ivo van Doorn91921a42007-11-27 21:48:16 +0100697 intf->register_folder =
698 debugfs_create_dir("register", intf->driver_folder);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800699 if (IS_ERR(intf->register_folder) || !intf->register_folder)
Ivo van Doorn91921a42007-11-27 21:48:16 +0100700 goto exit;
701
Joe Perches2ef00c52018-03-23 15:54:37 -0700702#define RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(__intf, __name) \
703({ \
704 if (debug->__name.read) { \
705 (__intf)->__name##_off_entry = \
706 debugfs_create_u32(__stringify(__name) "_offset", \
707 0600, \
708 (__intf)->register_folder, \
709 &(__intf)->offset_##__name); \
710 if (IS_ERR((__intf)->__name##_off_entry) || \
711 !(__intf)->__name##_off_entry) \
712 goto exit; \
713 \
714 (__intf)->__name##_val_entry = \
715 debugfs_create_file(__stringify(__name) "_value", \
716 0600, \
717 (__intf)->register_folder, \
718 (__intf), \
719 &rt2x00debug_fop_##__name); \
720 if (IS_ERR((__intf)->__name##_val_entry) || \
721 !(__intf)->__name##_val_entry) \
722 goto exit; \
723 } \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700724})
725
Ivo van Doorn91921a42007-11-27 21:48:16 +0100726 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, csr);
727 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, eeprom);
728 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, bbp);
729 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, rf);
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200730 RT2X00DEBUGFS_CREATE_REGISTER_ENTRY(intf, rfcsr);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700731
Ivo van Doorn91921a42007-11-27 21:48:16 +0100732#undef RT2X00DEBUGFS_CREATE_REGISTER_ENTRY
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700733
Ivo van Doorn68598d292008-02-10 22:50:28 +0100734 intf->queue_folder =
735 debugfs_create_dir("queue", intf->driver_folder);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800736 if (IS_ERR(intf->queue_folder) || !intf->queue_folder)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100737 goto exit;
738
Ivo van Doorn68598d292008-02-10 22:50:28 +0100739 intf->queue_frame_dump_entry =
Joe Perches2ef00c52018-03-23 15:54:37 -0700740 debugfs_create_file("dump", 0400, intf->queue_folder,
741 intf, &rt2x00debug_fop_queue_dump);
Zhaoleicfa3fa42008-10-22 17:07:25 +0800742 if (IS_ERR(intf->queue_frame_dump_entry)
743 || !intf->queue_frame_dump_entry)
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100744 goto exit;
745
746 skb_queue_head_init(&intf->frame_dump_skbqueue);
747 init_waitqueue_head(&intf->frame_dump_waitqueue);
748
Ivo van Doorn68598d292008-02-10 22:50:28 +0100749 intf->queue_stats_entry =
Joe Perches2ef00c52018-03-23 15:54:37 -0700750 debugfs_create_file("queue", 0400, intf->queue_folder,
751 intf, &rt2x00debug_fop_queue_stats);
Ivo van Doorn68598d292008-02-10 22:50:28 +0100752
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200753#ifdef CONFIG_RT2X00_LIB_CRYPTO
Gabor Juhos7b8a00d2013-10-11 13:18:41 +0200754 if (rt2x00_has_cap_hw_crypto(rt2x00dev))
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200755 intf->crypto_stats_entry =
Joe Perches2ef00c52018-03-23 15:54:37 -0700756 debugfs_create_file("crypto", 0444, intf->queue_folder,
757 intf,
758 &rt2x00debug_fop_crypto_stats);
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200759#endif
760
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700761 return;
762
763exit:
764 rt2x00debug_deregister(rt2x00dev);
Joe Perchesec9c4982013-04-19 08:33:40 -0700765 rt2x00_err(rt2x00dev, "Failed to register debug handler\n");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700766}
767
768void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev)
769{
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100770 struct rt2x00debug_intf *intf = rt2x00dev->debugfs_intf;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700771
772 if (unlikely(!intf))
773 return;
774
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100775 skb_queue_purge(&intf->frame_dump_skbqueue);
776
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200777#ifdef CONFIG_RT2X00_LIB_CRYPTO
778 debugfs_remove(intf->crypto_stats_entry);
779#endif
Ivo van Doorn68598d292008-02-10 22:50:28 +0100780 debugfs_remove(intf->queue_stats_entry);
781 debugfs_remove(intf->queue_frame_dump_entry);
782 debugfs_remove(intf->queue_folder);
Anisse Astierf2bd7f12012-04-19 15:53:10 +0200783 debugfs_remove(intf->rfcsr_val_entry);
784 debugfs_remove(intf->rfcsr_off_entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700785 debugfs_remove(intf->rf_val_entry);
786 debugfs_remove(intf->rf_off_entry);
787 debugfs_remove(intf->bbp_val_entry);
788 debugfs_remove(intf->bbp_off_entry);
789 debugfs_remove(intf->eeprom_val_entry);
790 debugfs_remove(intf->eeprom_off_entry);
791 debugfs_remove(intf->csr_val_entry);
792 debugfs_remove(intf->csr_off_entry);
Ivo van Doorn91921a42007-11-27 21:48:16 +0100793 debugfs_remove(intf->register_folder);
Ivo van Doorn643b2522007-09-25 20:13:51 +0200794 debugfs_remove(intf->dev_flags);
Ivo van Doorn7dab73b2011-04-18 15:27:06 +0200795 debugfs_remove(intf->cap_flags);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700796 debugfs_remove(intf->chipset_entry);
797 debugfs_remove(intf->driver_entry);
798 debugfs_remove(intf->driver_folder);
799 kfree(intf->chipset_blob.data);
800 kfree(intf->driver_blob.data);
801 kfree(intf);
802
803 rt2x00dev->debugfs_intf = NULL;
804}