debug.c 16.0 KB
Newer Older
1
/*
2
 * Copyright (c) 2008-2009 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 18
#include <asm/unaligned.h>

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

static unsigned int ath9k_debug = DBG_DEFAULT;
module_param_named(debug, ath9k_debug, uint, 0);

24 25
static struct dentry *ath9k_debugfs_root;

26 27 28 29 30
void DPRINTF(struct ath_softc *sc, int dbg_mask, const char *fmt, ...)
{
	if (!sc)
		return;

S
Sujith 已提交
31
	if (sc->debug.debug_mask & dbg_mask) {
32 33 34 35 36 37 38 39 40
		va_list args;

		va_start(args, fmt);
		printk(KERN_DEBUG "ath9k: ");
		vprintk(fmt, args);
		va_end(args);
	}
}

41 42 43 44 45 46
static int ath9k_debugfs_open(struct inode *inode, struct file *file)
{
	file->private_data = inode->i_private;
	return 0;
}

J
Jeff Hansen 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
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;
	char buf[32];
	unsigned int len = 0;
	len += snprintf(buf, sizeof(buf), "0x%08x\n", sc->debug.debug_mask);
	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;
	unsigned long mask;
	char buf[32];
	if (copy_from_user(buf, user_buf, (sizeof(buf) - 1) < count ?
		(sizeof(buf) - 1) : count))
		return 0;
	buf[sizeof(buf)-1] = 0;
	if (strict_strtoul(buf, 0, &mask) == 0)
		sc->debug.debug_mask = mask;
	return count;
}

static const struct file_operations fops_debug = {
	.read = read_file_debug,
	.write = write_file_debug,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE
};

79 80 81 82
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;
83
	struct ath_hw *ah = sc->sc_ah;
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
	char buf[1024];
	unsigned int len = 0;
	u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
	int i, qcuOffset = 0, dcuOffset = 0;
	u32 *qcuBase = &val[0], *dcuBase = &val[4];

	REG_WRITE(ah, AR_MACMISC,
		  ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
		   (AR_MACMISC_MISC_OBS_BUS_1 <<
		    AR_MACMISC_MISC_OBS_BUS_MSB_S)));

	len += snprintf(buf + len, sizeof(buf) - len,
			"Raw DMA Debug values:\n");

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

		val[i] = REG_READ(ah, AR_DMADBG_0 + (i * sizeof(u32)));
		len += snprintf(buf + len, sizeof(buf) - len, "%d: %08x ",
				i, val[i]);
	}

	len += snprintf(buf + len, sizeof(buf) - len, "\n\n");
	len += snprintf(buf + len, sizeof(buf) - len,
			"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++;
		}

		len += snprintf(buf + len, sizeof(buf) - len,
			"%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);
	}

	len += snprintf(buf + len, sizeof(buf) - len, "\n");

	len += snprintf(buf + len, sizeof(buf) - len,
		"qcu_stitch state:   %2x    qcu_fetch state:        %2x\n",
		(val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
	len += snprintf(buf + len, sizeof(buf) - len,
		"qcu_complete state: %2x    dcu_complete state:     %2x\n",
		(val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
	len += snprintf(buf + len, sizeof(buf) - len,
		"dcu_arb state:      %2x    dcu_fp state:           %2x\n",
		(val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
	len += snprintf(buf + len, sizeof(buf) - len,
		"chan_idle_dur:     %3d    chan_idle_dur_valid:     %1d\n",
		(val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
	len += snprintf(buf + len, sizeof(buf) - len,
		"txfifo_valid_0:      %1d    txfifo_valid_1:          %1d\n",
		(val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
	len += snprintf(buf + len, sizeof(buf) - len,
		"txfifo_dcu_num_0:   %2d    txfifo_dcu_num_1:       %2d\n",
		(val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);

	len += snprintf(buf + len, sizeof(buf) - len, "pcu observe: 0x%x \n",
			REG_READ(ah, AR_OBS_BUS_1));
	len += snprintf(buf + len, sizeof(buf) - len,
			"AR_CR: 0x%x \n", REG_READ(ah, AR_CR));

	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static const struct file_operations fops_dma = {
	.read = read_file_dma,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE
};

165 166 167 168

void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
{
	if (status)
S
Sujith 已提交
169
		sc->debug.stats.istats.total++;
170
	if (status & ATH9K_INT_RX)
S
Sujith 已提交
171
		sc->debug.stats.istats.rxok++;
172
	if (status & ATH9K_INT_RXEOL)
S
Sujith 已提交
173
		sc->debug.stats.istats.rxeol++;
174
	if (status & ATH9K_INT_RXORN)
S
Sujith 已提交
175
		sc->debug.stats.istats.rxorn++;
176
	if (status & ATH9K_INT_TX)
S
Sujith 已提交
177
		sc->debug.stats.istats.txok++;
178
	if (status & ATH9K_INT_TXURN)
S
Sujith 已提交
179
		sc->debug.stats.istats.txurn++;
180
	if (status & ATH9K_INT_MIB)
S
Sujith 已提交
181
		sc->debug.stats.istats.mib++;
182
	if (status & ATH9K_INT_RXPHY)
S
Sujith 已提交
183
		sc->debug.stats.istats.rxphyerr++;
184
	if (status & ATH9K_INT_RXKCM)
S
Sujith 已提交
185
		sc->debug.stats.istats.rx_keycache_miss++;
186
	if (status & ATH9K_INT_SWBA)
S
Sujith 已提交
187
		sc->debug.stats.istats.swba++;
188
	if (status & ATH9K_INT_BMISS)
S
Sujith 已提交
189
		sc->debug.stats.istats.bmiss++;
190
	if (status & ATH9K_INT_BNR)
S
Sujith 已提交
191
		sc->debug.stats.istats.bnr++;
192
	if (status & ATH9K_INT_CST)
S
Sujith 已提交
193
		sc->debug.stats.istats.cst++;
194
	if (status & ATH9K_INT_GTT)
S
Sujith 已提交
195
		sc->debug.stats.istats.gtt++;
196
	if (status & ATH9K_INT_TIM)
S
Sujith 已提交
197
		sc->debug.stats.istats.tim++;
198
	if (status & ATH9K_INT_CABEND)
S
Sujith 已提交
199
		sc->debug.stats.istats.cabend++;
200
	if (status & ATH9K_INT_DTIMSYNC)
S
Sujith 已提交
201
		sc->debug.stats.istats.dtimsync++;
202
	if (status & ATH9K_INT_DTIM)
S
Sujith 已提交
203
		sc->debug.stats.istats.dtim++;
204 205 206 207 208 209 210 211 212 213
}

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;

	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
214
		"%8s: %10u\n", "RX", sc->debug.stats.istats.rxok);
215
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
216
		"%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol);
217
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
218
		"%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn);
219
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
220
		"%8s: %10u\n", "TX", sc->debug.stats.istats.txok);
221
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
222
		"%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn);
223
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
224
		"%8s: %10u\n", "MIB", sc->debug.stats.istats.mib);
225
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
226
		"%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr);
227
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
228
		"%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss);
229
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
230
		"%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba);
231
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
232
		"%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss);
233
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
234
		"%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr);
235
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
236
		"%8s: %10u\n", "CST", sc->debug.stats.istats.cst);
237
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
238
		"%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt);
239
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
240
		"%8s: %10u\n", "TIM", sc->debug.stats.istats.tim);
241
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
242
		"%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend);
243
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
244
		"%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync);
245
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
246
		"%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim);
247
	len += snprintf(buf + len, sizeof(buf) - len,
S
Sujith 已提交
248
		"%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total);
249 250 251 252 253 254 255 256 257 258

	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,
	.owner = THIS_MODULE
};

259
void ath_debug_stat_rc(struct ath_softc *sc, struct sk_buff *skb)
260 261 262 263 264
{
	struct ath_tx_info_priv *tx_info_priv = NULL;
	struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
	struct ieee80211_tx_rate *rates = tx_info->status.rates;
	int final_ts_idx, idx;
265
	struct ath_rc_stats *stats;
266 267 268 269

	tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
	final_ts_idx = tx_info_priv->tx.ts_rateindex;
	idx = rates[final_ts_idx].idx;
270 271
	stats = &sc->debug.stats.rcstats[idx];
	stats->success++;
272 273
}

274
void ath_debug_stat_retries(struct ath_softc *sc, int rix,
S
Sujith 已提交
275
			    int xretries, int retries, u8 per)
276
{
277
	struct ath_rc_stats *stats = &sc->debug.stats.rcstats[rix];
278

279 280 281
	stats->xretries += xretries;
	stats->retries += retries;
	stats->per = per;
282 283
}

284 285
static ssize_t read_file_rcstat(struct file *file, char __user *user_buf,
				size_t count, loff_t *ppos)
286 287
{
	struct ath_softc *sc = file->private_data;
288 289
	char *buf;
	unsigned int len = 0, max;
290
	int i = 0;
291
	ssize_t retval;
292

293 294
	if (sc->cur_rate_table == NULL)
		return 0;
295

296 297 298 299 300
	max = 80 + sc->cur_rate_table->rate_cnt * 64;
	buf = kmalloc(max + 1, GFP_KERNEL);
	if (buf == NULL)
		return 0;
	buf[max] = 0;
301

302 303
	len += sprintf(buf, "%5s %15s %8s %9s %3s\n\n", "Rate", "Success",
		       "Retries", "XRetries", "PER");
304 305

	for (i = 0; i < sc->cur_rate_table->rate_cnt; i++) {
306 307 308 309 310 311 312 313
		u32 ratekbps = sc->cur_rate_table->info[i].ratekbps;
		struct ath_rc_stats *stats = &sc->debug.stats.rcstats[i];

		len += snprintf(buf + len, max - len,
			"%3u.%d: %8u %8u %8u %8u\n", ratekbps / 1000,
			(ratekbps % 1000) / 100, stats->success,
			stats->retries, stats->xretries,
			stats->per);
314 315
	}

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

static const struct file_operations fops_rcstat = {
	.read = read_file_rcstat,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE
};
326

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
static const char * ath_wiphy_state_str(enum ath_wiphy_state state)
{
	switch (state) {
	case ATH_WIPHY_INACTIVE:
		return "INACTIVE";
	case ATH_WIPHY_ACTIVE:
		return "ACTIVE";
	case ATH_WIPHY_PAUSING:
		return "PAUSING";
	case ATH_WIPHY_PAUSED:
		return "PAUSED";
	case ATH_WIPHY_SCAN:
		return "SCAN";
	}
	return "?";
}

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;
	char buf[512];
	unsigned int len = 0;
	int i;
	u8 addr[ETH_ALEN];

	len += snprintf(buf + len, sizeof(buf) - len,
			"primary: %s (%s chan=%d ht=%d)\n",
			wiphy_name(sc->pri_wiphy->hw->wiphy),
			ath_wiphy_state_str(sc->pri_wiphy->state),
			sc->pri_wiphy->chan_idx, sc->pri_wiphy->chan_is_ht);
	for (i = 0; i < sc->num_sec_wiphy; i++) {
		struct ath_wiphy *aphy = sc->sec_wiphy[i];
		if (aphy == NULL)
			continue;
		len += snprintf(buf + len, sizeof(buf) - len,
				"secondary: %s (%s chan=%d ht=%d)\n",
				wiphy_name(aphy->hw->wiphy),
				ath_wiphy_state_str(aphy->state),
				aphy->chan_idx, aphy->chan_is_ht);
	}

	put_unaligned_le32(REG_READ(sc->sc_ah, AR_STA_ID0), addr);
	put_unaligned_le16(REG_READ(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4);
	len += snprintf(buf + len, sizeof(buf) - len,
			"addr: %pM\n", addr);
	put_unaligned_le32(REG_READ(sc->sc_ah, AR_BSSMSKL), addr);
	put_unaligned_le16(REG_READ(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4);
	len += snprintf(buf + len, sizeof(buf) - len,
			"addrmask: %pM\n", addr);

	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
}

static struct ath_wiphy * get_wiphy(struct ath_softc *sc, const char *name)
{
	int i;
	if (strcmp(name, wiphy_name(sc->pri_wiphy->hw->wiphy)) == 0)
		return sc->pri_wiphy;
	for (i = 0; i < sc->num_sec_wiphy; i++) {
		struct ath_wiphy *aphy = sc->sec_wiphy[i];
		if (aphy && strcmp(name, wiphy_name(aphy->hw->wiphy)) == 0)
			return aphy;
	}
	return NULL;
}

static int del_wiphy(struct ath_softc *sc, const char *name)
{
	struct ath_wiphy *aphy = get_wiphy(sc, name);
	if (!aphy)
		return -ENOENT;
	return ath9k_wiphy_del(aphy);
}

static int pause_wiphy(struct ath_softc *sc, const char *name)
{
	struct ath_wiphy *aphy = get_wiphy(sc, name);
	if (!aphy)
		return -ENOENT;
	return ath9k_wiphy_pause(aphy);
}

static int unpause_wiphy(struct ath_softc *sc, const char *name)
{
	struct ath_wiphy *aphy = get_wiphy(sc, name);
	if (!aphy)
		return -ENOENT;
	return ath9k_wiphy_unpause(aphy);
}

static int select_wiphy(struct ath_softc *sc, const char *name)
{
	struct ath_wiphy *aphy = get_wiphy(sc, name);
	if (!aphy)
		return -ENOENT;
	return ath9k_wiphy_select(aphy);
}

static int schedule_wiphy(struct ath_softc *sc, const char *msec)
{
	ath9k_wiphy_set_scheduler(sc, simple_strtoul(msec, NULL, 0));
	return 0;
}

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

	len = min(count, sizeof(buf) - 1);
	if (copy_from_user(buf, user_buf, len))
		return -EFAULT;
	buf[len] = '\0';
	if (len > 0 && buf[len - 1] == '\n')
		buf[len - 1] = '\0';

	if (strncmp(buf, "add", 3) == 0) {
		int res = ath9k_wiphy_add(sc);
		if (res < 0)
			return res;
	} else if (strncmp(buf, "del=", 4) == 0) {
		int res = del_wiphy(sc, buf + 4);
		if (res < 0)
			return res;
	} else if (strncmp(buf, "pause=", 6) == 0) {
		int res = pause_wiphy(sc, buf + 6);
		if (res < 0)
			return res;
	} else if (strncmp(buf, "unpause=", 8) == 0) {
		int res = unpause_wiphy(sc, buf + 8);
		if (res < 0)
			return res;
	} else if (strncmp(buf, "select=", 7) == 0) {
		int res = select_wiphy(sc, buf + 7);
		if (res < 0)
			return res;
	} else if (strncmp(buf, "schedule=", 9) == 0) {
		int res = schedule_wiphy(sc, buf + 9);
		if (res < 0)
			return res;
	} else
		return -EOPNOTSUPP;

	return count;
}

static const struct file_operations fops_wiphy = {
	.read = read_file_wiphy,
	.write = write_file_wiphy,
	.open = ath9k_debugfs_open,
	.owner = THIS_MODULE
};


484
int ath9k_init_debug(struct ath_softc *sc)
485
{
S
Sujith 已提交
486
	sc->debug.debug_mask = ath9k_debug;
487

S
Sujith 已提交
488 489 490
	if (!ath9k_debugfs_root)
		return -ENOENT;

S
Sujith 已提交
491
	sc->debug.debugfs_phy = debugfs_create_dir(wiphy_name(sc->hw->wiphy),
492
						      ath9k_debugfs_root);
S
Sujith 已提交
493
	if (!sc->debug.debugfs_phy)
494 495
		goto err;

J
Jeff Hansen 已提交
496 497 498 499 500
	sc->debug.debugfs_debug = debugfs_create_file("debug",
		S_IRUGO | S_IWUSR, sc->debug.debugfs_phy, sc, &fops_debug);
	if (!sc->debug.debugfs_debug)
		goto err;

S
Sujith 已提交
501 502 503
	sc->debug.debugfs_dma = debugfs_create_file("dma", S_IRUGO,
				       sc->debug.debugfs_phy, sc, &fops_dma);
	if (!sc->debug.debugfs_dma)
504 505
		goto err;

S
Sujith 已提交
506
	sc->debug.debugfs_interrupt = debugfs_create_file("interrupt",
507
						     S_IRUGO,
S
Sujith 已提交
508
						     sc->debug.debugfs_phy,
509
						     sc, &fops_interrupt);
S
Sujith 已提交
510
	if (!sc->debug.debugfs_interrupt)
511 512
		goto err;

S
Sujith 已提交
513
	sc->debug.debugfs_rcstat = debugfs_create_file("rcstat",
514
						  S_IRUGO,
S
Sujith 已提交
515
						  sc->debug.debugfs_phy,
516
						  sc, &fops_rcstat);
S
Sujith 已提交
517
	if (!sc->debug.debugfs_rcstat)
518 519
		goto err;

520 521 522 523 524 525
	sc->debug.debugfs_wiphy = debugfs_create_file(
		"wiphy", S_IRUGO | S_IWUSR, sc->debug.debugfs_phy, sc,
		&fops_wiphy);
	if (!sc->debug.debugfs_wiphy)
		goto err;

526 527 528 529 530 531 532 533
	return 0;
err:
	ath9k_exit_debug(sc);
	return -ENOMEM;
}

void ath9k_exit_debug(struct ath_softc *sc)
{
534
	debugfs_remove(sc->debug.debugfs_wiphy);
S
Sujith 已提交
535 536 537
	debugfs_remove(sc->debug.debugfs_rcstat);
	debugfs_remove(sc->debug.debugfs_interrupt);
	debugfs_remove(sc->debug.debugfs_dma);
J
Jeff Hansen 已提交
538
	debugfs_remove(sc->debug.debugfs_debug);
S
Sujith 已提交
539
	debugfs_remove(sc->debug.debugfs_phy);
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
}

int ath9k_debug_create_root(void)
{
	ath9k_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
	if (!ath9k_debugfs_root)
		return -ENOENT;

	return 0;
}

void ath9k_debug_remove_root(void)
{
	debugfs_remove(ath9k_debugfs_root);
	ath9k_debugfs_root = NULL;
555
}