debug.c 36.9 KB
Newer Older
1
/*
2
 * Copyright (c) 2008-2011 Atheros Communications Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

17
#include <linux/slab.h>
18
#include <linux/vmalloc.h>
19 20
#include <asm/unaligned.h>

S
Sujith 已提交
21
#include "ath9k.h"
22

23 24 25 26 27
#define REG_WRITE_D(_ah, _reg, _val) \
	ath9k_hw_common(_ah)->ops->write((_ah), (_val), (_reg))
#define REG_READ_D(_ah, _reg) \
	ath9k_hw_common(_ah)->ops->read((_ah), (_reg))

28 29 30 31 32 33
static int ath9k_debugfs_open(struct inode *inode, struct file *file)
{
	file->private_data = inode->i_private;
	return 0;
}

34 35 36 37 38 39 40 41 42 43 44 45 46
static ssize_t ath9k_debugfs_read_buf(struct file *file, char __user *user_buf,
				      size_t count, loff_t *ppos)
{
	u8 *buf = file->private_data;
	return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));
}

static int ath9k_debugfs_release_buf(struct inode *inode, struct file *file)
{
	vfree(file->private_data);
	return 0;
}

47 48
#ifdef CONFIG_ATH_DEBUG

J
Jeff Hansen 已提交
49 50 51 52
static ssize_t read_file_debug(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
53
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
J
Jeff Hansen 已提交
54
	char buf[32];
55 56
	unsigned int len;

57
	len = sprintf(buf, "0x%08x\n", common->debug_mask);
J
Jeff Hansen 已提交
58 59 60 61 62 63 64
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
65
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
J
Jeff Hansen 已提交
66 67
	unsigned long mask;
	char buf[32];
68 69 70 71
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
72
		return -EFAULT;
73 74 75 76 77

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &mask))
		return -EINVAL;

78
	common->debug_mask = mask;
J
Jeff Hansen 已提交
79 80 81 82 83 84 85
	return count;
}

static const struct file_operations fops_debug = {
	.read = read_file_debug,
	.write = write_file_debug,
	.open = ath9k_debugfs_open,
86 87
	.owner = THIS_MODULE,
	.llseek = default_llseek,
J
Jeff Hansen 已提交
88 89
};

90 91
#endif

92 93
#define DMA_BUF_LEN 1024

94 95 96 97 98 99 100 101
static ssize_t read_file_tx_chainmask(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	char buf[32];
	unsigned int len;

102
	len = sprintf(buf, "0x%08x\n", common->tx_chainmask);
103 104 105 106 107 108 109 110 111 112 113 114 115 116
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_tx_chainmask(struct file *file, const char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	unsigned long mask;
	char buf[32];
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
117
		return -EFAULT;
118 119 120 121 122 123 124 125 126 127 128 129 130 131

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &mask))
		return -EINVAL;

	common->tx_chainmask = mask;
	sc->sc_ah->caps.tx_chainmask = mask;
	return count;
}

static const struct file_operations fops_tx_chainmask = {
	.read = read_file_tx_chainmask,
	.write = write_file_tx_chainmask,
	.open = ath9k_debugfs_open,
132 133
	.owner = THIS_MODULE,
	.llseek = default_llseek,
134 135 136 137 138 139 140 141 142 143 144
};


static ssize_t read_file_rx_chainmask(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	char buf[32];
	unsigned int len;

145
	len = sprintf(buf, "0x%08x\n", common->rx_chainmask);
146 147 148 149 150 151 152 153 154 155 156 157 158 159
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_rx_chainmask(struct file *file, const char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	unsigned long mask;
	char buf[32];
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
160
		return -EFAULT;
161 162 163 164 165 166 167 168 169 170 171 172 173 174

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &mask))
		return -EINVAL;

	common->rx_chainmask = mask;
	sc->sc_ah->caps.rx_chainmask = mask;
	return count;
}

static const struct file_operations fops_rx_chainmask = {
	.read = read_file_rx_chainmask,
	.write = write_file_rx_chainmask,
	.open = ath9k_debugfs_open,
175 176
	.owner = THIS_MODULE,
	.llseek = default_llseek,
177 178
};

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
static ssize_t read_file_disable_ani(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	char buf[32];
	unsigned int len;

	len = sprintf(buf, "%d\n", common->disable_ani);
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_disable_ani(struct file *file,
				      const char __user *user_buf,
				      size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	unsigned long disable_ani;
	char buf[32];
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
		return -EFAULT;

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &disable_ani))
		return -EINVAL;

	common->disable_ani = !!disable_ani;

	if (disable_ani) {
		sc->sc_flags &= ~SC_OP_ANI_RUN;
		del_timer_sync(&common->ani.timer);
	} else {
		sc->sc_flags |= SC_OP_ANI_RUN;
		ath_start_ani(common);
	}

	return count;
}

static const struct file_operations fops_disable_ani = {
	.read = read_file_disable_ani,
	.write = write_file_disable_ani,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE,
	.llseek = default_llseek,
};
229

230 231 232 233
static ssize_t read_file_dma(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
234
	struct ath_hw *ah = sc->sc_ah;
235 236
	char *buf;
	int retval;
237 238 239 240 241
	unsigned int len = 0;
	u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
	int i, qcuOffset = 0, dcuOffset = 0;
	u32 *qcuBase = &val[0], *dcuBase = &val[4];

242 243
	buf = kmalloc(DMA_BUF_LEN, GFP_KERNEL);
	if (!buf)
244
		return -ENOMEM;
245

246 247
	ath9k_ps_wakeup(sc);

248
	REG_WRITE_D(ah, AR_MACMISC,
249 250 251 252
		  ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
		   (AR_MACMISC_MISC_OBS_BUS_1 <<
		    AR_MACMISC_MISC_OBS_BUS_MSB_S)));

253
	len += snprintf(buf + len, DMA_BUF_LEN - len,
254 255 256 257
			"Raw DMA Debug values:\n");

	for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) {
		if (i % 4 == 0)
258
			len += snprintf(buf + len, DMA_BUF_LEN - len, "\n");
259

260
		val[i] = REG_READ_D(ah, AR_DMADBG_0 + (i * sizeof(u32)));
261
		len += snprintf(buf + len, DMA_BUF_LEN - len, "%d: %08x ",
262 263 264
				i, val[i]);
	}

265 266
	len += snprintf(buf + len, DMA_BUF_LEN - len, "\n\n");
	len += snprintf(buf + len, DMA_BUF_LEN - len,
267 268 269 270 271 272 273 274 275 276 277 278 279
			"Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n");

	for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) {
		if (i == 8) {
			qcuOffset = 0;
			qcuBase++;
		}

		if (i == 6) {
			dcuOffset = 0;
			dcuBase++;
		}

280
		len += snprintf(buf + len, DMA_BUF_LEN - len,
281 282 283 284 285 286 287
			"%2d          %2x      %1x     %2x           %2x\n",
			i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset,
			(*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3),
			val[2] & (0x7 << (i * 3)) >> (i * 3),
			(*dcuBase & (0x1f << dcuOffset)) >> dcuOffset);
	}

288
	len += snprintf(buf + len, DMA_BUF_LEN - len, "\n");
289

290
	len += snprintf(buf + len, DMA_BUF_LEN - len,
291 292
		"qcu_stitch state:   %2x    qcu_fetch state:        %2x\n",
		(val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
293
	len += snprintf(buf + len, DMA_BUF_LEN - len,
294 295
		"qcu_complete state: %2x    dcu_complete state:     %2x\n",
		(val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
296
	len += snprintf(buf + len, DMA_BUF_LEN - len,
297 298
		"dcu_arb state:      %2x    dcu_fp state:           %2x\n",
		(val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
299
	len += snprintf(buf + len, DMA_BUF_LEN - len,
300 301
		"chan_idle_dur:     %3d    chan_idle_dur_valid:     %1d\n",
		(val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
302
	len += snprintf(buf + len, DMA_BUF_LEN - len,
303 304
		"txfifo_valid_0:      %1d    txfifo_valid_1:          %1d\n",
		(val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
305
	len += snprintf(buf + len, DMA_BUF_LEN - len,
306 307 308
		"txfifo_dcu_num_0:   %2d    txfifo_dcu_num_1:       %2d\n",
		(val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);

309
	len += snprintf(buf + len, DMA_BUF_LEN - len, "pcu observe: 0x%x\n",
310
			REG_READ_D(ah, AR_OBS_BUS_1));
311
	len += snprintf(buf + len, DMA_BUF_LEN - len,
312
			"AR_CR: 0x%x\n", REG_READ_D(ah, AR_CR));
313

314 315
	ath9k_ps_restore(sc);

316 317 318
	if (len > DMA_BUF_LEN)
		len = DMA_BUF_LEN;

319 320 321
	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);
	return retval;
322 323 324 325 326
}

static const struct file_operations fops_dma = {
	.read = read_file_dma,
	.open = ath9k_debugfs_open,
327 328
	.owner = THIS_MODULE,
	.llseek = default_llseek,
329 330
};

331 332 333 334

void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
{
	if (status)
S
Sujith 已提交
335
		sc->debug.stats.istats.total++;
336 337 338 339 340
	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
		if (status & ATH9K_INT_RXLP)
			sc->debug.stats.istats.rxlp++;
		if (status & ATH9K_INT_RXHP)
			sc->debug.stats.istats.rxhp++;
341 342
		if (status & ATH9K_INT_BB_WATCHDOG)
			sc->debug.stats.istats.bb_watchdog++;
343 344 345 346
	} else {
		if (status & ATH9K_INT_RX)
			sc->debug.stats.istats.rxok++;
	}
347
	if (status & ATH9K_INT_RXEOL)
S
Sujith 已提交
348
		sc->debug.stats.istats.rxeol++;
349
	if (status & ATH9K_INT_RXORN)
S
Sujith 已提交
350
		sc->debug.stats.istats.rxorn++;
351
	if (status & ATH9K_INT_TX)
S
Sujith 已提交
352
		sc->debug.stats.istats.txok++;
353
	if (status & ATH9K_INT_TXURN)
S
Sujith 已提交
354
		sc->debug.stats.istats.txurn++;
355
	if (status & ATH9K_INT_MIB)
S
Sujith 已提交
356
		sc->debug.stats.istats.mib++;
357
	if (status & ATH9K_INT_RXPHY)
S
Sujith 已提交
358
		sc->debug.stats.istats.rxphyerr++;
359
	if (status & ATH9K_INT_RXKCM)
S
Sujith 已提交
360
		sc->debug.stats.istats.rx_keycache_miss++;
361
	if (status & ATH9K_INT_SWBA)
S
Sujith 已提交
362
		sc->debug.stats.istats.swba++;
363
	if (status & ATH9K_INT_BMISS)
S
Sujith 已提交
364
		sc->debug.stats.istats.bmiss++;
365
	if (status & ATH9K_INT_BNR)
S
Sujith 已提交
366
		sc->debug.stats.istats.bnr++;
367
	if (status & ATH9K_INT_CST)
S
Sujith 已提交
368
		sc->debug.stats.istats.cst++;
369
	if (status & ATH9K_INT_GTT)
S
Sujith 已提交
370
		sc->debug.stats.istats.gtt++;
371
	if (status & ATH9K_INT_TIM)
S
Sujith 已提交
372
		sc->debug.stats.istats.tim++;
373
	if (status & ATH9K_INT_CABEND)
S
Sujith 已提交
374
		sc->debug.stats.istats.cabend++;
375
	if (status & ATH9K_INT_DTIMSYNC)
S
Sujith 已提交
376
		sc->debug.stats.istats.dtimsync++;
377
	if (status & ATH9K_INT_DTIM)
S
Sujith 已提交
378
		sc->debug.stats.istats.dtim++;
379 380
	if (status & ATH9K_INT_TSFOOR)
		sc->debug.stats.istats.tsfoor++;
381 382 383 384 385 386 387 388 389
}

static ssize_t read_file_interrupt(struct file *file, char __user *user_buf,
				   size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	char buf[512];
	unsigned int len = 0;

390 391 392 393 394
	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
		len += snprintf(buf + len, sizeof(buf) - len,
			"%8s: %10u\n", "RXLP", sc->debug.stats.istats.rxlp);
		len += snprintf(buf + len, sizeof(buf) - len,
			"%8s: %10u\n", "RXHP", sc->debug.stats.istats.rxhp);
395 396 397
		len += snprintf(buf + len, sizeof(buf) - len,
			"%8s: %10u\n", "WATCHDOG",
			sc->debug.stats.istats.bb_watchdog);
398 399 400 401
	} else {
		len += snprintf(buf + len, sizeof(buf) - len,
			"%8s: %10u\n", "RX", sc->debug.stats.istats.rxok);
	}
402
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
403
		"%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol);
404
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
405
		"%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn);
406
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
407
		"%8s: %10u\n", "TX", sc->debug.stats.istats.txok);
408
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
409
		"%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn);
410
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
411
		"%8s: %10u\n", "MIB", sc->debug.stats.istats.mib);
412
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
413
		"%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr);
414
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
415
		"%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss);
416
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
417
		"%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba);
418
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
419
		"%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss);
420
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
421
		"%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr);
422
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
423
		"%8s: %10u\n", "CST", sc->debug.stats.istats.cst);
424
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
425
		"%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt);
426
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
427
		"%8s: %10u\n", "TIM", sc->debug.stats.istats.tim);
428
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
429
		"%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend);
430
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
431
		"%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync);
432
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
433
		"%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim);
434 435
	len += snprintf(buf + len, sizeof(buf) - len,
		"%8s: %10u\n", "TSFOOR", sc->debug.stats.istats.tsfoor);
436
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
437
		"%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total);
438

439

440 441 442
	if (len > sizeof(buf))
		len = sizeof(buf);

443 444 445 446 447 448
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static const struct file_operations fops_interrupt = {
	.read = read_file_interrupt,
	.open = ath9k_debugfs_open,
449 450
	.owner = THIS_MODULE,
	.llseek = default_llseek,
451 452
};

453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
static const char *channel_type_str(enum nl80211_channel_type t)
{
	switch (t) {
	case NL80211_CHAN_NO_HT:
		return "no ht";
	case NL80211_CHAN_HT20:
		return "ht20";
	case NL80211_CHAN_HT40MINUS:
		return "ht40-";
	case NL80211_CHAN_HT40PLUS:
		return "ht40+";
	default:
		return "???";
	}
}

469 470 471 472
static ssize_t read_file_wiphy(struct file *file, char __user *user_buf,
			       size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
473
	struct ieee80211_channel *chan = sc->hw->conf.channel;
474
	struct ieee80211_conf *conf = &(sc->hw->conf);
475 476 477
	char buf[512];
	unsigned int len = 0;
	u8 addr[ETH_ALEN];
B
Ben Greear 已提交
478
	u32 tmp;
479 480

	len += snprintf(buf + len, sizeof(buf) - len,
481
			"%s (chan=%d  center-freq: %d MHz  channel-type: %d (%s))\n",
482
			wiphy_name(sc->hw->wiphy),
483
			ieee80211_frequency_to_channel(chan->center_freq),
484 485 486
			chan->center_freq,
			conf->channel_type,
			channel_type_str(conf->channel_type));
487

488
	ath9k_ps_wakeup(sc);
489 490
	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_STA_ID0), addr);
	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4);
491 492
	len += snprintf(buf + len, sizeof(buf) - len,
			"addr: %pM\n", addr);
493 494
	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_BSSMSKL), addr);
	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4);
495 496
	len += snprintf(buf + len, sizeof(buf) - len,
			"addrmask: %pM\n", addr);
B
Ben Greear 已提交
497
	tmp = ath9k_hw_getrxfilter(sc->sc_ah);
498
	ath9k_ps_restore(sc);
B
Ben Greear 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
	len += snprintf(buf + len, sizeof(buf) - len,
			"rfilt: 0x%x", tmp);
	if (tmp & ATH9K_RX_FILTER_UCAST)
		len += snprintf(buf + len, sizeof(buf) - len, " UCAST");
	if (tmp & ATH9K_RX_FILTER_MCAST)
		len += snprintf(buf + len, sizeof(buf) - len, " MCAST");
	if (tmp & ATH9K_RX_FILTER_BCAST)
		len += snprintf(buf + len, sizeof(buf) - len, " BCAST");
	if (tmp & ATH9K_RX_FILTER_CONTROL)
		len += snprintf(buf + len, sizeof(buf) - len, " CONTROL");
	if (tmp & ATH9K_RX_FILTER_BEACON)
		len += snprintf(buf + len, sizeof(buf) - len, " BEACON");
	if (tmp & ATH9K_RX_FILTER_PROM)
		len += snprintf(buf + len, sizeof(buf) - len, " PROM");
	if (tmp & ATH9K_RX_FILTER_PROBEREQ)
		len += snprintf(buf + len, sizeof(buf) - len, " PROBEREQ");
	if (tmp & ATH9K_RX_FILTER_PHYERR)
		len += snprintf(buf + len, sizeof(buf) - len, " PHYERR");
	if (tmp & ATH9K_RX_FILTER_MYBEACON)
		len += snprintf(buf + len, sizeof(buf) - len, " MYBEACON");
	if (tmp & ATH9K_RX_FILTER_COMP_BAR)
		len += snprintf(buf + len, sizeof(buf) - len, " COMP_BAR");
	if (tmp & ATH9K_RX_FILTER_PSPOLL)
		len += snprintf(buf + len, sizeof(buf) - len, " PSPOLL");
	if (tmp & ATH9K_RX_FILTER_PHYRADAR)
		len += snprintf(buf + len, sizeof(buf) - len, " PHYRADAR");
	if (tmp & ATH9K_RX_FILTER_MCAST_BCAST_ALL)
		len += snprintf(buf + len, sizeof(buf) - len, " MCAST_BCAST_ALL\n");
	else
		len += snprintf(buf + len, sizeof(buf) - len, "\n");

530 531 532
	if (len > sizeof(buf))
		len = sizeof(buf);

533 534 535 536 537 538
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static const struct file_operations fops_wiphy = {
	.read = read_file_wiphy,
	.open = ath9k_debugfs_open,
539 540
	.owner = THIS_MODULE,
	.llseek = default_llseek,
541 542
};

543
#define PR_QNUM(_n) sc->tx.txq_map[_n]->axq_qnum
S
Sujith 已提交
544 545 546 547
#define PR(str, elem)							\
	do {								\
		len += snprintf(buf + len, size - len,			\
				"%s%13u%11u%10u%10u\n", str,		\
548 549 550 551
		sc->debug.stats.txstats[PR_QNUM(WME_AC_BE)].elem, \
		sc->debug.stats.txstats[PR_QNUM(WME_AC_BK)].elem, \
		sc->debug.stats.txstats[PR_QNUM(WME_AC_VI)].elem, \
		sc->debug.stats.txstats[PR_QNUM(WME_AC_VO)].elem); \
552 553
		if (len >= size)			  \
			goto done;			  \
S
Sujith 已提交
554 555
} while(0)

556 557 558 559
#define PRX(str, elem)							\
do {									\
	len += snprintf(buf + len, size - len,				\
			"%s%13u%11u%10u%10u\n", str,			\
560 561 562 563
			(unsigned int)(sc->tx.txq_map[WME_AC_BE]->elem),	\
			(unsigned int)(sc->tx.txq_map[WME_AC_BK]->elem),	\
			(unsigned int)(sc->tx.txq_map[WME_AC_VI]->elem),	\
			(unsigned int)(sc->tx.txq_map[WME_AC_VO]->elem));	\
564 565
	if (len >= size)						\
		goto done;						\
566 567
} while(0)

568 569 570 571
#define PRQLE(str, elem)						\
do {									\
	len += snprintf(buf + len, size - len,				\
			"%s%13i%11i%10i%10i\n", str,			\
572 573 574 575
			list_empty(&sc->tx.txq_map[WME_AC_BE]->elem),	\
			list_empty(&sc->tx.txq_map[WME_AC_BK]->elem),	\
			list_empty(&sc->tx.txq_map[WME_AC_VI]->elem),	\
			list_empty(&sc->tx.txq_map[WME_AC_VO]->elem));	\
576 577
	if (len >= size)						\
		goto done;						\
578 579
} while (0)

S
Sujith 已提交
580 581 582 583 584
static ssize_t read_file_xmit(struct file *file, char __user *user_buf,
			      size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	char *buf;
585
	unsigned int len = 0, size = 8000;
586
	int i;
S
Sujith 已提交
587
	ssize_t retval = 0;
588
	char tmp[32];
S
Sujith 已提交
589 590 591

	buf = kzalloc(size, GFP_KERNEL);
	if (buf == NULL)
592
		return -ENOMEM;
S
Sujith 已提交
593

594 595
	len += sprintf(buf, "Num-Tx-Queues: %i  tx-queues-setup: 0x%x"
		       " poll-work-seen: %u\n"
596 597
		       "%30s %10s%10s%10s\n\n",
		       ATH9K_NUM_TX_QUEUES, sc->tx.txqsetup,
598
		       sc->tx_complete_poll_work_seen,
599
		       "BE", "BK", "VI", "VO");
S
Sujith 已提交
600 601 602

	PR("MPDUs Queued:    ", queued);
	PR("MPDUs Completed: ", completed);
603
	PR("MPDUs XRetried:  ", xretries);
S
Sujith 已提交
604
	PR("Aggregates:      ", a_aggr);
605 606
	PR("AMPDUs Queued HW:", a_queued_hw);
	PR("AMPDUs Queued SW:", a_queued_sw);
S
Sujith 已提交
607 608 609 610 611 612 613 614 615
	PR("AMPDUs Completed:", a_completed);
	PR("AMPDUs Retried:  ", a_retries);
	PR("AMPDUs XRetried: ", a_xretries);
	PR("FIFO Underrun:   ", fifo_underrun);
	PR("TXOP Exceeded:   ", xtxop);
	PR("TXTIMER Expiry:  ", timer_exp);
	PR("DESC CFG Error:  ", desc_cfg_err);
	PR("DATA Underrun:   ", data_underrun);
	PR("DELIM Underrun:  ", delim_underrun);
616 617
	PR("TX-Pkts-All:     ", tx_pkts_all);
	PR("TX-Bytes-All:    ", tx_bytes_all);
618 619 620
	PR("hw-put-tx-buf:   ", puttxbuf);
	PR("hw-tx-start:     ", txstart);
	PR("hw-tx-proc-desc: ", txprocdesc);
621 622
	len += snprintf(buf + len, size - len,
			"%s%11p%11p%10p%10p\n", "txq-memory-address:",
623 624 625 626
			sc->tx.txq_map[WME_AC_BE],
			sc->tx.txq_map[WME_AC_BK],
			sc->tx.txq_map[WME_AC_VI],
			sc->tx.txq_map[WME_AC_VO]);
627 628
	if (len >= size)
		goto done;
S
Sujith 已提交
629

630 631
	PRX("axq-qnum:        ", axq_qnum);
	PRX("axq-depth:       ", axq_depth);
632
	PRX("axq-ampdu_depth: ", axq_ampdu_depth);
633 634 635
	PRX("axq-stopped      ", stopped);
	PRX("tx-in-progress   ", axq_tx_inprogress);
	PRX("pending-frames   ", pending_frames);
636 637 638 639 640 641 642 643 644
	PRX("txq_headidx:     ", txq_headidx);
	PRX("txq_tailidx:     ", txq_headidx);

	PRQLE("axq_q empty:       ", axq_q);
	PRQLE("axq_acq empty:     ", axq_acq);
	for (i = 0; i < ATH_TXFIFO_DEPTH; i++) {
		snprintf(tmp, sizeof(tmp) - 1, "txq_fifo[%i] empty: ", i);
		PRQLE(tmp, txq_fifo[i]);
	}
645

646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
	/* Print out more detailed queue-info */
	for (i = 0; i <= WME_AC_BK; i++) {
		struct ath_txq *txq = &(sc->tx.txq[i]);
		struct ath_atx_ac *ac;
		struct ath_atx_tid *tid;
		if (len >= size)
			goto done;
		spin_lock_bh(&txq->axq_lock);
		if (!list_empty(&txq->axq_acq)) {
			ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac,
					      list);
			len += snprintf(buf + len, size - len,
					"txq[%i] first-ac: %p sched: %i\n",
					i, ac, ac->sched);
			if (list_empty(&ac->tid_q) || (len >= size))
				goto done_for;
			tid = list_first_entry(&ac->tid_q, struct ath_atx_tid,
					       list);
			len += snprintf(buf + len, size - len,
					" first-tid: %p sched: %i paused: %i\n",
					tid, tid->sched, tid->paused);
		}
	done_for:
		spin_unlock_bh(&txq->axq_lock);
	}

