xref: /openbmc/linux/drivers/net/wireless/ath/ath9k/debug.c (revision 545750d36fa78203e28acefb4bab61ebb7c4d197)
1203c4805SLuis R. Rodriguez /*
2203c4805SLuis R. Rodriguez  * Copyright (c) 2008-2009 Atheros Communications Inc.
3203c4805SLuis R. Rodriguez  *
4203c4805SLuis R. Rodriguez  * Permission to use, copy, modify, and/or distribute this software for any
5203c4805SLuis R. Rodriguez  * purpose with or without fee is hereby granted, provided that the above
6203c4805SLuis R. Rodriguez  * copyright notice and this permission notice appear in all copies.
7203c4805SLuis R. Rodriguez  *
8203c4805SLuis R. Rodriguez  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9203c4805SLuis R. Rodriguez  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10203c4805SLuis R. Rodriguez  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11203c4805SLuis R. Rodriguez  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12203c4805SLuis R. Rodriguez  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13203c4805SLuis R. Rodriguez  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14203c4805SLuis R. Rodriguez  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15203c4805SLuis R. Rodriguez  */
16203c4805SLuis R. Rodriguez 
17203c4805SLuis R. Rodriguez #include <asm/unaligned.h>
18203c4805SLuis R. Rodriguez 
19203c4805SLuis R. Rodriguez #include "ath9k.h"
20203c4805SLuis R. Rodriguez 
21475a6e4dSLuis R. Rodriguez #define REG_WRITE_D(_ah, _reg, _val) \
22475a6e4dSLuis R. Rodriguez 	ath9k_hw_common(_ah)->ops->write((_ah), (_val), (_reg))
23475a6e4dSLuis R. Rodriguez #define REG_READ_D(_ah, _reg) \
24475a6e4dSLuis R. Rodriguez 	ath9k_hw_common(_ah)->ops->read((_ah), (_reg))
25475a6e4dSLuis R. Rodriguez 
26203c4805SLuis R. Rodriguez static struct dentry *ath9k_debugfs_root;
27203c4805SLuis R. Rodriguez 
28203c4805SLuis R. Rodriguez static int ath9k_debugfs_open(struct inode *inode, struct file *file)
29203c4805SLuis R. Rodriguez {
30203c4805SLuis R. Rodriguez 	file->private_data = inode->i_private;
31203c4805SLuis R. Rodriguez 	return 0;
32203c4805SLuis R. Rodriguez }
33203c4805SLuis R. Rodriguez 
342493928eSJeff Hansen static ssize_t read_file_debug(struct file *file, char __user *user_buf,
352493928eSJeff Hansen 			     size_t count, loff_t *ppos)
362493928eSJeff Hansen {
372493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
38c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
392493928eSJeff Hansen 	char buf[32];
40581f725cSVasanthakumar Thiagarajan 	unsigned int len;
41581f725cSVasanthakumar Thiagarajan 
42c46917bbSLuis R. Rodriguez 	len = snprintf(buf, sizeof(buf), "0x%08x\n", common->debug_mask);
432493928eSJeff Hansen 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
442493928eSJeff Hansen }
452493928eSJeff Hansen 
462493928eSJeff Hansen static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
472493928eSJeff Hansen 			     size_t count, loff_t *ppos)
482493928eSJeff Hansen {
492493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
50c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
512493928eSJeff Hansen 	unsigned long mask;
522493928eSJeff Hansen 	char buf[32];
53581f725cSVasanthakumar Thiagarajan 	ssize_t len;
54581f725cSVasanthakumar Thiagarajan 
55581f725cSVasanthakumar Thiagarajan 	len = min(count, sizeof(buf) - 1);
56581f725cSVasanthakumar Thiagarajan 	if (copy_from_user(buf, user_buf, len))
57581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
58581f725cSVasanthakumar Thiagarajan 
59581f725cSVasanthakumar Thiagarajan 	buf[len] = '\0';
60581f725cSVasanthakumar Thiagarajan 	if (strict_strtoul(buf, 0, &mask))
61581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
62581f725cSVasanthakumar Thiagarajan 
63c46917bbSLuis R. Rodriguez 	common->debug_mask = mask;
642493928eSJeff Hansen 	return count;
652493928eSJeff Hansen }
662493928eSJeff Hansen 
672493928eSJeff Hansen static const struct file_operations fops_debug = {
682493928eSJeff Hansen 	.read = read_file_debug,
692493928eSJeff Hansen 	.write = write_file_debug,
702493928eSJeff Hansen 	.open = ath9k_debugfs_open,
712493928eSJeff Hansen 	.owner = THIS_MODULE
722493928eSJeff Hansen };
732493928eSJeff Hansen 
74203c4805SLuis R. Rodriguez static ssize_t read_file_dma(struct file *file, char __user *user_buf,
75203c4805SLuis R. Rodriguez 			     size_t count, loff_t *ppos)
76203c4805SLuis R. Rodriguez {
77203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
78203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
79203c4805SLuis R. Rodriguez 	char buf[1024];
80203c4805SLuis R. Rodriguez 	unsigned int len = 0;
81203c4805SLuis R. Rodriguez 	u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
82203c4805SLuis R. Rodriguez 	int i, qcuOffset = 0, dcuOffset = 0;
83203c4805SLuis R. Rodriguez 	u32 *qcuBase = &val[0], *dcuBase = &val[4];
84203c4805SLuis R. Rodriguez 
857cf4a2e7SSujith 	ath9k_ps_wakeup(sc);
867cf4a2e7SSujith 
87475a6e4dSLuis R. Rodriguez 	REG_WRITE_D(ah, AR_MACMISC,
88203c4805SLuis R. Rodriguez 		  ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
89203c4805SLuis R. Rodriguez 		   (AR_MACMISC_MISC_OBS_BUS_1 <<
90203c4805SLuis R. Rodriguez 		    AR_MACMISC_MISC_OBS_BUS_MSB_S)));
91203c4805SLuis R. Rodriguez 
92203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
93203c4805SLuis R. Rodriguez 			"Raw DMA Debug values:\n");
94203c4805SLuis R. Rodriguez 
95203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) {
96203c4805SLuis R. Rodriguez 		if (i % 4 == 0)
97203c4805SLuis R. Rodriguez 			len += snprintf(buf + len, sizeof(buf) - len, "\n");
98203c4805SLuis R. Rodriguez 
99475a6e4dSLuis R. Rodriguez 		val[i] = REG_READ_D(ah, AR_DMADBG_0 + (i * sizeof(u32)));
100203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len, "%d: %08x ",
101203c4805SLuis R. Rodriguez 				i, val[i]);
102203c4805SLuis R. Rodriguez 	}
103203c4805SLuis R. Rodriguez 
104203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n\n");
105203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
106203c4805SLuis R. Rodriguez 			"Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n");
107203c4805SLuis R. Rodriguez 
108203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) {
109203c4805SLuis R. Rodriguez 		if (i == 8) {
110203c4805SLuis R. Rodriguez 			qcuOffset = 0;
111203c4805SLuis R. Rodriguez 			qcuBase++;
112203c4805SLuis R. Rodriguez 		}
113203c4805SLuis R. Rodriguez 
114203c4805SLuis R. Rodriguez 		if (i == 6) {
115203c4805SLuis R. Rodriguez 			dcuOffset = 0;
116203c4805SLuis R. Rodriguez 			dcuBase++;
117203c4805SLuis R. Rodriguez 		}
118203c4805SLuis R. Rodriguez 
119203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
120203c4805SLuis R. Rodriguez 			"%2d          %2x      %1x     %2x           %2x\n",
121203c4805SLuis R. Rodriguez 			i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset,
122203c4805SLuis R. Rodriguez 			(*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3),
123203c4805SLuis R. Rodriguez 			val[2] & (0x7 << (i * 3)) >> (i * 3),
124203c4805SLuis R. Rodriguez 			(*dcuBase & (0x1f << dcuOffset)) >> dcuOffset);
125203c4805SLuis R. Rodriguez 	}
126203c4805SLuis R. Rodriguez 
127203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n");
128203c4805SLuis R. Rodriguez 
129203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
130203c4805SLuis R. Rodriguez 		"qcu_stitch state:   %2x    qcu_fetch state:        %2x\n",
131203c4805SLuis R. Rodriguez 		(val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
132203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
133203c4805SLuis R. Rodriguez 		"qcu_complete state: %2x    dcu_complete state:     %2x\n",
134203c4805SLuis R. Rodriguez 		(val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
135203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
136203c4805SLuis R. Rodriguez 		"dcu_arb state:      %2x    dcu_fp state:           %2x\n",
137203c4805SLuis R. Rodriguez 		(val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
138203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
139203c4805SLuis R. Rodriguez 		"chan_idle_dur:     %3d    chan_idle_dur_valid:     %1d\n",
140203c4805SLuis R. Rodriguez 		(val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
141203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
142203c4805SLuis R. Rodriguez 		"txfifo_valid_0:      %1d    txfifo_valid_1:          %1d\n",
143203c4805SLuis R. Rodriguez 		(val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
144203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
145203c4805SLuis R. Rodriguez 		"txfifo_dcu_num_0:   %2d    txfifo_dcu_num_1:       %2d\n",
146203c4805SLuis R. Rodriguez 		(val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);
147203c4805SLuis R. Rodriguez 
148203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "pcu observe: 0x%x \n",
149475a6e4dSLuis R. Rodriguez 			REG_READ_D(ah, AR_OBS_BUS_1));
150203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
151475a6e4dSLuis R. Rodriguez 			"AR_CR: 0x%x \n", REG_READ_D(ah, AR_CR));
152203c4805SLuis R. Rodriguez 
1537cf4a2e7SSujith 	ath9k_ps_restore(sc);
1547cf4a2e7SSujith 
155203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
156203c4805SLuis R. Rodriguez }
157203c4805SLuis R. Rodriguez 
158203c4805SLuis R. Rodriguez static const struct file_operations fops_dma = {
159203c4805SLuis R. Rodriguez 	.read = read_file_dma,
160203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
161203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
162203c4805SLuis R. Rodriguez };
163203c4805SLuis R. Rodriguez 
164203c4805SLuis R. Rodriguez 
165203c4805SLuis R. Rodriguez void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
166203c4805SLuis R. Rodriguez {
167203c4805SLuis R. Rodriguez 	if (status)
168203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.total++;
169203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RX)
170203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxok++;
171203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXEOL)
172203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxeol++;
173203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXORN)
174203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxorn++;
175203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TX)
176203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txok++;
177203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TXURN)
178203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txurn++;
179203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_MIB)
180203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.mib++;
181203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXPHY)
182203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxphyerr++;
183203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXKCM)
184203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rx_keycache_miss++;
185203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_SWBA)
186203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.swba++;
187203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BMISS)
188203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bmiss++;
189203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BNR)
190203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bnr++;
191203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CST)
192203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cst++;
193203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_GTT)
194203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.gtt++;
195203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TIM)
196203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.tim++;
197203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CABEND)
198203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cabend++;
199203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIMSYNC)
200203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtimsync++;
201203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIM)
202203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtim++;
203203c4805SLuis R. Rodriguez }
204203c4805SLuis R. Rodriguez 
205203c4805SLuis R. Rodriguez static ssize_t read_file_interrupt(struct file *file, char __user *user_buf,
206203c4805SLuis R. Rodriguez 				   size_t count, loff_t *ppos)
207203c4805SLuis R. Rodriguez {
208203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
209203c4805SLuis R. Rodriguez 	char buf[512];
210203c4805SLuis R. Rodriguez 	unsigned int len = 0;
211203c4805SLuis R. Rodriguez 
212203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
213203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RX", sc->debug.stats.istats.rxok);
214203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
215203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol);
216203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
217203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn);
218203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
219203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TX", sc->debug.stats.istats.txok);
220203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
221203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn);
222203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
223203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "MIB", sc->debug.stats.istats.mib);
224203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
225203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr);
226203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
227203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss);
228203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
229203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba);
230203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
231203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss);
232203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
233203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr);
234203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
235203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CST", sc->debug.stats.istats.cst);
236203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
237203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt);
238203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
239203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TIM", sc->debug.stats.istats.tim);
240203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
241203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend);
242203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
243203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync);
244203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
245203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim);
246203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
247203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total);
248203c4805SLuis R. Rodriguez 
249203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
250203c4805SLuis R. Rodriguez }
251203c4805SLuis R. Rodriguez 
252203c4805SLuis R. Rodriguez static const struct file_operations fops_interrupt = {
253203c4805SLuis R. Rodriguez 	.read = read_file_interrupt,
254203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
255203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
256203c4805SLuis R. Rodriguez };
257203c4805SLuis R. Rodriguez 
258*545750d3SFelix Fietkau void ath_debug_stat_rc(struct ath_softc *sc, int final_rate)
259203c4805SLuis R. Rodriguez {
260bedf087aSJeff Hansen 	struct ath_rc_stats *stats;
261203c4805SLuis R. Rodriguez 
262*545750d3SFelix Fietkau 	stats = &sc->debug.stats.rcstats[final_rate];
263bedf087aSJeff Hansen 	stats->success++;
264203c4805SLuis R. Rodriguez }
265203c4805SLuis R. Rodriguez 
266203c4805SLuis R. Rodriguez void ath_debug_stat_retries(struct ath_softc *sc, int rix,
267203c4805SLuis R. Rodriguez 			    int xretries, int retries, u8 per)
268203c4805SLuis R. Rodriguez {
269bedf087aSJeff Hansen 	struct ath_rc_stats *stats = &sc->debug.stats.rcstats[rix];
270203c4805SLuis R. Rodriguez 
271bedf087aSJeff Hansen 	stats->xretries += xretries;
272bedf087aSJeff Hansen 	stats->retries += retries;
273bedf087aSJeff Hansen 	stats->per = per;
274203c4805SLuis R. Rodriguez }
275203c4805SLuis R. Rodriguez 
276203c4805SLuis R. Rodriguez static ssize_t read_file_rcstat(struct file *file, char __user *user_buf,
277203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
278203c4805SLuis R. Rodriguez {
279203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
280bedf087aSJeff Hansen 	char *buf;
281bedf087aSJeff Hansen 	unsigned int len = 0, max;
282bedf087aSJeff Hansen 	int i = 0;
283bedf087aSJeff Hansen 	ssize_t retval;
284203c4805SLuis R. Rodriguez 
285203c4805SLuis R. Rodriguez 	if (sc->cur_rate_table == NULL)
286203c4805SLuis R. Rodriguez 		return 0;
287203c4805SLuis R. Rodriguez 
288bedf087aSJeff Hansen 	max = 80 + sc->cur_rate_table->rate_cnt * 64;
289bedf087aSJeff Hansen 	buf = kmalloc(max + 1, GFP_KERNEL);
290bedf087aSJeff Hansen 	if (buf == NULL)
291bedf087aSJeff Hansen 		return 0;
292bedf087aSJeff Hansen 	buf[max] = 0;
293bedf087aSJeff Hansen 
294bedf087aSJeff Hansen 	len += sprintf(buf, "%5s %15s %8s %9s %3s\n\n", "Rate", "Success",
295bedf087aSJeff Hansen 		       "Retries", "XRetries", "PER");
296bedf087aSJeff Hansen 
297bedf087aSJeff Hansen 	for (i = 0; i < sc->cur_rate_table->rate_cnt; i++) {
298bedf087aSJeff Hansen 		u32 ratekbps = sc->cur_rate_table->info[i].ratekbps;
299bedf087aSJeff Hansen 		struct ath_rc_stats *stats = &sc->debug.stats.rcstats[i];
300bedf087aSJeff Hansen 
301bedf087aSJeff Hansen 		len += snprintf(buf + len, max - len,
302bedf087aSJeff Hansen 			"%3u.%d: %8u %8u %8u %8u\n", ratekbps / 1000,
303bedf087aSJeff Hansen 			(ratekbps % 1000) / 100, stats->success,
304bedf087aSJeff Hansen 			stats->retries, stats->xretries,
305bedf087aSJeff Hansen 			stats->per);
306bedf087aSJeff Hansen 	}
307bedf087aSJeff Hansen 
308bedf087aSJeff Hansen 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
309bedf087aSJeff Hansen 	kfree(buf);
310bedf087aSJeff Hansen 	return retval;
311203c4805SLuis R. Rodriguez }
312203c4805SLuis R. Rodriguez 
313203c4805SLuis R. Rodriguez static const struct file_operations fops_rcstat = {
314203c4805SLuis R. Rodriguez 	.read = read_file_rcstat,
315203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
316203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
317203c4805SLuis R. Rodriguez };
318203c4805SLuis R. Rodriguez 
319203c4805SLuis R. Rodriguez static const char * ath_wiphy_state_str(enum ath_wiphy_state state)
320203c4805SLuis R. Rodriguez {
321203c4805SLuis R. Rodriguez 	switch (state) {
322203c4805SLuis R. Rodriguez 	case ATH_WIPHY_INACTIVE:
323203c4805SLuis R. Rodriguez 		return "INACTIVE";
324203c4805SLuis R. Rodriguez 	case ATH_WIPHY_ACTIVE:
325203c4805SLuis R. Rodriguez 		return "ACTIVE";
326203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSING:
327203c4805SLuis R. Rodriguez 		return "PAUSING";
328203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSED:
329203c4805SLuis R. Rodriguez 		return "PAUSED";
330203c4805SLuis R. Rodriguez 	case ATH_WIPHY_SCAN:
331203c4805SLuis R. Rodriguez 		return "SCAN";
332203c4805SLuis R. Rodriguez 	}
333203c4805SLuis R. Rodriguez 	return "?";
334203c4805SLuis R. Rodriguez }
335203c4805SLuis R. Rodriguez 
336203c4805SLuis R. Rodriguez static ssize_t read_file_wiphy(struct file *file, char __user *user_buf,
337203c4805SLuis R. Rodriguez 			       size_t count, loff_t *ppos)
338203c4805SLuis R. Rodriguez {
339203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
340203c4805SLuis R. Rodriguez 	char buf[512];
341203c4805SLuis R. Rodriguez 	unsigned int len = 0;
342203c4805SLuis R. Rodriguez 	int i;
343203c4805SLuis R. Rodriguez 	u8 addr[ETH_ALEN];
344203c4805SLuis R. Rodriguez 
345203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
346203c4805SLuis R. Rodriguez 			"primary: %s (%s chan=%d ht=%d)\n",
347203c4805SLuis R. Rodriguez 			wiphy_name(sc->pri_wiphy->hw->wiphy),
348203c4805SLuis R. Rodriguez 			ath_wiphy_state_str(sc->pri_wiphy->state),
349203c4805SLuis R. Rodriguez 			sc->pri_wiphy->chan_idx, sc->pri_wiphy->chan_is_ht);
350203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
351203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
352203c4805SLuis R. Rodriguez 		if (aphy == NULL)
353203c4805SLuis R. Rodriguez 			continue;
354203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
355203c4805SLuis R. Rodriguez 				"secondary: %s (%s chan=%d ht=%d)\n",
356203c4805SLuis R. Rodriguez 				wiphy_name(aphy->hw->wiphy),
357203c4805SLuis R. Rodriguez 				ath_wiphy_state_str(aphy->state),
358203c4805SLuis R. Rodriguez 				aphy->chan_idx, aphy->chan_is_ht);
359203c4805SLuis R. Rodriguez 	}
360203c4805SLuis R. Rodriguez 
361475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_STA_ID0), addr);
362475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4);
363203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
364203c4805SLuis R. Rodriguez 			"addr: %pM\n", addr);
365475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_BSSMSKL), addr);
366475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4);
367203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
368203c4805SLuis R. Rodriguez 			"addrmask: %pM\n", addr);
369203c4805SLuis R. Rodriguez 
370203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
371203c4805SLuis R. Rodriguez }
372203c4805SLuis R. Rodriguez 
373203c4805SLuis R. Rodriguez static struct ath_wiphy * get_wiphy(struct ath_softc *sc, const char *name)
374203c4805SLuis R. Rodriguez {
375203c4805SLuis R. Rodriguez 	int i;
376203c4805SLuis R. Rodriguez 	if (strcmp(name, wiphy_name(sc->pri_wiphy->hw->wiphy)) == 0)
377203c4805SLuis R. Rodriguez 		return sc->pri_wiphy;
378203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
379203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
380203c4805SLuis R. Rodriguez 		if (aphy && strcmp(name, wiphy_name(aphy->hw->wiphy)) == 0)
381203c4805SLuis R. Rodriguez 			return aphy;
382203c4805SLuis R. Rodriguez 	}
383203c4805SLuis R. Rodriguez 	return NULL;
384203c4805SLuis R. Rodriguez }
385203c4805SLuis R. Rodriguez 
386203c4805SLuis R. Rodriguez static int del_wiphy(struct ath_softc *sc, const char *name)
387203c4805SLuis R. Rodriguez {
388203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
389203c4805SLuis R. Rodriguez 	if (!aphy)
390203c4805SLuis R. Rodriguez 		return -ENOENT;
391203c4805SLuis R. Rodriguez 	return ath9k_wiphy_del(aphy);
392203c4805SLuis R. Rodriguez }
393203c4805SLuis R. Rodriguez 
394203c4805SLuis R. Rodriguez static int pause_wiphy(struct ath_softc *sc, const char *name)
395203c4805SLuis R. Rodriguez {
396203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
397203c4805SLuis R. Rodriguez 	if (!aphy)
398203c4805SLuis R. Rodriguez 		return -ENOENT;
399203c4805SLuis R. Rodriguez 	return ath9k_wiphy_pause(aphy);
400203c4805SLuis R. Rodriguez }
401203c4805SLuis R. Rodriguez 
402203c4805SLuis R. Rodriguez static int unpause_wiphy(struct ath_softc *sc, const char *name)
403203c4805SLuis R. Rodriguez {
404203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
405203c4805SLuis R. Rodriguez 	if (!aphy)
406203c4805SLuis R. Rodriguez 		return -ENOENT;
407203c4805SLuis R. Rodriguez 	return ath9k_wiphy_unpause(aphy);
408203c4805SLuis R. Rodriguez }
409203c4805SLuis R. Rodriguez 
410203c4805SLuis R. Rodriguez static int select_wiphy(struct ath_softc *sc, const char *name)
411203c4805SLuis R. Rodriguez {
412203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
413203c4805SLuis R. Rodriguez 	if (!aphy)
414203c4805SLuis R. Rodriguez 		return -ENOENT;
415203c4805SLuis R. Rodriguez 	return ath9k_wiphy_select(aphy);
416203c4805SLuis R. Rodriguez }
417203c4805SLuis R. Rodriguez 
418203c4805SLuis R. Rodriguez static int schedule_wiphy(struct ath_softc *sc, const char *msec)
419203c4805SLuis R. Rodriguez {
420203c4805SLuis R. Rodriguez 	ath9k_wiphy_set_scheduler(sc, simple_strtoul(msec, NULL, 0));
421203c4805SLuis R. Rodriguez 	return 0;
422203c4805SLuis R. Rodriguez }
423203c4805SLuis R. Rodriguez 
424203c4805SLuis R. Rodriguez static ssize_t write_file_wiphy(struct file *file, const char __user *user_buf,
425203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
426203c4805SLuis R. Rodriguez {
427203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
428203c4805SLuis R. Rodriguez 	char buf[50];
429203c4805SLuis R. Rodriguez 	size_t len;
430203c4805SLuis R. Rodriguez 
431203c4805SLuis R. Rodriguez 	len = min(count, sizeof(buf) - 1);
432203c4805SLuis R. Rodriguez 	if (copy_from_user(buf, user_buf, len))
433203c4805SLuis R. Rodriguez 		return -EFAULT;
434203c4805SLuis R. Rodriguez 	buf[len] = '\0';
435203c4805SLuis R. Rodriguez 	if (len > 0 && buf[len - 1] == '\n')
436203c4805SLuis R. Rodriguez 		buf[len - 1] = '\0';
437203c4805SLuis R. Rodriguez 
438203c4805SLuis R. Rodriguez 	if (strncmp(buf, "add", 3) == 0) {
439203c4805SLuis R. Rodriguez 		int res = ath9k_wiphy_add(sc);
440203c4805SLuis R. Rodriguez 		if (res < 0)
441203c4805SLuis R. Rodriguez 			return res;
442203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "del=", 4) == 0) {
443203c4805SLuis R. Rodriguez 		int res = del_wiphy(sc, buf + 4);
444203c4805SLuis R. Rodriguez 		if (res < 0)
445203c4805SLuis R. Rodriguez 			return res;
446203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "pause=", 6) == 0) {
447203c4805SLuis R. Rodriguez 		int res = pause_wiphy(sc, buf + 6);
448203c4805SLuis R. Rodriguez 		if (res < 0)
449203c4805SLuis R. Rodriguez 			return res;
450203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "unpause=", 8) == 0) {
451203c4805SLuis R. Rodriguez 		int res = unpause_wiphy(sc, buf + 8);
452203c4805SLuis R. Rodriguez 		if (res < 0)
453203c4805SLuis R. Rodriguez 			return res;
454203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "select=", 7) == 0) {
455203c4805SLuis R. Rodriguez 		int res = select_wiphy(sc, buf + 7);
456203c4805SLuis R. Rodriguez 		if (res < 0)
457203c4805SLuis R. Rodriguez 			return res;
458203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "schedule=", 9) == 0) {
459203c4805SLuis R. Rodriguez 		int res = schedule_wiphy(sc, buf + 9);
460203c4805SLuis R. Rodriguez 		if (res < 0)
461203c4805SLuis R. Rodriguez 			return res;
462203c4805SLuis R. Rodriguez 	} else
463203c4805SLuis R. Rodriguez 		return -EOPNOTSUPP;
464203c4805SLuis R. Rodriguez 
465203c4805SLuis R. Rodriguez 	return count;
466203c4805SLuis R. Rodriguez }
467203c4805SLuis R. Rodriguez 
468203c4805SLuis R. Rodriguez static const struct file_operations fops_wiphy = {
469203c4805SLuis R. Rodriguez 	.read = read_file_wiphy,
470203c4805SLuis R. Rodriguez 	.write = write_file_wiphy,
471203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
472203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
473203c4805SLuis R. Rodriguez };
474203c4805SLuis R. Rodriguez 
475fec247c0SSujith #define PR(str, elem)							\
476fec247c0SSujith 	do {								\
477fec247c0SSujith 		len += snprintf(buf + len, size - len,			\
478fec247c0SSujith 				"%s%13u%11u%10u%10u\n", str,		\
479fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BE]].elem, \
480fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BK]].elem, \
481fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VI]].elem, \
482fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VO]].elem); \
483fec247c0SSujith } while(0)
484fec247c0SSujith 
485fec247c0SSujith static ssize_t read_file_xmit(struct file *file, char __user *user_buf,
486fec247c0SSujith 			      size_t count, loff_t *ppos)
487fec247c0SSujith {
488fec247c0SSujith 	struct ath_softc *sc = file->private_data;
489fec247c0SSujith 	char *buf;
490fec247c0SSujith 	unsigned int len = 0, size = 2048;
491fec247c0SSujith 	ssize_t retval = 0;
492fec247c0SSujith 
493fec247c0SSujith 	buf = kzalloc(size, GFP_KERNEL);
494fec247c0SSujith 	if (buf == NULL)
495fec247c0SSujith 		return 0;
496fec247c0SSujith 
497fec247c0SSujith 	len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO");
498fec247c0SSujith 
499fec247c0SSujith 	PR("MPDUs Queued:    ", queued);
500fec247c0SSujith 	PR("MPDUs Completed: ", completed);
501fec247c0SSujith 	PR("Aggregates:      ", a_aggr);
502fec247c0SSujith 	PR("AMPDUs Queued:   ", a_queued);
503fec247c0SSujith 	PR("AMPDUs Completed:", a_completed);
504fec247c0SSujith 	PR("AMPDUs Retried:  ", a_retries);
505fec247c0SSujith 	PR("AMPDUs XRetried: ", a_xretries);
506fec247c0SSujith 	PR("FIFO Underrun:   ", fifo_underrun);
507fec247c0SSujith 	PR("TXOP Exceeded:   ", xtxop);
508fec247c0SSujith 	PR("TXTIMER Expiry:  ", timer_exp);
509fec247c0SSujith 	PR("DESC CFG Error:  ", desc_cfg_err);
510fec247c0SSujith 	PR("DATA Underrun:   ", data_underrun);
511fec247c0SSujith 	PR("DELIM Underrun:  ", delim_underrun);
512fec247c0SSujith 
513fec247c0SSujith 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
514fec247c0SSujith 	kfree(buf);
515fec247c0SSujith 
516fec247c0SSujith 	return retval;
517fec247c0SSujith }
518fec247c0SSujith 
519fec247c0SSujith void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq,
520fec247c0SSujith 		       struct ath_buf *bf)
521fec247c0SSujith {
522fec247c0SSujith 	struct ath_desc *ds = bf->bf_desc;
523fec247c0SSujith 
524fec247c0SSujith 	if (bf_isampdu(bf)) {
525fec247c0SSujith 		if (bf_isxretried(bf))
526fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_xretries);
527fec247c0SSujith 		else
528fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_completed);
529fec247c0SSujith 	} else {
530fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, completed);
531fec247c0SSujith 	}
532fec247c0SSujith 
533fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_FIFO)
534fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, fifo_underrun);
535fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_XTXOP)
536fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, xtxop);
537fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_TIMER_EXPIRED)
538fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, timer_exp);
539fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DESC_CFG_ERR)
540fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, desc_cfg_err);
541fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DATA_UNDERRUN)
542fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, data_underrun);
543fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DELIM_UNDERRUN)
544fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, delim_underrun);
545fec247c0SSujith }
546fec247c0SSujith 
547fec247c0SSujith static const struct file_operations fops_xmit = {
548fec247c0SSujith 	.read = read_file_xmit,
549fec247c0SSujith 	.open = ath9k_debugfs_open,
550fec247c0SSujith 	.owner = THIS_MODULE
551fec247c0SSujith };
552203c4805SLuis R. Rodriguez 
5534d6b228dSLuis R. Rodriguez int ath9k_init_debug(struct ath_hw *ah)
554203c4805SLuis R. Rodriguez {
555bc974f4aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
556bc974f4aSLuis R. Rodriguez 	struct ath_softc *sc = (struct ath_softc *) common->priv;
5574d6b228dSLuis R. Rodriguez 
558203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
559203c4805SLuis R. Rodriguez 		return -ENOENT;
560203c4805SLuis R. Rodriguez 
561203c4805SLuis R. Rodriguez 	sc->debug.debugfs_phy = debugfs_create_dir(wiphy_name(sc->hw->wiphy),
562203c4805SLuis R. Rodriguez 						      ath9k_debugfs_root);
563203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_phy)
564203c4805SLuis R. Rodriguez 		goto err;
565203c4805SLuis R. Rodriguez 
5662493928eSJeff Hansen 	sc->debug.debugfs_debug = debugfs_create_file("debug",
5679d49e861SJiri Slaby 		S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc, &fops_debug);
5682493928eSJeff Hansen 	if (!sc->debug.debugfs_debug)
5692493928eSJeff Hansen 		goto err;
5702493928eSJeff Hansen 
5719d49e861SJiri Slaby 	sc->debug.debugfs_dma = debugfs_create_file("dma", S_IRUSR,
572203c4805SLuis R. Rodriguez 				       sc->debug.debugfs_phy, sc, &fops_dma);
573203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_dma)
574203c4805SLuis R. Rodriguez 		goto err;
575203c4805SLuis R. Rodriguez 
576203c4805SLuis R. Rodriguez 	sc->debug.debugfs_interrupt = debugfs_create_file("interrupt",
5779d49e861SJiri Slaby 						     S_IRUSR,
578203c4805SLuis R. Rodriguez 						     sc->debug.debugfs_phy,
579203c4805SLuis R. Rodriguez 						     sc, &fops_interrupt);
580203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_interrupt)
581203c4805SLuis R. Rodriguez 		goto err;
582203c4805SLuis R. Rodriguez 
583203c4805SLuis R. Rodriguez 	sc->debug.debugfs_rcstat = debugfs_create_file("rcstat",
5849d49e861SJiri Slaby 						  S_IRUSR,
585203c4805SLuis R. Rodriguez 						  sc->debug.debugfs_phy,
586203c4805SLuis R. Rodriguez 						  sc, &fops_rcstat);
587203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_rcstat)
588203c4805SLuis R. Rodriguez 		goto err;
589203c4805SLuis R. Rodriguez 
590203c4805SLuis R. Rodriguez 	sc->debug.debugfs_wiphy = debugfs_create_file(
5919d49e861SJiri Slaby 		"wiphy", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc,
592203c4805SLuis R. Rodriguez 		&fops_wiphy);
593203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_wiphy)
594203c4805SLuis R. Rodriguez 		goto err;
595203c4805SLuis R. Rodriguez 
596fec247c0SSujith 	sc->debug.debugfs_xmit = debugfs_create_file("xmit",
597fec247c0SSujith 						     S_IRUSR,
598fec247c0SSujith 						     sc->debug.debugfs_phy,
599fec247c0SSujith 						     sc, &fops_xmit);
600fec247c0SSujith 	if (!sc->debug.debugfs_xmit)
601fec247c0SSujith 		goto err;
602fec247c0SSujith 
603203c4805SLuis R. Rodriguez 	return 0;
604203c4805SLuis R. Rodriguez err:
6054d6b228dSLuis R. Rodriguez 	ath9k_exit_debug(ah);
606203c4805SLuis R. Rodriguez 	return -ENOMEM;
607203c4805SLuis R. Rodriguez }
608203c4805SLuis R. Rodriguez 
6094d6b228dSLuis R. Rodriguez void ath9k_exit_debug(struct ath_hw *ah)
610203c4805SLuis R. Rodriguez {
611bc974f4aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
612bc974f4aSLuis R. Rodriguez 	struct ath_softc *sc = (struct ath_softc *) common->priv;
6134d6b228dSLuis R. Rodriguez 
614fec247c0SSujith 	debugfs_remove(sc->debug.debugfs_xmit);
615203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_wiphy);
616203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_rcstat);
617203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_interrupt);
618203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_dma);
6192493928eSJeff Hansen 	debugfs_remove(sc->debug.debugfs_debug);
620203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_phy);
621203c4805SLuis R. Rodriguez }
622203c4805SLuis R. Rodriguez 
623203c4805SLuis R. Rodriguez int ath9k_debug_create_root(void)
624203c4805SLuis R. Rodriguez {
625203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
626203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
627203c4805SLuis R. Rodriguez 		return -ENOENT;
628203c4805SLuis R. Rodriguez 
629203c4805SLuis R. Rodriguez 	return 0;
630203c4805SLuis R. Rodriguez }
631203c4805SLuis R. Rodriguez 
632203c4805SLuis R. Rodriguez void ath9k_debug_remove_root(void)
633203c4805SLuis R. Rodriguez {
634203c4805SLuis R. Rodriguez 	debugfs_remove(ath9k_debugfs_root);
635203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = NULL;
636203c4805SLuis R. Rodriguez }
637