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*c46917bbSLuis R. Rodriguez static unsigned int ath9k_debug = ATH_DBG_DEFAULT; 22203c4805SLuis R. Rodriguez module_param_named(debug, ath9k_debug, uint, 0); 23203c4805SLuis R. Rodriguez 24203c4805SLuis R. Rodriguez static struct dentry *ath9k_debugfs_root; 25203c4805SLuis R. Rodriguez 26203c4805SLuis R. Rodriguez static int ath9k_debugfs_open(struct inode *inode, struct file *file) 27203c4805SLuis R. Rodriguez { 28203c4805SLuis R. Rodriguez file->private_data = inode->i_private; 29203c4805SLuis R. Rodriguez return 0; 30203c4805SLuis R. Rodriguez } 31203c4805SLuis R. Rodriguez 322493928eSJeff Hansen static ssize_t read_file_debug(struct file *file, char __user *user_buf, 332493928eSJeff Hansen size_t count, loff_t *ppos) 342493928eSJeff Hansen { 352493928eSJeff Hansen struct ath_softc *sc = file->private_data; 36*c46917bbSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 372493928eSJeff Hansen char buf[32]; 38581f725cSVasanthakumar Thiagarajan unsigned int len; 39581f725cSVasanthakumar Thiagarajan 40*c46917bbSLuis R. Rodriguez len = snprintf(buf, sizeof(buf), "0x%08x\n", common->debug_mask); 412493928eSJeff Hansen return simple_read_from_buffer(user_buf, count, ppos, buf, len); 422493928eSJeff Hansen } 432493928eSJeff Hansen 442493928eSJeff Hansen static ssize_t write_file_debug(struct file *file, const char __user *user_buf, 452493928eSJeff Hansen size_t count, loff_t *ppos) 462493928eSJeff Hansen { 472493928eSJeff Hansen struct ath_softc *sc = file->private_data; 48*c46917bbSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 492493928eSJeff Hansen unsigned long mask; 502493928eSJeff Hansen char buf[32]; 51581f725cSVasanthakumar Thiagarajan ssize_t len; 52581f725cSVasanthakumar Thiagarajan 53581f725cSVasanthakumar Thiagarajan len = min(count, sizeof(buf) - 1); 54581f725cSVasanthakumar Thiagarajan if (copy_from_user(buf, user_buf, len)) 55581f725cSVasanthakumar Thiagarajan return -EINVAL; 56581f725cSVasanthakumar Thiagarajan 57581f725cSVasanthakumar Thiagarajan buf[len] = '\0'; 58581f725cSVasanthakumar Thiagarajan if (strict_strtoul(buf, 0, &mask)) 59581f725cSVasanthakumar Thiagarajan return -EINVAL; 60581f725cSVasanthakumar Thiagarajan 61*c46917bbSLuis R. Rodriguez common->debug_mask = mask; 622493928eSJeff Hansen return count; 632493928eSJeff Hansen } 642493928eSJeff Hansen 652493928eSJeff Hansen static const struct file_operations fops_debug = { 662493928eSJeff Hansen .read = read_file_debug, 672493928eSJeff Hansen .write = write_file_debug, 682493928eSJeff Hansen .open = ath9k_debugfs_open, 692493928eSJeff Hansen .owner = THIS_MODULE 702493928eSJeff Hansen }; 712493928eSJeff Hansen 72203c4805SLuis R. Rodriguez static ssize_t read_file_dma(struct file *file, char __user *user_buf, 73203c4805SLuis R. Rodriguez size_t count, loff_t *ppos) 74203c4805SLuis R. Rodriguez { 75203c4805SLuis R. Rodriguez struct ath_softc *sc = file->private_data; 76203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 77203c4805SLuis R. Rodriguez char buf[1024]; 78203c4805SLuis R. Rodriguez unsigned int len = 0; 79203c4805SLuis R. Rodriguez u32 val[ATH9K_NUM_DMA_DEBUG_REGS]; 80203c4805SLuis R. Rodriguez int i, qcuOffset = 0, dcuOffset = 0; 81203c4805SLuis R. Rodriguez u32 *qcuBase = &val[0], *dcuBase = &val[4]; 82203c4805SLuis R. Rodriguez 837cf4a2e7SSujith ath9k_ps_wakeup(sc); 847cf4a2e7SSujith 85203c4805SLuis R. Rodriguez REG_WRITE(ah, AR_MACMISC, 86203c4805SLuis R. Rodriguez ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) | 87203c4805SLuis R. Rodriguez (AR_MACMISC_MISC_OBS_BUS_1 << 88203c4805SLuis R. Rodriguez AR_MACMISC_MISC_OBS_BUS_MSB_S))); 89203c4805SLuis R. Rodriguez 90203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 91203c4805SLuis R. Rodriguez "Raw DMA Debug values:\n"); 92203c4805SLuis R. Rodriguez 93203c4805SLuis R. Rodriguez for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) { 94203c4805SLuis R. Rodriguez if (i % 4 == 0) 95203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, "\n"); 96203c4805SLuis R. Rodriguez 97203c4805SLuis R. Rodriguez val[i] = REG_READ(ah, AR_DMADBG_0 + (i * sizeof(u32))); 98203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, "%d: %08x ", 99203c4805SLuis R. Rodriguez i, val[i]); 100203c4805SLuis R. Rodriguez } 101203c4805SLuis R. Rodriguez 102203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, "\n\n"); 103203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 104203c4805SLuis R. Rodriguez "Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n"); 105203c4805SLuis R. Rodriguez 106203c4805SLuis R. Rodriguez for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) { 107203c4805SLuis R. Rodriguez if (i == 8) { 108203c4805SLuis R. Rodriguez qcuOffset = 0; 109203c4805SLuis R. Rodriguez qcuBase++; 110203c4805SLuis R. Rodriguez } 111203c4805SLuis R. Rodriguez 112203c4805SLuis R. Rodriguez if (i == 6) { 113203c4805SLuis R. Rodriguez dcuOffset = 0; 114203c4805SLuis R. Rodriguez dcuBase++; 115203c4805SLuis R. Rodriguez } 116203c4805SLuis R. Rodriguez 117203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 118203c4805SLuis R. Rodriguez "%2d %2x %1x %2x %2x\n", 119203c4805SLuis R. Rodriguez i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset, 120203c4805SLuis R. Rodriguez (*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3), 121203c4805SLuis R. Rodriguez val[2] & (0x7 << (i * 3)) >> (i * 3), 122203c4805SLuis R. Rodriguez (*dcuBase & (0x1f << dcuOffset)) >> dcuOffset); 123203c4805SLuis R. Rodriguez } 124203c4805SLuis R. Rodriguez 125203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, "\n"); 126203c4805SLuis R. Rodriguez 127203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 128203c4805SLuis R. Rodriguez "qcu_stitch state: %2x qcu_fetch state: %2x\n", 129203c4805SLuis R. Rodriguez (val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22); 130203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 131203c4805SLuis R. Rodriguez "qcu_complete state: %2x dcu_complete state: %2x\n", 132203c4805SLuis R. Rodriguez (val[3] & 0x1c000000) >> 26, (val[6] & 0x3)); 133203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 134203c4805SLuis R. Rodriguez "dcu_arb state: %2x dcu_fp state: %2x\n", 135203c4805SLuis R. Rodriguez (val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27); 136203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 137203c4805SLuis R. Rodriguez "chan_idle_dur: %3d chan_idle_dur_valid: %1d\n", 138203c4805SLuis R. Rodriguez (val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10); 139203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 140203c4805SLuis R. Rodriguez "txfifo_valid_0: %1d txfifo_valid_1: %1d\n", 141203c4805SLuis R. Rodriguez (val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12); 142203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 143203c4805SLuis R. Rodriguez "txfifo_dcu_num_0: %2d txfifo_dcu_num_1: %2d\n", 144203c4805SLuis R. Rodriguez (val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17); 145203c4805SLuis R. Rodriguez 146203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, "pcu observe: 0x%x \n", 147203c4805SLuis R. Rodriguez REG_READ(ah, AR_OBS_BUS_1)); 148203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 149203c4805SLuis R. Rodriguez "AR_CR: 0x%x \n", REG_READ(ah, AR_CR)); 150203c4805SLuis R. Rodriguez 1517cf4a2e7SSujith ath9k_ps_restore(sc); 1527cf4a2e7SSujith 153203c4805SLuis R. Rodriguez return simple_read_from_buffer(user_buf, count, ppos, buf, len); 154203c4805SLuis R. Rodriguez } 155203c4805SLuis R. Rodriguez 156203c4805SLuis R. Rodriguez static const struct file_operations fops_dma = { 157203c4805SLuis R. Rodriguez .read = read_file_dma, 158203c4805SLuis R. Rodriguez .open = ath9k_debugfs_open, 159203c4805SLuis R. Rodriguez .owner = THIS_MODULE 160203c4805SLuis R. Rodriguez }; 161203c4805SLuis R. Rodriguez 162203c4805SLuis R. Rodriguez 163203c4805SLuis R. Rodriguez void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status) 164203c4805SLuis R. Rodriguez { 165203c4805SLuis R. Rodriguez if (status) 166203c4805SLuis R. Rodriguez sc->debug.stats.istats.total++; 167203c4805SLuis R. Rodriguez if (status & ATH9K_INT_RX) 168203c4805SLuis R. Rodriguez sc->debug.stats.istats.rxok++; 169203c4805SLuis R. Rodriguez if (status & ATH9K_INT_RXEOL) 170203c4805SLuis R. Rodriguez sc->debug.stats.istats.rxeol++; 171203c4805SLuis R. Rodriguez if (status & ATH9K_INT_RXORN) 172203c4805SLuis R. Rodriguez sc->debug.stats.istats.rxorn++; 173203c4805SLuis R. Rodriguez if (status & ATH9K_INT_TX) 174203c4805SLuis R. Rodriguez sc->debug.stats.istats.txok++; 175203c4805SLuis R. Rodriguez if (status & ATH9K_INT_TXURN) 176203c4805SLuis R. Rodriguez sc->debug.stats.istats.txurn++; 177203c4805SLuis R. Rodriguez if (status & ATH9K_INT_MIB) 178203c4805SLuis R. Rodriguez sc->debug.stats.istats.mib++; 179203c4805SLuis R. Rodriguez if (status & ATH9K_INT_RXPHY) 180203c4805SLuis R. Rodriguez sc->debug.stats.istats.rxphyerr++; 181203c4805SLuis R. Rodriguez if (status & ATH9K_INT_RXKCM) 182203c4805SLuis R. Rodriguez sc->debug.stats.istats.rx_keycache_miss++; 183203c4805SLuis R. Rodriguez if (status & ATH9K_INT_SWBA) 184203c4805SLuis R. Rodriguez sc->debug.stats.istats.swba++; 185203c4805SLuis R. Rodriguez if (status & ATH9K_INT_BMISS) 186203c4805SLuis R. Rodriguez sc->debug.stats.istats.bmiss++; 187203c4805SLuis R. Rodriguez if (status & ATH9K_INT_BNR) 188203c4805SLuis R. Rodriguez sc->debug.stats.istats.bnr++; 189203c4805SLuis R. Rodriguez if (status & ATH9K_INT_CST) 190203c4805SLuis R. Rodriguez sc->debug.stats.istats.cst++; 191203c4805SLuis R. Rodriguez if (status & ATH9K_INT_GTT) 192203c4805SLuis R. Rodriguez sc->debug.stats.istats.gtt++; 193203c4805SLuis R. Rodriguez if (status & ATH9K_INT_TIM) 194203c4805SLuis R. Rodriguez sc->debug.stats.istats.tim++; 195203c4805SLuis R. Rodriguez if (status & ATH9K_INT_CABEND) 196203c4805SLuis R. Rodriguez sc->debug.stats.istats.cabend++; 197203c4805SLuis R. Rodriguez if (status & ATH9K_INT_DTIMSYNC) 198203c4805SLuis R. Rodriguez sc->debug.stats.istats.dtimsync++; 199203c4805SLuis R. Rodriguez if (status & ATH9K_INT_DTIM) 200203c4805SLuis R. Rodriguez sc->debug.stats.istats.dtim++; 201203c4805SLuis R. Rodriguez } 202203c4805SLuis R. Rodriguez 203203c4805SLuis R. Rodriguez static ssize_t read_file_interrupt(struct file *file, char __user *user_buf, 204203c4805SLuis R. Rodriguez size_t count, loff_t *ppos) 205203c4805SLuis R. Rodriguez { 206203c4805SLuis R. Rodriguez struct ath_softc *sc = file->private_data; 207203c4805SLuis R. Rodriguez char buf[512]; 208203c4805SLuis R. Rodriguez unsigned int len = 0; 209203c4805SLuis R. Rodriguez 210203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 211203c4805SLuis R. Rodriguez "%8s: %10u\n", "RX", sc->debug.stats.istats.rxok); 212203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 213203c4805SLuis R. Rodriguez "%8s: %10u\n", "RXEOL", sc->debug.stats.istats.rxeol); 214203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 215203c4805SLuis R. Rodriguez "%8s: %10u\n", "RXORN", sc->debug.stats.istats.rxorn); 216203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 217203c4805SLuis R. Rodriguez "%8s: %10u\n", "TX", sc->debug.stats.istats.txok); 218203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 219203c4805SLuis R. Rodriguez "%8s: %10u\n", "TXURN", sc->debug.stats.istats.txurn); 220203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 221203c4805SLuis R. Rodriguez "%8s: %10u\n", "MIB", sc->debug.stats.istats.mib); 222203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 223203c4805SLuis R. Rodriguez "%8s: %10u\n", "RXPHY", sc->debug.stats.istats.rxphyerr); 224203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 225203c4805SLuis R. Rodriguez "%8s: %10u\n", "RXKCM", sc->debug.stats.istats.rx_keycache_miss); 226203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 227203c4805SLuis R. Rodriguez "%8s: %10u\n", "SWBA", sc->debug.stats.istats.swba); 228203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 229203c4805SLuis R. Rodriguez "%8s: %10u\n", "BMISS", sc->debug.stats.istats.bmiss); 230203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 231203c4805SLuis R. Rodriguez "%8s: %10u\n", "BNR", sc->debug.stats.istats.bnr); 232203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 233203c4805SLuis R. Rodriguez "%8s: %10u\n", "CST", sc->debug.stats.istats.cst); 234203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 235203c4805SLuis R. Rodriguez "%8s: %10u\n", "GTT", sc->debug.stats.istats.gtt); 236203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 237203c4805SLuis R. Rodriguez "%8s: %10u\n", "TIM", sc->debug.stats.istats.tim); 238203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 239203c4805SLuis R. Rodriguez "%8s: %10u\n", "CABEND", sc->debug.stats.istats.cabend); 240203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 241203c4805SLuis R. Rodriguez "%8s: %10u\n", "DTIMSYNC", sc->debug.stats.istats.dtimsync); 242203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 243203c4805SLuis R. Rodriguez "%8s: %10u\n", "DTIM", sc->debug.stats.istats.dtim); 244203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 245203c4805SLuis R. Rodriguez "%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total); 246203c4805SLuis R. Rodriguez 247203c4805SLuis R. Rodriguez return simple_read_from_buffer(user_buf, count, ppos, buf, len); 248203c4805SLuis R. Rodriguez } 249203c4805SLuis R. Rodriguez 250203c4805SLuis R. Rodriguez static const struct file_operations fops_interrupt = { 251203c4805SLuis R. Rodriguez .read = read_file_interrupt, 252203c4805SLuis R. Rodriguez .open = ath9k_debugfs_open, 253203c4805SLuis R. Rodriguez .owner = THIS_MODULE 254203c4805SLuis R. Rodriguez }; 255203c4805SLuis R. Rodriguez 256bedf087aSJeff Hansen void ath_debug_stat_rc(struct ath_softc *sc, struct sk_buff *skb) 257203c4805SLuis R. Rodriguez { 258203c4805SLuis R. Rodriguez struct ath_tx_info_priv *tx_info_priv = NULL; 259203c4805SLuis R. Rodriguez struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); 260203c4805SLuis R. Rodriguez struct ieee80211_tx_rate *rates = tx_info->status.rates; 261203c4805SLuis R. Rodriguez int final_ts_idx, idx; 262bedf087aSJeff Hansen struct ath_rc_stats *stats; 263203c4805SLuis R. Rodriguez 264203c4805SLuis R. Rodriguez tx_info_priv = ATH_TX_INFO_PRIV(tx_info); 265203c4805SLuis R. Rodriguez final_ts_idx = tx_info_priv->tx.ts_rateindex; 266203c4805SLuis R. Rodriguez idx = rates[final_ts_idx].idx; 267bedf087aSJeff Hansen stats = &sc->debug.stats.rcstats[idx]; 268bedf087aSJeff Hansen stats->success++; 269203c4805SLuis R. Rodriguez } 270203c4805SLuis R. Rodriguez 271203c4805SLuis R. Rodriguez void ath_debug_stat_retries(struct ath_softc *sc, int rix, 272203c4805SLuis R. Rodriguez int xretries, int retries, u8 per) 273203c4805SLuis R. Rodriguez { 274bedf087aSJeff Hansen struct ath_rc_stats *stats = &sc->debug.stats.rcstats[rix]; 275203c4805SLuis R. Rodriguez 276bedf087aSJeff Hansen stats->xretries += xretries; 277bedf087aSJeff Hansen stats->retries += retries; 278bedf087aSJeff Hansen stats->per = per; 279203c4805SLuis R. Rodriguez } 280203c4805SLuis R. Rodriguez 281203c4805SLuis R. Rodriguez static ssize_t read_file_rcstat(struct file *file, char __user *user_buf, 282203c4805SLuis R. Rodriguez size_t count, loff_t *ppos) 283203c4805SLuis R. Rodriguez { 284203c4805SLuis R. Rodriguez struct ath_softc *sc = file->private_data; 285bedf087aSJeff Hansen char *buf; 286bedf087aSJeff Hansen unsigned int len = 0, max; 287bedf087aSJeff Hansen int i = 0; 288bedf087aSJeff Hansen ssize_t retval; 289203c4805SLuis R. Rodriguez 290203c4805SLuis R. Rodriguez if (sc->cur_rate_table == NULL) 291203c4805SLuis R. Rodriguez return 0; 292203c4805SLuis R. Rodriguez 293bedf087aSJeff Hansen max = 80 + sc->cur_rate_table->rate_cnt * 64; 294bedf087aSJeff Hansen buf = kmalloc(max + 1, GFP_KERNEL); 295bedf087aSJeff Hansen if (buf == NULL) 296bedf087aSJeff Hansen return 0; 297bedf087aSJeff Hansen buf[max] = 0; 298bedf087aSJeff Hansen 299bedf087aSJeff Hansen len += sprintf(buf, "%5s %15s %8s %9s %3s\n\n", "Rate", "Success", 300bedf087aSJeff Hansen "Retries", "XRetries", "PER"); 301bedf087aSJeff Hansen 302bedf087aSJeff Hansen for (i = 0; i < sc->cur_rate_table->rate_cnt; i++) { 303bedf087aSJeff Hansen u32 ratekbps = sc->cur_rate_table->info[i].ratekbps; 304bedf087aSJeff Hansen struct ath_rc_stats *stats = &sc->debug.stats.rcstats[i]; 305bedf087aSJeff Hansen 306bedf087aSJeff Hansen len += snprintf(buf + len, max - len, 307bedf087aSJeff Hansen "%3u.%d: %8u %8u %8u %8u\n", ratekbps / 1000, 308bedf087aSJeff Hansen (ratekbps % 1000) / 100, stats->success, 309bedf087aSJeff Hansen stats->retries, stats->xretries, 310bedf087aSJeff Hansen stats->per); 311bedf087aSJeff Hansen } 312bedf087aSJeff Hansen 313bedf087aSJeff Hansen retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); 314bedf087aSJeff Hansen kfree(buf); 315bedf087aSJeff Hansen return retval; 316203c4805SLuis R. Rodriguez } 317203c4805SLuis R. Rodriguez 318203c4805SLuis R. Rodriguez static const struct file_operations fops_rcstat = { 319203c4805SLuis R. Rodriguez .read = read_file_rcstat, 320203c4805SLuis R. Rodriguez .open = ath9k_debugfs_open, 321203c4805SLuis R. Rodriguez .owner = THIS_MODULE 322203c4805SLuis R. Rodriguez }; 323203c4805SLuis R. Rodriguez 324203c4805SLuis R. Rodriguez static const char * ath_wiphy_state_str(enum ath_wiphy_state state) 325203c4805SLuis R. Rodriguez { 326203c4805SLuis R. Rodriguez switch (state) { 327203c4805SLuis R. Rodriguez case ATH_WIPHY_INACTIVE: 328203c4805SLuis R. Rodriguez return "INACTIVE"; 329203c4805SLuis R. Rodriguez case ATH_WIPHY_ACTIVE: 330203c4805SLuis R. Rodriguez return "ACTIVE"; 331203c4805SLuis R. Rodriguez case ATH_WIPHY_PAUSING: 332203c4805SLuis R. Rodriguez return "PAUSING"; 333203c4805SLuis R. Rodriguez case ATH_WIPHY_PAUSED: 334203c4805SLuis R. Rodriguez return "PAUSED"; 335203c4805SLuis R. Rodriguez case ATH_WIPHY_SCAN: 336203c4805SLuis R. Rodriguez return "SCAN"; 337203c4805SLuis R. Rodriguez } 338203c4805SLuis R. Rodriguez return "?"; 339203c4805SLuis R. Rodriguez } 340203c4805SLuis R. Rodriguez 341203c4805SLuis R. Rodriguez static ssize_t read_file_wiphy(struct file *file, char __user *user_buf, 342203c4805SLuis R. Rodriguez size_t count, loff_t *ppos) 343203c4805SLuis R. Rodriguez { 344203c4805SLuis R. Rodriguez struct ath_softc *sc = file->private_data; 345203c4805SLuis R. Rodriguez char buf[512]; 346203c4805SLuis R. Rodriguez unsigned int len = 0; 347203c4805SLuis R. Rodriguez int i; 348203c4805SLuis R. Rodriguez u8 addr[ETH_ALEN]; 349203c4805SLuis R. Rodriguez 350203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 351203c4805SLuis R. Rodriguez "primary: %s (%s chan=%d ht=%d)\n", 352203c4805SLuis R. Rodriguez wiphy_name(sc->pri_wiphy->hw->wiphy), 353203c4805SLuis R. Rodriguez ath_wiphy_state_str(sc->pri_wiphy->state), 354203c4805SLuis R. Rodriguez sc->pri_wiphy->chan_idx, sc->pri_wiphy->chan_is_ht); 355203c4805SLuis R. Rodriguez for (i = 0; i < sc->num_sec_wiphy; i++) { 356203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = sc->sec_wiphy[i]; 357203c4805SLuis R. Rodriguez if (aphy == NULL) 358203c4805SLuis R. Rodriguez continue; 359203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 360203c4805SLuis R. Rodriguez "secondary: %s (%s chan=%d ht=%d)\n", 361203c4805SLuis R. Rodriguez wiphy_name(aphy->hw->wiphy), 362203c4805SLuis R. Rodriguez ath_wiphy_state_str(aphy->state), 363203c4805SLuis R. Rodriguez aphy->chan_idx, aphy->chan_is_ht); 364203c4805SLuis R. Rodriguez } 365203c4805SLuis R. Rodriguez 366203c4805SLuis R. Rodriguez put_unaligned_le32(REG_READ(sc->sc_ah, AR_STA_ID0), addr); 367203c4805SLuis R. Rodriguez put_unaligned_le16(REG_READ(sc->sc_ah, AR_STA_ID1) & 0xffff, addr + 4); 368203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 369203c4805SLuis R. Rodriguez "addr: %pM\n", addr); 370203c4805SLuis R. Rodriguez put_unaligned_le32(REG_READ(sc->sc_ah, AR_BSSMSKL), addr); 371203c4805SLuis R. Rodriguez put_unaligned_le16(REG_READ(sc->sc_ah, AR_BSSMSKU) & 0xffff, addr + 4); 372203c4805SLuis R. Rodriguez len += snprintf(buf + len, sizeof(buf) - len, 373203c4805SLuis R. Rodriguez "addrmask: %pM\n", addr); 374203c4805SLuis R. Rodriguez 375203c4805SLuis R. Rodriguez return simple_read_from_buffer(user_buf, count, ppos, buf, len); 376203c4805SLuis R. Rodriguez } 377203c4805SLuis R. Rodriguez 378203c4805SLuis R. Rodriguez static struct ath_wiphy * get_wiphy(struct ath_softc *sc, const char *name) 379203c4805SLuis R. Rodriguez { 380203c4805SLuis R. Rodriguez int i; 381203c4805SLuis R. Rodriguez if (strcmp(name, wiphy_name(sc->pri_wiphy->hw->wiphy)) == 0) 382203c4805SLuis R. Rodriguez return sc->pri_wiphy; 383203c4805SLuis R. Rodriguez for (i = 0; i < sc->num_sec_wiphy; i++) { 384203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = sc->sec_wiphy[i]; 385203c4805SLuis R. Rodriguez if (aphy && strcmp(name, wiphy_name(aphy->hw->wiphy)) == 0) 386203c4805SLuis R. Rodriguez return aphy; 387203c4805SLuis R. Rodriguez } 388203c4805SLuis R. Rodriguez return NULL; 389203c4805SLuis R. Rodriguez } 390203c4805SLuis R. Rodriguez 391203c4805SLuis R. Rodriguez static int del_wiphy(struct ath_softc *sc, const char *name) 392203c4805SLuis R. Rodriguez { 393203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = get_wiphy(sc, name); 394203c4805SLuis R. Rodriguez if (!aphy) 395203c4805SLuis R. Rodriguez return -ENOENT; 396203c4805SLuis R. Rodriguez return ath9k_wiphy_del(aphy); 397203c4805SLuis R. Rodriguez } 398203c4805SLuis R. Rodriguez 399203c4805SLuis R. Rodriguez static int pause_wiphy(struct ath_softc *sc, const char *name) 400203c4805SLuis R. Rodriguez { 401203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = get_wiphy(sc, name); 402203c4805SLuis R. Rodriguez if (!aphy) 403203c4805SLuis R. Rodriguez return -ENOENT; 404203c4805SLuis R. Rodriguez return ath9k_wiphy_pause(aphy); 405203c4805SLuis R. Rodriguez } 406203c4805SLuis R. Rodriguez 407203c4805SLuis R. Rodriguez static int unpause_wiphy(struct ath_softc *sc, const char *name) 408203c4805SLuis R. Rodriguez { 409203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = get_wiphy(sc, name); 410203c4805SLuis R. Rodriguez if (!aphy) 411203c4805SLuis R. Rodriguez return -ENOENT; 412203c4805SLuis R. Rodriguez return ath9k_wiphy_unpause(aphy); 413203c4805SLuis R. Rodriguez } 414203c4805SLuis R. Rodriguez 415203c4805SLuis R. Rodriguez static int select_wiphy(struct ath_softc *sc, const char *name) 416203c4805SLuis R. Rodriguez { 417203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = get_wiphy(sc, name); 418203c4805SLuis R. Rodriguez if (!aphy) 419203c4805SLuis R. Rodriguez return -ENOENT; 420203c4805SLuis R. Rodriguez return ath9k_wiphy_select(aphy); 421203c4805SLuis R. Rodriguez } 422203c4805SLuis R. Rodriguez 423203c4805SLuis R. Rodriguez static int schedule_wiphy(struct ath_softc *sc, const char *msec) 424203c4805SLuis R. Rodriguez { 425203c4805SLuis R. Rodriguez ath9k_wiphy_set_scheduler(sc, simple_strtoul(msec, NULL, 0)); 426203c4805SLuis R. Rodriguez return 0; 427203c4805SLuis R. Rodriguez } 428203c4805SLuis R. Rodriguez 429203c4805SLuis R. Rodriguez static ssize_t write_file_wiphy(struct file *file, const char __user *user_buf, 430203c4805SLuis R. Rodriguez size_t count, loff_t *ppos) 431203c4805SLuis R. Rodriguez { 432203c4805SLuis R. Rodriguez struct ath_softc *sc = file->private_data; 433203c4805SLuis R. Rodriguez char buf[50]; 434203c4805SLuis R. Rodriguez size_t len; 435203c4805SLuis R. Rodriguez 436203c4805SLuis R. Rodriguez len = min(count, sizeof(buf) - 1); 437203c4805SLuis R. Rodriguez if (copy_from_user(buf, user_buf, len)) 438203c4805SLuis R. Rodriguez return -EFAULT; 439203c4805SLuis R. Rodriguez buf[len] = '\0'; 440203c4805SLuis R. Rodriguez if (len > 0 && buf[len - 1] == '\n') 441203c4805SLuis R. Rodriguez buf[len - 1] = '\0'; 442203c4805SLuis R. Rodriguez 443203c4805SLuis R. Rodriguez if (strncmp(buf, "add", 3) == 0) { 444203c4805SLuis R. Rodriguez int res = ath9k_wiphy_add(sc); 445203c4805SLuis R. Rodriguez if (res < 0) 446203c4805SLuis R. Rodriguez return res; 447203c4805SLuis R. Rodriguez } else if (strncmp(buf, "del=", 4) == 0) { 448203c4805SLuis R. Rodriguez int res = del_wiphy(sc, buf + 4); 449203c4805SLuis R. Rodriguez if (res < 0) 450203c4805SLuis R. Rodriguez return res; 451203c4805SLuis R. Rodriguez } else if (strncmp(buf, "pause=", 6) == 0) { 452203c4805SLuis R. Rodriguez int res = pause_wiphy(sc, buf + 6); 453203c4805SLuis R. Rodriguez if (res < 0) 454203c4805SLuis R. Rodriguez return res; 455203c4805SLuis R. Rodriguez } else if (strncmp(buf, "unpause=", 8) == 0) { 456203c4805SLuis R. Rodriguez int res = unpause_wiphy(sc, buf + 8); 457203c4805SLuis R. Rodriguez if (res < 0) 458203c4805SLuis R. Rodriguez return res; 459203c4805SLuis R. Rodriguez } else if (strncmp(buf, "select=", 7) == 0) { 460203c4805SLuis R. Rodriguez int res = select_wiphy(sc, buf + 7); 461203c4805SLuis R. Rodriguez if (res < 0) 462203c4805SLuis R. Rodriguez return res; 463203c4805SLuis R. Rodriguez } else if (strncmp(buf, "schedule=", 9) == 0) { 464203c4805SLuis R. Rodriguez int res = schedule_wiphy(sc, buf + 9); 465203c4805SLuis R. Rodriguez if (res < 0) 466203c4805SLuis R. Rodriguez return res; 467203c4805SLuis R. Rodriguez } else 468203c4805SLuis R. Rodriguez return -EOPNOTSUPP; 469203c4805SLuis R. Rodriguez 470203c4805SLuis R. Rodriguez return count; 471203c4805SLuis R. Rodriguez } 472203c4805SLuis R. Rodriguez 473203c4805SLuis R. Rodriguez static const struct file_operations fops_wiphy = { 474203c4805SLuis R. Rodriguez .read = read_file_wiphy, 475203c4805SLuis R. Rodriguez .write = write_file_wiphy, 476203c4805SLuis R. Rodriguez .open = ath9k_debugfs_open, 477203c4805SLuis R. Rodriguez .owner = THIS_MODULE 478203c4805SLuis R. Rodriguez }; 479203c4805SLuis R. Rodriguez 480fec247c0SSujith #define PR(str, elem) \ 481fec247c0SSujith do { \ 482fec247c0SSujith len += snprintf(buf + len, size - len, \ 483fec247c0SSujith "%s%13u%11u%10u%10u\n", str, \ 484fec247c0SSujith sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BE]].elem, \ 485fec247c0SSujith sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_BK]].elem, \ 486fec247c0SSujith sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VI]].elem, \ 487fec247c0SSujith sc->debug.stats.txstats[sc->tx.hwq_map[ATH9K_WME_AC_VO]].elem); \ 488fec247c0SSujith } while(0) 489fec247c0SSujith 490fec247c0SSujith static ssize_t read_file_xmit(struct file *file, char __user *user_buf, 491fec247c0SSujith size_t count, loff_t *ppos) 492fec247c0SSujith { 493fec247c0SSujith struct ath_softc *sc = file->private_data; 494fec247c0SSujith char *buf; 495fec247c0SSujith unsigned int len = 0, size = 2048; 496fec247c0SSujith ssize_t retval = 0; 497fec247c0SSujith 498fec247c0SSujith buf = kzalloc(size, GFP_KERNEL); 499fec247c0SSujith if (buf == NULL) 500fec247c0SSujith return 0; 501fec247c0SSujith 502fec247c0SSujith len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO"); 503fec247c0SSujith 504fec247c0SSujith PR("MPDUs Queued: ", queued); 505fec247c0SSujith PR("MPDUs Completed: ", completed); 506fec247c0SSujith PR("Aggregates: ", a_aggr); 507fec247c0SSujith PR("AMPDUs Queued: ", a_queued); 508fec247c0SSujith PR("AMPDUs Completed:", a_completed); 509fec247c0SSujith PR("AMPDUs Retried: ", a_retries); 510fec247c0SSujith PR("AMPDUs XRetried: ", a_xretries); 511fec247c0SSujith PR("FIFO Underrun: ", fifo_underrun); 512fec247c0SSujith PR("TXOP Exceeded: ", xtxop); 513fec247c0SSujith PR("TXTIMER Expiry: ", timer_exp); 514fec247c0SSujith PR("DESC CFG Error: ", desc_cfg_err); 515fec247c0SSujith PR("DATA Underrun: ", data_underrun); 516fec247c0SSujith PR("DELIM Underrun: ", delim_underrun); 517fec247c0SSujith 518fec247c0SSujith retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); 519fec247c0SSujith kfree(buf); 520fec247c0SSujith 521fec247c0SSujith return retval; 522fec247c0SSujith } 523fec247c0SSujith 524fec247c0SSujith void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq, 525fec247c0SSujith struct ath_buf *bf) 526fec247c0SSujith { 527fec247c0SSujith struct ath_desc *ds = bf->bf_desc; 528fec247c0SSujith 529fec247c0SSujith if (bf_isampdu(bf)) { 530fec247c0SSujith if (bf_isxretried(bf)) 531fec247c0SSujith TX_STAT_INC(txq->axq_qnum, a_xretries); 532fec247c0SSujith else 533fec247c0SSujith TX_STAT_INC(txq->axq_qnum, a_completed); 534fec247c0SSujith } else { 535fec247c0SSujith TX_STAT_INC(txq->axq_qnum, completed); 536fec247c0SSujith } 537fec247c0SSujith 538fec247c0SSujith if (ds->ds_txstat.ts_status & ATH9K_TXERR_FIFO) 539fec247c0SSujith TX_STAT_INC(txq->axq_qnum, fifo_underrun); 540fec247c0SSujith if (ds->ds_txstat.ts_status & ATH9K_TXERR_XTXOP) 541fec247c0SSujith TX_STAT_INC(txq->axq_qnum, xtxop); 542fec247c0SSujith if (ds->ds_txstat.ts_status & ATH9K_TXERR_TIMER_EXPIRED) 543fec247c0SSujith TX_STAT_INC(txq->axq_qnum, timer_exp); 544fec247c0SSujith if (ds->ds_txstat.ts_flags & ATH9K_TX_DESC_CFG_ERR) 545fec247c0SSujith TX_STAT_INC(txq->axq_qnum, desc_cfg_err); 546fec247c0SSujith if (ds->ds_txstat.ts_flags & ATH9K_TX_DATA_UNDERRUN) 547fec247c0SSujith TX_STAT_INC(txq->axq_qnum, data_underrun); 548fec247c0SSujith if (ds->ds_txstat.ts_flags & ATH9K_TX_DELIM_UNDERRUN) 549fec247c0SSujith TX_STAT_INC(txq->axq_qnum, delim_underrun); 550fec247c0SSujith } 551fec247c0SSujith 552fec247c0SSujith static const struct file_operations fops_xmit = { 553fec247c0SSujith .read = read_file_xmit, 554fec247c0SSujith .open = ath9k_debugfs_open, 555fec247c0SSujith .owner = THIS_MODULE 556fec247c0SSujith }; 557203c4805SLuis R. Rodriguez 5584d6b228dSLuis R. Rodriguez int ath9k_init_debug(struct ath_hw *ah) 559203c4805SLuis R. Rodriguez { 5604d6b228dSLuis R. Rodriguez struct ath_softc *sc = ah->ah_sc; 561*c46917bbSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 5624d6b228dSLuis R. Rodriguez 563*c46917bbSLuis R. Rodriguez common->debug_mask = ath9k_debug; 564203c4805SLuis R. Rodriguez 565203c4805SLuis R. Rodriguez if (!ath9k_debugfs_root) 566203c4805SLuis R. Rodriguez return -ENOENT; 567203c4805SLuis R. Rodriguez 568203c4805SLuis R. Rodriguez sc->debug.debugfs_phy = debugfs_create_dir(wiphy_name(sc->hw->wiphy), 569203c4805SLuis R. Rodriguez ath9k_debugfs_root); 570203c4805SLuis R. Rodriguez if (!sc->debug.debugfs_phy) 571203c4805SLuis R. Rodriguez goto err; 572203c4805SLuis R. Rodriguez 5732493928eSJeff Hansen sc->debug.debugfs_debug = debugfs_create_file("debug", 5749d49e861SJiri Slaby S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc, &fops_debug); 5752493928eSJeff Hansen if (!sc->debug.debugfs_debug) 5762493928eSJeff Hansen goto err; 5772493928eSJeff Hansen 5789d49e861SJiri Slaby sc->debug.debugfs_dma = debugfs_create_file("dma", S_IRUSR, 579203c4805SLuis R. Rodriguez sc->debug.debugfs_phy, sc, &fops_dma); 580203c4805SLuis R. Rodriguez if (!sc->debug.debugfs_dma) 581203c4805SLuis R. Rodriguez goto err; 582203c4805SLuis R. Rodriguez 583203c4805SLuis R. Rodriguez sc->debug.debugfs_interrupt = debugfs_create_file("interrupt", 5849d49e861SJiri Slaby S_IRUSR, 585203c4805SLuis R. Rodriguez sc->debug.debugfs_phy, 586203c4805SLuis R. Rodriguez sc, &fops_interrupt); 587203c4805SLuis R. Rodriguez if (!sc->debug.debugfs_interrupt) 588203c4805SLuis R. Rodriguez goto err; 589203c4805SLuis R. Rodriguez 590203c4805SLuis R. Rodriguez sc->debug.debugfs_rcstat = debugfs_create_file("rcstat", 5919d49e861SJiri Slaby S_IRUSR, 592203c4805SLuis R. Rodriguez sc->debug.debugfs_phy, 593203c4805SLuis R. Rodriguez sc, &fops_rcstat); 594203c4805SLuis R. Rodriguez if (!sc->debug.debugfs_rcstat) 595203c4805SLuis R. Rodriguez goto err; 596203c4805SLuis R. Rodriguez 597203c4805SLuis R. Rodriguez sc->debug.debugfs_wiphy = debugfs_create_file( 5989d49e861SJiri Slaby "wiphy", S_IRUSR | S_IWUSR, sc->debug.debugfs_phy, sc, 599203c4805SLuis R. Rodriguez &fops_wiphy); 600203c4805SLuis R. Rodriguez if (!sc->debug.debugfs_wiphy) 601203c4805SLuis R. Rodriguez goto err; 602203c4805SLuis R. Rodriguez 603fec247c0SSujith sc->debug.debugfs_xmit = debugfs_create_file("xmit", 604fec247c0SSujith S_IRUSR, 605fec247c0SSujith sc->debug.debugfs_phy, 606fec247c0SSujith sc, &fops_xmit); 607fec247c0SSujith if (!sc->debug.debugfs_xmit) 608fec247c0SSujith goto err; 609fec247c0SSujith 610203c4805SLuis R. Rodriguez return 0; 611203c4805SLuis R. Rodriguez err: 6124d6b228dSLuis R. Rodriguez ath9k_exit_debug(ah); 613203c4805SLuis R. Rodriguez return -ENOMEM; 614203c4805SLuis R. Rodriguez } 615203c4805SLuis R. Rodriguez 6164d6b228dSLuis R. Rodriguez void ath9k_exit_debug(struct ath_hw *ah) 617203c4805SLuis R. Rodriguez { 6184d6b228dSLuis R. Rodriguez struct ath_softc *sc = ah->ah_sc; 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