672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
done:
	if (len > size)
		len = size;

	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);

	return retval;
}

static ssize_t read_file_stations(struct file *file, char __user *user_buf,
				  size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	char *buf;
	unsigned int len = 0, size = 64000;
	struct ath_node *an = NULL;
	ssize_t retval = 0;
	int q;

	buf = kzalloc(size, GFP_KERNEL);
	if (buf == NULL)
		return -ENOMEM;

	len += snprintf(buf + len, size - len,
			"Stations:\n"
			" tid: addr sched paused buf_q-empty an ac\n"
			" ac: addr sched tid_q-empty txq\n");

	spin_lock(&sc->nodes_lock);
	list_for_each_entry(an, &sc->nodes, list) {
		len += snprintf(buf + len, size - len,
				"%pM\n", an->sta->addr);
		if (len >= size)
			goto done;

		for (q = 0; q < WME_NUM_TID; q++) {
			struct ath_atx_tid *tid = &(an->tid[q]);
			len += snprintf(buf + len, size - len,
					" tid: %p %s %s %i %p %p\n",
					tid, tid->sched ? "sched" : "idle",
					tid->paused ? "paused" : "running",
					list_empty(&tid->buf_q),
					tid->an, tid->ac);
			if (len >= size)
				goto done;
		}

		for (q = 0; q < WME_NUM_AC; q++) {
			struct ath_atx_ac *ac = &(an->ac[q]);
			len += snprintf(buf + len, size - len,
					" ac: %p %s %i %p\n",
					ac, ac->sched ? "sched" : "idle",
					list_empty(&ac->tid_q), ac->txq);
			if (len >= size)
				goto done;
		}
	}

done:
	spin_unlock(&sc->nodes_lock);
733 734 735
	if (len > size)
		len = size;

S
Sujith 已提交
736 737 738 739 740 741
	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);

	return retval;
}

