Branch data Line data Source code
1 : : /*
2 : : * Copyright (c) 2008-2011 Atheros Communications Inc.
3 : : *
4 : : * Permission to use, copy, modify, and/or distribute this software for any
5 : : * purpose with or without fee is hereby granted, provided that the above
6 : : * copyright notice and this permission notice appear in all copies.
7 : : *
8 : : * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 : : * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 : : * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 : : * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 : : * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 : : * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 : : * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 : : */
16 : :
17 : : #include <linux/slab.h>
18 : : #include <linux/vmalloc.h>
19 : : #include <linux/export.h>
20 : : #include <asm/unaligned.h>
21 : :
22 : : #include "ath9k.h"
23 : :
24 : : #define REG_WRITE_D(_ah, _reg, _val) \
25 : : ath9k_hw_common(_ah)->ops->write((_ah), (_val), (_reg))
26 : : #define REG_READ_D(_ah, _reg) \
27 : : ath9k_hw_common(_ah)->ops->read((_ah), (_reg))
28 : :
29 : 130 : void ath9k_debug_sync_cause(struct ath_softc *sc, u32 sync_cause)
30 : : {
31 [ + + ]: 130 : if (sync_cause)
32 : 62 : sc->debug.stats.istats.sync_cause_all++;
33 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_RTC_IRQ)
34 : 0 : sc->debug.stats.istats.sync_rtc_irq++;
35 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_MAC_IRQ)
36 : 0 : sc->debug.stats.istats.sync_mac_irq++;
37 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_EEPROM_ILLEGAL_ACCESS)
38 : 0 : sc->debug.stats.istats.eeprom_illegal_access++;
39 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_APB_TIMEOUT)
40 : 0 : sc->debug.stats.istats.apb_timeout++;
41 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_PCI_MODE_CONFLICT)
42 : 0 : sc->debug.stats.istats.pci_mode_conflict++;
43 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_HOST1_FATAL)
44 : 13 : sc->debug.stats.istats.host1_fatal++;
45 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_HOST1_PERR)
46 : 20 : sc->debug.stats.istats.host1_perr++;
47 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_TRCV_FIFO_PERR)
48 : 0 : sc->debug.stats.istats.trcv_fifo_perr++;
49 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_RADM_CPL_EP)
50 : 24 : sc->debug.stats.istats.radm_cpl_ep++;
51 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_RADM_CPL_DLLP_ABORT)
52 : 17 : sc->debug.stats.istats.radm_cpl_dllp_abort++;
53 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_RADM_CPL_TLP_ABORT)
54 : 12 : sc->debug.stats.istats.radm_cpl_tlp_abort++;
55 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_RADM_CPL_ECRC_ERR)
56 : 10 : sc->debug.stats.istats.radm_cpl_ecrc_err++;
57 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT)
58 : 23 : sc->debug.stats.istats.radm_cpl_timeout++;
59 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT)
60 : 16 : sc->debug.stats.istats.local_timeout++;
61 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_PM_ACCESS)
62 : 0 : sc->debug.stats.istats.pm_access++;
63 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_MAC_AWAKE)
64 : 0 : sc->debug.stats.istats.mac_awake++;
65 [ - + ]: 130 : if (sync_cause & AR_INTR_SYNC_MAC_ASLEEP)
66 : 0 : sc->debug.stats.istats.mac_asleep++;
67 [ + + ]: 130 : if (sync_cause & AR_INTR_SYNC_MAC_SLEEP_ACCESS)
68 : 28 : sc->debug.stats.istats.mac_sleep_access++;
69 : 130 : }
70 : :
71 : 0 : static ssize_t ath9k_debugfs_read_buf(struct file *file, char __user *user_buf,
72 : : size_t count, loff_t *ppos)
73 : : {
74 : 0 : u8 *buf = file->private_data;
75 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));
76 : : }
77 : :
78 : 0 : static int ath9k_debugfs_release_buf(struct inode *inode, struct file *file)
79 : : {
80 : 0 : vfree(file->private_data);
81 : 0 : return 0;
82 : : }
83 : :
84 : : #ifdef CONFIG_ATH_DEBUG
85 : :
86 : 0 : static ssize_t read_file_debug(struct file *file, char __user *user_buf,
87 : : size_t count, loff_t *ppos)
88 : : {
89 : 0 : struct ath_softc *sc = file->private_data;
90 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
91 : 0 : char buf[32];
92 : 0 : unsigned int len;
93 : :
94 : 0 : len = sprintf(buf, "0x%08x\n", common->debug_mask);
95 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
96 : : }
97 : :
98 : 0 : static ssize_t write_file_debug(struct file *file, const char __user *user_buf,
99 : : size_t count, loff_t *ppos)
100 : : {
101 : 0 : struct ath_softc *sc = file->private_data;
102 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
103 : 0 : unsigned long mask;
104 : 0 : char buf[32];
105 : 0 : ssize_t len;
106 : :
107 : 0 : len = min(count, sizeof(buf) - 1);
108 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
109 : : return -EFAULT;
110 : :
111 : 0 : buf[len] = '\0';
112 [ # # ]: 0 : if (kstrtoul(buf, 0, &mask))
113 : : return -EINVAL;
114 : :
115 : 0 : common->debug_mask = mask;
116 : 0 : return count;
117 : : }
118 : :
119 : : static const struct file_operations fops_debug = {
120 : : .read = read_file_debug,
121 : : .write = write_file_debug,
122 : : .open = simple_open,
123 : : .owner = THIS_MODULE,
124 : : .llseek = default_llseek,
125 : : };
126 : :
127 : : #endif
128 : :
129 : : #define DMA_BUF_LEN 1024
130 : :
131 : :
132 : 0 : static ssize_t read_file_ani(struct file *file, char __user *user_buf,
133 : : size_t count, loff_t *ppos)
134 : : {
135 : 0 : struct ath_softc *sc = file->private_data;
136 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
137 : 0 : struct ath_hw *ah = sc->sc_ah;
138 : 0 : unsigned int len = 0;
139 : 0 : const unsigned int size = 1024;
140 : 0 : ssize_t retval = 0;
141 : 0 : char *buf;
142 : 0 : int i;
143 : 0 : struct {
144 : : const char *name;
145 : : unsigned int val;
146 : 0 : } ani_info[] = {
147 : 0 : { "ANI RESET", ah->stats.ast_ani_reset },
148 : 0 : { "OFDM LEVEL", ah->ani.ofdmNoiseImmunityLevel },
149 : 0 : { "CCK LEVEL", ah->ani.cckNoiseImmunityLevel },
150 : 0 : { "SPUR UP", ah->stats.ast_ani_spurup },
151 : 0 : { "SPUR DOWN", ah->stats.ast_ani_spurdown },
152 : 0 : { "OFDM WS-DET ON", ah->stats.ast_ani_ofdmon },
153 : 0 : { "OFDM WS-DET OFF", ah->stats.ast_ani_ofdmoff },
154 : 0 : { "MRC-CCK ON", ah->stats.ast_ani_ccklow },
155 : 0 : { "MRC-CCK OFF", ah->stats.ast_ani_cckhigh },
156 : 0 : { "FIR-STEP UP", ah->stats.ast_ani_stepup },
157 : 0 : { "FIR-STEP DOWN", ah->stats.ast_ani_stepdown },
158 : 0 : { "INV LISTENTIME", ah->stats.ast_ani_lneg_or_lzero },
159 : 0 : { "OFDM ERRORS", ah->stats.ast_ani_ofdmerrs },
160 : 0 : { "CCK ERRORS", ah->stats.ast_ani_cckerrs },
161 : : };
162 : :
163 : 0 : buf = kzalloc(size, GFP_KERNEL);
164 [ # # ]: 0 : if (buf == NULL)
165 : : return -ENOMEM;
166 : :
167 : 0 : len += scnprintf(buf + len, size - len, "%15s: %s\n", "ANI",
168 [ # # ]: 0 : common->disable_ani ? "DISABLED" : "ENABLED");
169 : :
170 [ # # ]: 0 : if (common->disable_ani)
171 : 0 : goto exit;
172 : :
173 [ # # ]: 0 : for (i = 0; i < ARRAY_SIZE(ani_info); i++)
174 : 0 : len += scnprintf(buf + len, size - len, "%15s: %u\n",
175 : : ani_info[i].name, ani_info[i].val);
176 : :
177 : 0 : exit:
178 : 0 : if (len > size)
179 : : len = size;
180 : :
181 : 0 : retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
182 : 0 : kfree(buf);
183 : :
184 : 0 : return retval;
185 : : }
186 : :
187 : 0 : static ssize_t write_file_ani(struct file *file,
188 : : const char __user *user_buf,
189 : : size_t count, loff_t *ppos)
190 : : {
191 : 0 : struct ath_softc *sc = file->private_data;
192 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
193 : 0 : unsigned long ani;
194 : 0 : char buf[32];
195 : 0 : ssize_t len;
196 : :
197 : 0 : len = min(count, sizeof(buf) - 1);
198 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
199 : : return -EFAULT;
200 : :
201 : 0 : buf[len] = '\0';
202 [ # # ]: 0 : if (kstrtoul(buf, 0, &ani))
203 : : return -EINVAL;
204 : :
205 [ # # ]: 0 : if (ani > 1)
206 : : return -EINVAL;
207 : :
208 : 0 : common->disable_ani = !ani;
209 : :
210 [ # # ]: 0 : if (common->disable_ani) {
211 : 0 : clear_bit(ATH_OP_ANI_RUN, &common->op_flags);
212 : 0 : ath_stop_ani(sc);
213 : : } else {
214 : 0 : ath_check_ani(sc);
215 : : }
216 : :
217 : 0 : return count;
218 : : }
219 : :
220 : : static const struct file_operations fops_ani = {
221 : : .read = read_file_ani,
222 : : .write = write_file_ani,
223 : : .open = simple_open,
224 : : .owner = THIS_MODULE,
225 : : .llseek = default_llseek,
226 : : };
227 : :
228 : : #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
229 : :
230 : 0 : static ssize_t read_file_bt_ant_diversity(struct file *file,
231 : : char __user *user_buf,
232 : : size_t count, loff_t *ppos)
233 : : {
234 : 0 : struct ath_softc *sc = file->private_data;
235 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
236 : 0 : char buf[32];
237 : 0 : unsigned int len;
238 : :
239 : 0 : len = sprintf(buf, "%d\n", common->bt_ant_diversity);
240 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
241 : : }
242 : :
243 : 0 : static ssize_t write_file_bt_ant_diversity(struct file *file,
244 : : const char __user *user_buf,
245 : : size_t count, loff_t *ppos)
246 : : {
247 : 0 : struct ath_softc *sc = file->private_data;
248 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
249 : 0 : struct ath9k_hw_capabilities *pCap = &sc->sc_ah->caps;
250 : 0 : unsigned long bt_ant_diversity;
251 : 0 : char buf[32];
252 : 0 : ssize_t len;
253 : :
254 : 0 : len = min(count, sizeof(buf) - 1);
255 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
256 : : return -EFAULT;
257 : :
258 [ # # ]: 0 : if (!(pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV))
259 : 0 : goto exit;
260 : :
261 : 0 : buf[len] = '\0';
262 [ # # ]: 0 : if (kstrtoul(buf, 0, &bt_ant_diversity))
263 : : return -EINVAL;
264 : :
265 : 0 : common->bt_ant_diversity = !!bt_ant_diversity;
266 : 0 : ath9k_ps_wakeup(sc);
267 [ # # ]: 0 : ath9k_hw_set_bt_ant_diversity(sc->sc_ah, common->bt_ant_diversity);
268 [ # # ]: 0 : ath_dbg(common, CONFIG, "Enable WLAN/BT RX Antenna diversity: %d\n",
269 : : common->bt_ant_diversity);
270 : 0 : ath9k_ps_restore(sc);
271 : 0 : exit:
272 : 0 : return count;
273 : : }
274 : :
275 : : static const struct file_operations fops_bt_ant_diversity = {
276 : : .read = read_file_bt_ant_diversity,
277 : : .write = write_file_bt_ant_diversity,
278 : : .open = simple_open,
279 : : .owner = THIS_MODULE,
280 : : .llseek = default_llseek,
281 : : };
282 : :
283 : : #endif
284 : :
285 : 0 : void ath9k_debug_stat_ant(struct ath_softc *sc,
286 : : struct ath_hw_antcomb_conf *div_ant_conf,
287 : : int main_rssi_avg, int alt_rssi_avg)
288 : : {
289 : 0 : struct ath_antenna_stats *as_main = &sc->debug.stats.ant_stats[ANT_MAIN];
290 : 0 : struct ath_antenna_stats *as_alt = &sc->debug.stats.ant_stats[ANT_ALT];
291 : :
292 : 0 : as_main->lna_attempt_cnt[div_ant_conf->main_lna_conf]++;
293 : 0 : as_alt->lna_attempt_cnt[div_ant_conf->alt_lna_conf]++;
294 : :
295 : 0 : as_main->rssi_avg = main_rssi_avg;
296 : 0 : as_alt->rssi_avg = alt_rssi_avg;
297 : 0 : }
298 : :
299 : 0 : static ssize_t read_file_antenna_diversity(struct file *file,
300 : : char __user *user_buf,
301 : : size_t count, loff_t *ppos)
302 : : {
303 : 0 : struct ath_softc *sc = file->private_data;
304 : 0 : struct ath_hw *ah = sc->sc_ah;
305 : 0 : struct ath9k_hw_capabilities *pCap = &ah->caps;
306 : 0 : struct ath_antenna_stats *as_main = &sc->debug.stats.ant_stats[ANT_MAIN];
307 : 0 : struct ath_antenna_stats *as_alt = &sc->debug.stats.ant_stats[ANT_ALT];
308 : 0 : struct ath_hw_antcomb_conf div_ant_conf;
309 : 0 : unsigned int len = 0;
310 : 0 : const unsigned int size = 1024;
311 : 0 : ssize_t retval = 0;
312 : 0 : char *buf;
313 : 0 : static const char *lna_conf_str[4] = {
314 : : "LNA1_MINUS_LNA2", "LNA2", "LNA1", "LNA1_PLUS_LNA2"
315 : : };
316 : :
317 : 0 : buf = kzalloc(size, GFP_KERNEL);
318 [ # # ]: 0 : if (buf == NULL)
319 : : return -ENOMEM;
320 : :
321 [ # # ]: 0 : if (!(pCap->hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB)) {
322 : 0 : len += scnprintf(buf + len, size - len, "%s\n",
323 : : "Antenna Diversity Combining is disabled");
324 : 0 : goto exit;
325 : : }
326 : :
327 : 0 : ath9k_ps_wakeup(sc);
328 : 0 : ath9k_hw_antdiv_comb_conf_get(ah, &div_ant_conf);
329 : 0 : len += scnprintf(buf + len, size - len, "Current MAIN config : %s\n",
330 : 0 : lna_conf_str[div_ant_conf.main_lna_conf]);
331 : 0 : len += scnprintf(buf + len, size - len, "Current ALT config : %s\n",
332 : 0 : lna_conf_str[div_ant_conf.alt_lna_conf]);
333 : 0 : len += scnprintf(buf + len, size - len, "Average MAIN RSSI : %d\n",
334 : : as_main->rssi_avg);
335 : 0 : len += scnprintf(buf + len, size - len, "Average ALT RSSI : %d\n\n",
336 : : as_alt->rssi_avg);
337 : 0 : ath9k_ps_restore(sc);
338 : :
339 : 0 : len += scnprintf(buf + len, size - len, "Packet Receive Cnt:\n");
340 : 0 : len += scnprintf(buf + len, size - len, "-------------------\n");
341 : :
342 : 0 : len += scnprintf(buf + len, size - len, "%30s%15s\n",
343 : : "MAIN", "ALT");
344 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
345 : : "TOTAL COUNT",
346 : : as_main->recv_cnt,
347 : : as_alt->recv_cnt);
348 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
349 : : "LNA1",
350 : : as_main->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1],
351 : : as_alt->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1]);
352 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
353 : : "LNA2",
354 : : as_main->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA2],
355 : : as_alt->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA2]);
356 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
357 : : "LNA1 + LNA2",
358 : : as_main->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2],
359 : : as_alt->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2]);
360 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
361 : : "LNA1 - LNA2",
362 : : as_main->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2],
363 : : as_alt->lna_recv_cnt[ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2]);
364 : :
365 : 0 : len += scnprintf(buf + len, size - len, "\nLNA Config Attempts:\n");
366 : 0 : len += scnprintf(buf + len, size - len, "--------------------\n");
367 : :
368 : 0 : len += scnprintf(buf + len, size - len, "%30s%15s\n",
369 : : "MAIN", "ALT");
370 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
371 : : "LNA1",
372 : : as_main->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1],
373 : : as_alt->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1]);
374 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
375 : : "LNA2",
376 : : as_main->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA2],
377 : : as_alt->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA2]);
378 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
379 : : "LNA1 + LNA2",
380 : : as_main->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2],
381 : : as_alt->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2]);
382 : 0 : len += scnprintf(buf + len, size - len, "%-14s:%15d%15d\n",
383 : : "LNA1 - LNA2",
384 : : as_main->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2],
385 : : as_alt->lna_attempt_cnt[ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2]);
386 : :
387 : 0 : exit:
388 : 0 : if (len > size)
389 : : len = size;
390 : :
391 : 0 : retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
392 : 0 : kfree(buf);
393 : :
394 : 0 : return retval;
395 : : }
396 : :
397 : : static const struct file_operations fops_antenna_diversity = {
398 : : .read = read_file_antenna_diversity,
399 : : .open = simple_open,
400 : : .owner = THIS_MODULE,
401 : : .llseek = default_llseek,
402 : : };
403 : :
404 : 0 : static int read_file_dma(struct seq_file *file, void *data)
405 : : {
406 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
407 : 0 : struct ath_softc *sc = hw->priv;
408 : 0 : struct ath_hw *ah = sc->sc_ah;
409 : 0 : u32 val[ATH9K_NUM_DMA_DEBUG_REGS];
410 : 0 : int i, qcuOffset = 0, dcuOffset = 0;
411 : 0 : u32 *qcuBase = &val[0], *dcuBase = &val[4];
412 : :
413 : 0 : ath9k_ps_wakeup(sc);
414 : :
415 : 0 : REG_WRITE_D(ah, AR_MACMISC,
416 : : ((AR_MACMISC_DMA_OBS_LINE_8 << AR_MACMISC_DMA_OBS_S) |
417 : : (AR_MACMISC_MISC_OBS_BUS_1 <<
418 : : AR_MACMISC_MISC_OBS_BUS_MSB_S)));
419 : :
420 : 0 : seq_puts(file, "Raw DMA Debug values:\n");
421 : :
422 [ # # ]: 0 : for (i = 0; i < ATH9K_NUM_DMA_DEBUG_REGS; i++) {
423 [ # # ]: 0 : if (i % 4 == 0)
424 : 0 : seq_puts(file, "\n");
425 : :
426 : 0 : val[i] = REG_READ_D(ah, AR_DMADBG_0 + (i * sizeof(u32)));
427 : 0 : seq_printf(file, "%d: %08x ", i, val[i]);
428 : : }
429 : :
430 : 0 : seq_puts(file, "\n\n");
431 : 0 : seq_puts(file, "Num QCU: chain_st fsp_ok fsp_st DCU: chain_st\n");
432 : :
433 [ # # ]: 0 : for (i = 0; i < ATH9K_NUM_QUEUES; i++, qcuOffset += 4, dcuOffset += 5) {
434 [ # # ]: 0 : if (i == 8) {
435 : 0 : qcuOffset = 0;
436 : 0 : qcuBase++;
437 : : }
438 : :
439 [ # # ]: 0 : if (i == 6) {
440 : 0 : dcuOffset = 0;
441 : 0 : dcuBase++;
442 : : }
443 : :
444 : 0 : seq_printf(file, "%2d %2x %1x %2x %2x\n",
445 : 0 : i, (*qcuBase & (0x7 << qcuOffset)) >> qcuOffset,
446 : 0 : (*qcuBase & (0x8 << qcuOffset)) >> (qcuOffset + 3),
447 : 0 : (val[2] & (0x7 << (i * 3))) >> (i * 3),
448 : 0 : (*dcuBase & (0x1f << dcuOffset)) >> dcuOffset);
449 : : }
450 : :
451 : 0 : seq_puts(file, "\n");
452 : :
453 : 0 : seq_printf(file, "qcu_stitch state: %2x qcu_fetch state: %2x\n",
454 : 0 : (val[3] & 0x003c0000) >> 18, (val[3] & 0x03c00000) >> 22);
455 : 0 : seq_printf(file, "qcu_complete state: %2x dcu_complete state: %2x\n",
456 : 0 : (val[3] & 0x1c000000) >> 26, (val[6] & 0x3));
457 : 0 : seq_printf(file, "dcu_arb state: %2x dcu_fp state: %2x\n",
458 : 0 : (val[5] & 0x06000000) >> 25, (val[5] & 0x38000000) >> 27);
459 : 0 : seq_printf(file, "chan_idle_dur: %3d chan_idle_dur_valid: %1d\n",
460 : 0 : (val[6] & 0x000003fc) >> 2, (val[6] & 0x00000400) >> 10);
461 : 0 : seq_printf(file, "txfifo_valid_0: %1d txfifo_valid_1: %1d\n",
462 : 0 : (val[6] & 0x00000800) >> 11, (val[6] & 0x00001000) >> 12);
463 : 0 : seq_printf(file, "txfifo_dcu_num_0: %2d txfifo_dcu_num_1: %2d\n",
464 : 0 : (val[6] & 0x0001e000) >> 13, (val[6] & 0x001e0000) >> 17);
465 : :
466 : 0 : seq_printf(file, "pcu observe: 0x%x\n", REG_READ_D(ah, AR_OBS_BUS_1));
467 : 0 : seq_printf(file, "AR_CR: 0x%x\n", REG_READ_D(ah, AR_CR));
468 : :
469 : 0 : ath9k_ps_restore(sc);
470 : :
471 : 0 : return 0;
472 : : }
473 : :
474 : 47 : void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status)
475 : : {
476 [ + - ]: 47 : if (status)
477 : 47 : sc->debug.stats.istats.total++;
478 [ + + ]: 47 : if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
479 [ + + ]: 31 : if (status & ATH9K_INT_RXLP)
480 : 1 : sc->debug.stats.istats.rxlp++;
481 [ + + ]: 31 : if (status & ATH9K_INT_RXHP)
482 : 1 : sc->debug.stats.istats.rxhp++;
483 [ - + ]: 31 : if (status & ATH9K_INT_BB_WATCHDOG)
484 : 0 : sc->debug.stats.istats.bb_watchdog++;
485 : : } else {
486 [ - + ]: 16 : if (status & ATH9K_INT_RX)
487 : 0 : sc->debug.stats.istats.rxok++;
488 : : }
489 [ + + ]: 47 : if (status & ATH9K_INT_RXEOL)
490 : 1 : sc->debug.stats.istats.rxeol++;
491 [ - + ]: 47 : if (status & ATH9K_INT_RXORN)
492 : 0 : sc->debug.stats.istats.rxorn++;
493 [ + + ]: 47 : if (status & ATH9K_INT_TX)
494 : 1 : sc->debug.stats.istats.txok++;
495 [ - + ]: 47 : if (status & ATH9K_INT_TXURN)
496 : 0 : sc->debug.stats.istats.txurn++;
497 [ - + ]: 47 : if (status & ATH9K_INT_RXPHY)
498 : 0 : sc->debug.stats.istats.rxphyerr++;
499 [ - + ]: 47 : if (status & ATH9K_INT_RXKCM)
500 : 0 : sc->debug.stats.istats.rx_keycache_miss++;
501 [ - + ]: 47 : if (status & ATH9K_INT_SWBA)
502 : 0 : sc->debug.stats.istats.swba++;
503 [ - + ]: 47 : if (status & ATH9K_INT_BMISS)
504 : 0 : sc->debug.stats.istats.bmiss++;
505 [ - + ]: 47 : if (status & ATH9K_INT_BNR)
506 : 0 : sc->debug.stats.istats.bnr++;
507 [ - + ]: 47 : if (status & ATH9K_INT_CST)
508 : 0 : sc->debug.stats.istats.cst++;
509 [ - + ]: 47 : if (status & ATH9K_INT_GTT)
510 : 0 : sc->debug.stats.istats.gtt++;
511 [ - + ]: 47 : if (status & ATH9K_INT_TIM)
512 : 0 : sc->debug.stats.istats.tim++;
513 [ - + ]: 47 : if (status & ATH9K_INT_CABEND)
514 : 0 : sc->debug.stats.istats.cabend++;
515 [ - + ]: 47 : if (status & ATH9K_INT_DTIMSYNC)
516 : 0 : sc->debug.stats.istats.dtimsync++;
517 [ - + ]: 47 : if (status & ATH9K_INT_DTIM)
518 : 0 : sc->debug.stats.istats.dtim++;
519 [ - + ]: 47 : if (status & ATH9K_INT_TSFOOR)
520 : 0 : sc->debug.stats.istats.tsfoor++;
521 [ - + ]: 47 : if (status & ATH9K_INT_MCI)
522 : 0 : sc->debug.stats.istats.mci++;
523 [ - + ]: 47 : if (status & ATH9K_INT_GENTIMER)
524 : 0 : sc->debug.stats.istats.gen_timer++;
525 : 47 : }
526 : :
527 : 0 : static int read_file_interrupt(struct seq_file *file, void *data)
528 : : {
529 [ # # ]: 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
530 : 0 : struct ath_softc *sc = hw->priv;
531 : :
532 : : #define PR_IS(a, s) \
533 : : do { \
534 : : seq_printf(file, "%21s: %10u\n", a, \
535 : : sc->debug.stats.istats.s); \
536 : : } while (0)
537 : :
538 [ # # ]: 0 : if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
539 : 0 : PR_IS("RXLP", rxlp);
540 : 0 : PR_IS("RXHP", rxhp);
541 : 0 : PR_IS("WATCHDOG", bb_watchdog);
542 : : } else {
543 : 0 : PR_IS("RX", rxok);
544 : : }
545 : 0 : PR_IS("RXEOL", rxeol);
546 : 0 : PR_IS("RXORN", rxorn);
547 : 0 : PR_IS("TX", txok);
548 : 0 : PR_IS("TXURN", txurn);
549 : 0 : PR_IS("MIB", mib);
550 : 0 : PR_IS("RXPHY", rxphyerr);
551 : 0 : PR_IS("RXKCM", rx_keycache_miss);
552 : 0 : PR_IS("SWBA", swba);
553 : 0 : PR_IS("BMISS", bmiss);
554 : 0 : PR_IS("BNR", bnr);
555 : 0 : PR_IS("CST", cst);
556 : 0 : PR_IS("GTT", gtt);
557 : 0 : PR_IS("TIM", tim);
558 : 0 : PR_IS("CABEND", cabend);
559 : 0 : PR_IS("DTIMSYNC", dtimsync);
560 : 0 : PR_IS("DTIM", dtim);
561 : 0 : PR_IS("TSFOOR", tsfoor);
562 : 0 : PR_IS("MCI", mci);
563 : 0 : PR_IS("GENTIMER", gen_timer);
564 : 0 : PR_IS("TOTAL", total);
565 : :
566 : 0 : seq_puts(file, "SYNC_CAUSE stats:\n");
567 : :
568 : 0 : PR_IS("Sync-All", sync_cause_all);
569 : 0 : PR_IS("RTC-IRQ", sync_rtc_irq);
570 : 0 : PR_IS("MAC-IRQ", sync_mac_irq);
571 : 0 : PR_IS("EEPROM-Illegal-Access", eeprom_illegal_access);
572 : 0 : PR_IS("APB-Timeout", apb_timeout);
573 : 0 : PR_IS("PCI-Mode-Conflict", pci_mode_conflict);
574 : 0 : PR_IS("HOST1-Fatal", host1_fatal);
575 : 0 : PR_IS("HOST1-Perr", host1_perr);
576 : 0 : PR_IS("TRCV-FIFO-Perr", trcv_fifo_perr);
577 : 0 : PR_IS("RADM-CPL-EP", radm_cpl_ep);
578 : 0 : PR_IS("RADM-CPL-DLLP-Abort", radm_cpl_dllp_abort);
579 : 0 : PR_IS("RADM-CPL-TLP-Abort", radm_cpl_tlp_abort);
580 : 0 : PR_IS("RADM-CPL-ECRC-Err", radm_cpl_ecrc_err);
581 : 0 : PR_IS("RADM-CPL-Timeout", radm_cpl_timeout);
582 : 0 : PR_IS("Local-Bus-Timeout", local_timeout);
583 : 0 : PR_IS("PM-Access", pm_access);
584 : 0 : PR_IS("MAC-Awake", mac_awake);
585 : 0 : PR_IS("MAC-Asleep", mac_asleep);
586 : 0 : PR_IS("MAC-Sleep-Access", mac_sleep_access);
587 : :
588 : 0 : return 0;
589 : : }
590 : :
591 : 0 : static int read_file_xmit(struct seq_file *file, void *data)
592 : : {
593 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
594 : 0 : struct ath_softc *sc = hw->priv;
595 : :
596 : 0 : seq_printf(file, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO");
597 : :
598 : 0 : PR("MPDUs Queued: ", queued);
599 : 0 : PR("MPDUs Completed: ", completed);
600 : 0 : PR("MPDUs XRetried: ", xretries);
601 : 0 : PR("Aggregates: ", a_aggr);
602 : 0 : PR("AMPDUs Queued HW:", a_queued_hw);
603 : 0 : PR("AMPDUs Completed:", a_completed);
604 : 0 : PR("AMPDUs Retried: ", a_retries);
605 : 0 : PR("AMPDUs XRetried: ", a_xretries);
606 : 0 : PR("TXERR Filtered: ", txerr_filtered);
607 : 0 : PR("FIFO Underrun: ", fifo_underrun);
608 : 0 : PR("TXOP Exceeded: ", xtxop);
609 : 0 : PR("TXTIMER Expiry: ", timer_exp);
610 : 0 : PR("DESC CFG Error: ", desc_cfg_err);
611 : 0 : PR("DATA Underrun: ", data_underrun);
612 : 0 : PR("DELIM Underrun: ", delim_underrun);
613 : 0 : PR("TX-Pkts-All: ", tx_pkts_all);
614 : 0 : PR("TX-Bytes-All: ", tx_bytes_all);
615 : 0 : PR("HW-put-tx-buf: ", puttxbuf);
616 : 0 : PR("HW-tx-start: ", txstart);
617 : 0 : PR("HW-tx-proc-desc: ", txprocdesc);
618 : 0 : PR("TX-Failed: ", txfailed);
619 : :
620 : 0 : return 0;
621 : : }
622 : :
623 : : static void print_queue(struct ath_softc *sc, struct ath_txq *txq,
624 : : struct seq_file *file)
625 : : {
626 : : ath_txq_lock(sc, txq);
627 : :
628 : : seq_printf(file, "%s: %d ", "qnum", txq->axq_qnum);
629 : : seq_printf(file, "%s: %2d ", "qdepth", txq->axq_depth);
630 : : seq_printf(file, "%s: %2d ", "ampdu-depth", txq->axq_ampdu_depth);
631 : : seq_printf(file, "%s: %3d\n", "pending", txq->pending_frames);
632 : :
633 : : ath_txq_unlock(sc, txq);
634 : : }
635 : :
636 : 0 : static int read_file_queues(struct seq_file *file, void *data)
637 : : {
638 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
639 : 0 : struct ath_softc *sc = hw->priv;
640 : 0 : struct ath_txq *txq;
641 : 0 : int i;
642 : 0 : static const char *qname[4] = {
643 : : "VO", "VI", "BE", "BK"
644 : : };
645 : :
646 [ # # ]: 0 : for (i = 0; i < IEEE80211_NUM_ACS; i++) {
647 : 0 : txq = sc->tx.txq_map[i];
648 : 0 : seq_printf(file, "(%s): ", qname[i]);
649 : 0 : print_queue(sc, txq, file);
650 : : }
651 : :
652 : 0 : seq_puts(file, "(CAB): ");
653 : 0 : print_queue(sc, sc->beacon.cabq, file);
654 : :
655 : 0 : return 0;
656 : : }
657 : :
658 : 0 : static int read_file_misc(struct seq_file *file, void *data)
659 : : {
660 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
661 : 0 : struct ath_softc *sc = hw->priv;
662 : 0 : struct ath_common *common = ath9k_hw_common(sc->sc_ah);
663 : 0 : struct ath9k_vif_iter_data iter_data;
664 : 0 : struct ath_chanctx *ctx;
665 : 0 : unsigned int reg;
666 : 0 : u32 rxfilter, i;
667 : :
668 : 0 : seq_printf(file, "BSSID: %pM\n", common->curbssid);
669 : 0 : seq_printf(file, "BSSID-MASK: %pM\n", common->bssidmask);
670 : 0 : seq_printf(file, "OPMODE: %s\n",
671 : 0 : ath_opmode_to_string(sc->sc_ah->opmode));
672 : :
673 : 0 : ath9k_ps_wakeup(sc);
674 : 0 : rxfilter = ath9k_hw_getrxfilter(sc->sc_ah);
675 : 0 : ath9k_ps_restore(sc);
676 : :
677 : 0 : seq_printf(file, "RXFILTER: 0x%x", rxfilter);
678 : :
679 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_UCAST)
680 : 0 : seq_puts(file, " UCAST");
681 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_MCAST)
682 : 0 : seq_puts(file, " MCAST");
683 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_BCAST)
684 : 0 : seq_puts(file, " BCAST");
685 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_CONTROL)
686 : 0 : seq_puts(file, " CONTROL");
687 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_BEACON)
688 : 0 : seq_puts(file, " BEACON");
689 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_PROM)
690 : 0 : seq_puts(file, " PROM");
691 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_PROBEREQ)
692 : 0 : seq_puts(file, " PROBEREQ");
693 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_PHYERR)
694 : 0 : seq_puts(file, " PHYERR");
695 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_MYBEACON)
696 : 0 : seq_puts(file, " MYBEACON");
697 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_COMP_BAR)
698 : 0 : seq_puts(file, " COMP_BAR");
699 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_PSPOLL)
700 : 0 : seq_puts(file, " PSPOLL");
701 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_PHYRADAR)
702 : 0 : seq_puts(file, " PHYRADAR");
703 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_MCAST_BCAST_ALL)
704 : 0 : seq_puts(file, " MCAST_BCAST_ALL");
705 [ # # ]: 0 : if (rxfilter & ATH9K_RX_FILTER_CONTROL_WRAPPER)
706 : 0 : seq_puts(file, " CONTROL_WRAPPER");
707 : :
708 : 0 : seq_puts(file, "\n");
709 : :
710 : 0 : reg = sc->sc_ah->imask;
711 : :
712 : 0 : seq_printf(file, "INTERRUPT-MASK: 0x%x", reg);
713 : :
714 [ # # ]: 0 : if (reg & ATH9K_INT_SWBA)
715 : 0 : seq_puts(file, " SWBA");
716 [ # # ]: 0 : if (reg & ATH9K_INT_BMISS)
717 : 0 : seq_puts(file, " BMISS");
718 [ # # ]: 0 : if (reg & ATH9K_INT_CST)
719 : 0 : seq_puts(file, " CST");
720 [ # # ]: 0 : if (reg & ATH9K_INT_RX)
721 : 0 : seq_puts(file, " RX");
722 [ # # ]: 0 : if (reg & ATH9K_INT_RXHP)
723 : 0 : seq_puts(file, " RXHP");
724 [ # # ]: 0 : if (reg & ATH9K_INT_RXLP)
725 : 0 : seq_puts(file, " RXLP");
726 [ # # ]: 0 : if (reg & ATH9K_INT_BB_WATCHDOG)
727 : 0 : seq_puts(file, " BB_WATCHDOG");
728 : :
729 : 0 : seq_puts(file, "\n");
730 : :
731 : 0 : i = 0;
732 [ # # ]: 0 : ath_for_each_chanctx(sc, ctx) {
733 [ # # ]: 0 : if (list_empty(&ctx->vifs))
734 : 0 : continue;
735 : 0 : ath9k_calculate_iter_data(sc, ctx, &iter_data);
736 : :
737 : 0 : seq_printf(file,
738 : : "VIFS: CTX %i(%i) AP: %i STA: %i MESH: %i WDS: %i",
739 : 0 : i++, (int)(ctx->assigned), iter_data.naps,
740 : : iter_data.nstations,
741 : : iter_data.nmeshes, iter_data.nwds);
742 : 0 : seq_printf(file, " ADHOC: %i OCB: %i TOTAL: %hi BEACON-VIF: %hi\n",
743 : 0 : iter_data.nadhocs, iter_data.nocbs, sc->cur_chan->nvifs,
744 : 0 : sc->nbcnvifs);
745 : : }
746 : :
747 : 0 : return 0;
748 : : }
749 : :
750 : 0 : static int read_file_reset(struct seq_file *file, void *data)
751 : : {
752 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
753 : 0 : struct ath_softc *sc = hw->priv;
754 : 0 : static const char * const reset_cause[__RESET_TYPE_MAX] = {
755 : : [RESET_TYPE_BB_HANG] = "Baseband Hang",
756 : : [RESET_TYPE_BB_WATCHDOG] = "Baseband Watchdog",
757 : : [RESET_TYPE_FATAL_INT] = "Fatal HW Error",
758 : : [RESET_TYPE_TX_ERROR] = "TX HW error",
759 : : [RESET_TYPE_TX_GTT] = "Transmit timeout",
760 : : [RESET_TYPE_TX_HANG] = "TX Path Hang",
761 : : [RESET_TYPE_PLL_HANG] = "PLL RX Hang",
762 : : [RESET_TYPE_MAC_HANG] = "MAC Hang",
763 : : [RESET_TYPE_BEACON_STUCK] = "Stuck Beacon",
764 : : [RESET_TYPE_MCI] = "MCI Reset",
765 : : [RESET_TYPE_CALIBRATION] = "Calibration error",
766 : : [RESET_TX_DMA_ERROR] = "Tx DMA stop error",
767 : : [RESET_RX_DMA_ERROR] = "Rx DMA stop error",
768 : : };
769 : 0 : int i;
770 : :
771 [ # # ]: 0 : for (i = 0; i < ARRAY_SIZE(reset_cause); i++) {
772 [ # # ]: 0 : if (!reset_cause[i])
773 : 0 : continue;
774 : :
775 : 0 : seq_printf(file, "%17s: %2d\n", reset_cause[i],
776 : : sc->debug.stats.reset[i]);
777 : : }
778 : :
779 : 0 : return 0;
780 : : }
781 : :
782 : 0 : void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
783 : : struct ath_tx_status *ts, struct ath_txq *txq,
784 : : unsigned int flags)
785 : : {
786 : 0 : int qnum = txq->axq_qnum;
787 : :
788 : 0 : TX_STAT_INC(sc, qnum, tx_pkts_all);
789 : 0 : sc->debug.stats.txstats[qnum].tx_bytes_all += bf->bf_mpdu->len;
790 : :
791 [ # # ]: 0 : if (bf_isampdu(bf)) {
792 [ # # ]: 0 : if (flags & ATH_TX_ERROR)
793 : 0 : TX_STAT_INC(sc, qnum, a_xretries);
794 : : else
795 : 0 : TX_STAT_INC(sc, qnum, a_completed);
796 : : } else {
797 [ # # ]: 0 : if (ts->ts_status & ATH9K_TXERR_XRETRY)
798 : 0 : TX_STAT_INC(sc, qnum, xretries);
799 : : else
800 : 0 : TX_STAT_INC(sc, qnum, completed);
801 : : }
802 : :
803 [ # # ]: 0 : if (ts->ts_status & ATH9K_TXERR_FILT)
804 : 0 : TX_STAT_INC(sc, qnum, txerr_filtered);
805 [ # # ]: 0 : if (ts->ts_status & ATH9K_TXERR_FIFO)
806 : 0 : TX_STAT_INC(sc, qnum, fifo_underrun);
807 [ # # ]: 0 : if (ts->ts_status & ATH9K_TXERR_XTXOP)
808 : 0 : TX_STAT_INC(sc, qnum, xtxop);
809 [ # # ]: 0 : if (ts->ts_status & ATH9K_TXERR_TIMER_EXPIRED)
810 : 0 : TX_STAT_INC(sc, qnum, timer_exp);
811 [ # # ]: 0 : if (ts->ts_flags & ATH9K_TX_DESC_CFG_ERR)
812 : 0 : TX_STAT_INC(sc, qnum, desc_cfg_err);
813 [ # # ]: 0 : if (ts->ts_flags & ATH9K_TX_DATA_UNDERRUN)
814 : 0 : TX_STAT_INC(sc, qnum, data_underrun);
815 [ # # ]: 0 : if (ts->ts_flags & ATH9K_TX_DELIM_UNDERRUN)
816 : 0 : TX_STAT_INC(sc, qnum, delim_underrun);
817 : 0 : }
818 : :
819 : 60 : void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs)
820 : : {
821 : 60 : ath9k_cmn_debug_stat_rx(&sc->debug.stats.rxstats, rs);
822 : 60 : }
823 : :
824 : 0 : static ssize_t read_file_regidx(struct file *file, char __user *user_buf,
825 : : size_t count, loff_t *ppos)
826 : : {
827 : 0 : struct ath_softc *sc = file->private_data;
828 : 0 : char buf[32];
829 : 0 : unsigned int len;
830 : :
831 : 0 : len = sprintf(buf, "0x%08x\n", sc->debug.regidx);
832 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
833 : : }
834 : :
835 : 0 : static ssize_t write_file_regidx(struct file *file, const char __user *user_buf,
836 : : size_t count, loff_t *ppos)
837 : : {
838 : 0 : struct ath_softc *sc = file->private_data;
839 : 0 : unsigned long regidx;
840 : 0 : char buf[32];
841 : 0 : ssize_t len;
842 : :
843 : 0 : len = min(count, sizeof(buf) - 1);
844 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
845 : : return -EFAULT;
846 : :
847 : 0 : buf[len] = '\0';
848 [ # # ]: 0 : if (kstrtoul(buf, 0, ®idx))
849 : : return -EINVAL;
850 : :
851 : 0 : sc->debug.regidx = regidx;
852 : 0 : return count;
853 : : }
854 : :
855 : : static const struct file_operations fops_regidx = {
856 : : .read = read_file_regidx,
857 : : .write = write_file_regidx,
858 : : .open = simple_open,
859 : : .owner = THIS_MODULE,
860 : : .llseek = default_llseek,
861 : : };
862 : :
863 : 0 : static ssize_t read_file_regval(struct file *file, char __user *user_buf,
864 : : size_t count, loff_t *ppos)
865 : : {
866 : 0 : struct ath_softc *sc = file->private_data;
867 : 0 : struct ath_hw *ah = sc->sc_ah;
868 : 0 : char buf[32];
869 : 0 : unsigned int len;
870 : 0 : u32 regval;
871 : :
872 : 0 : ath9k_ps_wakeup(sc);
873 : 0 : regval = REG_READ_D(ah, sc->debug.regidx);
874 : 0 : ath9k_ps_restore(sc);
875 : 0 : len = sprintf(buf, "0x%08x\n", regval);
876 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
877 : : }
878 : :
879 : 0 : static ssize_t write_file_regval(struct file *file, const char __user *user_buf,
880 : : size_t count, loff_t *ppos)
881 : : {
882 : 0 : struct ath_softc *sc = file->private_data;
883 : 0 : struct ath_hw *ah = sc->sc_ah;
884 : 0 : unsigned long regval;
885 : 0 : char buf[32];
886 : 0 : ssize_t len;
887 : :
888 : 0 : len = min(count, sizeof(buf) - 1);
889 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
890 : : return -EFAULT;
891 : :
892 : 0 : buf[len] = '\0';
893 [ # # ]: 0 : if (kstrtoul(buf, 0, ®val))
894 : : return -EINVAL;
895 : :
896 : 0 : ath9k_ps_wakeup(sc);
897 : 0 : REG_WRITE_D(ah, sc->debug.regidx, regval);
898 : 0 : ath9k_ps_restore(sc);
899 : 0 : return count;
900 : : }
901 : :
902 : : static const struct file_operations fops_regval = {
903 : : .read = read_file_regval,
904 : : .write = write_file_regval,
905 : : .open = simple_open,
906 : : .owner = THIS_MODULE,
907 : : .llseek = default_llseek,
908 : : };
909 : :
910 : : #define REGDUMP_LINE_SIZE 20
911 : :
912 : 0 : static int open_file_regdump(struct inode *inode, struct file *file)
913 : : {
914 : 0 : struct ath_softc *sc = inode->i_private;
915 : 0 : unsigned int len = 0;
916 : 0 : u8 *buf;
917 : 0 : int i, j = 0;
918 : 0 : unsigned long num_regs, regdump_len, max_reg_offset;
919 : 0 : static const struct reg_hole {
920 : : u32 start;
921 : : u32 end;
922 : : } reg_hole_list[] = {
923 : : {0x0200, 0x07fc},
924 : : {0x0c00, 0x0ffc},
925 : : {0x2000, 0x3ffc},
926 : : {0x4100, 0x6ffc},
927 : : {0x705c, 0x7ffc},
928 : : {0x0000, 0x0000}
929 : : };
930 : :
931 [ # # ]: 0 : max_reg_offset = AR_SREV_9300_20_OR_LATER(sc->sc_ah) ? 0x8800 : 0xb500;
932 : 0 : num_regs = max_reg_offset / 4 + 1;
933 : 0 : regdump_len = num_regs * REGDUMP_LINE_SIZE + 1;
934 : 0 : buf = vmalloc(regdump_len);
935 [ # # ]: 0 : if (!buf)
936 : : return -ENOMEM;
937 : :
938 : 0 : ath9k_ps_wakeup(sc);
939 [ # # ]: 0 : for (i = 0; i < num_regs; i++) {
940 [ # # ]: 0 : if (reg_hole_list[j].start == i << 2) {
941 : 0 : i = reg_hole_list[j].end >> 2;
942 : 0 : j++;
943 : 0 : continue;
944 : : }
945 : :
946 : 0 : len += scnprintf(buf + len, regdump_len - len,
947 : 0 : "0x%06x 0x%08x\n", i << 2, REG_READ(sc->sc_ah, i << 2));
948 : : }
949 : 0 : ath9k_ps_restore(sc);
950 : :
951 : 0 : file->private_data = buf;
952 : :
953 : 0 : return 0;
954 : : }
955 : :
956 : : static const struct file_operations fops_regdump = {
957 : : .open = open_file_regdump,
958 : : .read = ath9k_debugfs_read_buf,
959 : : .release = ath9k_debugfs_release_buf,
960 : : .owner = THIS_MODULE,
961 : : .llseek = default_llseek,/* read accesses f_pos */
962 : : };
963 : :
964 : 0 : static int read_file_dump_nfcal(struct seq_file *file, void *data)
965 : : {
966 : 0 : struct ieee80211_hw *hw = dev_get_drvdata(file->private);
967 : 0 : struct ath_softc *sc = hw->priv;
968 : 0 : struct ath_hw *ah = sc->sc_ah;
969 : 0 : struct ath9k_nfcal_hist *h = sc->cur_chan->caldata.nfCalHist;
970 : 0 : struct ath_common *common = ath9k_hw_common(ah);
971 : 0 : struct ieee80211_conf *conf = &common->hw->conf;
972 : 0 : u32 i, j;
973 : 0 : u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
974 : 0 : u8 nread;
975 : :
976 : 0 : seq_printf(file, "Channel Noise Floor : %d\n", ah->noise);
977 : 0 : seq_puts(file, "Chain | privNF | # Readings | NF Readings\n");
978 [ # # ]: 0 : for (i = 0; i < NUM_NF_READINGS; i++) {
979 [ # # # # ]: 0 : if (!(chainmask & (1 << i)) ||
980 [ # # ]: 0 : ((i >= AR5416_MAX_CHAINS) && !conf_is_ht40(conf)))
981 : 0 : continue;
982 : :
983 : 0 : nread = AR_PHY_CCA_FILTERWINDOW_LENGTH - h[i].invalidNFcount;
984 : 0 : seq_printf(file, " %d\t %d\t %d\t\t", i, h[i].privNF, nread);
985 [ # # ]: 0 : for (j = 0; j < nread; j++)
986 : 0 : seq_printf(file, " %d", h[i].nfCalBuffer[j]);
987 : 0 : seq_puts(file, "\n");
988 : : }
989 : :
990 : 0 : return 0;
991 : : }
992 : :
993 : : #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
994 : 0 : static ssize_t read_file_btcoex(struct file *file, char __user *user_buf,
995 : : size_t count, loff_t *ppos)
996 : : {
997 : 0 : struct ath_softc *sc = file->private_data;
998 : 0 : u32 len = 0, size = 1500;
999 : 0 : char *buf;
1000 : 0 : size_t retval;
1001 : :
1002 : 0 : buf = kzalloc(size, GFP_KERNEL);
1003 [ # # ]: 0 : if (buf == NULL)
1004 : : return -ENOMEM;
1005 : :
1006 [ # # ]: 0 : if (!sc->sc_ah->common.btcoex_enabled) {
1007 : 0 : len = scnprintf(buf, size, "%s\n",
1008 : : "BTCOEX is disabled");
1009 : 0 : goto exit;
1010 : : }
1011 : :
1012 : 0 : len = ath9k_dump_btcoex(sc, buf, size);
1013 : 0 : exit:
1014 : 0 : retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
1015 : 0 : kfree(buf);
1016 : :
1017 : 0 : return retval;
1018 : : }
1019 : :
1020 : : static const struct file_operations fops_btcoex = {
1021 : : .read = read_file_btcoex,
1022 : : .open = simple_open,
1023 : : .owner = THIS_MODULE,
1024 : : .llseek = default_llseek,
1025 : : };
1026 : : #endif
1027 : :
1028 : : #ifdef CONFIG_ATH9K_DYNACK
1029 : : static ssize_t read_file_ackto(struct file *file, char __user *user_buf,
1030 : : size_t count, loff_t *ppos)
1031 : : {
1032 : : struct ath_softc *sc = file->private_data;
1033 : : struct ath_hw *ah = sc->sc_ah;
1034 : : char buf[32];
1035 : : unsigned int len;
1036 : :
1037 : : len = sprintf(buf, "%u %c\n", ah->dynack.ackto,
1038 : : (ah->dynack.enabled) ? 'A' : 'S');
1039 : :
1040 : : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
1041 : : }
1042 : :
1043 : : static const struct file_operations fops_ackto = {
1044 : : .read = read_file_ackto,
1045 : : .open = simple_open,
1046 : : .owner = THIS_MODULE,
1047 : : .llseek = default_llseek,
1048 : : };
1049 : : #endif
1050 : :
1051 : : #ifdef CONFIG_ATH9K_WOW
1052 : :
1053 : : static ssize_t read_file_wow(struct file *file, char __user *user_buf,
1054 : : size_t count, loff_t *ppos)
1055 : : {
1056 : : struct ath_softc *sc = file->private_data;
1057 : : unsigned int len = 0, size = 32;
1058 : : ssize_t retval;
1059 : : char *buf;
1060 : :
1061 : : buf = kzalloc(size, GFP_KERNEL);
1062 : : if (!buf)
1063 : : return -ENOMEM;
1064 : :
1065 : : len += scnprintf(buf + len, size - len, "WOW: %s\n",
1066 : : sc->force_wow ? "ENABLED" : "DISABLED");
1067 : :
1068 : : if (len > size)
1069 : : len = size;
1070 : :
1071 : : retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
1072 : : kfree(buf);
1073 : :
1074 : : return retval;
1075 : : }
1076 : :
1077 : : static ssize_t write_file_wow(struct file *file, const char __user *user_buf,
1078 : : size_t count, loff_t *ppos)
1079 : : {
1080 : : struct ath_softc *sc = file->private_data;
1081 : : unsigned long val;
1082 : : char buf[32];
1083 : : ssize_t len;
1084 : :
1085 : : len = min(count, sizeof(buf) - 1);
1086 : : if (copy_from_user(buf, user_buf, len))
1087 : : return -EFAULT;
1088 : :
1089 : : buf[len] = '\0';
1090 : : if (kstrtoul(buf, 0, &val))
1091 : : return -EINVAL;
1092 : :
1093 : : if (val != 1)
1094 : : return -EINVAL;
1095 : :
1096 : : if (!sc->force_wow) {
1097 : : sc->force_wow = true;
1098 : : ath9k_init_wow(sc->hw);
1099 : : }
1100 : :
1101 : : return count;
1102 : : }
1103 : :
1104 : : static const struct file_operations fops_wow = {
1105 : : .read = read_file_wow,
1106 : : .write = write_file_wow,
1107 : : .open = simple_open,
1108 : : .owner = THIS_MODULE,
1109 : : .llseek = default_llseek,
1110 : : };
1111 : :
1112 : : #endif
1113 : :
1114 : 0 : static ssize_t read_file_tpc(struct file *file, char __user *user_buf,
1115 : : size_t count, loff_t *ppos)
1116 : : {
1117 : 0 : struct ath_softc *sc = file->private_data;
1118 : 0 : struct ath_hw *ah = sc->sc_ah;
1119 : 0 : unsigned int len = 0, size = 32;
1120 : 0 : ssize_t retval;
1121 : 0 : char *buf;
1122 : :
1123 : 0 : buf = kzalloc(size, GFP_KERNEL);
1124 [ # # ]: 0 : if (!buf)
1125 : : return -ENOMEM;
1126 : :
1127 : 0 : len += scnprintf(buf + len, size - len, "%s\n",
1128 [ # # ]: 0 : ah->tpc_enabled ? "ENABLED" : "DISABLED");
1129 : :
1130 : 0 : if (len > size)
1131 : : len = size;
1132 : :
1133 : 0 : retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
1134 : 0 : kfree(buf);
1135 : :
1136 : 0 : return retval;
1137 : : }
1138 : :
1139 : 0 : static ssize_t write_file_tpc(struct file *file, const char __user *user_buf,
1140 : : size_t count, loff_t *ppos)
1141 : : {
1142 : 0 : struct ath_softc *sc = file->private_data;
1143 : 0 : struct ath_hw *ah = sc->sc_ah;
1144 : 0 : unsigned long val;
1145 : 0 : char buf[32];
1146 : 0 : ssize_t len;
1147 : 0 : bool tpc_enabled;
1148 : :
1149 : 0 : len = min(count, sizeof(buf) - 1);
1150 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
1151 : : return -EFAULT;
1152 : :
1153 : 0 : buf[len] = '\0';
1154 [ # # ]: 0 : if (kstrtoul(buf, 0, &val))
1155 : : return -EINVAL;
1156 : :
1157 [ # # ]: 0 : if (val > 1)
1158 : : return -EINVAL;
1159 : :
1160 : 0 : tpc_enabled = !!val;
1161 : :
1162 [ # # ]: 0 : if (tpc_enabled != ah->tpc_enabled) {
1163 : 0 : ah->tpc_enabled = tpc_enabled;
1164 : :
1165 : 0 : mutex_lock(&sc->mutex);
1166 : 0 : ath9k_set_txpower(sc, NULL);
1167 : 0 : mutex_unlock(&sc->mutex);
1168 : : }
1169 : :
1170 : 0 : return count;
1171 : : }
1172 : :
1173 : : static const struct file_operations fops_tpc = {
1174 : : .read = read_file_tpc,
1175 : : .write = write_file_tpc,
1176 : : .open = simple_open,
1177 : : .owner = THIS_MODULE,
1178 : : .llseek = default_llseek,
1179 : : };
1180 : :
1181 : 0 : static ssize_t read_file_nf_override(struct file *file,
1182 : : char __user *user_buf,
1183 : : size_t count, loff_t *ppos)
1184 : : {
1185 : 0 : struct ath_softc *sc = file->private_data;
1186 : 0 : struct ath_hw *ah = sc->sc_ah;
1187 : 0 : char buf[32];
1188 : 0 : unsigned int len;
1189 : :
1190 [ # # ]: 0 : if (ah->nf_override == 0)
1191 : 0 : len = sprintf(buf, "off\n");
1192 : : else
1193 : 0 : len = sprintf(buf, "%d\n", ah->nf_override);
1194 : :
1195 : 0 : return simple_read_from_buffer(user_buf, count, ppos, buf, len);
1196 : : }
1197 : :
1198 : 0 : static ssize_t write_file_nf_override(struct file *file,
1199 : : const char __user *user_buf,
1200 : : size_t count, loff_t *ppos)
1201 : : {
1202 : 0 : struct ath_softc *sc = file->private_data;
1203 : 0 : struct ath_hw *ah = sc->sc_ah;
1204 : 0 : long val;
1205 : 0 : char buf[32];
1206 : 0 : ssize_t len;
1207 : :
1208 : 0 : len = min(count, sizeof(buf) - 1);
1209 [ # # ]: 0 : if (copy_from_user(buf, user_buf, len))
1210 : : return -EFAULT;
1211 : :
1212 : 0 : buf[len] = '\0';
1213 [ # # ]: 0 : if (strncmp("off", buf, 3) == 0)
1214 : 0 : val = 0;
1215 [ # # ]: 0 : else if (kstrtol(buf, 0, &val))
1216 : : return -EINVAL;
1217 : :
1218 [ # # ]: 0 : if (val > 0)
1219 : : return -EINVAL;
1220 : :
1221 [ # # ]: 0 : if (val < -120)
1222 : : return -EINVAL;
1223 : :
1224 : 0 : ah->nf_override = val;
1225 : :
1226 [ # # ]: 0 : if (ah->curchan)
1227 : 0 : ath9k_hw_loadnf(ah, ah->curchan);
1228 : :
1229 : 0 : return count;
1230 : : }
1231 : :
1232 : : static const struct file_operations fops_nf_override = {
1233 : : .read = read_file_nf_override,
1234 : : .write = write_file_nf_override,
1235 : : .open = simple_open,
1236 : : .owner = THIS_MODULE,
1237 : : .llseek = default_llseek,
1238 : : };
1239 : :
1240 : : /* Ethtool support for get-stats */
1241 : :
1242 : : #define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO"
1243 : : static const char ath9k_gstrings_stats[][ETH_GSTRING_LEN] = {
1244 : : "tx_pkts_nic",
1245 : : "tx_bytes_nic",
1246 : : "rx_pkts_nic",
1247 : : "rx_bytes_nic",
1248 : : AMKSTR(d_tx_pkts),
1249 : : AMKSTR(d_tx_bytes),
1250 : : AMKSTR(d_tx_mpdus_queued),
1251 : : AMKSTR(d_tx_mpdus_completed),
1252 : : AMKSTR(d_tx_mpdu_xretries),
1253 : : AMKSTR(d_tx_aggregates),
1254 : : AMKSTR(d_tx_ampdus_queued_hw),
1255 : : AMKSTR(d_tx_ampdus_completed),
1256 : : AMKSTR(d_tx_ampdu_retries),
1257 : : AMKSTR(d_tx_ampdu_xretries),
1258 : : AMKSTR(d_tx_fifo_underrun),
1259 : : AMKSTR(d_tx_op_exceeded),
1260 : : AMKSTR(d_tx_timer_expiry),
1261 : : AMKSTR(d_tx_desc_cfg_err),
1262 : : AMKSTR(d_tx_data_underrun),
1263 : : AMKSTR(d_tx_delim_underrun),
1264 : : "d_rx_crc_err",
1265 : : "d_rx_decrypt_crc_err",
1266 : : "d_rx_phy_err",
1267 : : "d_rx_mic_err",
1268 : : "d_rx_pre_delim_crc_err",
1269 : : "d_rx_post_delim_crc_err",
1270 : : "d_rx_decrypt_busy_err",
1271 : :
1272 : : "d_rx_phyerr_radar",
1273 : : "d_rx_phyerr_ofdm_timing",
1274 : : "d_rx_phyerr_cck_timing",
1275 : :
1276 : : };
1277 : : #define ATH9K_SSTATS_LEN ARRAY_SIZE(ath9k_gstrings_stats)
1278 : :
1279 : 0 : void ath9k_get_et_strings(struct ieee80211_hw *hw,
1280 : : struct ieee80211_vif *vif,
1281 : : u32 sset, u8 *data)
1282 : : {
1283 [ # # ]: 0 : if (sset == ETH_SS_STATS)
1284 : 0 : memcpy(data, *ath9k_gstrings_stats,
1285 : : sizeof(ath9k_gstrings_stats));
1286 : 0 : }
1287 : :
1288 : 18 : int ath9k_get_et_sset_count(struct ieee80211_hw *hw,
1289 : : struct ieee80211_vif *vif, int sset)
1290 : : {
1291 [ + + ]: 18 : if (sset == ETH_SS_STATS)
1292 : 6 : return ATH9K_SSTATS_LEN;
1293 : : return 0;
1294 : : }
1295 : :
1296 : : #define AWDATA(elem) \
1297 : : do { \
1298 : : data[i++] = sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BE)].elem; \
1299 : : data[i++] = sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BK)].elem; \
1300 : : data[i++] = sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VI)].elem; \
1301 : : data[i++] = sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VO)].elem; \
1302 : : } while (0)
1303 : :
1304 : : #define AWDATA_RX(elem) \
1305 : : do { \
1306 : : data[i++] = sc->debug.stats.rxstats.elem; \
1307 : : } while (0)
1308 : :
1309 : 0 : void ath9k_get_et_stats(struct ieee80211_hw *hw,
1310 : : struct ieee80211_vif *vif,
1311 : : struct ethtool_stats *stats, u64 *data)
1312 : : {
1313 : 0 : struct ath_softc *sc = hw->priv;
1314 : 0 : int i = 0;
1315 : :
1316 : 0 : data[i++] = (sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BE)].tx_pkts_all +
1317 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BK)].tx_pkts_all +
1318 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VI)].tx_pkts_all +
1319 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VO)].tx_pkts_all);
1320 : 0 : data[i++] = (sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BE)].tx_bytes_all +
1321 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_BK)].tx_bytes_all +
1322 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VI)].tx_bytes_all +
1323 : 0 : sc->debug.stats.txstats[PR_QNUM(IEEE80211_AC_VO)].tx_bytes_all);
1324 : 0 : AWDATA_RX(rx_pkts_all);
1325 : 0 : AWDATA_RX(rx_bytes_all);
1326 : :
1327 : 0 : AWDATA(tx_pkts_all);
1328 : 0 : AWDATA(tx_bytes_all);
1329 : 0 : AWDATA(queued);
1330 : 0 : AWDATA(completed);
1331 : 0 : AWDATA(xretries);
1332 : 0 : AWDATA(a_aggr);
1333 : 0 : AWDATA(a_queued_hw);
1334 : 0 : AWDATA(a_completed);
1335 : 0 : AWDATA(a_retries);
1336 : 0 : AWDATA(a_xretries);
1337 : 0 : AWDATA(fifo_underrun);
1338 : 0 : AWDATA(xtxop);
1339 : 0 : AWDATA(timer_exp);
1340 : 0 : AWDATA(desc_cfg_err);
1341 : 0 : AWDATA(data_underrun);
1342 : 0 : AWDATA(delim_underrun);
1343 : :
1344 : 0 : AWDATA_RX(crc_err);
1345 : 0 : AWDATA_RX(decrypt_crc_err);
1346 : 0 : AWDATA_RX(phy_err);
1347 : 0 : AWDATA_RX(mic_err);
1348 : 0 : AWDATA_RX(pre_delim_crc_err);
1349 : 0 : AWDATA_RX(post_delim_crc_err);
1350 : 0 : AWDATA_RX(decrypt_busy_err);
1351 : :
1352 : 0 : AWDATA_RX(phy_err_stats[ATH9K_PHYERR_RADAR]);
1353 : 0 : AWDATA_RX(phy_err_stats[ATH9K_PHYERR_OFDM_TIMING]);
1354 : 0 : AWDATA_RX(phy_err_stats[ATH9K_PHYERR_CCK_TIMING]);
1355 : :
1356 : 0 : WARN_ON(i != ATH9K_SSTATS_LEN);
1357 : 0 : }
1358 : :
1359 : 0 : void ath9k_deinit_debug(struct ath_softc *sc)
1360 : : {
1361 : 0 : ath9k_cmn_spectral_deinit_debug(&sc->spec_priv);
1362 : 0 : }
1363 : :
1364 : 6 : int ath9k_init_debug(struct ath_hw *ah)
1365 : : {
1366 : 6 : struct ath_common *common = ath9k_hw_common(ah);
1367 : 6 : struct ath_softc *sc = (struct ath_softc *) common->priv;
1368 : :
1369 : 12 : sc->debug.debugfs_phy = debugfs_create_dir("ath9k",
1370 : 6 : sc->hw->wiphy->debugfsdir);
1371 [ + - ]: 6 : if (!sc->debug.debugfs_phy)
1372 : : return -ENOMEM;
1373 : :
1374 : : #ifdef CONFIG_ATH_DEBUG
1375 : 6 : debugfs_create_file("debug", 0600, sc->debug.debugfs_phy,
1376 : : sc, &fops_debug);
1377 : : #endif
1378 : :
1379 : 6 : ath9k_dfs_init_debug(sc);
1380 : 6 : ath9k_tx99_init_debug(sc);
1381 : 6 : ath9k_cmn_spectral_init_debug(&sc->spec_priv, sc->debug.debugfs_phy);
1382 : :
1383 : 6 : debugfs_create_devm_seqfile(sc->dev, "dma", sc->debug.debugfs_phy,
1384 : : read_file_dma);
1385 : 6 : debugfs_create_devm_seqfile(sc->dev, "interrupt", sc->debug.debugfs_phy,
1386 : : read_file_interrupt);
1387 : 6 : debugfs_create_devm_seqfile(sc->dev, "xmit", sc->debug.debugfs_phy,
1388 : : read_file_xmit);
1389 : 6 : debugfs_create_devm_seqfile(sc->dev, "queues", sc->debug.debugfs_phy,
1390 : : read_file_queues);
1391 : 6 : debugfs_create_devm_seqfile(sc->dev, "misc", sc->debug.debugfs_phy,
1392 : : read_file_misc);
1393 : 6 : debugfs_create_devm_seqfile(sc->dev, "reset", sc->debug.debugfs_phy,
1394 : : read_file_reset);
1395 : :
1396 : 6 : ath9k_cmn_debug_recv(sc->debug.debugfs_phy, &sc->debug.stats.rxstats);
1397 : 6 : ath9k_cmn_debug_phy_err(sc->debug.debugfs_phy, &sc->debug.stats.rxstats);
1398 : :
1399 : 6 : debugfs_create_u8("rx_chainmask", 0400, sc->debug.debugfs_phy,
1400 : : &ah->rxchainmask);
1401 : 6 : debugfs_create_u8("tx_chainmask", 0400, sc->debug.debugfs_phy,
1402 : : &ah->txchainmask);
1403 : 6 : debugfs_create_file("ani", 0600,
1404 : : sc->debug.debugfs_phy, sc, &fops_ani);
1405 : 6 : debugfs_create_bool("paprd", 0600, sc->debug.debugfs_phy,
1406 : 6 : &sc->sc_ah->config.enable_paprd);
1407 : 6 : debugfs_create_file("regidx", 0600, sc->debug.debugfs_phy,
1408 : : sc, &fops_regidx);
1409 : 6 : debugfs_create_file("regval", 0600, sc->debug.debugfs_phy,
1410 : : sc, &fops_regval);
1411 : 6 : debugfs_create_bool("ignore_extcca", 0600,
1412 : : sc->debug.debugfs_phy,
1413 : : &ah->config.cwm_ignore_extcca);
1414 : 6 : debugfs_create_file("regdump", 0400, sc->debug.debugfs_phy, sc,
1415 : : &fops_regdump);
1416 : 6 : debugfs_create_devm_seqfile(sc->dev, "dump_nfcal",
1417 : : sc->debug.debugfs_phy,
1418 : : read_file_dump_nfcal);
1419 : :
1420 : 6 : ath9k_cmn_debug_base_eeprom(sc->debug.debugfs_phy, sc->sc_ah);
1421 : 6 : ath9k_cmn_debug_modal_eeprom(sc->debug.debugfs_phy, sc->sc_ah);
1422 : :
1423 : 6 : debugfs_create_u32("gpio_mask", 0600,
1424 : 6 : sc->debug.debugfs_phy, &sc->sc_ah->gpio_mask);
1425 : 6 : debugfs_create_u32("gpio_val", 0600,
1426 : 6 : sc->debug.debugfs_phy, &sc->sc_ah->gpio_val);
1427 : 6 : debugfs_create_file("antenna_diversity", 0400,
1428 : : sc->debug.debugfs_phy, sc, &fops_antenna_diversity);
1429 : : #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
1430 : 6 : debugfs_create_file("bt_ant_diversity", 0600,
1431 : : sc->debug.debugfs_phy, sc, &fops_bt_ant_diversity);
1432 : 6 : debugfs_create_file("btcoex", 0400, sc->debug.debugfs_phy, sc,
1433 : : &fops_btcoex);
1434 : : #endif
1435 : :
1436 : : #ifdef CONFIG_ATH9K_WOW
1437 : : debugfs_create_file("wow", 0600, sc->debug.debugfs_phy, sc, &fops_wow);
1438 : : #endif
1439 : :
1440 : : #ifdef CONFIG_ATH9K_DYNACK
1441 : : debugfs_create_file("ack_to", 0400, sc->debug.debugfs_phy,
1442 : : sc, &fops_ackto);
1443 : : #endif
1444 : 6 : debugfs_create_file("tpc", 0600, sc->debug.debugfs_phy, sc, &fops_tpc);
1445 : :
1446 : 6 : debugfs_create_file("nf_override", 0600,
1447 : : sc->debug.debugfs_phy, sc, &fops_nf_override);
1448 : :
1449 : 6 : return 0;
1450 : : }
|