Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 Qualcomm Atheros, Inc. |
| 3 | * |
| 4 | * Permission to use, copy, modify, and/or distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
| 7 | * |
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/debugfs.h> |
| 19 | #include <linux/seq_file.h> |
| 20 | #include <linux/pci.h> |
| 21 | #include <linux/rtnetlink.h> |
| 22 | |
| 23 | #include "wil6210.h" |
| 24 | #include "txrx.h" |
| 25 | |
| 26 | /* Nasty hack. Better have per device instances */ |
| 27 | static u32 mem_addr; |
| 28 | static u32 dbg_txdesc_index; |
Vladimir Kondratiev | af31cb5 | 2014-03-02 11:20:50 +0200 | [diff] [blame^] | 29 | static u32 dbg_vring_index; /* 24+ for Rx, 0..23 for Tx */ |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 30 | |
| 31 | static void wil_print_vring(struct seq_file *s, struct wil6210_priv *wil, |
Vladimir Kondratiev | 59f7c0a | 2014-02-27 16:20:42 +0200 | [diff] [blame] | 32 | const char *name, struct vring *vring, |
| 33 | char _s, char _h) |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 34 | { |
| 35 | void __iomem *x = wmi_addr(wil, vring->hwtail); |
| 36 | |
| 37 | seq_printf(s, "VRING %s = {\n", name); |
| 38 | seq_printf(s, " pa = 0x%016llx\n", (unsigned long long)vring->pa); |
| 39 | seq_printf(s, " va = 0x%p\n", vring->va); |
| 40 | seq_printf(s, " size = %d\n", vring->size); |
| 41 | seq_printf(s, " swtail = %d\n", vring->swtail); |
| 42 | seq_printf(s, " swhead = %d\n", vring->swhead); |
| 43 | seq_printf(s, " hwtail = [0x%08x] -> ", vring->hwtail); |
| 44 | if (x) |
| 45 | seq_printf(s, "0x%08x\n", ioread32(x)); |
| 46 | else |
| 47 | seq_printf(s, "???\n"); |
| 48 | |
| 49 | if (vring->va && (vring->size < 1025)) { |
| 50 | uint i; |
| 51 | for (i = 0; i < vring->size; i++) { |
| 52 | volatile struct vring_tx_desc *d = &vring->va[i].tx; |
| 53 | if ((i % 64) == 0 && (i != 0)) |
| 54 | seq_printf(s, "\n"); |
Vladimir Kondratiev | 59f7c0a | 2014-02-27 16:20:42 +0200 | [diff] [blame] | 55 | seq_printf(s, "%c", (d->dma.status & BIT(0)) ? |
| 56 | _s : (vring->ctx[i].skb ? _h : 'h')); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 57 | } |
| 58 | seq_printf(s, "\n"); |
| 59 | } |
| 60 | seq_printf(s, "}\n"); |
| 61 | } |
| 62 | |
| 63 | static int wil_vring_debugfs_show(struct seq_file *s, void *data) |
| 64 | { |
| 65 | uint i; |
| 66 | struct wil6210_priv *wil = s->private; |
| 67 | |
Vladimir Kondratiev | 59f7c0a | 2014-02-27 16:20:42 +0200 | [diff] [blame] | 68 | wil_print_vring(s, wil, "rx", &wil->vring_rx, 'S', '_'); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 69 | |
| 70 | for (i = 0; i < ARRAY_SIZE(wil->vring_tx); i++) { |
| 71 | struct vring *vring = &(wil->vring_tx[i]); |
| 72 | if (vring->va) { |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 73 | int cid = wil->vring2cid_tid[i][0]; |
| 74 | int tid = wil->vring2cid_tid[i][1]; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 75 | char name[10]; |
| 76 | snprintf(name, sizeof(name), "tx_%2d", i); |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 77 | |
| 78 | seq_printf(s, "\n%pM CID %d TID %d\n", |
| 79 | wil->sta[cid].addr, cid, tid); |
Vladimir Kondratiev | 59f7c0a | 2014-02-27 16:20:42 +0200 | [diff] [blame] | 80 | wil_print_vring(s, wil, name, vring, '_', 'H'); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 81 | } |
| 82 | } |
| 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static int wil_vring_seq_open(struct inode *inode, struct file *file) |
| 88 | { |
| 89 | return single_open(file, wil_vring_debugfs_show, inode->i_private); |
| 90 | } |
| 91 | |
| 92 | static const struct file_operations fops_vring = { |
| 93 | .open = wil_vring_seq_open, |
| 94 | .release = single_release, |
| 95 | .read = seq_read, |
| 96 | .llseek = seq_lseek, |
| 97 | }; |
| 98 | |
| 99 | static void wil_print_ring(struct seq_file *s, const char *prefix, |
| 100 | void __iomem *off) |
| 101 | { |
| 102 | struct wil6210_priv *wil = s->private; |
| 103 | struct wil6210_mbox_ring r; |
| 104 | int rsize; |
| 105 | uint i; |
| 106 | |
| 107 | wil_memcpy_fromio_32(&r, off, sizeof(r)); |
| 108 | wil_mbox_ring_le2cpus(&r); |
| 109 | /* |
| 110 | * we just read memory block from NIC. This memory may be |
| 111 | * garbage. Check validity before using it. |
| 112 | */ |
| 113 | rsize = r.size / sizeof(struct wil6210_mbox_ring_desc); |
| 114 | |
| 115 | seq_printf(s, "ring %s = {\n", prefix); |
| 116 | seq_printf(s, " base = 0x%08x\n", r.base); |
| 117 | seq_printf(s, " size = 0x%04x bytes -> %d entries\n", r.size, rsize); |
| 118 | seq_printf(s, " tail = 0x%08x\n", r.tail); |
| 119 | seq_printf(s, " head = 0x%08x\n", r.head); |
| 120 | seq_printf(s, " entry size = %d\n", r.entry_size); |
| 121 | |
| 122 | if (r.size % sizeof(struct wil6210_mbox_ring_desc)) { |
| 123 | seq_printf(s, " ??? size is not multiple of %zd, garbage?\n", |
| 124 | sizeof(struct wil6210_mbox_ring_desc)); |
| 125 | goto out; |
| 126 | } |
| 127 | |
| 128 | if (!wmi_addr(wil, r.base) || |
| 129 | !wmi_addr(wil, r.tail) || |
| 130 | !wmi_addr(wil, r.head)) { |
| 131 | seq_printf(s, " ??? pointers are garbage?\n"); |
| 132 | goto out; |
| 133 | } |
| 134 | |
| 135 | for (i = 0; i < rsize; i++) { |
| 136 | struct wil6210_mbox_ring_desc d; |
| 137 | struct wil6210_mbox_hdr hdr; |
| 138 | size_t delta = i * sizeof(d); |
| 139 | void __iomem *x = wil->csr + HOSTADDR(r.base) + delta; |
| 140 | |
| 141 | wil_memcpy_fromio_32(&d, x, sizeof(d)); |
| 142 | |
| 143 | seq_printf(s, " [%2x] %s %s%s 0x%08x", i, |
| 144 | d.sync ? "F" : "E", |
| 145 | (r.tail - r.base == delta) ? "t" : " ", |
| 146 | (r.head - r.base == delta) ? "h" : " ", |
| 147 | le32_to_cpu(d.addr)); |
| 148 | if (0 == wmi_read_hdr(wil, d.addr, &hdr)) { |
| 149 | u16 len = le16_to_cpu(hdr.len); |
| 150 | seq_printf(s, " -> %04x %04x %04x %02x\n", |
| 151 | le16_to_cpu(hdr.seq), len, |
| 152 | le16_to_cpu(hdr.type), hdr.flags); |
| 153 | if (len <= MAX_MBOXITEM_SIZE) { |
| 154 | int n = 0; |
Larry Finger | 5d21608 | 2013-07-20 21:46:48 -0500 | [diff] [blame] | 155 | char printbuf[16 * 3 + 2]; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 156 | unsigned char databuf[MAX_MBOXITEM_SIZE]; |
| 157 | void __iomem *src = wmi_buffer(wil, d.addr) + |
| 158 | sizeof(struct wil6210_mbox_hdr); |
| 159 | /* |
| 160 | * No need to check @src for validity - |
| 161 | * we already validated @d.addr while |
| 162 | * reading header |
| 163 | */ |
| 164 | wil_memcpy_fromio_32(databuf, src, len); |
| 165 | while (n < len) { |
| 166 | int l = min(len - n, 16); |
| 167 | hex_dump_to_buffer(databuf + n, l, |
| 168 | 16, 1, printbuf, |
| 169 | sizeof(printbuf), |
| 170 | false); |
| 171 | seq_printf(s, " : %s\n", printbuf); |
| 172 | n += l; |
| 173 | } |
| 174 | } |
| 175 | } else { |
| 176 | seq_printf(s, "\n"); |
| 177 | } |
| 178 | } |
| 179 | out: |
| 180 | seq_printf(s, "}\n"); |
| 181 | } |
| 182 | |
| 183 | static int wil_mbox_debugfs_show(struct seq_file *s, void *data) |
| 184 | { |
| 185 | struct wil6210_priv *wil = s->private; |
| 186 | |
| 187 | wil_print_ring(s, "tx", wil->csr + HOST_MBOX + |
| 188 | offsetof(struct wil6210_mbox_ctl, tx)); |
| 189 | wil_print_ring(s, "rx", wil->csr + HOST_MBOX + |
| 190 | offsetof(struct wil6210_mbox_ctl, rx)); |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | static int wil_mbox_seq_open(struct inode *inode, struct file *file) |
| 196 | { |
| 197 | return single_open(file, wil_mbox_debugfs_show, inode->i_private); |
| 198 | } |
| 199 | |
| 200 | static const struct file_operations fops_mbox = { |
| 201 | .open = wil_mbox_seq_open, |
| 202 | .release = single_release, |
| 203 | .read = seq_read, |
| 204 | .llseek = seq_lseek, |
| 205 | }; |
| 206 | |
| 207 | static int wil_debugfs_iomem_x32_set(void *data, u64 val) |
| 208 | { |
| 209 | iowrite32(val, (void __iomem *)data); |
| 210 | wmb(); /* make sure write propagated to HW */ |
| 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | static int wil_debugfs_iomem_x32_get(void *data, u64 *val) |
| 216 | { |
| 217 | *val = ioread32((void __iomem *)data); |
| 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | DEFINE_SIMPLE_ATTRIBUTE(fops_iomem_x32, wil_debugfs_iomem_x32_get, |
| 223 | wil_debugfs_iomem_x32_set, "0x%08llx\n"); |
| 224 | |
| 225 | static struct dentry *wil_debugfs_create_iomem_x32(const char *name, |
Al Viro | 0ecc833 | 2013-03-29 12:23:28 -0400 | [diff] [blame] | 226 | umode_t mode, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 227 | struct dentry *parent, |
| 228 | void __iomem *value) |
| 229 | { |
| 230 | return debugfs_create_file(name, mode, parent, (void * __force)value, |
| 231 | &fops_iomem_x32); |
| 232 | } |
| 233 | |
| 234 | static int wil6210_debugfs_create_ISR(struct wil6210_priv *wil, |
| 235 | const char *name, |
| 236 | struct dentry *parent, u32 off) |
| 237 | { |
| 238 | struct dentry *d = debugfs_create_dir(name, parent); |
| 239 | |
| 240 | if (IS_ERR_OR_NULL(d)) |
| 241 | return -ENODEV; |
| 242 | |
| 243 | wil_debugfs_create_iomem_x32("ICC", S_IRUGO | S_IWUSR, d, |
| 244 | wil->csr + off); |
| 245 | wil_debugfs_create_iomem_x32("ICR", S_IRUGO | S_IWUSR, d, |
| 246 | wil->csr + off + 4); |
| 247 | wil_debugfs_create_iomem_x32("ICM", S_IRUGO | S_IWUSR, d, |
| 248 | wil->csr + off + 8); |
| 249 | wil_debugfs_create_iomem_x32("ICS", S_IWUSR, d, |
| 250 | wil->csr + off + 12); |
| 251 | wil_debugfs_create_iomem_x32("IMV", S_IRUGO | S_IWUSR, d, |
| 252 | wil->csr + off + 16); |
| 253 | wil_debugfs_create_iomem_x32("IMS", S_IWUSR, d, |
| 254 | wil->csr + off + 20); |
| 255 | wil_debugfs_create_iomem_x32("IMC", S_IWUSR, d, |
| 256 | wil->csr + off + 24); |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | static int wil6210_debugfs_create_pseudo_ISR(struct wil6210_priv *wil, |
| 262 | struct dentry *parent) |
| 263 | { |
| 264 | struct dentry *d = debugfs_create_dir("PSEUDO_ISR", parent); |
| 265 | |
| 266 | if (IS_ERR_OR_NULL(d)) |
| 267 | return -ENODEV; |
| 268 | |
| 269 | wil_debugfs_create_iomem_x32("CAUSE", S_IRUGO, d, wil->csr + |
| 270 | HOSTADDR(RGF_DMA_PSEUDO_CAUSE)); |
| 271 | wil_debugfs_create_iomem_x32("MASK_SW", S_IRUGO, d, wil->csr + |
| 272 | HOSTADDR(RGF_DMA_PSEUDO_CAUSE_MASK_SW)); |
| 273 | wil_debugfs_create_iomem_x32("MASK_FW", S_IRUGO, d, wil->csr + |
| 274 | HOSTADDR(RGF_DMA_PSEUDO_CAUSE_MASK_FW)); |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | static int wil6210_debugfs_create_ITR_CNT(struct wil6210_priv *wil, |
| 280 | struct dentry *parent) |
| 281 | { |
| 282 | struct dentry *d = debugfs_create_dir("ITR_CNT", parent); |
| 283 | |
| 284 | if (IS_ERR_OR_NULL(d)) |
| 285 | return -ENODEV; |
| 286 | |
| 287 | wil_debugfs_create_iomem_x32("TRSH", S_IRUGO, d, wil->csr + |
| 288 | HOSTADDR(RGF_DMA_ITR_CNT_TRSH)); |
| 289 | wil_debugfs_create_iomem_x32("DATA", S_IRUGO, d, wil->csr + |
| 290 | HOSTADDR(RGF_DMA_ITR_CNT_DATA)); |
| 291 | wil_debugfs_create_iomem_x32("CTL", S_IRUGO, d, wil->csr + |
| 292 | HOSTADDR(RGF_DMA_ITR_CNT_CRL)); |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static int wil_memread_debugfs_show(struct seq_file *s, void *data) |
| 298 | { |
| 299 | struct wil6210_priv *wil = s->private; |
| 300 | void __iomem *a = wmi_buffer(wil, cpu_to_le32(mem_addr)); |
| 301 | |
| 302 | if (a) |
| 303 | seq_printf(s, "[0x%08x] = 0x%08x\n", mem_addr, ioread32(a)); |
| 304 | else |
| 305 | seq_printf(s, "[0x%08x] = INVALID\n", mem_addr); |
| 306 | |
| 307 | return 0; |
| 308 | } |
| 309 | |
| 310 | static int wil_memread_seq_open(struct inode *inode, struct file *file) |
| 311 | { |
| 312 | return single_open(file, wil_memread_debugfs_show, inode->i_private); |
| 313 | } |
| 314 | |
| 315 | static const struct file_operations fops_memread = { |
| 316 | .open = wil_memread_seq_open, |
| 317 | .release = single_release, |
| 318 | .read = seq_read, |
| 319 | .llseek = seq_lseek, |
| 320 | }; |
| 321 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 322 | static ssize_t wil_read_file_ioblob(struct file *file, char __user *user_buf, |
| 323 | size_t count, loff_t *ppos) |
| 324 | { |
| 325 | enum { max_count = 4096 }; |
| 326 | struct debugfs_blob_wrapper *blob = file->private_data; |
| 327 | loff_t pos = *ppos; |
| 328 | size_t available = blob->size; |
| 329 | void *buf; |
| 330 | size_t ret; |
| 331 | |
| 332 | if (pos < 0) |
| 333 | return -EINVAL; |
| 334 | |
| 335 | if (pos >= available || !count) |
| 336 | return 0; |
| 337 | |
| 338 | if (count > available - pos) |
| 339 | count = available - pos; |
| 340 | if (count > max_count) |
| 341 | count = max_count; |
| 342 | |
| 343 | buf = kmalloc(count, GFP_KERNEL); |
| 344 | if (!buf) |
| 345 | return -ENOMEM; |
| 346 | |
| 347 | wil_memcpy_fromio_32(buf, (const volatile void __iomem *)blob->data + |
| 348 | pos, count); |
| 349 | |
| 350 | ret = copy_to_user(user_buf, buf, count); |
| 351 | kfree(buf); |
| 352 | if (ret == count) |
| 353 | return -EFAULT; |
| 354 | |
| 355 | count -= ret; |
| 356 | *ppos = pos + count; |
| 357 | |
| 358 | return count; |
| 359 | } |
| 360 | |
| 361 | static const struct file_operations fops_ioblob = { |
| 362 | .read = wil_read_file_ioblob, |
Wei Yongjun | 93ecbd6 | 2013-02-26 10:29:34 +0800 | [diff] [blame] | 363 | .open = simple_open, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 364 | .llseek = default_llseek, |
| 365 | }; |
| 366 | |
| 367 | static |
| 368 | struct dentry *wil_debugfs_create_ioblob(const char *name, |
Al Viro | 0ecc833 | 2013-03-29 12:23:28 -0400 | [diff] [blame] | 369 | umode_t mode, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 370 | struct dentry *parent, |
| 371 | struct debugfs_blob_wrapper *blob) |
| 372 | { |
| 373 | return debugfs_create_file(name, mode, parent, blob, &fops_ioblob); |
| 374 | } |
| 375 | /*---reset---*/ |
| 376 | static ssize_t wil_write_file_reset(struct file *file, const char __user *buf, |
| 377 | size_t len, loff_t *ppos) |
| 378 | { |
| 379 | struct wil6210_priv *wil = file->private_data; |
| 380 | struct net_device *ndev = wil_to_ndev(wil); |
| 381 | |
| 382 | /** |
| 383 | * BUG: |
| 384 | * this code does NOT sync device state with the rest of system |
| 385 | * use with care, debug only!!! |
| 386 | */ |
| 387 | rtnl_lock(); |
| 388 | dev_close(ndev); |
| 389 | ndev->flags &= ~IFF_UP; |
| 390 | rtnl_unlock(); |
| 391 | wil_reset(wil); |
| 392 | |
| 393 | return len; |
| 394 | } |
| 395 | |
| 396 | static const struct file_operations fops_reset = { |
| 397 | .write = wil_write_file_reset, |
Wei Yongjun | 93ecbd6 | 2013-02-26 10:29:34 +0800 | [diff] [blame] | 398 | .open = simple_open, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 399 | }; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 400 | |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 401 | /*---------Tx/Rx descriptor------------*/ |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 402 | static int wil_txdesc_debugfs_show(struct seq_file *s, void *data) |
| 403 | { |
| 404 | struct wil6210_priv *wil = s->private; |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 405 | struct vring *vring; |
Vladimir Kondratiev | af31cb5 | 2014-03-02 11:20:50 +0200 | [diff] [blame^] | 406 | bool tx = (dbg_vring_index < WIL6210_MAX_TX_RINGS); |
| 407 | if (tx) |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 408 | vring = &(wil->vring_tx[dbg_vring_index]); |
| 409 | else |
| 410 | vring = &wil->vring_rx; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 411 | |
| 412 | if (!vring->va) { |
Vladimir Kondratiev | af31cb5 | 2014-03-02 11:20:50 +0200 | [diff] [blame^] | 413 | if (tx) |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 414 | seq_printf(s, "No Tx[%2d] VRING\n", dbg_vring_index); |
| 415 | else |
| 416 | seq_puts(s, "No Rx VRING\n"); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 417 | return 0; |
| 418 | } |
| 419 | |
| 420 | if (dbg_txdesc_index < vring->size) { |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 421 | /* use struct vring_tx_desc for Rx as well, |
| 422 | * only field used, .dma.length, is the same |
| 423 | */ |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 424 | volatile struct vring_tx_desc *d = |
| 425 | &(vring->va[dbg_txdesc_index].tx); |
| 426 | volatile u32 *u = (volatile u32 *)d; |
Vladimir Kondratiev | f88f113 | 2013-07-11 18:03:40 +0300 | [diff] [blame] | 427 | struct sk_buff *skb = vring->ctx[dbg_txdesc_index].skb; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 428 | |
Vladimir Kondratiev | af31cb5 | 2014-03-02 11:20:50 +0200 | [diff] [blame^] | 429 | if (tx) |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 430 | seq_printf(s, "Tx[%2d][%3d] = {\n", dbg_vring_index, |
| 431 | dbg_txdesc_index); |
| 432 | else |
| 433 | seq_printf(s, "Rx[%3d] = {\n", dbg_txdesc_index); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 434 | seq_printf(s, " MAC = 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 435 | u[0], u[1], u[2], u[3]); |
| 436 | seq_printf(s, " DMA = 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 437 | u[4], u[5], u[6], u[7]); |
| 438 | seq_printf(s, " SKB = %p\n", skb); |
| 439 | |
| 440 | if (skb) { |
Larry Finger | 5d21608 | 2013-07-20 21:46:48 -0500 | [diff] [blame] | 441 | char printbuf[16 * 3 + 2]; |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 442 | int i = 0; |
Vladimir Kondratiev | 7e594444 | 2013-05-12 14:43:32 +0300 | [diff] [blame] | 443 | int len = le16_to_cpu(d->dma.length); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 444 | void *p = skb->data; |
| 445 | |
Vladimir Kondratiev | 7e594444 | 2013-05-12 14:43:32 +0300 | [diff] [blame] | 446 | if (len != skb_headlen(skb)) { |
| 447 | seq_printf(s, "!!! len: desc = %d skb = %d\n", |
| 448 | len, skb_headlen(skb)); |
| 449 | len = min_t(int, len, skb_headlen(skb)); |
| 450 | } |
| 451 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 452 | seq_printf(s, " len = %d\n", len); |
| 453 | |
| 454 | while (i < len) { |
| 455 | int l = min(len - i, 16); |
| 456 | hex_dump_to_buffer(p + i, l, 16, 1, printbuf, |
| 457 | sizeof(printbuf), false); |
| 458 | seq_printf(s, " : %s\n", printbuf); |
| 459 | i += l; |
| 460 | } |
| 461 | } |
| 462 | seq_printf(s, "}\n"); |
| 463 | } else { |
Vladimir Kondratiev | af31cb5 | 2014-03-02 11:20:50 +0200 | [diff] [blame^] | 464 | if (tx) |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 465 | seq_printf(s, "[%2d] TxDesc index (%d) >= size (%d)\n", |
| 466 | dbg_vring_index, dbg_txdesc_index, |
| 467 | vring->size); |
| 468 | else |
| 469 | seq_printf(s, "RxDesc index (%d) >= size (%d)\n", |
| 470 | dbg_txdesc_index, vring->size); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static int wil_txdesc_seq_open(struct inode *inode, struct file *file) |
| 477 | { |
| 478 | return single_open(file, wil_txdesc_debugfs_show, inode->i_private); |
| 479 | } |
| 480 | |
| 481 | static const struct file_operations fops_txdesc = { |
| 482 | .open = wil_txdesc_seq_open, |
| 483 | .release = single_release, |
| 484 | .read = seq_read, |
| 485 | .llseek = seq_lseek, |
| 486 | }; |
| 487 | |
| 488 | /*---------beamforming------------*/ |
| 489 | static int wil_bf_debugfs_show(struct seq_file *s, void *data) |
| 490 | { |
| 491 | struct wil6210_priv *wil = s->private; |
| 492 | seq_printf(s, |
| 493 | "TSF : 0x%016llx\n" |
| 494 | "TxMCS : %d\n" |
| 495 | "Sectors(rx:tx) my %2d:%2d peer %2d:%2d\n", |
| 496 | wil->stats.tsf, wil->stats.bf_mcs, |
| 497 | wil->stats.my_rx_sector, wil->stats.my_tx_sector, |
| 498 | wil->stats.peer_rx_sector, wil->stats.peer_tx_sector); |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | static int wil_bf_seq_open(struct inode *inode, struct file *file) |
| 503 | { |
| 504 | return single_open(file, wil_bf_debugfs_show, inode->i_private); |
| 505 | } |
| 506 | |
| 507 | static const struct file_operations fops_bf = { |
| 508 | .open = wil_bf_seq_open, |
| 509 | .release = single_release, |
| 510 | .read = seq_read, |
| 511 | .llseek = seq_lseek, |
| 512 | }; |
| 513 | /*---------SSID------------*/ |
| 514 | static ssize_t wil_read_file_ssid(struct file *file, char __user *user_buf, |
| 515 | size_t count, loff_t *ppos) |
| 516 | { |
| 517 | struct wil6210_priv *wil = file->private_data; |
| 518 | struct wireless_dev *wdev = wil_to_wdev(wil); |
| 519 | |
| 520 | return simple_read_from_buffer(user_buf, count, ppos, |
| 521 | wdev->ssid, wdev->ssid_len); |
| 522 | } |
| 523 | |
| 524 | static ssize_t wil_write_file_ssid(struct file *file, const char __user *buf, |
| 525 | size_t count, loff_t *ppos) |
| 526 | { |
| 527 | struct wil6210_priv *wil = file->private_data; |
| 528 | struct wireless_dev *wdev = wil_to_wdev(wil); |
| 529 | struct net_device *ndev = wil_to_ndev(wil); |
| 530 | |
| 531 | if (*ppos != 0) { |
| 532 | wil_err(wil, "Unable to set SSID substring from [%d]\n", |
| 533 | (int)*ppos); |
| 534 | return -EINVAL; |
| 535 | } |
| 536 | |
| 537 | if (count > sizeof(wdev->ssid)) { |
| 538 | wil_err(wil, "SSID too long, len = %d\n", (int)count); |
| 539 | return -EINVAL; |
| 540 | } |
| 541 | if (netif_running(ndev)) { |
| 542 | wil_err(wil, "Unable to change SSID on running interface\n"); |
| 543 | return -EINVAL; |
| 544 | } |
| 545 | |
| 546 | wdev->ssid_len = count; |
| 547 | return simple_write_to_buffer(wdev->ssid, wdev->ssid_len, ppos, |
| 548 | buf, count); |
| 549 | } |
| 550 | |
| 551 | static const struct file_operations fops_ssid = { |
| 552 | .read = wil_read_file_ssid, |
| 553 | .write = wil_write_file_ssid, |
Wei Yongjun | 93ecbd6 | 2013-02-26 10:29:34 +0800 | [diff] [blame] | 554 | .open = simple_open, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 555 | }; |
| 556 | |
Vladimir Kondratiev | 1a2780e | 2013-03-13 14:12:51 +0200 | [diff] [blame] | 557 | /*---------temp------------*/ |
| 558 | static void print_temp(struct seq_file *s, const char *prefix, u32 t) |
| 559 | { |
| 560 | switch (t) { |
| 561 | case 0: |
| 562 | case ~(u32)0: |
| 563 | seq_printf(s, "%s N/A\n", prefix); |
| 564 | break; |
| 565 | default: |
| 566 | seq_printf(s, "%s %d.%03d\n", prefix, t / 1000, t % 1000); |
| 567 | break; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | static int wil_temp_debugfs_show(struct seq_file *s, void *data) |
| 572 | { |
| 573 | struct wil6210_priv *wil = s->private; |
| 574 | u32 t_m, t_r; |
| 575 | |
| 576 | int rc = wmi_get_temperature(wil, &t_m, &t_r); |
| 577 | if (rc) { |
| 578 | seq_printf(s, "Failed\n"); |
| 579 | return 0; |
| 580 | } |
| 581 | |
| 582 | print_temp(s, "MAC temperature :", t_m); |
| 583 | print_temp(s, "Radio temperature :", t_r); |
| 584 | |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | static int wil_temp_seq_open(struct inode *inode, struct file *file) |
| 589 | { |
| 590 | return single_open(file, wil_temp_debugfs_show, inode->i_private); |
| 591 | } |
| 592 | |
| 593 | static const struct file_operations fops_temp = { |
| 594 | .open = wil_temp_seq_open, |
| 595 | .release = single_release, |
| 596 | .read = seq_read, |
| 597 | .llseek = seq_lseek, |
| 598 | }; |
| 599 | |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 600 | /*---------Station matrix------------*/ |
Vladimir Kondratiev | b4490f4 | 2014-02-27 16:20:44 +0200 | [diff] [blame] | 601 | static void wil_print_rxtid(struct seq_file *s, struct wil_tid_ampdu_rx *r) |
| 602 | { |
| 603 | int i; |
| 604 | u16 index = ((r->head_seq_num - r->ssn) & 0xfff) % r->buf_size; |
| 605 | seq_printf(s, "0x%03x [", r->head_seq_num); |
| 606 | for (i = 0; i < r->buf_size; i++) { |
| 607 | if (i == index) |
| 608 | seq_printf(s, "%c", r->reorder_buf[i] ? 'O' : '|'); |
| 609 | else |
| 610 | seq_printf(s, "%c", r->reorder_buf[i] ? '*' : '_'); |
| 611 | } |
| 612 | seq_puts(s, "]\n"); |
| 613 | } |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 614 | |
| 615 | static int wil_sta_debugfs_show(struct seq_file *s, void *data) |
| 616 | { |
| 617 | struct wil6210_priv *wil = s->private; |
Vladimir Kondratiev | b4490f4 | 2014-02-27 16:20:44 +0200 | [diff] [blame] | 618 | int i, tid; |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 619 | |
| 620 | for (i = 0; i < ARRAY_SIZE(wil->sta); i++) { |
| 621 | struct wil_sta_info *p = &wil->sta[i]; |
| 622 | char *status = "unknown"; |
| 623 | switch (p->status) { |
| 624 | case wil_sta_unused: |
| 625 | status = "unused "; |
| 626 | break; |
| 627 | case wil_sta_conn_pending: |
| 628 | status = "pending "; |
| 629 | break; |
| 630 | case wil_sta_connected: |
| 631 | status = "connected"; |
| 632 | break; |
| 633 | } |
| 634 | seq_printf(s, "[%d] %pM %s\n", i, p->addr, status); |
Vladimir Kondratiev | b4490f4 | 2014-02-27 16:20:44 +0200 | [diff] [blame] | 635 | |
| 636 | if (p->status == wil_sta_connected) { |
| 637 | for (tid = 0; tid < WIL_STA_TID_NUM; tid++) { |
| 638 | struct wil_tid_ampdu_rx *r = p->tid_rx[tid]; |
| 639 | if (r) { |
| 640 | seq_printf(s, "[%2d] ", tid); |
| 641 | wil_print_rxtid(s, r); |
| 642 | } |
| 643 | } |
| 644 | } |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | static int wil_sta_seq_open(struct inode *inode, struct file *file) |
| 651 | { |
| 652 | return single_open(file, wil_sta_debugfs_show, inode->i_private); |
| 653 | } |
| 654 | |
| 655 | static const struct file_operations fops_sta = { |
| 656 | .open = wil_sta_seq_open, |
| 657 | .release = single_release, |
| 658 | .read = seq_read, |
| 659 | .llseek = seq_lseek, |
| 660 | }; |
| 661 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 662 | /*----------------*/ |
| 663 | int wil6210_debugfs_init(struct wil6210_priv *wil) |
| 664 | { |
| 665 | struct dentry *dbg = wil->debug = debugfs_create_dir(WIL_NAME, |
| 666 | wil_to_wiphy(wil)->debugfsdir); |
| 667 | |
| 668 | if (IS_ERR_OR_NULL(dbg)) |
| 669 | return -ENODEV; |
| 670 | |
| 671 | debugfs_create_file("mbox", S_IRUGO, dbg, wil, &fops_mbox); |
| 672 | debugfs_create_file("vrings", S_IRUGO, dbg, wil, &fops_vring); |
Vladimir Kondratiev | 3df2cd36 | 2014-02-27 16:20:43 +0200 | [diff] [blame] | 673 | debugfs_create_file("stations", S_IRUGO, dbg, wil, &fops_sta); |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 674 | debugfs_create_file("desc", S_IRUGO, dbg, wil, &fops_txdesc); |
| 675 | debugfs_create_u32("desc_index", S_IRUGO | S_IWUSR, dbg, |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 676 | &dbg_txdesc_index); |
Vladimir Kondratiev | 3a85543e | 2014-02-27 16:20:41 +0200 | [diff] [blame] | 677 | debugfs_create_u32("vring_index", S_IRUGO | S_IWUSR, dbg, |
| 678 | &dbg_vring_index); |
| 679 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 680 | debugfs_create_file("bf", S_IRUGO, dbg, wil, &fops_bf); |
| 681 | debugfs_create_file("ssid", S_IRUGO | S_IWUSR, dbg, wil, &fops_ssid); |
| 682 | debugfs_create_u32("secure_pcp", S_IRUGO | S_IWUSR, dbg, |
| 683 | &wil->secure_pcp); |
| 684 | |
| 685 | wil6210_debugfs_create_ISR(wil, "USER_ICR", dbg, |
| 686 | HOSTADDR(RGF_USER_USER_ICR)); |
| 687 | wil6210_debugfs_create_ISR(wil, "DMA_EP_TX_ICR", dbg, |
| 688 | HOSTADDR(RGF_DMA_EP_TX_ICR)); |
| 689 | wil6210_debugfs_create_ISR(wil, "DMA_EP_RX_ICR", dbg, |
| 690 | HOSTADDR(RGF_DMA_EP_RX_ICR)); |
| 691 | wil6210_debugfs_create_ISR(wil, "DMA_EP_MISC_ICR", dbg, |
| 692 | HOSTADDR(RGF_DMA_EP_MISC_ICR)); |
| 693 | wil6210_debugfs_create_pseudo_ISR(wil, dbg); |
| 694 | wil6210_debugfs_create_ITR_CNT(wil, dbg); |
| 695 | |
| 696 | debugfs_create_u32("mem_addr", S_IRUGO | S_IWUSR, dbg, &mem_addr); |
| 697 | debugfs_create_file("mem_val", S_IRUGO, dbg, wil, &fops_memread); |
| 698 | |
| 699 | debugfs_create_file("reset", S_IWUSR, dbg, wil, &fops_reset); |
Vladimir Kondratiev | 1a2780e | 2013-03-13 14:12:51 +0200 | [diff] [blame] | 700 | debugfs_create_file("temp", S_IRUGO, dbg, wil, &fops_temp); |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 701 | |
| 702 | wil->rgf_blob.data = (void * __force)wil->csr + 0; |
| 703 | wil->rgf_blob.size = 0xa000; |
| 704 | wil_debugfs_create_ioblob("blob_rgf", S_IRUGO, dbg, &wil->rgf_blob); |
| 705 | |
| 706 | wil->fw_code_blob.data = (void * __force)wil->csr + 0x40000; |
| 707 | wil->fw_code_blob.size = 0x40000; |
| 708 | wil_debugfs_create_ioblob("blob_fw_code", S_IRUGO, dbg, |
| 709 | &wil->fw_code_blob); |
| 710 | |
| 711 | wil->fw_data_blob.data = (void * __force)wil->csr + 0x80000; |
| 712 | wil->fw_data_blob.size = 0x8000; |
| 713 | wil_debugfs_create_ioblob("blob_fw_data", S_IRUGO, dbg, |
| 714 | &wil->fw_data_blob); |
| 715 | |
| 716 | wil->fw_peri_blob.data = (void * __force)wil->csr + 0x88000; |
| 717 | wil->fw_peri_blob.size = 0x18000; |
| 718 | wil_debugfs_create_ioblob("blob_fw_peri", S_IRUGO, dbg, |
| 719 | &wil->fw_peri_blob); |
| 720 | |
| 721 | wil->uc_code_blob.data = (void * __force)wil->csr + 0xa0000; |
| 722 | wil->uc_code_blob.size = 0x10000; |
| 723 | wil_debugfs_create_ioblob("blob_uc_code", S_IRUGO, dbg, |
| 724 | &wil->uc_code_blob); |
| 725 | |
| 726 | wil->uc_data_blob.data = (void * __force)wil->csr + 0xb0000; |
| 727 | wil->uc_data_blob.size = 0x4000; |
| 728 | wil_debugfs_create_ioblob("blob_uc_data", S_IRUGO, dbg, |
| 729 | &wil->uc_data_blob); |
| 730 | |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | void wil6210_debugfs_remove(struct wil6210_priv *wil) |
| 735 | { |
| 736 | debugfs_remove_recursive(wil->debug); |
| 737 | wil->debug = NULL; |
| 738 | } |