742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
static ssize_t read_file_misc(struct file *file, char __user *user_buf,
			      size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	struct ath_hw *ah = sc->sc_ah;
	struct ieee80211_hw *hw = sc->hw;
	char *buf;
	unsigned int len = 0, size = 8000;
	ssize_t retval = 0;
	unsigned int reg;
	struct ath9k_vif_iter_data iter_data;

	ath9k_calculate_iter_data(hw, NULL, &iter_data);
	
	buf = kzalloc(size, GFP_KERNEL);
	if (buf == NULL)
		return -ENOMEM;

761
	ath9k_ps_wakeup(sc);
762 763 764 765 766
	len += snprintf(buf + len, size - len,
			"curbssid: %pM\n"
			"OP-Mode: %s(%i)\n"
			"Beacon-Timer-Register: 0x%x\n",
			common->curbssid,
P
Pavel Roskin 已提交
767 768
			ath_opmode_to_string(sc->sc_ah->opmode),
			(int)(sc->sc_ah->opmode),
769 770 771
			REG_READ(ah, AR_BEACON_PERIOD));

	reg = REG_READ(ah, AR_TIMER_MODE);
772
	ath9k_ps_restore(sc);
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
	len += snprintf(buf + len, size - len, "Timer-Mode-Register: 0x%x (",
			reg);
	if (reg & AR_TBTT_TIMER_EN)
		len += snprintf(buf + len, size - len, "TBTT ");
	if (reg & AR_DBA_TIMER_EN)
		len += snprintf(buf + len, size - len, "DBA ");
	if (reg & AR_SWBA_TIMER_EN)
		len += snprintf(buf + len, size - len, "SWBA ");
	if (reg & AR_HCF_TIMER_EN)
		len += snprintf(buf + len, size - len, "HCF ");
	if (reg & AR_TIM_TIMER_EN)
		len += snprintf(buf + len, size - len, "TIM ");
	if (reg & AR_DTIM_TIMER_EN)
		len += snprintf(buf + len, size - len, "DTIM ");
	len += snprintf(buf + len, size - len, ")\n");

	reg = sc->sc_ah->imask;
	len += snprintf(buf + len, size - len, "imask: 0x%x (", reg);
	if (reg & ATH9K_INT_SWBA)
		len += snprintf(buf + len, size - len, "SWBA ");
	if (reg & ATH9K_INT_BMISS)
		len += snprintf(buf + len, size - len, "BMISS ");
	if (reg & ATH9K_INT_CST)
		len += snprintf(buf + len, size - len, "CST ");
	if (reg & ATH9K_INT_RX)
		len += snprintf(buf + len, size - len, "RX ");
	if (reg & ATH9K_INT_RXHP)
		len += snprintf(buf + len, size - len, "RXHP ");
	if (reg & ATH9K_INT_RXLP)
		len += snprintf(buf + len, size - len, "RXLP ");
	if (reg & ATH9K_INT_BB_WATCHDOG)
		len += snprintf(buf + len, size - len, "BB_WATCHDOG ");
	/* there are other IRQs if one wanted to add them. */
	len += snprintf(buf + len, size - len, ")\n");

	len += snprintf(buf + len, size - len,
			"VIF Counts: AP: %i STA: %i MESH: %i WDS: %i"
			" ADHOC: %i OTHER: %i nvifs: %hi beacon-vifs: %hi\n",
			iter_data.naps, iter_data.nstations, iter_data.nmeshes,
			iter_data.nwds, iter_data.nadhocs, iter_data.nothers,
			sc->nvifs, sc->nbcnvifs);

	len += snprintf(buf + len, size - len,
			"Calculated-BSSID-Mask: %pM\n",
			iter_data.mask);

	if (len > size)
		len = size;

	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);

	return retval;
}

