xref: /openbmc/linux/drivers/net/wireless/ath/ath9k/debug.c (revision 475a6e4d3907d6af412d081a9eab3b1e8a24afd1)
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 
21*475a6e4dSLuis R. Rodriguez #define REG_WRITE_D(_ah, _reg, _val) \
22*475a6e4dSLuis R. Rodriguez 	ath9k_hw_common(_ah)->ops->write((_ah), (_val), (_reg))
23*475a6e4dSLuis R. Rodriguez #define REG_READ_D(_ah, _reg) \
24*475a6e4dSLuis R. Rodriguez 	ath9k_hw_common(_ah)->ops->read((_ah), (_reg))
25*475a6e4dSLuis R. Rodriguez 
26c46917bbSLuis R. Rodriguez static unsigned int ath9k_debug = ATH_DBG_DEFAULT;
27203c4805SLuis R. Rodriguez module_param_named(debug, ath9k_debug, uint, 0);
28203c4805SLuis R. Rodriguez 
29203c4805SLuis R. Rodriguez static struct dentry *ath9k_debugfs_root;
30203c4805SLuis R. Rodriguez 
31203c4805SLuis R. Rodriguez static int ath9k_debugfs_open(struct inode *inode, struct file *file)
32203c4805SLuis R. Rodriguez {
33203c4805SLuis R. Rodriguez 	file->private_data = inode->i_private;
34203c4805SLuis R. Rodriguez 	return 0;
35203c4805SLuis R. Rodriguez }
36203c4805SLuis R. Rodriguez 
372493928eSJeff Hansen static ssize_t read_file_debug(struct file *file, char __user *user_buf,
382493928eSJeff Hansen 			     size_t count, loff_t *ppos)
392493928eSJeff Hansen {
402493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
41c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
422493928eSJeff Hansen 	char buf[32];
43581f725cSVasanthakumar Thiagarajan 	unsigned int len;
44581f725cSVasanthakumar Thiagarajan 
45c46917bbSLuis R. Rodriguez 	len = snprintf(buf, sizeof(buf), "0x%08x\n", common->debug_mask);
462493928eSJeff Hansen 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
472493928eSJeff Hansen }
482493928eSJeff Hansen 
492493928eSJeff Hansen static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
502493928eSJeff Hansen 			     size_t count, loff_t *ppos)
512493928eSJeff Hansen {
522493928eSJeff Hansen 	struct ath_softc *sc = file->private_data;
53c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
542493928eSJeff Hansen 	unsigned long mask;
552493928eSJeff Hansen 	char buf[32];
56581f725cSVasanthakumar Thiagarajan 	ssize_t len;
57581f725cSVasanthakumar Thiagarajan 
58581f725cSVasanthakumar Thiagarajan 	len = min(count, sizeof(buf) - 1);
59581f725cSVasanthakumar Thiagarajan 	if (copy_from_user(buf, user_buf, len))
60581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
61581f725cSVasanthakumar Thiagarajan 
62581f725cSVasanthakumar Thiagarajan 	buf[len] = '\0';
63581f725cSVasanthakumar Thiagarajan 	if (strict_strtoul(buf, 0, &mask))
64581f725cSVasanthakumar Thiagarajan 		return -EINVAL;
65581f725cSVasanthakumar Thiagarajan 
66c46917bbSLuis R. Rodriguez 	common->debug_mask = mask;
672493928eSJeff Hansen 	return count;
682493928eSJeff Hansen }
692493928eSJeff Hansen 
702493928eSJeff Hansen static const struct file_operations fops_debug = {
712493928eSJeff Hansen 	.read = read_file_debug,
722493928eSJeff Hansen 	.write = write_file_debug,
732493928eSJeff Hansen 	.open = ath9k_debugfs_open,
742493928eSJeff Hansen 	.owner = THIS_MODULE
752493928eSJeff Hansen };
762493928eSJeff Hansen 
77203c4805SLuis R. Rodriguez static ssize_t read_file_dma(struct file *file, char __user *user_buf,
78203c4805SLuis R. Rodriguez 			     size_t count, loff_t *ppos)
79203c4805SLuis R. Rodriguez {
80203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
81203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
82203c4805SLuis R. Rodriguez 	char buf[1024];
83203c4805SLuis R. Rodriguez 	unsigned int len = 0;
84203c4805SLuis R. Rodriguez 	u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
85203c4805SLuis R. Rodriguez 	int i, qcuOffset = 0, dcuOffset = 0;
86203c4805SLuis R. Rodriguez 	u32 *qcuBase = &val[0], *dcuBase = &val[4];
87203c4805SLuis R. Rodriguez 
887cf4a2e7SSujith 	ath9k_ps_wakeup(sc);
897cf4a2e7SSujith 
90*475a6e4dSLuis R. Rodriguez 	REG_WRITE_D(ah, AR_MACMISC,
91203c4805SLuis R. Rodriguez 		  ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
92203c4805SLuis R. Rodriguez 		   (AR_MACMISC_MISC_OBS_BUS_1 <<
93203c4805SLuis R. Rodriguez 		    AR_MACMISC_MISC_OBS_BUS_MSB_S)));
94203c4805SLuis R. Rodriguez 
95203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
96203c4805SLuis R. Rodriguez 			"Raw DMA Debug values:\n");
97203c4805SLuis R. Rodriguez 
98203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) {
99203c4805SLuis R. Rodriguez 		if (i % 4 == 0)
100203c4805SLuis R. Rodriguez 			len += snprintf(buf + len, sizeof(buf) - len, "\n");
101203c4805SLuis R. Rodriguez 
102*475a6e4dSLuis R. Rodriguez 		val[i] = REG_READ_D(ah, AR_DMADBG_0 + (i * sizeof(u32)));
103203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len, "%d: %08x ",
104203c4805SLuis R. Rodriguez 				i, val[i]);
105203c4805SLuis R. Rodriguez 	}
106203c4805SLuis R. Rodriguez 
107203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n\n");
108203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
109203c4805SLuis R. Rodriguez 			"Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n");
110203c4805SLuis R. Rodriguez 
111203c4805SLuis R. Rodriguez 	for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) {
112203c4805SLuis R. Rodriguez 		if (i == 8) {
113203c4805SLuis R. Rodriguez 			qcuOffset = 0;
114203c4805SLuis R. Rodriguez 			qcuBase++;
115203c4805SLuis R. Rodriguez 		}
116203c4805SLuis R. Rodriguez 
117203c4805SLuis R. Rodriguez 		if (i == 6) {
118203c4805SLuis R. Rodriguez 			dcuOffset = 0;
119203c4805SLuis R. Rodriguez 			dcuBase++;
120203c4805SLuis R. Rodriguez 		}
121203c4805SLuis R. Rodriguez 
122203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
123203c4805SLuis R. Rodriguez 			"%2d          %2x      %1x     %2x           %2x\n",
124203c4805SLuis R. Rodriguez 			i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset,
125203c4805SLuis R. Rodriguez 			(*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3),
126203c4805SLuis R. Rodriguez 			val[2] & (0x7 << (i * 3)) >> (i * 3),
127203c4805SLuis R. Rodriguez 			(*dcuBase & (0x1f << dcuOffset)) >> dcuOffset);
128203c4805SLuis R. Rodriguez 	}
129203c4805SLuis R. Rodriguez 
130203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "\n");
131203c4805SLuis R. Rodriguez 
132203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
133203c4805SLuis R. Rodriguez 		"qcu_stitch state:   %2x    qcu_fetch state:        %2x\n",
134203c4805SLuis R. Rodriguez 		(val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
135203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
136203c4805SLuis R. Rodriguez 		"qcu_complete state: %2x    dcu_complete state:     %2x\n",
137203c4805SLuis R. Rodriguez 		(val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
138203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
139203c4805SLuis R. Rodriguez 		"dcu_arb state:      %2x    dcu_fp state:           %2x\n",
140203c4805SLuis R. Rodriguez 		(val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
141203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
142203c4805SLuis R. Rodriguez 		"chan_idle_dur:     %3d    chan_idle_dur_valid:     %1d\n",
143203c4805SLuis R. Rodriguez 		(val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
144203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
145203c4805SLuis R. Rodriguez 		"txfifo_valid_0:      %1d    txfifo_valid_1:          %1d\n",
146203c4805SLuis R. Rodriguez 		(val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
147203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
148203c4805SLuis R. Rodriguez 		"txfifo_dcu_num_0:   %2d    txfifo_dcu_num_1:       %2d\n",
149203c4805SLuis R. Rodriguez 		(val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);
150203c4805SLuis R. Rodriguez 
151203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len, "pcu observe: 0x%x \n",
152*475a6e4dSLuis R. Rodriguez 			REG_READ_D(ah, AR_OBS_BUS_1));
153203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
154*475a6e4dSLuis R. Rodriguez 			"AR_CR: 0x%x \n", REG_READ_D(ah, AR_CR));
155203c4805SLuis R. Rodriguez 
1567cf4a2e7SSujith 	ath9k_ps_restore(sc);
1577cf4a2e7SSujith 
158203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
159203c4805SLuis R. Rodriguez }
160203c4805SLuis R. Rodriguez 
161203c4805SLuis R. Rodriguez static const struct file_operations fops_dma = {
162203c4805SLuis R. Rodriguez 	.read = read_file_dma,
163203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
164203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
165203c4805SLuis R. Rodriguez };
166203c4805SLuis R. Rodriguez 
167203c4805SLuis R. Rodriguez 
168203c4805SLuis R. Rodriguez void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
169203c4805SLuis R. Rodriguez {
170203c4805SLuis R. Rodriguez 	if (status)
171203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.total++;
172203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RX)
173203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxok++;
174203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXEOL)
175203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxeol++;
176203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXORN)
177203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxorn++;
178203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TX)
179203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txok++;
180203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TXURN)
181203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.txurn++;
182203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_MIB)
183203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.mib++;
184203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXPHY)
185203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rxphyerr++;
186203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_RXKCM)
187203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.rx_keycache_miss++;
188203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_SWBA)
189203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.swba++;
190203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BMISS)
191203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bmiss++;
192203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_BNR)
193203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.bnr++;
194203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CST)
195203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cst++;
196203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_GTT)
197203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.gtt++;
198203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_TIM)
199203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.tim++;
200203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_CABEND)
201203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.cabend++;
202203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIMSYNC)
203203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtimsync++;
204203c4805SLuis R. Rodriguez 	if (status & ATH9K_INT_DTIM)
205203c4805SLuis R. Rodriguez 		sc->debug.stats.istats.dtim++;
206203c4805SLuis R. Rodriguez }
207203c4805SLuis R. Rodriguez 
208203c4805SLuis R. Rodriguez static ssize_t read_file_interrupt(struct file *file, char __user *user_buf,
209203c4805SLuis R. Rodriguez 				   size_t count, loff_t *ppos)
210203c4805SLuis R. Rodriguez {
211203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
212203c4805SLuis R. Rodriguez 	char buf[512];
213203c4805SLuis R. Rodriguez 	unsigned int len = 0;
214203c4805SLuis R. Rodriguez 
215203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
216203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RX", sc->debug.stats.istats.rxok);
217203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
218203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol);
219203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
220203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn);
221203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
222203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TX", sc->debug.stats.istats.txok);
223203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
224203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn);
225203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
226203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "MIB", sc->debug.stats.istats.mib);
227203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
228203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr);
229203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
230203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss);
231203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
232203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba);
233203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
234203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss);
235203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
236203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr);
237203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
238203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CST", sc->debug.stats.istats.cst);
239203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
240203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt);
241203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
242203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TIM", sc->debug.stats.istats.tim);
243203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
244203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend);
245203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
246203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync);
247203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
248203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim);
249203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
250203c4805SLuis R. Rodriguez 		"%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total);
251203c4805SLuis R. Rodriguez 
252203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
253203c4805SLuis R. Rodriguez }
254203c4805SLuis R. Rodriguez 
255203c4805SLuis R. Rodriguez static const struct file_operations fops_interrupt = {
256203c4805SLuis R. Rodriguez 	.read = read_file_interrupt,
257203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
258203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
259203c4805SLuis R. Rodriguez };
260203c4805SLuis R. Rodriguez 
261bedf087aSJeff Hansen void ath_debug_stat_rc(struct ath_softc *sc, struct sk_buff *skb)
262203c4805SLuis R. Rodriguez {
263203c4805SLuis R. Rodriguez 	struct ath_tx_info_priv *tx_info_priv = NULL;
264203c4805SLuis R. Rodriguez 	struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
265203c4805SLuis R. Rodriguez 	struct ieee80211_tx_rate *rates = tx_info->status.rates;
266203c4805SLuis R. Rodriguez 	int final_ts_idx, idx;
267bedf087aSJeff Hansen 	struct ath_rc_stats *stats;
268203c4805SLuis R. Rodriguez 
269203c4805SLuis R. Rodriguez 	tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
270203c4805SLuis R. Rodriguez 	final_ts_idx = tx_info_priv->tx.ts_rateindex;
271203c4805SLuis R. Rodriguez 	idx = rates[final_ts_idx].idx;
272bedf087aSJeff Hansen 	stats = &sc->debug.stats.rcstats[idx];
273bedf087aSJeff Hansen 	stats->success++;
274203c4805SLuis R. Rodriguez }
275203c4805SLuis R. Rodriguez 
276203c4805SLuis R. Rodriguez void ath_debug_stat_retries(struct ath_softc *sc, int rix,
277203c4805SLuis R. Rodriguez 			    int xretries, int retries, u8 per)
278203c4805SLuis R. Rodriguez {
279bedf087aSJeff Hansen 	struct ath_rc_stats *stats = &sc->debug.stats.rcstats[rix];
280203c4805SLuis R. Rodriguez 
281bedf087aSJeff Hansen 	stats->xretries += xretries;
282bedf087aSJeff Hansen 	stats->retries += retries;
283bedf087aSJeff Hansen 	stats->per = per;
284203c4805SLuis R. Rodriguez }
285203c4805SLuis R. Rodriguez 
286203c4805SLuis R. Rodriguez static ssize_t read_file_rcstat(struct file *file, char __user *user_buf,
287203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
288203c4805SLuis R. Rodriguez {
289203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
290bedf087aSJeff Hansen 	char *buf;
291bedf087aSJeff Hansen 	unsigned int len = 0, max;
292bedf087aSJeff Hansen 	int i = 0;
293bedf087aSJeff Hansen 	ssize_t retval;
294203c4805SLuis R. Rodriguez 
295203c4805SLuis R. Rodriguez 	if (sc->cur_rate_table == NULL)
296203c4805SLuis R. Rodriguez 		return 0;
297203c4805SLuis R. Rodriguez 
298bedf087aSJeff Hansen 	max = 80 + sc->cur_rate_table->rate_cnt * 64;
299bedf087aSJeff Hansen 	buf = kmalloc(max + 1, GFP_KERNEL);
300bedf087aSJeff Hansen 	if (buf == NULL)
301bedf087aSJeff Hansen 		return 0;
302bedf087aSJeff Hansen 	buf[max] = 0;
303bedf087aSJeff Hansen 
304bedf087aSJeff Hansen 	len += sprintf(buf, "%5s %15s %8s %9s %3s\n\n", "Rate", "Success",
305bedf087aSJeff Hansen 		       "Retries", "XRetries", "PER");
306bedf087aSJeff Hansen 
307bedf087aSJeff Hansen 	for (i = 0; i < sc->cur_rate_table->rate_cnt; i++) {
308bedf087aSJeff Hansen 		u32 ratekbps = sc->cur_rate_table->info[i].ratekbps;
309bedf087aSJeff Hansen 		struct ath_rc_stats *stats = &sc->debug.stats.rcstats[i];
310bedf087aSJeff Hansen 
311bedf087aSJeff Hansen 		len += snprintf(buf + len, max - len,
312bedf087aSJeff Hansen 			"%3u.%d: %8u %8u %8u %8u\n", ratekbps / 1000,
313bedf087aSJeff Hansen 			(ratekbps % 1000) / 100, stats->success,
314bedf087aSJeff Hansen 			stats->retries, stats->xretries,
315bedf087aSJeff Hansen 			stats->per);
316bedf087aSJeff Hansen 	}
317bedf087aSJeff Hansen 
318bedf087aSJeff Hansen 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
319bedf087aSJeff Hansen 	kfree(buf);
320bedf087aSJeff Hansen 	return retval;
321203c4805SLuis R. Rodriguez }
322203c4805SLuis R. Rodriguez 
323203c4805SLuis R. Rodriguez static const struct file_operations fops_rcstat = {
324203c4805SLuis R. Rodriguez 	.read = read_file_rcstat,
325203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
326203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
327203c4805SLuis R. Rodriguez };
328203c4805SLuis R. Rodriguez 
329203c4805SLuis R. Rodriguez static const char * ath_wiphy_state_str(enum ath_wiphy_state state)
330203c4805SLuis R. Rodriguez {
331203c4805SLuis R. Rodriguez 	switch (state) {
332203c4805SLuis R. Rodriguez 	case ATH_WIPHY_INACTIVE:
333203c4805SLuis R. Rodriguez 		return "INACTIVE";
334203c4805SLuis R. Rodriguez 	case ATH_WIPHY_ACTIVE:
335203c4805SLuis R. Rodriguez 		return "ACTIVE";
336203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSING:
337203c4805SLuis R. Rodriguez 		return "PAUSING";
338203c4805SLuis R. Rodriguez 	case ATH_WIPHY_PAUSED:
339203c4805SLuis R. Rodriguez 		return "PAUSED";
340203c4805SLuis R. Rodriguez 	case ATH_WIPHY_SCAN:
341203c4805SLuis R. Rodriguez 		return "SCAN";
342203c4805SLuis R. Rodriguez 	}
343203c4805SLuis R. Rodriguez 	return "?";
344203c4805SLuis R. Rodriguez }
345203c4805SLuis R. Rodriguez 
346203c4805SLuis R. Rodriguez static ssize_t read_file_wiphy(struct file *file, char __user *user_buf,
347203c4805SLuis R. Rodriguez 			       size_t count, loff_t *ppos)
348203c4805SLuis R. Rodriguez {
349203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
350203c4805SLuis R. Rodriguez 	char buf[512];
351203c4805SLuis R. Rodriguez 	unsigned int len = 0;
352203c4805SLuis R. Rodriguez 	int i;
353203c4805SLuis R. Rodriguez 	u8 addr[ETH_ALEN];
354203c4805SLuis R. Rodriguez 
355203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
356203c4805SLuis R. Rodriguez 			"primary: %s (%s chan=%d ht=%d)\n",
357203c4805SLuis R. Rodriguez 			wiphy_name(sc->pri_wiphy->hw->wiphy),
358203c4805SLuis R. Rodriguez 			ath_wiphy_state_str(sc->pri_wiphy->state),
359203c4805SLuis R. Rodriguez 			sc->pri_wiphy->chan_idx, sc->pri_wiphy->chan_is_ht);
360203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
361203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
362203c4805SLuis R. Rodriguez 		if (aphy == NULL)
363203c4805SLuis R. Rodriguez 			continue;
364203c4805SLuis R. Rodriguez 		len += snprintf(buf + len, sizeof(buf) - len,
365203c4805SLuis R. Rodriguez 				"secondary: %s (%s chan=%d ht=%d)\n",
366203c4805SLuis R. Rodriguez 				wiphy_name(aphy->hw->wiphy),
367203c4805SLuis R. Rodriguez 				ath_wiphy_state_str(aphy->state),
368203c4805SLuis R. Rodriguez 				aphy->chan_idx, aphy->chan_is_ht);
369203c4805SLuis R. Rodriguez 	}
370203c4805SLuis R. Rodriguez 
371*475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_STA_ID0), addr);
372*475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4);
373203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
374203c4805SLuis R. Rodriguez 			"addr: %pM\n", addr);
375*475a6e4dSLuis R. Rodriguez 	put_unaligned_le32(REG_READ_D(sc->sc_ah, AR_BSSMSKL), addr);
376*475a6e4dSLuis R. Rodriguez 	put_unaligned_le16(REG_READ_D(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4);
377203c4805SLuis R. Rodriguez 	len += snprintf(buf + len, sizeof(buf) - len,
378203c4805SLuis R. Rodriguez 			"addrmask: %pM\n", addr);
379203c4805SLuis R. Rodriguez 
380203c4805SLuis R. Rodriguez 	return simple_read_from_buffer(user_buf, count, ppos, buf, len);
381203c4805SLuis R. Rodriguez }
382203c4805SLuis R. Rodriguez 
383203c4805SLuis R. Rodriguez static struct ath_wiphy * get_wiphy(struct ath_softc *sc, const char *name)
384203c4805SLuis R. Rodriguez {
385203c4805SLuis R. Rodriguez 	int i;
386203c4805SLuis R. Rodriguez 	if (strcmp(name, wiphy_name(sc->pri_wiphy->hw->wiphy)) == 0)
387203c4805SLuis R. Rodriguez 		return sc->pri_wiphy;
388203c4805SLuis R. Rodriguez 	for (i = 0; i < sc->num_sec_wiphy; i++) {
389203c4805SLuis R. Rodriguez 		struct ath_wiphy *aphy = sc->sec_wiphy[i];
390203c4805SLuis R. Rodriguez 		if (aphy && strcmp(name, wiphy_name(aphy->hw->wiphy)) == 0)
391203c4805SLuis R. Rodriguez 			return aphy;
392203c4805SLuis R. Rodriguez 	}
393203c4805SLuis R. Rodriguez 	return NULL;
394203c4805SLuis R. Rodriguez }
395203c4805SLuis R. Rodriguez 
396203c4805SLuis R. Rodriguez static int del_wiphy(struct ath_softc *sc, const char *name)
397203c4805SLuis R. Rodriguez {
398203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
399203c4805SLuis R. Rodriguez 	if (!aphy)
400203c4805SLuis R. Rodriguez 		return -ENOENT;
401203c4805SLuis R. Rodriguez 	return ath9k_wiphy_del(aphy);
402203c4805SLuis R. Rodriguez }
403203c4805SLuis R. Rodriguez 
404203c4805SLuis R. Rodriguez static int pause_wiphy(struct ath_softc *sc, const char *name)
405203c4805SLuis R. Rodriguez {
406203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
407203c4805SLuis R. Rodriguez 	if (!aphy)
408203c4805SLuis R. Rodriguez 		return -ENOENT;
409203c4805SLuis R. Rodriguez 	return ath9k_wiphy_pause(aphy);
410203c4805SLuis R. Rodriguez }
411203c4805SLuis R. Rodriguez 
412203c4805SLuis R. Rodriguez static int unpause_wiphy(struct ath_softc *sc, const char *name)
413203c4805SLuis R. Rodriguez {
414203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
415203c4805SLuis R. Rodriguez 	if (!aphy)
416203c4805SLuis R. Rodriguez 		return -ENOENT;
417203c4805SLuis R. Rodriguez 	return ath9k_wiphy_unpause(aphy);
418203c4805SLuis R. Rodriguez }
419203c4805SLuis R. Rodriguez 
420203c4805SLuis R. Rodriguez static int select_wiphy(struct ath_softc *sc, const char *name)
421203c4805SLuis R. Rodriguez {
422203c4805SLuis R. Rodriguez 	struct ath_wiphy *aphy = get_wiphy(sc, name);
423203c4805SLuis R. Rodriguez 	if (!aphy)
424203c4805SLuis R. Rodriguez 		return -ENOENT;
425203c4805SLuis R. Rodriguez 	return ath9k_wiphy_select(aphy);
426203c4805SLuis R. Rodriguez }
427203c4805SLuis R. Rodriguez 
428203c4805SLuis R. Rodriguez static int schedule_wiphy(struct ath_softc *sc, const char *msec)
429203c4805SLuis R. Rodriguez {
430203c4805SLuis R. Rodriguez 	ath9k_wiphy_set_scheduler(sc, simple_strtoul(msec, NULL, 0));
431203c4805SLuis R. Rodriguez 	return 0;
432203c4805SLuis R. Rodriguez }
433203c4805SLuis R. Rodriguez 
434203c4805SLuis R. Rodriguez static ssize_t write_file_wiphy(struct file *file, const char __user *user_buf,
435203c4805SLuis R. Rodriguez 				size_t count, loff_t *ppos)
436203c4805SLuis R. Rodriguez {
437203c4805SLuis R. Rodriguez 	struct ath_softc *sc = file->private_data;
438203c4805SLuis R. Rodriguez 	char buf[50];
439203c4805SLuis R. Rodriguez 	size_t len;
440203c4805SLuis R. Rodriguez 
441203c4805SLuis R. Rodriguez 	len = min(count, sizeof(buf) - 1);
442203c4805SLuis R. Rodriguez 	if (copy_from_user(buf, user_buf, len))
443203c4805SLuis R. Rodriguez 		return -EFAULT;
444203c4805SLuis R. Rodriguez 	buf[len] = '\0';
445203c4805SLuis R. Rodriguez 	if (len > 0 && buf[len - 1] == '\n')
446203c4805SLuis R. Rodriguez 		buf[len - 1] = '\0';
447203c4805SLuis R. Rodriguez 
448203c4805SLuis R. Rodriguez 	if (strncmp(buf, "add", 3) == 0) {
449203c4805SLuis R. Rodriguez 		int res = ath9k_wiphy_add(sc);
450203c4805SLuis R. Rodriguez 		if (res < 0)
451203c4805SLuis R. Rodriguez 			return res;
452203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "del=", 4) == 0) {
453203c4805SLuis R. Rodriguez 		int res = del_wiphy(sc, buf + 4);
454203c4805SLuis R. Rodriguez 		if (res < 0)
455203c4805SLuis R. Rodriguez 			return res;
456203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "pause=", 6) == 0) {
457203c4805SLuis R. Rodriguez 		int res = pause_wiphy(sc, buf + 6);
458203c4805SLuis R. Rodriguez 		if (res < 0)
459203c4805SLuis R. Rodriguez 			return res;
460203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "unpause=", 8) == 0) {
461203c4805SLuis R. Rodriguez 		int res = unpause_wiphy(sc, buf + 8);
462203c4805SLuis R. Rodriguez 		if (res < 0)
463203c4805SLuis R. Rodriguez 			return res;
464203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "select=", 7) == 0) {
465203c4805SLuis R. Rodriguez 		int res = select_wiphy(sc, buf + 7);
466203c4805SLuis R. Rodriguez 		if (res < 0)
467203c4805SLuis R. Rodriguez 			return res;
468203c4805SLuis R. Rodriguez 	} else if (strncmp(buf, "schedule=", 9) == 0) {
469203c4805SLuis R. Rodriguez 		int res = schedule_wiphy(sc, buf + 9);
470203c4805SLuis R. Rodriguez 		if (res < 0)
471203c4805SLuis R. Rodriguez 			return res;
472203c4805SLuis R. Rodriguez 	} else
473203c4805SLuis R. Rodriguez 		return -EOPNOTSUPP;
474203c4805SLuis R. Rodriguez 
475203c4805SLuis R. Rodriguez 	return count;
476203c4805SLuis R. Rodriguez }
477203c4805SLuis R. Rodriguez 
478203c4805SLuis R. Rodriguez static const struct file_operations fops_wiphy = {
479203c4805SLuis R. Rodriguez 	.read = read_file_wiphy,
480203c4805SLuis R. Rodriguez 	.write = write_file_wiphy,
481203c4805SLuis R. Rodriguez 	.open = ath9k_debugfs_open,
482203c4805SLuis R. Rodriguez 	.owner = THIS_MODULE
483203c4805SLuis R. Rodriguez };
484203c4805SLuis R. Rodriguez 
485fec247c0SSujith #define PR(str, elem)							\
486fec247c0SSujith 	do {								\
487fec247c0SSujith 		len += snprintf(buf + len, size - len,			\
488fec247c0SSujith 				"%s%13u%11u%10u%10u\n", str,		\
489fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BE]].elem, \
490fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BK]].elem, \
491fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VI]].elem, \
492fec247c0SSujith 		sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VO]].elem); \
493fec247c0SSujith } while(0)
494fec247c0SSujith 
495fec247c0SSujith static ssize_t read_file_xmit(struct file *file, char __user *user_buf,
496fec247c0SSujith 			      size_t count, loff_t *ppos)
497fec247c0SSujith {
498fec247c0SSujith 	struct ath_softc *sc = file->private_data;
499fec247c0SSujith 	char *buf;
500fec247c0SSujith 	unsigned int len = 0, size = 2048;
501fec247c0SSujith 	ssize_t retval = 0;
502fec247c0SSujith 
503fec247c0SSujith 	buf = kzalloc(size, GFP_KERNEL);
504fec247c0SSujith 	if (buf == NULL)
505fec247c0SSujith 		return 0;
506fec247c0SSujith 
507fec247c0SSujith 	len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO");
508fec247c0SSujith 
509fec247c0SSujith 	PR("MPDUs Queued:    ", queued);
510fec247c0SSujith 	PR("MPDUs Completed: ", completed);
511fec247c0SSujith 	PR("Aggregates:      ", a_aggr);
512fec247c0SSujith 	PR("AMPDUs Queued:   ", a_queued);
513fec247c0SSujith 	PR("AMPDUs Completed:", a_completed);
514fec247c0SSujith 	PR("AMPDUs Retried:  ", a_retries);
515fec247c0SSujith 	PR("AMPDUs XRetried: ", a_xretries);
516fec247c0SSujith 	PR("FIFO Underrun:   ", fifo_underrun);
517fec247c0SSujith 	PR("TXOP Exceeded:   ", xtxop);
518fec247c0SSujith 	PR("TXTIMER Expiry:  ", timer_exp);
519fec247c0SSujith 	PR("DESC CFG Error:  ", desc_cfg_err);
520fec247c0SSujith 	PR("DATA Underrun:   ", data_underrun);
521fec247c0SSujith 	PR("DELIM Underrun:  ", delim_underrun);
522fec247c0SSujith 
523fec247c0SSujith 	retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
524fec247c0SSujith 	kfree(buf);
525fec247c0SSujith 
526fec247c0SSujith 	return retval;
527fec247c0SSujith }
528fec247c0SSujith 
529fec247c0SSujith void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq,
530fec247c0SSujith 		       struct ath_buf *bf)
531fec247c0SSujith {
532fec247c0SSujith 	struct ath_desc *ds = bf->bf_desc;
533fec247c0SSujith 
534fec247c0SSujith 	if (bf_isampdu(bf)) {
535fec247c0SSujith 		if (bf_isxretried(bf))
536fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_xretries);
537fec247c0SSujith 		else
538fec247c0SSujith 			TX_STAT_INC(txq->axq_qnum, a_completed);
539fec247c0SSujith 	} else {
540fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, completed);
541fec247c0SSujith 	}
542fec247c0SSujith 
543fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_FIFO)
544fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, fifo_underrun);
545fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_XTXOP)
546fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, xtxop);
547fec247c0SSujith 	if (ds->ds_txstat.ts_status & ATH9K_TXERR_TIMER_EXPIRED)
548fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, timer_exp);
549fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DESC_CFG_ERR)
550fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, desc_cfg_err);
551fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DATA_UNDERRUN)
552fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, data_underrun);
553fec247c0SSujith 	if (ds->ds_txstat.ts_flags & ATH9K_TX_DELIM_UNDERRUN)
554fec247c0SSujith 		TX_STAT_INC(txq->axq_qnum, delim_underrun);
555fec247c0SSujith }
556fec247c0SSujith 
557fec247c0SSujith static const struct file_operations fops_xmit = {
558fec247c0SSujith 	.read = read_file_xmit,
559fec247c0SSujith 	.open = ath9k_debugfs_open,
560fec247c0SSujith 	.owner = THIS_MODULE
561fec247c0SSujith };
562203c4805SLuis R. Rodriguez 
5634d6b228dSLuis R. Rodriguez int ath9k_init_debug(struct ath_hw *ah)
564203c4805SLuis R. Rodriguez {
5654d6b228dSLuis R. Rodriguez 	struct ath_softc *sc = ah->ah_sc;
566c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
5674d6b228dSLuis R. Rodriguez 
568c46917bbSLuis R. Rodriguez 	common->debug_mask = ath9k_debug;
569203c4805SLuis R. Rodriguez 
570203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
571203c4805SLuis R. Rodriguez 		return -ENOENT;
572203c4805SLuis R. Rodriguez 
573203c4805SLuis R. Rodriguez 	sc->debug.debugfs_phy = debugfs_create_dir(wiphy_name(sc->hw->wiphy),
574203c4805SLuis R. Rodriguez 						      ath9k_debugfs_root);
575203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_phy)
576203c4805SLuis R. Rodriguez 		goto err;
577203c4805SLuis R. Rodriguez 
5782493928eSJeff Hansen 	sc->debug.debugfs_debug = debugfs_create_file("debug",
5799d49e861SJiri Slaby 		S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc, &fops_debug);
5802493928eSJeff Hansen 	if (!sc->debug.debugfs_debug)
5812493928eSJeff Hansen 		goto err;
5822493928eSJeff Hansen 
5839d49e861SJiri Slaby 	sc->debug.debugfs_dma = debugfs_create_file("dma", S_IRUSR,
584203c4805SLuis R. Rodriguez 				       sc->debug.debugfs_phy, sc, &fops_dma);
585203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_dma)
586203c4805SLuis R. Rodriguez 		goto err;
587203c4805SLuis R. Rodriguez 
588203c4805SLuis R. Rodriguez 	sc->debug.debugfs_interrupt = debugfs_create_file("interrupt",
5899d49e861SJiri Slaby 						     S_IRUSR,
590203c4805SLuis R. Rodriguez 						     sc->debug.debugfs_phy,
591203c4805SLuis R. Rodriguez 						     sc, &fops_interrupt);
592203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_interrupt)
593203c4805SLuis R. Rodriguez 		goto err;
594203c4805SLuis R. Rodriguez 
595203c4805SLuis R. Rodriguez 	sc->debug.debugfs_rcstat = debugfs_create_file("rcstat",
5969d49e861SJiri Slaby 						  S_IRUSR,
597203c4805SLuis R. Rodriguez 						  sc->debug.debugfs_phy,
598203c4805SLuis R. Rodriguez 						  sc, &fops_rcstat);
599203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_rcstat)
600203c4805SLuis R. Rodriguez 		goto err;
601203c4805SLuis R. Rodriguez 
602203c4805SLuis R. Rodriguez 	sc->debug.debugfs_wiphy = debugfs_create_file(
6039d49e861SJiri Slaby 		"wiphy", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc,
604203c4805SLuis R. Rodriguez 		&fops_wiphy);
605203c4805SLuis R. Rodriguez 	if (!sc->debug.debugfs_wiphy)
606203c4805SLuis R. Rodriguez 		goto err;
607203c4805SLuis R. Rodriguez 
608fec247c0SSujith 	sc->debug.debugfs_xmit = debugfs_create_file("xmit",
609fec247c0SSujith 						     S_IRUSR,
610fec247c0SSujith 						     sc->debug.debugfs_phy,
611fec247c0SSujith 						     sc, &fops_xmit);
612fec247c0SSujith 	if (!sc->debug.debugfs_xmit)
613fec247c0SSujith 		goto err;
614fec247c0SSujith 
615203c4805SLuis R. Rodriguez 	return 0;
616203c4805SLuis R. Rodriguez err:
6174d6b228dSLuis R. Rodriguez 	ath9k_exit_debug(ah);
618203c4805SLuis R. Rodriguez 	return -ENOMEM;
619203c4805SLuis R. Rodriguez }
620203c4805SLuis R. Rodriguez 
6214d6b228dSLuis R. Rodriguez void ath9k_exit_debug(struct ath_hw *ah)
622203c4805SLuis R. Rodriguez {
6234d6b228dSLuis R. Rodriguez 	struct ath_softc *sc = ah->ah_sc;
6244d6b228dSLuis R. Rodriguez 
625fec247c0SSujith 	debugfs_remove(sc->debug.debugfs_xmit);
626203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_wiphy);
627203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_rcstat);
628203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_interrupt);
629203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_dma);
6302493928eSJeff Hansen 	debugfs_remove(sc->debug.debugfs_debug);
631203c4805SLuis R. Rodriguez 	debugfs_remove(sc->debug.debugfs_phy);
632203c4805SLuis R. Rodriguez }
633203c4805SLuis R. Rodriguez 
634203c4805SLuis R. Rodriguez int ath9k_debug_create_root(void)
635203c4805SLuis R. Rodriguez {
636203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
637203c4805SLuis R. Rodriguez 	if (!ath9k_debugfs_root)
638203c4805SLuis R. Rodriguez 		return -ENOENT;
639203c4805SLuis R. Rodriguez 
640203c4805SLuis R. Rodriguez 	return 0;
641203c4805SLuis R. Rodriguez }
642203c4805SLuis R. Rodriguez 
643203c4805SLuis R. Rodriguez void ath9k_debug_remove_root(void)
644203c4805SLuis R. Rodriguez {
645203c4805SLuis R. Rodriguez 	debugfs_remove(ath9k_debugfs_root);
646203c4805SLuis R. Rodriguez 	ath9k_debugfs_root = NULL;
647203c4805SLuis R. Rodriguez }
648