xref: /linux/drivers/net/wireless/ath/ath9k/debug.c (revision a830df0714117574fd0d5fe98477059b3e9fd5bf)
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 
34*a830df07SFelix Fietkau #ifdef CONFIG_ATH_DEBUG
35*a830df07SFelix Fietkau 
362493928eSJeff Hansen static ssize_t read_file_debug(struct file *file, char __user *user_buf,
372493928eSJeff Hansen 			     size_t count, loff_t *ppos)
382493928eSJeff Hansen {
392493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
40c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
412493928eSJeff Hansen 	char buf[32];
42581f725cSVasanthakumar Thiagarajan 	unsigned int len;
43581f725cSVasanthakumar Thiagarajan 
44c46917bbSLuis R. Rodriguez 	len = snprintf(buf, sizeof(buf), "0x%08x\n", common->debug_mask);
452493928eSJeff Hansen 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
462493928eSJeff Hansen }
472493928eSJeff Hansen 
482493928eSJeff Hansen static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
492493928eSJeff Hansen 			     size_t count, loff_t *ppos)
502493928eSJeff Hansen {
512493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
52c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
532493928eSJeff Hansen 	unsigned long mask;
542493928eSJeff Hansen 	char buf[32];
55581f725cSVasanthakumar Thiagarajan 	ssize_t len;
56581f725cSVasanthakumar Thiagarajan 
57581f725cSVasanthakumar Thiagarajan 	len = min(count, sizeof(buf) - 1);
58581f725cSVasanthakumar Thiagarajan 	if (copy_from_user(buf, user_buf, len))
59581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
60581f725cSVasanthakumar Thiagarajan 
61581f725cSVasanthakumar Thiagarajan 	buf[len] = '\0';
62581f725cSVasanthakumar Thiagarajan 	if (strict_strtoul(buf, 0, &mask))
63581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
64581f725cSVasanthakumar Thiagarajan 
65c46917bbSLuis R. Rodriguez 	common->debug_mask = mask;
662493928eSJeff Hansen 	return count;
672493928eSJeff Hansen }
682493928eSJeff Hansen 
692493928eSJeff Hansen static const struct file_operations fops_debug = {
702493928eSJeff Hansen 	.read = read_file_debug,
712493928eSJeff Hansen 	.write = write_file_debug,
722493928eSJeff Hansen 	.open = ath9k_debugfs_open,
732493928eSJeff Hansen 	.owner = THIS_MODULE
742493928eSJeff Hansen };
752493928eSJeff Hansen 
76*a830df07SFelix Fietkau #endif
77*a830df07SFelix Fietkau 
78203c4805SLuis R. Rodriguez static ssize_t read_file_dma(struct file *file, char __user *user_buf,
79203c4805SLuis R. Rodriguez 			     size_t count, loff_t *ppos)
80203c4805SLuis R. Rodriguez {
81203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
82203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
83203c4805SLuis R. Rodriguez 	char buf[1024];
84203c4805SLuis R. Rodriguez 	unsigned int len = 0;
85203c4805SLuis R. Rodriguez 	u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
86203c4805SLuis R. Rodriguez 	int i, qcuOffset = 0, dcuOffset = 0;
87203c4805SLuis R. Rodriguez 	u32 *qcuBase = &val[0], *dcuBase = &val[4];
88203c4805SLuis R. Rodriguez 
897cf4a2e7SSujith 	ath9k_ps_wakeup(sc);
907cf4a2e7SSujith 
91475a6e4dSLuis R. Rodriguez 	REG_WRITE_D(ah, AR_MACMISC,
92203c4805SLuis R. Rodriguez 		  ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
93203c4805SLuis R. Rodriguez 		   (AR_MACMISC_MISC_OBS_BUS_1 <<
94203c4805SLuis R. Rodriguez 		    AR_MACMISC_MISC_OBS_BUS_MSB_S)));
95203c4805SLuis R. Rodriguez 
96203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
97203c4805SLuis R. Rodriguez 			"Raw DMA Debug values:\n");
98203c4805SLuis R. Rodriguez 
99203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) {
100203c4805SLuis R. Rodriguez 		if (i % 4 == 0)
101203c4805SLuis R. Rodriguez 			len += snprintf(buf + len, sizeof(buf) - len, "\n");
102203c4805SLuis R. Rodriguez 
103475a6e4dSLuis R. Rodriguez 		val[i] = REG_READ_D(ah, AR_DMADBG_0 + (i * sizeof(u32)));
104203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len, "%d: %08x ",
105203c4805SLuis R. Rodriguez 				i, val[i]);
106203c4805SLuis R. Rodriguez 	}
107203c4805SLuis R. Rodriguez 
108203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n\n");
109203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
110203c4805SLuis R. Rodriguez 			"Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n");
111203c4805SLuis R. Rodriguez 
112203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) {
113203c4805SLuis R. Rodriguez 		if (i == 8) {
114203c4805SLuis R. Rodriguez 			qcuOffset = 0;
115203c4805SLuis R. Rodriguez 			qcuBase++;
116203c4805SLuis R. Rodriguez 		}
117203c4805SLuis R. Rodriguez 
118203c4805SLuis R. Rodriguez 		if (i == 6) {
119203c4805SLuis R. Rodriguez 			dcuOffset = 0;
120203c4805SLuis R. Rodriguez 			dcuBase++;
121203c4805SLuis R. Rodriguez 		}
122203c4805SLuis R. Rodriguez 
123203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
124203c4805SLuis R. Rodriguez 			"%2d          %2x      %1x     %2x           %2x\n",
125203c4805SLuis R. Rodriguez 			i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset,
126203c4805SLuis R. Rodriguez 			(*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3),
127203c4805SLuis R. Rodriguez 			val[2] & (0x7 << (i * 3)) >> (i * 3),
128203c4805SLuis R. Rodriguez 			(*dcuBase & (0x1f << dcuOffset)) >> dcuOffset);
129203c4805SLuis R. Rodriguez 	}
130203c4805SLuis R. Rodriguez 
131203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n");
132203c4805SLuis R. Rodriguez 
133203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
134203c4805SLuis R. Rodriguez 		"qcu_stitch state:   %2x    qcu_fetch state:        %2x\n",
135203c4805SLuis R. Rodriguez 		(val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
136203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
137203c4805SLuis R. Rodriguez 		"qcu_complete state: %2x    dcu_complete state:     %2x\n",
138203c4805SLuis R. Rodriguez 		(val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
139203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
140203c4805SLuis R. Rodriguez 		"dcu_arb state:      %2x    dcu_fp state:           %2x\n",
141203c4805SLuis R. Rodriguez 		(val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
142203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
143203c4805SLuis R. Rodriguez 		"chan_idle_dur:     %3d    chan_idle_dur_valid:     %1d\n",
144203c4805SLuis R. Rodriguez 		(val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
145203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
146203c4805SLuis R. Rodriguez 		"txfifo_valid_0:      %1d    txfifo_valid_1:          %1d\n",
147203c4805SLuis R. Rodriguez 		(val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
148203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
149203c4805SLuis R. Rodriguez 		"txfifo_dcu_num_0:   %2d    txfifo_dcu_num_1:       %2d\n",
150203c4805SLuis R. Rodriguez 		(val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);
151203c4805SLuis R. Rodriguez 
152203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "pcu observe: 0x%x \n",
153475a6e4dSLuis R. Rodriguez 			REG_READ_D(ah, AR_OBS_BUS_1));
154203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
155475a6e4dSLuis R. Rodriguez 			"AR_CR: 0x%x \n", REG_READ_D(ah, AR_CR));
156203c4805SLuis R. Rodriguez 
1577cf4a2e7SSujith 	ath9k_ps_restore(sc);
1587cf4a2e7SSujith 
159203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
160203c4805SLuis R. Rodriguez }
161203c4805SLuis R. Rodriguez 
162203c4805SLuis R. Rodriguez static const struct file_operations fops_dma = {
163203c4805SLuis R. Rodriguez 	.read = read_file_dma,
164203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
165203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
166203c4805SLuis R. Rodriguez };
167203c4805SLuis R. Rodriguez 
168203c4805SLuis R. Rodriguez 
169203c4805SLuis R. Rodriguez void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
170203c4805SLuis R. Rodriguez {
171203c4805SLuis R. Rodriguez 	if (status)
172203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.total++;
173203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RX)
174203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxok++;
175203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXEOL)
176203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxeol++;
177203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXORN)
178203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxorn++;
179203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TX)
180203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txok++;
181203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TXURN)
182203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txurn++;
183203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_MIB)
184203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.mib++;
185203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXPHY)
186203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxphyerr++;
187203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXKCM)
188203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rx_keycache_miss++;
189203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_SWBA)
190203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.swba++;
191203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BMISS)
192203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bmiss++;
193203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BNR)
194203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bnr++;
195203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CST)
196203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cst++;
197203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_GTT)
198203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.gtt++;
199203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TIM)
200203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.tim++;
201203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CABEND)
202203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cabend++;
203203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIMSYNC)
204203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtimsync++;
205203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIM)
206203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtim++;
207203c4805SLuis R. Rodriguez }
208203c4805SLuis R. Rodriguez 
209203c4805SLuis R. Rodriguez static ssize_t read_file_interrupt(struct file *file, char __user *user_buf,
210203c4805SLuis R. Rodriguez 				   size_t count, loff_t *ppos)
211203c4805SLuis R. Rodriguez {
212203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
213203c4805SLuis R. Rodriguez 	char buf[512];
214203c4805SLuis R. Rodriguez 	unsigned int len = 0;
215203c4805SLuis R. Rodriguez 
216203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
217203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RX", sc->debug.stats.istats.rxok);
218203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
219203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol);
220203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
221203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn);
222203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
223203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TX", sc->debug.stats.istats.txok);
224203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
225203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn);
226203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
227203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "MIB", sc->debug.stats.istats.mib);
228203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
229203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr);
230203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
231203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss);
232203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
233203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba);
234203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
235203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss);
236203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
237203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr);
238203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
239203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CST", sc->debug.stats.istats.cst);
240203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
241203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt);
242203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
243203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TIM", sc->debug.stats.istats.tim);
244203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
245203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend);
246203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
247203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync);
248203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
249203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim);
250203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
251203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total);
252203c4805SLuis R. Rodriguez 
253203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
254203c4805SLuis R. Rodriguez }
255203c4805SLuis R. Rodriguez 
256203c4805SLuis R. Rodriguez static const struct file_operations fops_interrupt = {
257203c4805SLuis R. Rodriguez 	.read = read_file_interrupt,
258203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
259203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
260203c4805SLuis R. Rodriguez };
261203c4805SLuis R. Rodriguez 
262545750d3SFelix Fietkau void ath_debug_stat_rc(struct ath_softc *sc, int final_rate)
263203c4805SLuis R. Rodriguez {
264bedf087aSJeff Hansen 	struct ath_rc_stats *stats;
265203c4805SLuis R. Rodriguez 
266545750d3SFelix Fietkau 	stats = &sc->debug.stats.rcstats[final_rate];
267bedf087aSJeff Hansen 	stats->success++;
268203c4805SLuis R. Rodriguez }
269203c4805SLuis R. Rodriguez 
270203c4805SLuis R. Rodriguez void ath_debug_stat_retries(struct ath_softc *sc, int rix,
271203c4805SLuis R. Rodriguez 			    int xretries, int retries, u8 per)
272203c4805SLuis R. Rodriguez {
273bedf087aSJeff Hansen 	struct ath_rc_stats *stats = &sc->debug.stats.rcstats[rix];
274203c4805SLuis R. Rodriguez 
275bedf087aSJeff Hansen 	stats->xretries += xretries;
276bedf087aSJeff Hansen 	stats->retries += retries;
277bedf087aSJeff Hansen 	stats->per = per;
278203c4805SLuis R. Rodriguez }
279203c4805SLuis R. Rodriguez 
280203c4805SLuis R. Rodriguez static ssize_t read_file_rcstat(struct file *file, char __user *user_buf,
281203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
282203c4805SLuis R. Rodriguez {
283203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
284bedf087aSJeff Hansen 	char *buf;
285bedf087aSJeff Hansen 	unsigned int len = 0, max;
286bedf087aSJeff Hansen 	int i = 0;
287bedf087aSJeff Hansen 	ssize_t retval;
288203c4805SLuis R. Rodriguez 
289203c4805SLuis R. Rodriguez 	if (sc->cur_rate_table == NULL)
290203c4805SLuis R. Rodriguez 		return 0;
291203c4805SLuis R. Rodriguez 
292bedf087aSJeff Hansen 	max = 80 + sc->cur_rate_table->rate_cnt * 64;
293bedf087aSJeff Hansen 	buf = kmalloc(max + 1, GFP_KERNEL);
294bedf087aSJeff Hansen 	if (buf == NULL)
295bedf087aSJeff Hansen 		return 0;
296bedf087aSJeff Hansen 	buf[max] = 0;
297bedf087aSJeff Hansen 
298bedf087aSJeff Hansen 	len += sprintf(buf, "%5s %15s %8s %9s %3s\n\n", "Rate", "Success",
299bedf087aSJeff Hansen 		       "Retries", "XRetries", "PER");
300bedf087aSJeff Hansen 
301bedf087aSJeff Hansen 	for (i = 0; i < sc->cur_rate_table->rate_cnt; i++) {
302bedf087aSJeff Hansen 		u32 ratekbps = sc->cur_rate_table->info[i].ratekbps;
303bedf087aSJeff Hansen 		struct ath_rc_stats *stats = &sc->debug.stats.rcstats[i];
304bedf087aSJeff Hansen 
305bedf087aSJeff Hansen 		len += snprintf(buf + len, max - len,
306bedf087aSJeff Hansen 			"%3u.%d: %8u %8u %8u %8u\n", ratekbps / 1000,
307bedf087aSJeff Hansen 			(ratekbps % 1000) / 100, stats->success,
308bedf087aSJeff Hansen 			stats->retries, stats->xretries,
309bedf087aSJeff Hansen 			stats->per);
310bedf087aSJeff Hansen 	}
311bedf087aSJeff Hansen 
312bedf087aSJeff Hansen 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
313bedf087aSJeff Hansen 	kfree(buf);
314bedf087aSJeff Hansen 	return retval;
315203c4805SLuis R. Rodriguez }
316203c4805SLuis R. Rodriguez 
317203c4805SLuis R. Rodriguez static const struct file_operations fops_rcstat = {
318203c4805SLuis R. Rodriguez 	.read = read_file_rcstat,
319203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
320203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
321203c4805SLuis R. Rodriguez };
322203c4805SLuis R. Rodriguez 
323203c4805SLuis R. Rodriguez static const char * ath_wiphy_state_str(enum ath_wiphy_state state)
324203c4805SLuis R. Rodriguez {
325203c4805SLuis R. Rodriguez 	switch (state) {
326203c4805SLuis R. Rodriguez 	case ATH_WIPHY_INACTIVE:
327203c4805SLuis R. Rodriguez 		return "INACTIVE";
328203c4805SLuis R. Rodriguez 	case ATH_WIPHY_ACTIVE:
329203c4805SLuis R. Rodriguez 		return "ACTIVE";
330203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSING:
331203c4805SLuis R. Rodriguez 		return "PAUSING";
332203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSED:
333203c4805SLuis R. Rodriguez 		return "PAUSED";
334203c4805SLuis R. Rodriguez 	case ATH_WIPHY_SCAN:
335203c4805SLuis R. Rodriguez 		return "SCAN";
336203c4805SLuis R. Rodriguez 	}
337203c4805SLuis R. Rodriguez 	return "?";
338203c4805SLuis R. Rodriguez }
339203c4805SLuis R. Rodriguez 
340203c4805SLuis R. Rodriguez static ssize_t read_file_wiphy(struct file *file, char __user *user_buf,
341203c4805SLuis R. Rodriguez 			       size_t count, loff_t *ppos)
342203c4805SLuis R. Rodriguez {
343203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
344203c4805SLuis R. Rodriguez 	char buf[512];
345203c4805SLuis R. Rodriguez 	unsigned int len = 0;
346203c4805SLuis R. Rodriguez 	int i;
347203c4805SLuis R. Rodriguez 	u8 addr[ETH_ALEN];
348203c4805SLuis R. Rodriguez 
349203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
350203c4805SLuis R. Rodriguez 			"primary: %s (%s chan=%d ht=%d)\n",
351203c4805SLuis R. Rodriguez 			wiphy_name(sc->pri_wiphy->hw->wiphy),
352203c4805SLuis R. Rodriguez 			ath_wiphy_state_str(sc->pri_wiphy->state),
353203c4805SLuis R. Rodriguez 			sc->pri_wiphy->chan_idx, sc->pri_wiphy->chan_is_ht);
354203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
355203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
356203c4805SLuis R. Rodriguez 		if (aphy == NULL)
357203c4805SLuis R. Rodriguez 			continue;
358203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
359203c4805SLuis R. Rodriguez 				"secondary: %s (%s chan=%d ht=%d)\n",
360203c4805SLuis R. Rodriguez 				wiphy_name(aphy->hw->wiphy),
361203c4805SLuis R. Rodriguez 				ath_wiphy_state_str(aphy->state),
362203c4805SLuis R. Rodriguez 				aphy->chan_idx, aphy->chan_is_ht);
363203c4805SLuis R. Rodriguez 	}
364203c4805SLuis R. Rodriguez 
365475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_STA_ID0), addr);
366475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4);
367203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
368203c4805SLuis R. Rodriguez 			"addr: %pM\n", addr);
369475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_BSSMSKL), addr);
370475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4);
371203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
372203c4805SLuis R. Rodriguez 			"addrmask: %pM\n", addr);
373203c4805SLuis R. Rodriguez 
374203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
375203c4805SLuis R. Rodriguez }
376203c4805SLuis R. Rodriguez 
377203c4805SLuis R. Rodriguez static struct ath_wiphy * get_wiphy(struct ath_softc *sc, const char *name)
378203c4805SLuis R. Rodriguez {
379203c4805SLuis R. Rodriguez 	int i;
380203c4805SLuis R. Rodriguez 	if (strcmp(name, wiphy_name(sc->pri_wiphy->hw->wiphy)) == 0)
381203c4805SLuis R. Rodriguez 		return sc->pri_wiphy;
382203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
383203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
384203c4805SLuis R. Rodriguez 		if (aphy && strcmp(name, wiphy_name(aphy->hw->wiphy)) == 0)
385203c4805SLuis R. Rodriguez 			return aphy;
386203c4805SLuis R. Rodriguez 	}
387203c4805SLuis R. Rodriguez 	return NULL;
388203c4805SLuis R. Rodriguez }
389203c4805SLuis R. Rodriguez 
390203c4805SLuis R. Rodriguez static int del_wiphy(struct ath_softc *sc, const char *name)
391203c4805SLuis R. Rodriguez {
392203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
393203c4805SLuis R. Rodriguez 	if (!aphy)
394203c4805SLuis R. Rodriguez 		return -ENOENT;
395203c4805SLuis R. Rodriguez 	return ath9k_wiphy_del(aphy);
396203c4805SLuis R. Rodriguez }
397203c4805SLuis R. Rodriguez 
398203c4805SLuis R. Rodriguez static int pause_wiphy(struct ath_softc *sc, const char *name)
399203c4805SLuis R. Rodriguez {
400203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
401203c4805SLuis R. Rodriguez 	if (!aphy)
402203c4805SLuis R. Rodriguez 		return -ENOENT;
403203c4805SLuis R. Rodriguez 	return ath9k_wiphy_pause(aphy);
404203c4805SLuis R. Rodriguez }
405203c4805SLuis R. Rodriguez 
406203c4805SLuis R. Rodriguez static int unpause_wiphy(struct ath_softc *sc, const char *name)
407203c4805SLuis R. Rodriguez {
408203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
409203c4805SLuis R. Rodriguez 	if (!aphy)
410203c4805SLuis R. Rodriguez 		return -ENOENT;
411203c4805SLuis R. Rodriguez 	return ath9k_wiphy_unpause(aphy);
412203c4805SLuis R. Rodriguez }
413203c4805SLuis R. Rodriguez 
414203c4805SLuis R. Rodriguez static int select_wiphy(struct ath_softc *sc, const char *name)
415203c4805SLuis R. Rodriguez {
416203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
417203c4805SLuis R. Rodriguez 	if (!aphy)
418203c4805SLuis R. Rodriguez 		return -ENOENT;
419203c4805SLuis R. Rodriguez 	return ath9k_wiphy_select(aphy);
420203c4805SLuis R. Rodriguez }
421203c4805SLuis R. Rodriguez 
422203c4805SLuis R. Rodriguez static int schedule_wiphy(struct ath_softc *sc, const char *msec)
423203c4805SLuis R. Rodriguez {
424203c4805SLuis R. Rodriguez 	ath9k_wiphy_set_scheduler(sc, simple_strtoul(msec, NULL, 0));
425203c4805SLuis R. Rodriguez 	return 0;
426203c4805SLuis R. Rodriguez }
427203c4805SLuis R. Rodriguez 
428203c4805SLuis R. Rodriguez static ssize_t write_file_wiphy(struct file *file, const char __user *user_buf,
429203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
430203c4805SLuis R. Rodriguez {
431203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
432203c4805SLuis R. Rodriguez 	char buf[50];
433203c4805SLuis R. Rodriguez 	size_t len;
434203c4805SLuis R. Rodriguez 
435203c4805SLuis R. Rodriguez 	len = min(count, sizeof(buf) - 1);
436203c4805SLuis R. Rodriguez 	if (copy_from_user(buf, user_buf, len))
437203c4805SLuis R. Rodriguez 		return -EFAULT;
438203c4805SLuis R. Rodriguez 	buf[len] = '\0';
439203c4805SLuis R. Rodriguez 	if (len > 0 && buf[len - 1] == '\n')
440203c4805SLuis R. Rodriguez 		buf[len - 1] = '\0';
441203c4805SLuis R. Rodriguez 
442203c4805SLuis R. Rodriguez 	if (strncmp(buf, "add", 3) == 0) {
443203c4805SLuis R. Rodriguez 		int res = ath9k_wiphy_add(sc);
444203c4805SLuis R. Rodriguez 		if (res < 0)
445203c4805SLuis R. Rodriguez 			return res;
446203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "del=", 4) == 0) {
447203c4805SLuis R. Rodriguez 		int res = del_wiphy(sc, buf + 4);
448203c4805SLuis R. Rodriguez 		if (res < 0)
449203c4805SLuis R. Rodriguez 			return res;
450203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "pause=", 6) == 0) {
451203c4805SLuis R. Rodriguez 		int res = pause_wiphy(sc, buf + 6);
452203c4805SLuis R. Rodriguez 		if (res < 0)
453203c4805SLuis R. Rodriguez 			return res;
454203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "unpause=", 8) == 0) {
455203c4805SLuis R. Rodriguez 		int res = unpause_wiphy(sc, buf + 8);
456203c4805SLuis R. Rodriguez 		if (res < 0)
457203c4805SLuis R. Rodriguez 			return res;
458203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "select=", 7) == 0) {
459203c4805SLuis R. Rodriguez 		int res = select_wiphy(sc, buf + 7);
460203c4805SLuis R. Rodriguez 		if (res < 0)
461203c4805SLuis R. Rodriguez 			return res;
462203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "schedule=", 9) == 0) {
463203c4805SLuis R. Rodriguez 		int res = schedule_wiphy(sc, buf + 9);
464203c4805SLuis R. Rodriguez 		if (res < 0)
465203c4805SLuis R. Rodriguez 			return res;
466203c4805SLuis R. Rodriguez 	} else
467203c4805SLuis R. Rodriguez 		return -EOPNOTSUPP;
468203c4805SLuis R. Rodriguez 
469203c4805SLuis R. Rodriguez 	return count;
470203c4805SLuis R. Rodriguez }
471203c4805SLuis R. Rodriguez 
472203c4805SLuis R. Rodriguez static const struct file_operations fops_wiphy = {
473203c4805SLuis R. Rodriguez 	.read = read_file_wiphy,
474203c4805SLuis R. Rodriguez 	.write = write_file_wiphy,
475203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
476203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
477203c4805SLuis R. Rodriguez };
478203c4805SLuis R. Rodriguez 
479fec247c0SSujith #define PR(str, elem)							\
480fec247c0SSujith 	do {								\
481fec247c0SSujith 		len += snprintf(buf + len, size - len,			\
482fec247c0SSujith 				"%s%13u%11u%10u%10u\n", str,		\
483fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BE]].elem, \
484fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BK]].elem, \
485fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VI]].elem, \
486fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VO]].elem); \
487fec247c0SSujith } while(0)
488fec247c0SSujith 
489fec247c0SSujith static ssize_t read_file_xmit(struct file *file, char __user *user_buf,
490fec247c0SSujith 			      size_t count, loff_t *ppos)
491fec247c0SSujith {
492fec247c0SSujith 	struct ath_softc *sc = file->private_data;
493fec247c0SSujith 	char *buf;
494fec247c0SSujith 	unsigned int len = 0, size = 2048;
495fec247c0SSujith 	ssize_t retval = 0;
496fec247c0SSujith 
497fec247c0SSujith 	buf = kzalloc(size, GFP_KERNEL);
498fec247c0SSujith 	if (buf == NULL)
499fec247c0SSujith 		return 0;
500fec247c0SSujith 
501fec247c0SSujith 	len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO");
502fec247c0SSujith 
503fec247c0SSujith 	PR("MPDUs Queued:    ", queued);
504fec247c0SSujith 	PR("MPDUs Completed: ", completed);
505fec247c0SSujith 	PR("Aggregates:      ", a_aggr);
506fec247c0SSujith 	PR("AMPDUs Queued:   ", a_queued);
507fec247c0SSujith 	PR("AMPDUs Completed:", a_completed);
508fec247c0SSujith 	PR("AMPDUs Retried:  ", a_retries);
509fec247c0SSujith 	PR("AMPDUs XRetried: ", a_xretries);
510fec247c0SSujith 	PR("FIFO Underrun:   ", fifo_underrun);
511fec247c0SSujith 	PR("TXOP Exceeded:   ", xtxop);
512fec247c0SSujith 	PR("TXTIMER Expiry:  ", timer_exp);
513fec247c0SSujith 	PR("DESC CFG Error:  ", desc_cfg_err);
514fec247c0SSujith 	PR("DATA Underrun:   ", data_underrun);
515fec247c0SSujith 	PR("DELIM Underrun:  ", delim_underrun);
516fec247c0SSujith 
517fec247c0SSujith 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
518fec247c0SSujith 	kfree(buf);
519fec247c0SSujith 
520fec247c0SSujith 	return retval;
521fec247c0SSujith }
522fec247c0SSujith 
523fec247c0SSujith void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq,
524fec247c0SSujith 		       struct ath_buf *bf)
525fec247c0SSujith {
526fec247c0SSujith 	struct ath_desc *ds = bf->bf_desc;
527fec247c0SSujith 
528fec247c0SSujith 	if (bf_isampdu(bf)) {
529fec247c0SSujith 		if (bf_isxretried(bf))
530fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_xretries);
531fec247c0SSujith 		else
532fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_completed);
533fec247c0SSujith 	} else {
534fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, completed);
535fec247c0SSujith 	}
536fec247c0SSujith 
537fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_FIFO)
538fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, fifo_underrun);
539fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_XTXOP)
540fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, xtxop);
541fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_TIMER_EXPIRED)
542fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, timer_exp);
543fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DESC_CFG_ERR)
544fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, desc_cfg_err);
545fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DATA_UNDERRUN)
546fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, data_underrun);
547fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DELIM_UNDERRUN)
548fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, delim_underrun);
549fec247c0SSujith }
550fec247c0SSujith 
551fec247c0SSujith static const struct file_operations fops_xmit = {
552fec247c0SSujith 	.read = read_file_xmit,
553fec247c0SSujith 	.open = ath9k_debugfs_open,
554fec247c0SSujith 	.owner = THIS_MODULE
555fec247c0SSujith };
556203c4805SLuis R. Rodriguez 
5574d6b228dSLuis R. Rodriguez int ath9k_init_debug(struct ath_hw *ah)
558203c4805SLuis R. Rodriguez {
559bc974f4aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
560bc974f4aSLuis R. Rodriguez 	struct ath_softc *sc = (struct ath_softc *) common->priv;
5614d6b228dSLuis R. Rodriguez 
562203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
563203c4805SLuis R. Rodriguez 		return -ENOENT;
564203c4805SLuis R. Rodriguez 
565203c4805SLuis R. Rodriguez 	sc->debug.debugfs_phy = debugfs_create_dir(wiphy_name(sc->hw->wiphy),
566203c4805SLuis R. Rodriguez 						      ath9k_debugfs_root);
567203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_phy)
568203c4805SLuis R. Rodriguez 		goto err;
569203c4805SLuis R. Rodriguez 
570*a830df07SFelix Fietkau #ifdef CONFIG_ATH_DEBUG
5712493928eSJeff Hansen 	sc->debug.debugfs_debug = debugfs_create_file("debug",
5729d49e861SJiri Slaby 		S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc, &fops_debug);
5732493928eSJeff Hansen 	if (!sc->debug.debugfs_debug)
5742493928eSJeff Hansen 		goto err;
575*a830df07SFelix Fietkau #endif
5762493928eSJeff Hansen 
5779d49e861SJiri Slaby 	sc->debug.debugfs_dma = debugfs_create_file("dma", S_IRUSR,
578203c4805SLuis R. Rodriguez 				       sc->debug.debugfs_phy, sc, &fops_dma);
579203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_dma)
580203c4805SLuis R. Rodriguez 		goto err;
581203c4805SLuis R. Rodriguez 
582203c4805SLuis R. Rodriguez 	sc->debug.debugfs_interrupt = debugfs_create_file("interrupt",
5839d49e861SJiri Slaby 						     S_IRUSR,
584203c4805SLuis R. Rodriguez 						     sc->debug.debugfs_phy,
585203c4805SLuis R. Rodriguez 						     sc, &fops_interrupt);
586203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_interrupt)
587203c4805SLuis R. Rodriguez 		goto err;
588203c4805SLuis R. Rodriguez 
589203c4805SLuis R. Rodriguez 	sc->debug.debugfs_rcstat = debugfs_create_file("rcstat",
5909d49e861SJiri Slaby 						  S_IRUSR,
591203c4805SLuis R. Rodriguez 						  sc->debug.debugfs_phy,
592203c4805SLuis R. Rodriguez 						  sc, &fops_rcstat);
593203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_rcstat)
594203c4805SLuis R. Rodriguez 		goto err;
595203c4805SLuis R. Rodriguez 
596203c4805SLuis R. Rodriguez 	sc->debug.debugfs_wiphy = debugfs_create_file(
5979d49e861SJiri Slaby 		"wiphy", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc,
598203c4805SLuis R. Rodriguez 		&fops_wiphy);
599203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_wiphy)
600203c4805SLuis R. Rodriguez 		goto err;
601203c4805SLuis R. Rodriguez 
602fec247c0SSujith 	sc->debug.debugfs_xmit = debugfs_create_file("xmit",
603fec247c0SSujith 						     S_IRUSR,
604fec247c0SSujith 						     sc->debug.debugfs_phy,
605fec247c0SSujith 						     sc, &fops_xmit);
606fec247c0SSujith 	if (!sc->debug.debugfs_xmit)
607fec247c0SSujith 		goto err;
608fec247c0SSujith 
609203c4805SLuis R. Rodriguez 	return 0;
610203c4805SLuis R. Rodriguez err:
6114d6b228dSLuis R. Rodriguez 	ath9k_exit_debug(ah);
612203c4805SLuis R. Rodriguez 	return -ENOMEM;
613203c4805SLuis R. Rodriguez }
614203c4805SLuis R. Rodriguez 
6154d6b228dSLuis R. Rodriguez void ath9k_exit_debug(struct ath_hw *ah)
616203c4805SLuis R. Rodriguez {
617bc974f4aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
618bc974f4aSLuis R. Rodriguez 	struct ath_softc *sc = (struct ath_softc *) common->priv;
6194d6b228dSLuis R. Rodriguez 
620fec247c0SSujith 	debugfs_remove(sc->debug.debugfs_xmit);
621203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_wiphy);
622203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_rcstat);
623203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_interrupt);
624203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_dma);
6252493928eSJeff Hansen 	debugfs_remove(sc->debug.debugfs_debug);
626203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_phy);
627203c4805SLuis R. Rodriguez }
628203c4805SLuis R. Rodriguez 
629203c4805SLuis R. Rodriguez int ath9k_debug_create_root(void)
630203c4805SLuis R. Rodriguez {
631203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
632203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
633203c4805SLuis R. Rodriguez 		return -ENOENT;
634203c4805SLuis R. Rodriguez 
635203c4805SLuis R. Rodriguez 	return 0;
636203c4805SLuis R. Rodriguez }
637203c4805SLuis R. Rodriguez 
638203c4805SLuis R. Rodriguez void ath9k_debug_remove_root(void)
639203c4805SLuis R. Rodriguez {
640203c4805SLuis R. Rodriguez 	debugfs_remove(ath9k_debugfs_root);
641203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = NULL;
642203c4805SLuis R. Rodriguez }
643