828
void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
829
		       struct ath_tx_status *ts, struct ath_txq *txq)
S
Sujith 已提交
830
{
831
	int qnum = txq->axq_qnum;
832 833 834

	TX_STAT_INC(qnum, tx_pkts_all);
	sc->debug.stats.txstats[qnum].tx_bytes_all += bf->bf_mpdu->len;
835

S
Sujith 已提交
836 837
	if (bf_isampdu(bf)) {
		if (bf_isxretried(bf))
838
			TX_STAT_INC(qnum, a_xretries);
S
Sujith 已提交
839
		else
840
			TX_STAT_INC(qnum, a_completed);
S
Sujith 已提交
841
	} else {
842 843 844 845
		if (bf_isxretried(bf))
			TX_STAT_INC(qnum, xretries);
		else
			TX_STAT_INC(qnum, completed);
S
Sujith 已提交
846 847
	}

848
	if (ts->ts_status & ATH9K_TXERR_FIFO)
849
		TX_STAT_INC(qnum, fifo_underrun);
850
	if (ts->ts_status & ATH9K_TXERR_XTXOP)
851
		TX_STAT_INC(qnum, xtxop);
852
	if (ts->ts_status & ATH9K_TXERR_TIMER_EXPIRED)
853
		TX_STAT_INC(qnum, timer_exp);
854
	if (ts->ts_flags & ATH9K_TX_DESC_CFG_ERR)
855
		TX_STAT_INC(qnum, desc_cfg_err);
856
	if (ts->ts_flags & ATH9K_TX_DATA_UNDERRUN)
857
		TX_STAT_INC(qnum, data_underrun);
858
	if (ts->ts_flags & ATH9K_TX_DELIM_UNDERRUN)
859
		TX_STAT_INC(qnum, delim_underrun);
S
Sujith 已提交
860 861 862 863 864
}

static const struct file_operations fops_xmit = {
	.read = read_file_xmit,
	.open = ath9k_debugfs_open,
865 866
	.owner = THIS_MODULE,
	.llseek = default_llseek,
S
Sujith 已提交
867
};
868

869 870 871 872 873 874 875
static const struct file_operations fops_stations = {
	.read = read_file_stations,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE,
	.llseek = default_llseek,
};

876 877 878 879 880 881 882
static const struct file_operations fops_misc = {
	.read = read_file_misc,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE,
	.llseek = default_llseek,
};

S
Sujith 已提交
883 884 885 886 887 888 889 890 891
static ssize_t read_file_recv(struct file *file, char __user *user_buf,
			      size_t count, loff_t *ppos)
{
#define PHY_ERR(s, p) \
	len += snprintf(buf + len, size - len, "%18s : %10u\n", s, \
			sc->debug.stats.rxstats.phy_err_stats[p]);

	struct ath_softc *sc = file->private_data;
	char *buf;
892
	unsigned int len = 0, size = 1400;
S
Sujith 已提交
893 894 895 896
	ssize_t retval = 0;

	buf = kzalloc(size, GFP_KERNEL);
	if (buf == NULL)
897
		return -ENOMEM;
S
Sujith 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920

	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "CRC ERR",
			sc->debug.stats.rxstats.crc_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "DECRYPT CRC ERR",
			sc->debug.stats.rxstats.decrypt_crc_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "PHY ERR",
			sc->debug.stats.rxstats.phy_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "MIC ERR",
			sc->debug.stats.rxstats.mic_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "PRE-DELIM CRC ERR",
			sc->debug.stats.rxstats.pre_delim_crc_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "POST-DELIM CRC ERR",
			sc->debug.stats.rxstats.post_delim_crc_err);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "DECRYPT BUSY ERR",
			sc->debug.stats.rxstats.decrypt_busy_err);

921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-CTL0",
			sc->debug.stats.rxstats.rs_rssi_ctl0);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-CTL1",
			sc->debug.stats.rxstats.rs_rssi_ctl1);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-CTL2",
			sc->debug.stats.rxstats.rs_rssi_ctl2);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-EXT0",
			sc->debug.stats.rxstats.rs_rssi_ext0);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-EXT1",
			sc->debug.stats.rxstats.rs_rssi_ext1);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "RSSI-EXT2",
			sc->debug.stats.rxstats.rs_rssi_ext2);

	len += snprintf(buf + len, size - len,
			"%18s : %10d\n", "Rx Antenna",
			sc->debug.stats.rxstats.rs_antenna);

S
Sujith 已提交
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
	PHY_ERR("UNDERRUN", ATH9K_PHYERR_UNDERRUN);
	PHY_ERR("TIMING", ATH9K_PHYERR_TIMING);
	PHY_ERR("PARITY", ATH9K_PHYERR_PARITY);
	PHY_ERR("RATE", ATH9K_PHYERR_RATE);
	PHY_ERR("LENGTH", ATH9K_PHYERR_LENGTH);
	PHY_ERR("RADAR", ATH9K_PHYERR_RADAR);
	PHY_ERR("SERVICE", ATH9K_PHYERR_SERVICE);
	PHY_ERR("TOR", ATH9K_PHYERR_TOR);
	PHY_ERR("OFDM-TIMING", ATH9K_PHYERR_OFDM_TIMING);
	PHY_ERR("OFDM-SIGNAL-PARITY", ATH9K_PHYERR_OFDM_SIGNAL_PARITY);
	PHY_ERR("OFDM-RATE", ATH9K_PHYERR_OFDM_RATE_ILLEGAL);
	PHY_ERR("OFDM-LENGTH", ATH9K_PHYERR_OFDM_LENGTH_ILLEGAL);
	PHY_ERR("OFDM-POWER-DROP", ATH9K_PHYERR_OFDM_POWER_DROP);
	PHY_ERR("OFDM-SERVICE", ATH9K_PHYERR_OFDM_SERVICE);
	PHY_ERR("OFDM-RESTART", ATH9K_PHYERR_OFDM_RESTART);
	PHY_ERR("FALSE-RADAR-EXT", ATH9K_PHYERR_FALSE_RADAR_EXT);
	PHY_ERR("CCK-TIMING", ATH9K_PHYERR_CCK_TIMING);
	PHY_ERR("CCK-HEADER-CRC", ATH9K_PHYERR_CCK_HEADER_CRC);
	PHY_ERR("CCK-RATE", ATH9K_PHYERR_CCK_RATE_ILLEGAL);
	PHY_ERR("CCK-SERVICE", ATH9K_PHYERR_CCK_SERVICE);
	PHY_ERR("CCK-RESTART", ATH9K_PHYERR_CCK_RESTART);
	PHY_ERR("CCK-LENGTH", ATH9K_PHYERR_CCK_LENGTH_ILLEGAL);
	PHY_ERR("CCK-POWER-DROP", ATH9K_PHYERR_CCK_POWER_DROP);
	PHY_ERR("HT-CRC", ATH9K_PHYERR_HT_CRC_ERROR);
	PHY_ERR("HT-LENGTH", ATH9K_PHYERR_HT_LENGTH_ILLEGAL);
	PHY_ERR("HT-RATE", ATH9K_PHYERR_HT_RATE_ILLEGAL);

976 977 978 979 980 981 982
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "RX-Pkts-All",
			sc->debug.stats.rxstats.rx_pkts_all);
	len += snprintf(buf + len, size - len,
			"%18s : %10u\n", "RX-Bytes-All",
			sc->debug.stats.rxstats.rx_bytes_all);

983 984 985
	if (len > size)
		len = size;

S
Sujith 已提交
986 987 988 989 990 991 992 993
	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);

	return retval;

#undef PHY_ERR
}

994
void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs)
S
Sujith 已提交
995 996 997 998 999 1000
{
#define RX_STAT_INC(c) sc->debug.stats.rxstats.c++
#define RX_PHY_ERR_INC(c) sc->debug.stats.rxstats.phy_err_stats[c]++

	u32 phyerr;

1001 1002 1003
	RX_STAT_INC(rx_pkts_all);
	sc->debug.stats.rxstats.rx_bytes_all += rs->rs_datalen;

1004
	if (rs->rs_status & ATH9K_RXERR_CRC)
S
Sujith 已提交
1005
		RX_STAT_INC(crc_err);
1006
	if (rs->rs_status & ATH9K_RXERR_DECRYPT)
S
Sujith 已提交
1007
		RX_STAT_INC(decrypt_crc_err);
1008
	if (rs->rs_status & ATH9K_RXERR_MIC)
S
Sujith 已提交
1009
		RX_STAT_INC(mic_err);
1010
	if (rs->rs_status & ATH9K_RX_DELIM_CRC_PRE)
S
Sujith 已提交
1011
		RX_STAT_INC(pre_delim_crc_err);
1012
	if (rs->rs_status & ATH9K_RX_DELIM_CRC_POST)
S
Sujith 已提交
1013
		RX_STAT_INC(post_delim_crc_err);
1014
	if (rs->rs_status & ATH9K_RX_DECRYPT_BUSY)
S
Sujith 已提交
1015 1016
		RX_STAT_INC(decrypt_busy_err);

1017
	if (rs->rs_status & ATH9K_RXERR_PHY) {
S
Sujith 已提交
1018
		RX_STAT_INC(phy_err);
1019
		phyerr = rs->rs_phyerr & 0x24;
S
Sujith 已提交
1020 1021 1022
		RX_PHY_ERR_INC(phyerr);
	}

1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
	sc->debug.stats.rxstats.rs_rssi_ctl0 = rs->rs_rssi_ctl0;
	sc->debug.stats.rxstats.rs_rssi_ctl1 = rs->rs_rssi_ctl1;
	sc->debug.stats.rxstats.rs_rssi_ctl2 = rs->rs_rssi_ctl2;

	sc->debug.stats.rxstats.rs_rssi_ext0 = rs->rs_rssi_ext0;
	sc->debug.stats.rxstats.rs_rssi_ext1 = rs->rs_rssi_ext1;
	sc->debug.stats.rxstats.rs_rssi_ext2 = rs->rs_rssi_ext2;

	sc->debug.stats.rxstats.rs_antenna = rs->rs_antenna;

S
Sujith 已提交
1033 1034 1035 1036 1037 1038 1039
#undef RX_STAT_INC
#undef RX_PHY_ERR_INC
}

static const struct file_operations fops_recv = {
	.read = read_file_recv,
	.open = ath9k_debugfs_open,
1040 1041
	.owner = THIS_MODULE,
	.llseek = default_llseek,
S
Sujith 已提交
1042 1043
};

1044 1045 1046 1047 1048 1049 1050
static ssize_t read_file_regidx(struct file *file, char __user *user_buf,
                                size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	char buf[32];
	unsigned int len;

1051
	len = sprintf(buf, "0x%08x\n", sc->debug.regidx);
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_regidx(struct file *file, const char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	unsigned long regidx;
	char buf[32];
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
1065
		return -EFAULT;
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &regidx))
		return -EINVAL;

	sc->debug.regidx = regidx;
	return count;
}

static const struct file_operations fops_regidx = {
	.read = read_file_regidx,
	.write = write_file_regidx,
	.open = ath9k_debugfs_open,
1079 1080
	.owner = THIS_MODULE,
	.llseek = default_llseek,
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
};

static ssize_t read_file_regval(struct file *file, char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_hw *ah = sc->sc_ah;
	char buf[32];
	unsigned int len;
	u32 regval;

1092
	ath9k_ps_wakeup(sc);
1093
	regval = REG_READ_D(ah, sc->debug.regidx);
1094
	ath9k_ps_restore(sc);
1095
	len = sprintf(buf, "0x%08x\n", regval);
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static ssize_t write_file_regval(struct file *file, const char __user *user_buf,
			     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_hw *ah = sc->sc_ah;
	unsigned long regval;
	char buf[32];
	ssize_t len;

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
1110
		return -EFAULT;
1111 1112 1113 1114 1115

	buf[len] = '\0';
	if (strict_strtoul(buf, 0, &regval))
		return -EINVAL;

1116
	ath9k_ps_wakeup(sc);
1117
	REG_WRITE_D(ah, sc->debug.regidx, regval);
1118
	ath9k_ps_restore(sc);
1119 1120 1121 1122 1123 1124 1125
	return count;
}

static const struct file_operations fops_regval = {
	.read = read_file_regval,
	.write = write_file_regval,
	.open = ath9k_debugfs_open,
1126 1127
	.owner = THIS_MODULE,
	.llseek = default_llseek,
1128 1129
};

1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
#define REGDUMP_LINE_SIZE	20

static int open_file_regdump(struct inode *inode, struct file *file)
{
	struct ath_softc *sc = inode->i_private;
	unsigned int len = 0;
	u8 *buf;
	int i;
	unsigned long num_regs, regdump_len, max_reg_offset;

	max_reg_offset = AR_SREV_9300_20_OR_LATER(sc->sc_ah) ? 0x16bd4 : 0xb500;
	num_regs = max_reg_offset / 4 + 1;
	regdump_len = num_regs * REGDUMP_LINE_SIZE + 1;
	buf = vmalloc(regdump_len);
	if (!buf)
		return -ENOMEM;

	ath9k_ps_wakeup(sc);
	for (i = 0; i < num_regs; i++)
		len += scnprintf(buf + len, regdump_len - len,
			"0x%06x 0x%08x\n", i << 2, REG_READ(sc->sc_ah, i << 2));
	ath9k_ps_restore(sc);

	file->private_data = buf;

	return 0;
}

static const struct file_operations fops_regdump = {
	.open = open_file_regdump,
	.read = ath9k_debugfs_read_buf,
	.release = ath9k_debugfs_release_buf,
	.owner = THIS_MODULE,
	.llseek = default_llseek,/* read accesses f_pos */
};

1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
static ssize_t read_file_base_eeprom(struct file *file, char __user *user_buf,
				     size_t count, loff_t *ppos)
{
	struct ath_softc *sc = file->private_data;
	struct ath_hw *ah = sc->sc_ah;
	u32 len = 0, size = 1500;
	ssize_t retval = 0;
	char *buf;

	buf = kzalloc(size, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

	len = ah->eep_ops->dump_eeprom(ah, true, buf, len, size);

	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);

	return retval;
}

static const struct file_operations fops_base_eeprom = {
	.read = read_file_base_eeprom,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE,
	.llseek = default_llseek,
};

1194
int ath9k_init_debug(struct ath_hw *ah)
1195
{
1196 1197
	struct ath_common *common = ath9k_hw_common(ah);
	struct ath_softc *sc = (struct ath_softc *) common->priv;
1198

1199 1200
	sc->debug.debugfs_phy = debugfs_create_dir("ath9k",
						   sc->hw->wiphy->debugfsdir);
S
Sujith 已提交
1201
	if (!sc->debug.debugfs_phy)
1202
		return -ENOMEM;
1203

1204
#ifdef CONFIG_ATH_DEBUG
1205 1206
	debugfs_create_file("debug", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy,
			    sc, &fops_debug);
1207
#endif
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
	debugfs_create_file("dma", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_dma);
	debugfs_create_file("interrupt", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_interrupt);
	debugfs_create_file("wiphy", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy,
			    sc, &fops_wiphy);
	debugfs_create_file("xmit", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_xmit);
	debugfs_create_file("stations", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_stations);
	debugfs_create_file("misc", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_misc);
	debugfs_create_file("recv", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_recv);
	debugfs_create_file("rx_chainmask", S_IRUSR | S_IWUSR,
			    sc->debug.debugfs_phy, sc, &fops_rx_chainmask);
	debugfs_create_file("tx_chainmask", S_IRUSR | S_IWUSR,
			    sc->debug.debugfs_phy, sc, &fops_tx_chainmask);
1226 1227
	debugfs_create_file("disable_ani", S_IRUSR | S_IWUSR,
			    sc->debug.debugfs_phy, sc, &fops_disable_ani);
1228 1229 1230 1231 1232 1233 1234 1235 1236
	debugfs_create_file("regidx", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy,
			    sc, &fops_regidx);
	debugfs_create_file("regval", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy,
			    sc, &fops_regval);
	debugfs_create_bool("ignore_extcca", S_IRUSR | S_IWUSR,
			    sc->debug.debugfs_phy,
			    &ah->config.cwm_ignore_extcca);
	debugfs_create_file("regdump", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_regdump);
1237 1238
	debugfs_create_file("base_eeprom", S_IRUSR, sc->debug.debugfs_phy, sc,
			    &fops_base_eeprom);
1239

1240 1241 1242 1243 1244 1245
	debugfs_create_u32("gpio_mask", S_IRUSR | S_IWUSR,
			   sc->debug.debugfs_phy, &sc->sc_ah->gpio_mask);

	debugfs_create_u32("gpio_val", S_IRUSR | S_IWUSR,
			   sc->debug.debugfs_phy, &sc->sc_ah->gpio_val);

1246
	sc->debug.regidx = 0;
1247
	return 0;
1248
}