]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/wireless/ath/ath9k/main.c
mac80211: allow drivers to support NL80211_SCAN_FLAG_RANDOM_ADDR
[mirror_ubuntu-artful-kernel.git] / drivers / net / wireless / ath / ath9k / main.c
CommitLineData
f078f209 1/*
5b68138e 2 * Copyright (c) 2008-2011 Atheros Communications Inc.
f078f209
LR
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
f078f209 17#include <linux/nl80211.h>
69081624 18#include <linux/delay.h>
394cf0a1 19#include "ath9k.h"
af03abec 20#include "btcoex.h"
f078f209 21
313eb87f 22u8 ath9k_parse_mpdudensity(u8 mpdudensity)
ff37e337
S
23{
24 /*
25 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
26 * 0 for no restriction
27 * 1 for 1/4 us
28 * 2 for 1/2 us
29 * 3 for 1 us
30 * 4 for 2 us
31 * 5 for 4 us
32 * 6 for 8 us
33 * 7 for 16 us
34 */
35 switch (mpdudensity) {
36 case 0:
37 return 0;
38 case 1:
39 case 2:
40 case 3:
41 /* Our lower layer calculations limit our precision to
42 1 microsecond */
43 return 1;
44 case 4:
45 return 2;
46 case 5:
47 return 4;
48 case 6:
49 return 8;
50 case 7:
51 return 16;
52 default:
53 return 0;
54 }
55}
56
e2d389b5
SM
57static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq,
58 bool sw_pending)
69081624
VT
59{
60 bool pending = false;
61
62 spin_lock_bh(&txq->axq_lock);
63
b7367285 64 if (txq->axq_depth) {
69081624 65 pending = true;
b7367285
SM
66 goto out;
67 }
69081624 68
e2d389b5
SM
69 if (!sw_pending)
70 goto out;
71
0453531e
FF
72 if (txq->mac80211_qnum >= 0) {
73 struct list_head *list;
74
75 list = &sc->cur_chan->acq[txq->mac80211_qnum];
76 if (!list_empty(list))
77 pending = true;
78 }
b7367285 79out:
69081624
VT
80 spin_unlock_bh(&txq->axq_lock);
81 return pending;
82}
83
6d79cb4c 84static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
8c77a569
LR
85{
86 unsigned long flags;
87 bool ret;
88
9ecdef4b
LR
89 spin_lock_irqsave(&sc->sc_pm_lock, flags);
90 ret = ath9k_hw_setpower(sc->sc_ah, mode);
91 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
8c77a569
LR
92
93 return ret;
94}
95
bf3dac5a
FF
96void ath_ps_full_sleep(unsigned long data)
97{
98 struct ath_softc *sc = (struct ath_softc *) data;
99 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
100 bool reset;
101
102 spin_lock(&common->cc_lock);
103 ath_hw_cycle_counters_update(common);
104 spin_unlock(&common->cc_lock);
105
106 ath9k_hw_setrxabort(sc->sc_ah, 1);
107 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
108
109 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
110}
111
a91d75ae
LR
112void ath9k_ps_wakeup(struct ath_softc *sc)
113{
898c914a 114 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
a91d75ae 115 unsigned long flags;
fbb078fc 116 enum ath9k_power_mode power_mode;
a91d75ae
LR
117
118 spin_lock_irqsave(&sc->sc_pm_lock, flags);
119 if (++sc->ps_usecount != 1)
120 goto unlock;
121
bf3dac5a 122 del_timer_sync(&sc->sleep_timer);
fbb078fc 123 power_mode = sc->sc_ah->power_mode;
9ecdef4b 124 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
a91d75ae 125
898c914a
FF
126 /*
127 * While the hardware is asleep, the cycle counters contain no
128 * useful data. Better clear them now so that they don't mess up
129 * survey data results.
130 */
fbb078fc
FF
131 if (power_mode != ATH9K_PM_AWAKE) {
132 spin_lock(&common->cc_lock);
133 ath_hw_cycle_counters_update(common);
134 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
c9ae6ab4 135 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
fbb078fc
FF
136 spin_unlock(&common->cc_lock);
137 }
898c914a 138
a91d75ae
LR
139 unlock:
140 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
141}
142
143void ath9k_ps_restore(struct ath_softc *sc)
144{
898c914a 145 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
c6c539f0 146 enum ath9k_power_mode mode;
a91d75ae
LR
147 unsigned long flags;
148
149 spin_lock_irqsave(&sc->sc_pm_lock, flags);
150 if (--sc->ps_usecount != 0)
151 goto unlock;
152
ad128860 153 if (sc->ps_idle) {
bf3dac5a
FF
154 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
155 goto unlock;
156 }
157
158 if (sc->ps_enabled &&
ad128860
SM
159 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
160 PS_WAIT_FOR_CAB |
161 PS_WAIT_FOR_PSPOLL_DATA |
424749c7
RM
162 PS_WAIT_FOR_TX_ACK |
163 PS_WAIT_FOR_ANI))) {
c6c539f0 164 mode = ATH9K_PM_NETWORK_SLEEP;
08d4df41
RM
165 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
166 ath9k_btcoex_stop_gen_timer(sc);
ad128860 167 } else {
c6c539f0 168 goto unlock;
ad128860 169 }
c6c539f0
FF
170
171 spin_lock(&common->cc_lock);
172 ath_hw_cycle_counters_update(common);
173 spin_unlock(&common->cc_lock);
174
1a8f0d39 175 ath9k_hw_setpower(sc->sc_ah, mode);
a91d75ae
LR
176
177 unlock:
178 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
179}
180
9adcf440 181static void __ath_cancel_work(struct ath_softc *sc)
ff37e337 182{
5ee08656 183 cancel_work_sync(&sc->paprd_work);
5ee08656 184 cancel_delayed_work_sync(&sc->tx_complete_work);
181fb18d 185 cancel_delayed_work_sync(&sc->hw_pll_work);
fad29cd2 186
bf52592f 187#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
fad29cd2
SM
188 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
189 cancel_work_sync(&sc->mci_work);
bf52592f 190#endif
9adcf440 191}
5ee08656 192
e60001e7 193void ath_cancel_work(struct ath_softc *sc)
9adcf440
FF
194{
195 __ath_cancel_work(sc);
196 cancel_work_sync(&sc->hw_reset_work);
197}
3cbb5dd7 198
e60001e7 199void ath_restart_work(struct ath_softc *sc)
af68abad 200{
af68abad
SM
201 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
202
19c36160 203 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
af68abad
SM
204 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
205 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
206
da0d45f7 207 ath_start_ani(sc);
af68abad
SM
208}
209
9ebea382 210static bool ath_prepare_reset(struct ath_softc *sc)
9adcf440
FF
211{
212 struct ath_hw *ah = sc->sc_ah;
ceea2a51 213 bool ret = true;
6a6733f2 214
9adcf440 215 ieee80211_stop_queues(sc->hw);
da0d45f7 216 ath_stop_ani(sc);
9adcf440 217 ath9k_hw_disable_interrupts(ah);
8b3f4616 218
1381559b 219 if (!ath_drain_all_txq(sc))
9adcf440 220 ret = false;
c0d7c7af 221
0a62acb1 222 if (!ath_stoprecv(sc))
ceea2a51
FF
223 ret = false;
224
9adcf440
FF
225 return ret;
226}
ff37e337 227
9adcf440
FF
228static bool ath_complete_reset(struct ath_softc *sc, bool start)
229{
230 struct ath_hw *ah = sc->sc_ah;
231 struct ath_common *common = ath9k_hw_common(ah);
196fb860 232 unsigned long flags;
c0d7c7af 233
9019f646 234 ath9k_calculate_summary_state(sc, sc->cur_chan);
19ec477f 235 ath_startrecv(sc);
d385c5c2
FF
236 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
237 sc->cur_chan->txpower,
238 &sc->cur_chan->cur_txpower);
eefa01dd 239 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
3989279c 240
fbbcd146 241 if (!sc->cur_chan->offchannel && start) {
8d7e09dd
FF
242 /* restore per chanctx TSF timer */
243 if (sc->cur_chan->tsf_val) {
244 u32 offset;
245
246 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
247 NULL);
248 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
249 }
250
251
eefa01dd 252 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
196fb860
SM
253 goto work;
254
196fb860 255 if (ah->opmode == NL80211_IFTYPE_STATION &&
eefa01dd 256 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
196fb860
SM
257 spin_lock_irqsave(&sc->sc_pm_lock, flags);
258 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
259 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
a6768280
SM
260 } else {
261 ath9k_set_beacon(sc);
196fb860
SM
262 }
263 work:
af68abad 264 ath_restart_work(sc);
0453531e 265 ath_txq_schedule_all(sc);
5ee08656
FF
266 }
267
071aa9a8 268 sc->gtt_cnt = 0;
9a9c4fbc
RM
269
270 ath9k_hw_set_interrupts(ah);
271 ath9k_hw_enable_interrupts(ah);
5ba8d9d2 272 ieee80211_wake_queues(sc->hw);
d463af4a
FF
273 ath9k_p2p_ps_timer(sc);
274
9adcf440
FF
275 return true;
276}
277
5555c955 278static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
9adcf440
FF
279{
280 struct ath_hw *ah = sc->sc_ah;
281 struct ath_common *common = ath9k_hw_common(ah);
282 struct ath9k_hw_cal_data *caldata = NULL;
283 bool fastcc = true;
9adcf440
FF
284 int r;
285
286 __ath_cancel_work(sc);
287
4668cce5 288 tasklet_disable(&sc->intr_tq);
eaf04a69 289 tasklet_disable(&sc->bcon_tasklet);
9adcf440 290 spin_lock_bh(&sc->sc_pcu_lock);
92460412 291
fbbcd146 292 if (!sc->cur_chan->offchannel) {
9adcf440 293 fastcc = false;
b01459e8 294 caldata = &sc->cur_chan->caldata;
9adcf440
FF
295 }
296
297 if (!hchan) {
298 fastcc = false;
9adcf440
FF
299 hchan = ah->curchan;
300 }
301
9ebea382 302 if (!ath_prepare_reset(sc))
9adcf440
FF
303 fastcc = false;
304
9ea3598b
SM
305 if (ath9k_is_chanctx_enabled())
306 fastcc = false;
307
d6067f0e
RM
308 spin_lock_bh(&sc->chan_lock);
309 sc->cur_chandef = sc->cur_chan->chandef;
310 spin_unlock_bh(&sc->chan_lock);
bff11766 311
d2182b69 312 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
feced201 313 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
9adcf440
FF
314
315 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
316 if (r) {
317 ath_err(common,
318 "Unable to reset channel, reset status %d\n", r);
f50b1cd3
RS
319
320 ath9k_hw_enable_interrupts(ah);
321 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
322
9adcf440
FF
323 goto out;
324 }
325
e82cb03f 326 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
fbbcd146 327 sc->cur_chan->offchannel)
e82cb03f
RM
328 ath9k_mci_set_txpower(sc, true, false);
329
9adcf440
FF
330 if (!ath_complete_reset(sc, true))
331 r = -EIO;
332
333out:
6a6733f2 334 spin_unlock_bh(&sc->sc_pcu_lock);
eaf04a69 335 tasklet_enable(&sc->bcon_tasklet);
4668cce5
FF
336 tasklet_enable(&sc->intr_tq);
337
9adcf440
FF
338 return r;
339}
340
7e1e3864
BG
341static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
342 struct ieee80211_vif *vif)
ff37e337
S
343{
344 struct ath_node *an;
ff37e337
S
345 an = (struct ath_node *)sta->drv_priv;
346
a145daf7 347 an->sc = sc;
7f010c93 348 an->sta = sta;
7e1e3864 349 an->vif = vif;
4bbf4414 350 memset(&an->key_idx, 0, sizeof(an->key_idx));
3d4e20f2 351
dd5ee59b 352 ath_tx_node_init(sc, an);
44b47a7d
LB
353
354 ath_dynack_node_init(sc->sc_ah, an);
ff37e337
S
355}
356
357static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
358{
359 struct ath_node *an = (struct ath_node *)sta->drv_priv;
dd5ee59b 360 ath_tx_node_cleanup(sc, an);
44b47a7d
LB
361
362 ath_dynack_node_deinit(sc->sc_ah, an);
ff37e337
S
363}
364
55624204 365void ath9k_tasklet(unsigned long data)
ff37e337
S
366{
367 struct ath_softc *sc = (struct ath_softc *)data;
af03abec 368 struct ath_hw *ah = sc->sc_ah;
c46917bb 369 struct ath_common *common = ath9k_hw_common(ah);
124b979b 370 enum ath_reset_type type;
07c15a3f 371 unsigned long flags;
17d7904d 372 u32 status = sc->intrstatus;
b5c80475 373 u32 rxmask;
ff37e337 374
e3927007
FF
375 ath9k_ps_wakeup(sc);
376 spin_lock(&sc->sc_pcu_lock);
377
6549a860
SM
378 if (status & ATH9K_INT_FATAL) {
379 type = RESET_TYPE_FATAL_INT;
124b979b 380 ath9k_queue_reset(sc, type);
c6cc47b1
SM
381
382 /*
383 * Increment the ref. counter here so that
384 * interrupts are enabled in the reset routine.
385 */
386 atomic_inc(&ah->intr_ref_cnt);
affad456 387 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
e3927007 388 goto out;
063d8be3 389 }
ff37e337 390
6549a860
SM
391 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
392 (status & ATH9K_INT_BB_WATCHDOG)) {
0c759977
SM
393 spin_lock(&common->cc_lock);
394 ath_hw_cycle_counters_update(common);
395 ar9003_hw_bb_watchdog_dbg_info(ah);
396 spin_unlock(&common->cc_lock);
397
6549a860
SM
398 if (ar9003_hw_bb_watchdog_check(ah)) {
399 type = RESET_TYPE_BB_WATCHDOG;
400 ath9k_queue_reset(sc, type);
401
402 /*
403 * Increment the ref. counter here so that
404 * interrupts are enabled in the reset routine.
405 */
406 atomic_inc(&ah->intr_ref_cnt);
affad456 407 ath_dbg(common, RESET,
6549a860
SM
408 "BB_WATCHDOG: Skipping interrupts\n");
409 goto out;
410 }
411 }
412
071aa9a8
SM
413 if (status & ATH9K_INT_GTT) {
414 sc->gtt_cnt++;
415
416 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
417 type = RESET_TYPE_TX_GTT;
418 ath9k_queue_reset(sc, type);
419 atomic_inc(&ah->intr_ref_cnt);
affad456 420 ath_dbg(common, RESET,
071aa9a8
SM
421 "GTT: Skipping interrupts\n");
422 goto out;
423 }
424 }
425
07c15a3f 426 spin_lock_irqsave(&sc->sc_pm_lock, flags);
4105f807
RM
427 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
428 /*
429 * TSF sync does not look correct; remain awake to sync with
430 * the next Beacon.
431 */
d2182b69 432 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
e8fe7336 433 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
4105f807 434 }
07c15a3f 435 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
4105f807 436
b5c80475
FF
437 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
438 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
439 ATH9K_INT_RXORN);
440 else
441 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
442
443 if (status & rxmask) {
b5c80475
FF
444 /* Check for high priority Rx first */
445 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
446 (status & ATH9K_INT_RXHP))
447 ath_rx_tasklet(sc, 0, true);
448
449 ath_rx_tasklet(sc, 0, false);
ff37e337
S
450 }
451
e5003249 452 if (status & ATH9K_INT_TX) {
071aa9a8
SM
453 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
454 /*
455 * For EDMA chips, TX completion is enabled for the
456 * beacon queue, so if a beacon has been transmitted
457 * successfully after a GTT interrupt, the GTT counter
458 * gets reset to zero here.
459 */
3b745c7b 460 sc->gtt_cnt = 0;
071aa9a8 461
e5003249 462 ath_tx_edma_tasklet(sc);
071aa9a8 463 } else {
e5003249 464 ath_tx_tasklet(sc);
071aa9a8 465 }
10e23181
FF
466
467 wake_up(&sc->tx_wait);
e5003249 468 }
063d8be3 469
c67ce339
FF
470 if (status & ATH9K_INT_GENTIMER)
471 ath_gen_timer_isr(sc->sc_ah);
472
56ca0dba 473 ath9k_btcoex_handle_interrupt(sc, status);
19686ddf 474
ff37e337 475 /* re-enable hardware interrupt */
4df3071e 476 ath9k_hw_enable_interrupts(ah);
c6cc47b1 477out:
52671e43 478 spin_unlock(&sc->sc_pcu_lock);
153e080d 479 ath9k_ps_restore(sc);
ff37e337
S
480}
481
6baff7f9 482irqreturn_t ath_isr(int irq, void *dev)
ff37e337 483{
063d8be3
S
484#define SCHED_INTR ( \
485 ATH9K_INT_FATAL | \
a4d86d95 486 ATH9K_INT_BB_WATCHDOG | \
063d8be3
S
487 ATH9K_INT_RXORN | \
488 ATH9K_INT_RXEOL | \
489 ATH9K_INT_RX | \
b5c80475
FF
490 ATH9K_INT_RXLP | \
491 ATH9K_INT_RXHP | \
063d8be3
S
492 ATH9K_INT_TX | \
493 ATH9K_INT_BMISS | \
494 ATH9K_INT_CST | \
071aa9a8 495 ATH9K_INT_GTT | \
ebb8e1d7 496 ATH9K_INT_TSFOOR | \
40dc5392
MSS
497 ATH9K_INT_GENTIMER | \
498 ATH9K_INT_MCI)
063d8be3 499
ff37e337 500 struct ath_softc *sc = dev;
cbe61d8a 501 struct ath_hw *ah = sc->sc_ah;
eefa01dd 502 struct ath_common *common = ath9k_hw_common(ah);
ff37e337 503 enum ath9k_int status;
78c8a950 504 u32 sync_cause = 0;
ff37e337
S
505 bool sched = false;
506
063d8be3
S
507 /*
508 * The hardware is not ready/present, don't
509 * touch anything. Note this can happen early
510 * on if the IRQ is shared.
511 */
2ba7d144 512 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
063d8be3 513 return IRQ_NONE;
ff37e337 514
063d8be3
S
515 /* shared irq, not for us */
516
153e080d 517 if (!ath9k_hw_intrpend(ah))
063d8be3 518 return IRQ_NONE;
063d8be3 519
eefa01dd 520 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
f41a9b3b 521 ath9k_hw_kill_interrupts(ah);
b74713d0 522 return IRQ_HANDLED;
f41a9b3b 523 }
b74713d0 524
063d8be3
S
525 /*
526 * Figure out the reason(s) for the interrupt. Note
527 * that the hal returns a pseudo-ISR that may include
528 * bits we haven't explicitly enabled so we mask the
529 * value to insure we only process bits we requested.
530 */
6a4d05dc
FF
531 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
532 ath9k_debug_sync_cause(sc, sync_cause);
3069168c 533 status &= ah->imask; /* discard unasked-for bits */
ff37e337 534
063d8be3
S
535 /*
536 * If there are no status bits set, then this interrupt was not
537 * for me (should have been caught above).
538 */
153e080d 539 if (!status)
063d8be3 540 return IRQ_NONE;
ff37e337 541
063d8be3
S
542 /* Cache the status */
543 sc->intrstatus = status;
544
545 if (status & SCHED_INTR)
546 sched = true;
547
548 /*
3b580144
FF
549 * If a FATAL interrupt is received, we have to reset the chip
550 * immediately.
063d8be3 551 */
3b580144 552 if (status & ATH9K_INT_FATAL)
063d8be3
S
553 goto chip_reset;
554
a6bb860b 555 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
0c759977 556 (status & ATH9K_INT_BB_WATCHDOG))
08578b8f 557 goto chip_reset;
e60001e7
SM
558
559#ifdef CONFIG_ATH9K_WOW
ca90ef44
RM
560 if (status & ATH9K_INT_BMISS) {
561 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
ca90ef44
RM
562 atomic_inc(&sc->wow_got_bmiss_intr);
563 atomic_dec(&sc->wow_sleep_proc_intr);
564 }
565 }
566#endif
e60001e7 567
063d8be3
S
568 if (status & ATH9K_INT_SWBA)
569 tasklet_schedule(&sc->bcon_tasklet);
570
571 if (status & ATH9K_INT_TXURN)
572 ath9k_hw_updatetxtriglevel(ah, true);
573
0682c9b5
RM
574 if (status & ATH9K_INT_RXEOL) {
575 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
72d874c6 576 ath9k_hw_set_interrupts(ah);
b5c80475
FF
577 }
578
153e080d
VT
579 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
580 if (status & ATH9K_INT_TIM_TIMER) {
ff9f0b63
LR
581 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
582 goto chip_reset;
063d8be3
S
583 /* Clear RxAbort bit so that we can
584 * receive frames */
9ecdef4b 585 ath9k_setpower(sc, ATH9K_PM_AWAKE);
07c15a3f 586 spin_lock(&sc->sc_pm_lock);
153e080d 587 ath9k_hw_setrxabort(sc->sc_ah, 0);
1b04b930 588 sc->ps_flags |= PS_WAIT_FOR_BEACON;
07c15a3f 589 spin_unlock(&sc->sc_pm_lock);
ff37e337 590 }
063d8be3
S
591
592chip_reset:
ff37e337 593
817e11de
S
594 ath_debug_stat_interrupt(sc, status);
595
ff37e337 596 if (sched) {
4df3071e
FF
597 /* turn off every interrupt */
598 ath9k_hw_disable_interrupts(ah);
ff37e337
S
599 tasklet_schedule(&sc->intr_tq);
600 }
601
602 return IRQ_HANDLED;
063d8be3
S
603
604#undef SCHED_INTR
ff37e337
S
605}
606
ae2ff239
SM
607/*
608 * This function is called when a HW reset cannot be deferred
609 * and has to be immediate.
610 */
5555c955 611int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan)
ff37e337 612{
ae2ff239 613 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
ec30326e 614 int r;
ff37e337 615
ae2ff239
SM
616 set_bit(ATH_OP_HW_RESET, &common->op_flags);
617
783cd01e 618 ath9k_ps_wakeup(sc);
5555c955 619 r = ath_reset_internal(sc, hchan);
783cd01e 620 ath9k_ps_restore(sc);
2ab81d4a 621
ae8d2858 622 return r;
ff37e337
S
623}
624
ae2ff239
SM
625/*
626 * When a HW reset can be deferred, it is added to the
627 * hw_reset_work workqueue, but we set ATH_OP_HW_RESET before
628 * queueing.
629 */
124b979b
RM
630void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
631{
eefa01dd 632 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
124b979b
RM
633#ifdef CONFIG_ATH9K_DEBUGFS
634 RESET_STAT_INC(sc, type);
635#endif
eefa01dd 636 set_bit(ATH_OP_HW_RESET, &common->op_flags);
124b979b
RM
637 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
638}
639
236de514
FF
640void ath_reset_work(struct work_struct *work)
641{
642 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
643
5555c955
SM
644 ath9k_ps_wakeup(sc);
645 ath_reset_internal(sc, NULL);
646 ath9k_ps_restore(sc);
236de514
FF
647}
648
ff37e337
S
649/**********************/
650/* mac80211 callbacks */
651/**********************/
652
8feceb67 653static int ath9k_start(struct ieee80211_hw *hw)
f078f209 654{
9ac58615 655 struct ath_softc *sc = hw->priv;
af03abec 656 struct ath_hw *ah = sc->sc_ah;
c46917bb 657 struct ath_common *common = ath9k_hw_common(ah);
39305635 658 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
fbbcd146 659 struct ath_chanctx *ctx = sc->cur_chan;
ff37e337 660 struct ath9k_channel *init_channel;
82880a7c 661 int r;
f078f209 662
d2182b69 663 ath_dbg(common, CONFIG,
226afe68
JP
664 "Starting driver with initial channel: %d MHz\n",
665 curchan->center_freq);
f078f209 666
f62d816f 667 ath9k_ps_wakeup(sc);
141b38b6
S
668 mutex_lock(&sc->mutex);
669
fbbcd146 670 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
bff11766 671 sc->cur_chandef = hw->conf.chandef;
ff37e337
S
672
673 /* Reset SERDES registers */
84c87dc8 674 ath9k_hw_configpcipowersave(ah, false);
ff37e337
S
675
676 /*
677 * The basic interface to setting the hardware in a good
678 * state is ``reset''. On return the hardware is known to
679 * be powered up and with interrupts disabled. This must
680 * be followed by initialization of the appropriate bits
681 * and then setup of the interrupt mask.
682 */
4bdd1e97 683 spin_lock_bh(&sc->sc_pcu_lock);
c0c11741
FF
684
685 atomic_set(&ah->intr_ref_cnt, -1);
686
20bd2a09 687 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
ae8d2858 688 if (r) {
3800276a
JP
689 ath_err(common,
690 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
691 r, curchan->center_freq);
ceb26a60 692 ah->reset_power_on = false;
ff37e337 693 }
ff37e337 694
ff37e337 695 /* Setup our intr mask. */
b5c80475
FF
696 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
697 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
698 ATH9K_INT_GLOBAL;
699
700 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
08578b8f 701 ah->imask |= ATH9K_INT_RXHP |
a6bb860b 702 ATH9K_INT_RXLP;
b5c80475
FF
703 else
704 ah->imask |= ATH9K_INT_RX;
ff37e337 705
a6bb860b
SM
706 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
707 ah->imask |= ATH9K_INT_BB_WATCHDOG;
708
071aa9a8
SM
709 /*
710 * Enable GTT interrupts only for AR9003/AR9004 chips
711 * for now.
712 */
713 if (AR_SREV_9300_20_OR_LATER(ah))
714 ah->imask |= ATH9K_INT_GTT;
ff37e337 715
af03abec 716 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
3069168c 717 ah->imask |= ATH9K_INT_CST;
ff37e337 718
e270e776 719 ath_mci_enable(sc);
40dc5392 720
eefa01dd 721 clear_bit(ATH_OP_INVALID, &common->op_flags);
5f841b41 722 sc->sc_ah->is_monitoring = false;
ff37e337 723
ceb26a60
FF
724 if (!ath_complete_reset(sc, false))
725 ah->reset_power_on = false;
ff37e337 726
c0c11741
FF
727 if (ah->led_pin >= 0) {
728 ath9k_hw_cfg_output(ah, ah->led_pin,
729 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
aeeb2065
SM
730 ath9k_hw_set_gpio(ah, ah->led_pin,
731 (ah->config.led_active_high) ? 1 : 0);
c0c11741
FF
732 }
733
734 /*
735 * Reset key cache to sane defaults (all entries cleared) instead of
736 * semi-random values after suspend/resume.
737 */
738 ath9k_cmn_init_crypto(sc->sc_ah);
739
a35051ce
FF
740 ath9k_hw_reset_tsf(ah);
741
9adcf440 742 spin_unlock_bh(&sc->sc_pcu_lock);
164ace38 743
141b38b6
S
744 mutex_unlock(&sc->mutex);
745
f62d816f
FF
746 ath9k_ps_restore(sc);
747
ceb26a60 748 return 0;
f078f209
LR
749}
750
36323f81
TH
751static void ath9k_tx(struct ieee80211_hw *hw,
752 struct ieee80211_tx_control *control,
753 struct sk_buff *skb)
f078f209 754{
9ac58615 755 struct ath_softc *sc = hw->priv;
c46917bb 756 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
528f0c6b 757 struct ath_tx_control txctl;
1bc14880 758 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
07c15a3f 759 unsigned long flags;
528f0c6b 760
96148326 761 if (sc->ps_enabled) {
dc8c4585
JM
762 /*
763 * mac80211 does not set PM field for normal data frames, so we
764 * need to update that based on the current PS mode.
765 */
766 if (ieee80211_is_data(hdr->frame_control) &&
767 !ieee80211_is_nullfunc(hdr->frame_control) &&
768 !ieee80211_has_pm(hdr->frame_control)) {
d2182b69 769 ath_dbg(common, PS,
226afe68 770 "Add PM=1 for a TX frame while in PS mode\n");
dc8c4585
JM
771 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
772 }
773 }
774
ad128860 775 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
9a23f9ca
JM
776 /*
777 * We are using PS-Poll and mac80211 can request TX while in
778 * power save mode. Need to wake up hardware for the TX to be
779 * completed and if needed, also for RX of buffered frames.
780 */
9a23f9ca 781 ath9k_ps_wakeup(sc);
07c15a3f 782 spin_lock_irqsave(&sc->sc_pm_lock, flags);
fdf76622
VT
783 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
784 ath9k_hw_setrxabort(sc->sc_ah, 0);
9a23f9ca 785 if (ieee80211_is_pspoll(hdr->frame_control)) {
d2182b69 786 ath_dbg(common, PS,
226afe68 787 "Sending PS-Poll to pick a buffered frame\n");
1b04b930 788 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
9a23f9ca 789 } else {
d2182b69 790 ath_dbg(common, PS, "Wake up to complete TX\n");
1b04b930 791 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
9a23f9ca
JM
792 }
793 /*
794 * The actual restore operation will happen only after
ad128860 795 * the ps_flags bit is cleared. We are just dropping
9a23f9ca
JM
796 * the ps_usecount here.
797 */
07c15a3f 798 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
9a23f9ca
JM
799 ath9k_ps_restore(sc);
800 }
801
ad128860
SM
802 /*
803 * Cannot tx while the hardware is in full sleep, it first needs a full
804 * chip reset to recover from that
805 */
806 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
807 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
808 goto exit;
809 }
810
528f0c6b 811 memset(&txctl, 0, sizeof(struct ath_tx_control));
066dae93 812 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
36323f81 813 txctl.sta = control->sta;
528f0c6b 814
d2182b69 815 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
8feceb67 816
c52f33d0 817 if (ath_tx_start(hw, skb, &txctl) != 0) {
d2182b69 818 ath_dbg(common, XMIT, "TX failed\n");
a5a0bca1 819 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
528f0c6b 820 goto exit;
8feceb67
VT
821 }
822
7bb45683 823 return;
528f0c6b 824exit:
249ee722 825 ieee80211_free_txskb(hw, skb);
f078f209
LR
826}
827
8feceb67 828static void ath9k_stop(struct ieee80211_hw *hw)
f078f209 829{
9ac58615 830 struct ath_softc *sc = hw->priv;
af03abec 831 struct ath_hw *ah = sc->sc_ah;
c46917bb 832 struct ath_common *common = ath9k_hw_common(ah);
c0c11741 833 bool prev_idle;
f078f209 834
ea22df29
SM
835 ath9k_deinit_channel_context(sc);
836
4c483817
S
837 mutex_lock(&sc->mutex);
838
9adcf440 839 ath_cancel_work(sc);
c94dbff7 840
eefa01dd 841 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
d2182b69 842 ath_dbg(common, ANY, "Device not present\n");
4c483817 843 mutex_unlock(&sc->mutex);
9c84b797
S
844 return;
845 }
8feceb67 846
3867cf6a
S
847 /* Ensure HW is awake when we try to shut it down. */
848 ath9k_ps_wakeup(sc);
849
6a6733f2
LR
850 spin_lock_bh(&sc->sc_pcu_lock);
851
203043f5
SG
852 /* prevent tasklets to enable interrupts once we disable them */
853 ah->imask &= ~ATH9K_INT_GLOBAL;
854
ff37e337
S
855 /* make sure h/w will not generate any interrupt
856 * before setting the invalid flag. */
4df3071e 857 ath9k_hw_disable_interrupts(ah);
ff37e337 858
c0c11741
FF
859 spin_unlock_bh(&sc->sc_pcu_lock);
860
861 /* we can now sync irq and kill any running tasklets, since we already
862 * disabled interrupts and not holding a spin lock */
863 synchronize_irq(sc->irq);
864 tasklet_kill(&sc->intr_tq);
865 tasklet_kill(&sc->bcon_tasklet);
866
867 prev_idle = sc->ps_idle;
868 sc->ps_idle = true;
869
870 spin_lock_bh(&sc->sc_pcu_lock);
871
872 if (ah->led_pin >= 0) {
aeeb2065
SM
873 ath9k_hw_set_gpio(ah, ah->led_pin,
874 (ah->config.led_active_high) ? 0 : 1);
c0c11741
FF
875 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
876 }
877
9ebea382 878 ath_prepare_reset(sc);
ff37e337 879
0d95521e
FF
880 if (sc->rx.frag) {
881 dev_kfree_skb_any(sc->rx.frag);
882 sc->rx.frag = NULL;
883 }
884
c0c11741 885 if (!ah->curchan)
fbbcd146
FF
886 ah->curchan = ath9k_cmn_get_channel(hw, ah,
887 &sc->cur_chan->chandef);
6a6733f2 888
c0c11741
FF
889 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
890 ath9k_hw_phy_disable(ah);
6a6733f2 891
c0c11741 892 ath9k_hw_configpcipowersave(ah, true);
203043f5 893
c0c11741 894 spin_unlock_bh(&sc->sc_pcu_lock);
3867cf6a 895
c0c11741 896 ath9k_ps_restore(sc);
ff37e337 897
eefa01dd 898 set_bit(ATH_OP_INVALID, &common->op_flags);
c0c11741 899 sc->ps_idle = prev_idle;
500c064d 900
141b38b6
S
901 mutex_unlock(&sc->mutex);
902
d2182b69 903 ath_dbg(common, CONFIG, "Driver halt\n");
f078f209
LR
904}
905
c648ecb0 906static bool ath9k_uses_beacons(int type)
4801416c
BG
907{
908 switch (type) {
909 case NL80211_IFTYPE_AP:
910 case NL80211_IFTYPE_ADHOC:
911 case NL80211_IFTYPE_MESH_POINT:
912 return true;
913 default:
914 return false;
915 }
916}
917
4b93fd29
SM
918static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
919 u8 *mac, struct ieee80211_vif *vif)
4801416c 920{
cb35582a 921 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
4801416c
BG
922 int i;
923
ab11bb28 924 if (iter_data->has_hw_macaddr) {
4801416c
BG
925 for (i = 0; i < ETH_ALEN; i++)
926 iter_data->mask[i] &=
927 ~(iter_data->hw_macaddr[i] ^ mac[i]);
ab11bb28
FF
928 } else {
929 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
930 iter_data->has_hw_macaddr = true;
931 }
141b38b6 932
9a9c4fbc
RM
933 if (!vif->bss_conf.use_short_slot)
934 iter_data->slottime = ATH9K_SLOT_TIME_20;
935
1ed32e4f 936 switch (vif->type) {
4801416c
BG
937 case NL80211_IFTYPE_AP:
938 iter_data->naps++;
f078f209 939 break;
4801416c
BG
940 case NL80211_IFTYPE_STATION:
941 iter_data->nstations++;
cb35582a 942 if (avp->assoc && !iter_data->primary_sta)
9a9c4fbc 943 iter_data->primary_sta = vif;
e51f3eff 944 break;
05c914fe 945 case NL80211_IFTYPE_ADHOC:
4801416c 946 iter_data->nadhocs++;
9a9c4fbc
RM
947 if (vif->bss_conf.enable_beacon)
948 iter_data->beacons = true;
4801416c 949 break;
9cb5412b 950 case NL80211_IFTYPE_MESH_POINT:
4801416c 951 iter_data->nmeshes++;
9a9c4fbc
RM
952 if (vif->bss_conf.enable_beacon)
953 iter_data->beacons = true;
4801416c
BG
954 break;
955 case NL80211_IFTYPE_WDS:
956 iter_data->nwds++;
f078f209
LR
957 break;
958 default:
4801416c 959 break;
f078f209 960 }
4801416c 961}
f078f209 962
2ce73c02
SM
963static void ath9k_update_bssid_mask(struct ath_softc *sc,
964 struct ath_chanctx *ctx,
965 struct ath9k_vif_iter_data *iter_data)
966{
967 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
968 struct ath_vif *avp;
969 int i;
970
971 if (!ath9k_is_chanctx_enabled())
972 return;
973
974 list_for_each_entry(avp, &ctx->vifs, list) {
975 if (ctx->nvifs_assigned != 1)
976 continue;
977
978 if (!avp->vif->p2p || !iter_data->has_hw_macaddr)
979 continue;
980
981 ether_addr_copy(common->curbssid, avp->bssid);
982
983 /* perm_addr will be used as the p2p device address. */
984 for (i = 0; i < ETH_ALEN; i++)
985 iter_data->mask[i] &=
986 ~(iter_data->hw_macaddr[i] ^
987 sc->hw->wiphy->perm_addr[i]);
988 }
989}
990
4801416c 991/* Called with sc->mutex held. */
9a9c4fbc
RM
992void ath9k_calculate_iter_data(struct ath_softc *sc,
993 struct ath_chanctx *ctx,
4801416c
BG
994 struct ath9k_vif_iter_data *iter_data)
995{
9a9c4fbc 996 struct ath_vif *avp;
8feceb67 997
4801416c 998 /*
657eb17d
MV
999 * Pick the MAC address of the first interface as the new hardware
1000 * MAC address. The hardware will use it together with the BSSID mask
1001 * when matching addresses.
4801416c
BG
1002 */
1003 memset(iter_data, 0, sizeof(*iter_data));
4801416c 1004 memset(&iter_data->mask, 0xff, ETH_ALEN);
9a9c4fbc
RM
1005 iter_data->slottime = ATH9K_SLOT_TIME_9;
1006
1007 list_for_each_entry(avp, &ctx->vifs, list)
1008 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
2ce73c02
SM
1009
1010 ath9k_update_bssid_mask(sc, ctx, iter_data);
9a9c4fbc
RM
1011}
1012
1013static void ath9k_set_assoc_state(struct ath_softc *sc,
1014 struct ieee80211_vif *vif, bool changed)
1015{
1016 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
cb35582a 1017 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
9a9c4fbc
RM
1018 unsigned long flags;
1019
1020 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
9a9c4fbc 1021
cb35582a
SM
1022 ether_addr_copy(common->curbssid, avp->bssid);
1023 common->curaid = avp->aid;
9a9c4fbc
RM
1024 ath9k_hw_write_associd(sc->sc_ah);
1025
1026 if (changed) {
1027 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1028 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
5640b08e 1029
9a9c4fbc
RM
1030 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1031 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1032 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1033 }
4801416c 1034
9a9c4fbc
RM
1035 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1036 ath9k_mci_update_wlan_channels(sc, false);
ab11bb28 1037
9a9c4fbc
RM
1038 ath_dbg(common, CONFIG,
1039 "Primary Station interface: %pM, BSSID: %pM\n",
1040 vif->addr, common->curbssid);
4801416c 1041}
8ca21f01 1042
4ee26de1
SM
1043#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1044static void ath9k_set_offchannel_state(struct ath_softc *sc)
1045{
1046 struct ath_hw *ah = sc->sc_ah;
1047 struct ath_common *common = ath9k_hw_common(ah);
1048 struct ieee80211_vif *vif = NULL;
1049
1050 ath9k_ps_wakeup(sc);
1051
1052 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1053 vif = sc->offchannel.scan_vif;
1054 else
1055 vif = sc->offchannel.roc_vif;
1056
1057 if (WARN_ON(!vif))
1058 goto exit;
1059
1060 eth_zero_addr(common->curbssid);
1061 eth_broadcast_addr(common->bssidmask);
62ae1aef 1062 memcpy(common->macaddr, vif->addr, ETH_ALEN);
4ee26de1
SM
1063 common->curaid = 0;
1064 ah->opmode = vif->type;
1065 ah->imask &= ~ATH9K_INT_SWBA;
1066 ah->imask &= ~ATH9K_INT_TSFOOR;
1067 ah->slottime = ATH9K_SLOT_TIME_9;
1068
1069 ath_hw_setbssidmask(common);
1070 ath9k_hw_setopmode(ah);
1071 ath9k_hw_write_associd(sc->sc_ah);
1072 ath9k_hw_set_interrupts(ah);
1073 ath9k_hw_init_global_settings(ah);
1074
1075exit:
1076 ath9k_ps_restore(sc);
1077}
1078#endif
1079
4801416c 1080/* Called with sc->mutex held. */
9a9c4fbc
RM
1081void ath9k_calculate_summary_state(struct ath_softc *sc,
1082 struct ath_chanctx *ctx)
4801416c 1083{
4801416c
BG
1084 struct ath_hw *ah = sc->sc_ah;
1085 struct ath_common *common = ath9k_hw_common(ah);
1086 struct ath9k_vif_iter_data iter_data;
9bf30ff9 1087 struct ath_beacon_config *cur_conf;
8ca21f01 1088
9a9c4fbc
RM
1089 ath_chanctx_check_active(sc, ctx);
1090
1091 if (ctx != sc->cur_chan)
1092 return;
1093
4ee26de1
SM
1094#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1095 if (ctx == &sc->offchannel.chan)
1096 return ath9k_set_offchannel_state(sc);
1097#endif
1098
9a9c4fbc
RM
1099 ath9k_ps_wakeup(sc);
1100 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1101
1102 if (iter_data.has_hw_macaddr)
62ae1aef 1103 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
2c3db3d5 1104
4801416c
BG
1105 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1106 ath_hw_setbssidmask(common);
1107
4801416c 1108 if (iter_data.naps > 0) {
9bf30ff9 1109 cur_conf = &ctx->beacon;
60ca9f87 1110 ath9k_hw_set_tsfadjust(ah, true);
4801416c 1111 ah->opmode = NL80211_IFTYPE_AP;
9bf30ff9
SM
1112 if (cur_conf->enable_beacon)
1113 iter_data.beacons = true;
4801416c 1114 } else {
60ca9f87 1115 ath9k_hw_set_tsfadjust(ah, false);
5640b08e 1116
fd5999cf
JC
1117 if (iter_data.nmeshes)
1118 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1119 else if (iter_data.nwds)
4801416c
BG
1120 ah->opmode = NL80211_IFTYPE_AP;
1121 else if (iter_data.nadhocs)
1122 ah->opmode = NL80211_IFTYPE_ADHOC;
1123 else
1124 ah->opmode = NL80211_IFTYPE_STATION;
1125 }
5640b08e 1126
df35d29e
SM
1127 ath9k_hw_setopmode(ah);
1128
748299f2 1129 ctx->switch_after_beacon = false;
198823fd 1130 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
3069168c 1131 ah->imask |= ATH9K_INT_TSFOOR;
748299f2 1132 else {
4801416c 1133 ah->imask &= ~ATH9K_INT_TSFOOR;
748299f2
FF
1134 if (iter_data.naps == 1 && iter_data.beacons)
1135 ctx->switch_after_beacon = true;
1136 }
4af9cf4f 1137
9a9c4fbc
RM
1138 ah->imask &= ~ATH9K_INT_SWBA;
1139 if (ah->opmode == NL80211_IFTYPE_STATION) {
1140 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1141
9a9c4fbc 1142 if (iter_data.primary_sta) {
602607b6 1143 iter_data.beacons = true;
9a9c4fbc
RM
1144 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1145 changed);
1030f9fe 1146 ctx->primary_sta = iter_data.primary_sta;
9a9c4fbc
RM
1147 } else {
1148 ctx->primary_sta = NULL;
1149 memset(common->curbssid, 0, ETH_ALEN);
1150 common->curaid = 0;
1151 ath9k_hw_write_associd(sc->sc_ah);
1152 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1153 ath9k_mci_update_wlan_channels(sc, true);
1154 }
1155 } else if (iter_data.beacons) {
1156 ah->imask |= ATH9K_INT_SWBA;
1157 }
72d874c6 1158 ath9k_hw_set_interrupts(ah);
6dcc3444 1159
9a9c4fbc
RM
1160 if (iter_data.beacons)
1161 set_bit(ATH_OP_BEACONS, &common->op_flags);
1162 else
1163 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1164
1165 if (ah->slottime != iter_data.slottime) {
1166 ah->slottime = iter_data.slottime;
1167 ath9k_hw_init_global_settings(ah);
6dcc3444 1168 }
9a9c4fbc
RM
1169
1170 if (iter_data.primary_sta)
1171 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1172 else
1173 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1174
2ce73c02
SM
1175 ath_dbg(common, CONFIG,
1176 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1177 common->macaddr, common->curbssid, common->bssidmask);
1178
9a9c4fbc 1179 ath9k_ps_restore(sc);
4801416c 1180}
6f255425 1181
a4027644
SM
1182static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1183 struct ieee80211_vif *vif)
1184{
1185 int i;
1186
1187 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1188 vif->hw_queue[i] = i;
1189
4b870c26
CYY
1190 if (vif->type == NL80211_IFTYPE_AP ||
1191 vif->type == NL80211_IFTYPE_MESH_POINT)
a4027644
SM
1192 vif->cab_queue = hw->queues - 2;
1193 else
1194 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1195}
1196
4801416c
BG
1197static int ath9k_add_interface(struct ieee80211_hw *hw,
1198 struct ieee80211_vif *vif)
6b3b991d 1199{
9ac58615 1200 struct ath_softc *sc = hw->priv;
4801416c
BG
1201 struct ath_hw *ah = sc->sc_ah;
1202 struct ath_common *common = ath9k_hw_common(ah);
f89d1bc4
FF
1203 struct ath_vif *avp = (void *)vif->drv_priv;
1204 struct ath_node *an = &avp->mcast_node;
6b3b991d 1205
4801416c 1206 mutex_lock(&sc->mutex);
6b3b991d 1207
89f927af 1208 if (config_enabled(CONFIG_ATH9K_TX99)) {
ca529c93 1209 if (sc->cur_chan->nvifs >= 1) {
89f927af
LR
1210 mutex_unlock(&sc->mutex);
1211 return -EOPNOTSUPP;
1212 }
1213 sc->tx99_vif = vif;
1214 }
1215
d2182b69 1216 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
ca529c93 1217 sc->cur_chan->nvifs++;
4801416c 1218
130ef6e9
SM
1219 if (ath9k_uses_beacons(vif->type))
1220 ath9k_beacon_assign_slot(sc, vif);
1221
d463af4a 1222 avp->vif = vif;
499afacc 1223 if (!ath9k_is_chanctx_enabled()) {
39305635 1224 avp->chanctx = sc->cur_chan;
9a9c4fbc
RM
1225 list_add_tail(&avp->list, &avp->chanctx->vifs);
1226 }
a4027644
SM
1227
1228 ath9k_assign_hw_queues(hw, vif);
0453531e 1229
f89d1bc4
FF
1230 an->sc = sc;
1231 an->sta = NULL;
1232 an->vif = vif;
1233 an->no_ps_filter = true;
1234 ath_tx_node_init(sc, an);
1235
4801416c 1236 mutex_unlock(&sc->mutex);
327967cb 1237 return 0;
6b3b991d
RM
1238}
1239
1240static int ath9k_change_interface(struct ieee80211_hw *hw,
1241 struct ieee80211_vif *vif,
1242 enum nl80211_iftype new_type,
1243 bool p2p)
1244{
9ac58615 1245 struct ath_softc *sc = hw->priv;
6b3b991d 1246 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
c083ce99 1247 struct ath_vif *avp = (void *)vif->drv_priv;
6b3b991d 1248
6b3b991d 1249 mutex_lock(&sc->mutex);
4801416c 1250
89f927af
LR
1251 if (config_enabled(CONFIG_ATH9K_TX99)) {
1252 mutex_unlock(&sc->mutex);
1253 return -EOPNOTSUPP;
1254 }
1255
1256 ath_dbg(common, CONFIG, "Change Interface\n");
1257
4801416c 1258 if (ath9k_uses_beacons(vif->type))
130ef6e9 1259 ath9k_beacon_remove_slot(sc, vif);
4801416c 1260
6b3b991d
RM
1261 vif->type = new_type;
1262 vif->p2p = p2p;
1263
130ef6e9
SM
1264 if (ath9k_uses_beacons(vif->type))
1265 ath9k_beacon_assign_slot(sc, vif);
9a9c4fbc 1266
a4027644 1267 ath9k_assign_hw_queues(hw, vif);
9a9c4fbc 1268 ath9k_calculate_summary_state(sc, avp->chanctx);
130ef6e9 1269
6b3b991d 1270 mutex_unlock(&sc->mutex);
327967cb 1271 return 0;
6b3b991d
RM
1272}
1273
8feceb67 1274static void ath9k_remove_interface(struct ieee80211_hw *hw,
1ed32e4f 1275 struct ieee80211_vif *vif)
f078f209 1276{
9ac58615 1277 struct ath_softc *sc = hw->priv;
c46917bb 1278 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
f89d1bc4 1279 struct ath_vif *avp = (void *)vif->drv_priv;
f078f209 1280
d2182b69 1281 ath_dbg(common, CONFIG, "Detach Interface\n");
f078f209 1282
141b38b6
S
1283 mutex_lock(&sc->mutex);
1284
c7dd40c9 1285 ath9k_p2p_remove_vif(sc, vif);
d463af4a 1286
ca529c93 1287 sc->cur_chan->nvifs--;
89f927af 1288 sc->tx99_vif = NULL;
499afacc 1289 if (!ath9k_is_chanctx_enabled())
9a9c4fbc 1290 list_del(&avp->list);
580f0b8a 1291
4801416c 1292 if (ath9k_uses_beacons(vif->type))
130ef6e9 1293 ath9k_beacon_remove_slot(sc, vif);
2c3db3d5 1294
f89d1bc4
FF
1295 ath_tx_node_cleanup(sc, &avp->mcast_node);
1296
141b38b6 1297 mutex_unlock(&sc->mutex);
f078f209
LR
1298}
1299
fbab7390 1300static void ath9k_enable_ps(struct ath_softc *sc)
3f7c5c10 1301{
3069168c 1302 struct ath_hw *ah = sc->sc_ah;
ad128860 1303 struct ath_common *common = ath9k_hw_common(ah);
3069168c 1304
89f927af
LR
1305 if (config_enabled(CONFIG_ATH9K_TX99))
1306 return;
1307
3f7c5c10 1308 sc->ps_enabled = true;
3069168c
PR
1309 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1310 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1311 ah->imask |= ATH9K_INT_TIM_TIMER;
72d874c6 1312 ath9k_hw_set_interrupts(ah);
3f7c5c10 1313 }
fdf76622 1314 ath9k_hw_setrxabort(ah, 1);
3f7c5c10 1315 }
ad128860 1316 ath_dbg(common, PS, "PowerSave enabled\n");
3f7c5c10
SB
1317}
1318
845d708e
SB
1319static void ath9k_disable_ps(struct ath_softc *sc)
1320{
1321 struct ath_hw *ah = sc->sc_ah;
ad128860 1322 struct ath_common *common = ath9k_hw_common(ah);
845d708e 1323
89f927af
LR
1324 if (config_enabled(CONFIG_ATH9K_TX99))
1325 return;
1326
845d708e
SB
1327 sc->ps_enabled = false;
1328 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1329 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1330 ath9k_hw_setrxabort(ah, 0);
1331 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1332 PS_WAIT_FOR_CAB |
1333 PS_WAIT_FOR_PSPOLL_DATA |
1334 PS_WAIT_FOR_TX_ACK);
1335 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1336 ah->imask &= ~ATH9K_INT_TIM_TIMER;
72d874c6 1337 ath9k_hw_set_interrupts(ah);
845d708e
SB
1338 }
1339 }
ad128860 1340 ath_dbg(common, PS, "PowerSave disabled\n");
845d708e
SB
1341}
1342
e8975581 1343static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
f078f209 1344{
9ac58615 1345 struct ath_softc *sc = hw->priv;
3430098a
FF
1346 struct ath_hw *ah = sc->sc_ah;
1347 struct ath_common *common = ath9k_hw_common(ah);
e8975581 1348 struct ieee80211_conf *conf = &hw->conf;
fbbcd146 1349 struct ath_chanctx *ctx = sc->cur_chan;
f078f209 1350
c0c11741 1351 ath9k_ps_wakeup(sc);
aa33de09 1352 mutex_lock(&sc->mutex);
141b38b6 1353
daa1b6ee 1354 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
7545daf4 1355 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
b73f3e78 1356 if (sc->ps_idle) {
daa1b6ee 1357 ath_cancel_work(sc);
b73f3e78
RM
1358 ath9k_stop_btcoex(sc);
1359 } else {
1360 ath9k_start_btcoex(sc);
75600abf
FF
1361 /*
1362 * The chip needs a reset to properly wake up from
1363 * full sleep
1364 */
39305635 1365 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
b73f3e78 1366 }
daa1b6ee 1367 }
64839170 1368
e7824a50
LR
1369 /*
1370 * We just prepare to enable PS. We have to wait until our AP has
1371 * ACK'd our null data frame to disable RX otherwise we'll ignore
1372 * those ACKs and end up retransmitting the same null data frames.
1373 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1374 */
3cbb5dd7 1375 if (changed & IEEE80211_CONF_CHANGE_PS) {
8ab2cd09
LR
1376 unsigned long flags;
1377 spin_lock_irqsave(&sc->sc_pm_lock, flags);
fbab7390
SB
1378 if (conf->flags & IEEE80211_CONF_PS)
1379 ath9k_enable_ps(sc);
845d708e
SB
1380 else
1381 ath9k_disable_ps(sc);
8ab2cd09 1382 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
3cbb5dd7
VN
1383 }
1384
199afd9d
S
1385 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1386 if (conf->flags & IEEE80211_CONF_MONITOR) {
d2182b69 1387 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
5f841b41
RM
1388 sc->sc_ah->is_monitoring = true;
1389 } else {
d2182b69 1390 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
5f841b41 1391 sc->sc_ah->is_monitoring = false;
199afd9d
S
1392 }
1393 }
1394
499afacc 1395 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
fbbcd146 1396 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
bff11766 1397 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
094d05dc 1398 }
f078f209 1399
c9f6a656 1400 if (changed & IEEE80211_CONF_CHANGE_POWER) {
d2182b69 1401 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
bc7e1be7 1402 sc->cur_chan->txpower = 2 * conf->power_level;
d385c5c2
FF
1403 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
1404 sc->cur_chan->txpower,
1405 &sc->cur_chan->cur_txpower);
64839170
LR
1406 }
1407
aa33de09 1408 mutex_unlock(&sc->mutex);
c0c11741 1409 ath9k_ps_restore(sc);
141b38b6 1410
f078f209
LR
1411 return 0;
1412}
1413
8feceb67
VT
1414#define SUPPORTED_FILTERS \
1415 (FIF_PROMISC_IN_BSS | \
1416 FIF_ALLMULTI | \
1417 FIF_CONTROL | \
af6a3fc7 1418 FIF_PSPOLL | \
8feceb67
VT
1419 FIF_OTHER_BSS | \
1420 FIF_BCN_PRBRESP_PROMISC | \
9c1d8e4a 1421 FIF_PROBE_REQ | \
8feceb67 1422 FIF_FCSFAIL)
c83be688 1423
8feceb67
VT
1424/* FIXME: sc->sc_full_reset ? */
1425static void ath9k_configure_filter(struct ieee80211_hw *hw,
1426 unsigned int changed_flags,
1427 unsigned int *total_flags,
3ac64bee 1428 u64 multicast)
8feceb67 1429{
9ac58615 1430 struct ath_softc *sc = hw->priv;
8feceb67 1431 u32 rfilt;
f078f209 1432
8feceb67
VT
1433 changed_flags &= SUPPORTED_FILTERS;
1434 *total_flags &= SUPPORTED_FILTERS;
f078f209 1435
fce34430
SM
1436 spin_lock_bh(&sc->chan_lock);
1437 sc->cur_chan->rxfilter = *total_flags;
1438 spin_unlock_bh(&sc->chan_lock);
1439
aa68aeaa 1440 ath9k_ps_wakeup(sc);
8feceb67
VT
1441 rfilt = ath_calcrxfilter(sc);
1442 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
aa68aeaa 1443 ath9k_ps_restore(sc);
f078f209 1444
d2182b69
JP
1445 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1446 rfilt);
8feceb67 1447}
f078f209 1448
4ca77860
JB
1449static int ath9k_sta_add(struct ieee80211_hw *hw,
1450 struct ieee80211_vif *vif,
1451 struct ieee80211_sta *sta)
8feceb67 1452{
9ac58615 1453 struct ath_softc *sc = hw->priv;
93ae2dd2
FF
1454 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1455 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1456 struct ieee80211_key_conf ps_key = { };
4ef69d03 1457 int key;
f078f209 1458
7e1e3864 1459 ath_node_attach(sc, sta, vif);
f59a59fe
FF
1460
1461 if (vif->type != NL80211_IFTYPE_AP &&
1462 vif->type != NL80211_IFTYPE_AP_VLAN)
1463 return 0;
1464
4ef69d03 1465 key = ath_key_config(common, vif, sta, &ps_key);
4bbf4414 1466 if (key > 0) {
4ef69d03 1467 an->ps_key = key;
4bbf4414
RM
1468 an->key_idx[0] = key;
1469 }
4ca77860
JB
1470
1471 return 0;
1472}
1473
93ae2dd2
FF
1474static void ath9k_del_ps_key(struct ath_softc *sc,
1475 struct ieee80211_vif *vif,
1476 struct ieee80211_sta *sta)
1477{
1478 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1479 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1480 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1481
1482 if (!an->ps_key)
1483 return;
1484
1485 ath_key_delete(common, &ps_key);
4ef69d03 1486 an->ps_key = 0;
4bbf4414 1487 an->key_idx[0] = 0;
93ae2dd2
FF
1488}
1489
4ca77860
JB
1490static int ath9k_sta_remove(struct ieee80211_hw *hw,
1491 struct ieee80211_vif *vif,
1492 struct ieee80211_sta *sta)
1493{
9ac58615 1494 struct ath_softc *sc = hw->priv;
4ca77860 1495
93ae2dd2 1496 ath9k_del_ps_key(sc, vif, sta);
4ca77860
JB
1497 ath_node_detach(sc, sta);
1498
1499 return 0;
f078f209
LR
1500}
1501
df3c6eb3
SM
1502static int ath9k_sta_state(struct ieee80211_hw *hw,
1503 struct ieee80211_vif *vif,
1504 struct ieee80211_sta *sta,
1505 enum ieee80211_sta_state old_state,
1506 enum ieee80211_sta_state new_state)
1507{
1508 struct ath_softc *sc = hw->priv;
1509 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1510 int ret = 0;
1511
1512 if (old_state == IEEE80211_STA_AUTH &&
1513 new_state == IEEE80211_STA_ASSOC) {
1514 ret = ath9k_sta_add(hw, vif, sta);
1515 ath_dbg(common, CONFIG,
1516 "Add station: %pM\n", sta->addr);
1517 } else if (old_state == IEEE80211_STA_ASSOC &&
1518 new_state == IEEE80211_STA_AUTH) {
1519 ret = ath9k_sta_remove(hw, vif, sta);
1520 ath_dbg(common, CONFIG,
1521 "Remove station: %pM\n", sta->addr);
1522 }
1523
b8f9279b 1524 if (ath9k_is_chanctx_enabled()) {
91e6ceb3
SM
1525 if (vif->type == NL80211_IFTYPE_STATION) {
1526 if (old_state == IEEE80211_STA_ASSOC &&
1527 new_state == IEEE80211_STA_AUTHORIZED)
1528 ath_chanctx_event(sc, vif,
1529 ATH_CHANCTX_EVENT_AUTHORIZED);
1530 }
b8f9279b
SM
1531 }
1532
df3c6eb3
SM
1533 return ret;
1534}
1535
4bbf4414
RM
1536static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1537 struct ath_node *an,
1538 bool set)
1539{
1540 int i;
1541
1542 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1543 if (!an->key_idx[i])
1544 continue;
1545 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1546 }
1547}
1548
5519541d
FF
1549static void ath9k_sta_notify(struct ieee80211_hw *hw,
1550 struct ieee80211_vif *vif,
1551 enum sta_notify_cmd cmd,
1552 struct ieee80211_sta *sta)
1553{
1554 struct ath_softc *sc = hw->priv;
1555 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1556
1557 switch (cmd) {
1558 case STA_NOTIFY_SLEEP:
1559 an->sleeping = true;
042ec453 1560 ath_tx_aggr_sleep(sta, sc, an);
4bbf4414 1561 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
5519541d
FF
1562 break;
1563 case STA_NOTIFY_AWAKE:
4bbf4414 1564 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
5519541d
FF
1565 an->sleeping = false;
1566 ath_tx_aggr_wakeup(sc, an);
1567 break;
1568 }
1569}
1570
8a3a3c85
EP
1571static int ath9k_conf_tx(struct ieee80211_hw *hw,
1572 struct ieee80211_vif *vif, u16 queue,
8feceb67 1573 const struct ieee80211_tx_queue_params *params)
f078f209 1574{
9ac58615 1575 struct ath_softc *sc = hw->priv;
c46917bb 1576 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
066dae93 1577 struct ath_txq *txq;
8feceb67 1578 struct ath9k_tx_queue_info qi;
066dae93 1579 int ret = 0;
f078f209 1580
bea843c7 1581 if (queue >= IEEE80211_NUM_ACS)
8feceb67 1582 return 0;
f078f209 1583
066dae93
FF
1584 txq = sc->tx.txq_map[queue];
1585
96f372c9 1586 ath9k_ps_wakeup(sc);
141b38b6
S
1587 mutex_lock(&sc->mutex);
1588
1ffb0610
S
1589 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1590
8feceb67
VT
1591 qi.tqi_aifs = params->aifs;
1592 qi.tqi_cwmin = params->cw_min;
1593 qi.tqi_cwmax = params->cw_max;
531bd079 1594 qi.tqi_burstTime = params->txop * 32;
f078f209 1595
d2182b69 1596 ath_dbg(common, CONFIG,
226afe68
JP
1597 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1598 queue, txq->axq_qnum, params->aifs, params->cw_min,
1599 params->cw_max, params->txop);
f078f209 1600
aa5955c3 1601 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
066dae93 1602 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
8feceb67 1603 if (ret)
3800276a 1604 ath_err(common, "TXQ Update failed\n");
f078f209 1605
141b38b6 1606 mutex_unlock(&sc->mutex);
96f372c9 1607 ath9k_ps_restore(sc);
141b38b6 1608
8feceb67
VT
1609 return ret;
1610}
f078f209 1611
8feceb67
VT
1612static int ath9k_set_key(struct ieee80211_hw *hw,
1613 enum set_key_cmd cmd,
dc822b5d
JB
1614 struct ieee80211_vif *vif,
1615 struct ieee80211_sta *sta,
8feceb67
VT
1616 struct ieee80211_key_conf *key)
1617{
9ac58615 1618 struct ath_softc *sc = hw->priv;
c46917bb 1619 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
4bbf4414
RM
1620 struct ath_node *an = NULL;
1621 int ret = 0, i;
f078f209 1622
3e6109c5 1623 if (ath9k_modparam_nohwcrypt)
b3bd89ce
JM
1624 return -ENOSPC;
1625
5bd5e9a6
CYY
1626 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1627 vif->type == NL80211_IFTYPE_MESH_POINT) &&
cfdc9a8b
JM
1628 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1629 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1630 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1631 /*
1632 * For now, disable hw crypto for the RSN IBSS group keys. This
1633 * could be optimized in the future to use a modified key cache
1634 * design to support per-STA RX GTK, but until that gets
1635 * implemented, use of software crypto for group addressed
1636 * frames is a acceptable to allow RSN IBSS to be used.
1637 */
1638 return -EOPNOTSUPP;
1639 }
1640
141b38b6 1641 mutex_lock(&sc->mutex);
3cbb5dd7 1642 ath9k_ps_wakeup(sc);
4bbf4414
RM
1643 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1644 if (sta)
1645 an = (struct ath_node *)sta->drv_priv;
f078f209 1646
8feceb67
VT
1647 switch (cmd) {
1648 case SET_KEY:
93ae2dd2
FF
1649 if (sta)
1650 ath9k_del_ps_key(sc, vif, sta);
1651
4bbf4414 1652 key->hw_key_idx = 0;
040e539e 1653 ret = ath_key_config(common, vif, sta, key);
6ace2891
JM
1654 if (ret >= 0) {
1655 key->hw_key_idx = ret;
8feceb67
VT
1656 /* push IV and Michael MIC generation to stack */
1657 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
97359d12 1658 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
8feceb67 1659 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
e6510b11 1660 if (sc->sc_ah->sw_mgmt_crypto_tx &&
97359d12 1661 key->cipher == WLAN_CIPHER_SUITE_CCMP)
e548c49e 1662 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
6ace2891 1663 ret = 0;
8feceb67 1664 }
4bbf4414
RM
1665 if (an && key->hw_key_idx) {
1666 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1667 if (an->key_idx[i])
1668 continue;
1669 an->key_idx[i] = key->hw_key_idx;
1670 break;
1671 }
1672 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1673 }
8feceb67
VT
1674 break;
1675 case DISABLE_KEY:
040e539e 1676 ath_key_delete(common, key);
4bbf4414
RM
1677 if (an) {
1678 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1679 if (an->key_idx[i] != key->hw_key_idx)
1680 continue;
1681 an->key_idx[i] = 0;
1682 break;
1683 }
1684 }
1685 key->hw_key_idx = 0;
8feceb67
VT
1686 break;
1687 default:
1688 ret = -EINVAL;
1689 }
f078f209 1690
3cbb5dd7 1691 ath9k_ps_restore(sc);
141b38b6
S
1692 mutex_unlock(&sc->mutex);
1693
8feceb67
VT
1694 return ret;
1695}
6c43c090 1696
8feceb67
VT
1697static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1698 struct ieee80211_vif *vif,
1699 struct ieee80211_bss_conf *bss_conf,
1700 u32 changed)
1701{
da0d45f7
SM
1702#define CHECK_ANI \
1703 (BSS_CHANGED_ASSOC | \
1704 BSS_CHANGED_IBSS | \
1705 BSS_CHANGED_BEACON_ENABLED)
1706
9ac58615 1707 struct ath_softc *sc = hw->priv;
2d0ddec5 1708 struct ath_hw *ah = sc->sc_ah;
1510718d 1709 struct ath_common *common = ath9k_hw_common(ah);
2d0ddec5 1710 struct ath_vif *avp = (void *)vif->drv_priv;
0005baf4 1711 int slottime;
f078f209 1712
96f372c9 1713 ath9k_ps_wakeup(sc);
141b38b6
S
1714 mutex_lock(&sc->mutex);
1715
9f61903c 1716 if (changed & BSS_CHANGED_ASSOC) {
6c43c090
SM
1717 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1718 bss_conf->bssid, bss_conf->assoc);
1719
62ae1aef 1720 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
cb35582a
SM
1721 avp->aid = bss_conf->aid;
1722 avp->assoc = bss_conf->assoc;
1723
9a9c4fbc 1724 ath9k_calculate_summary_state(sc, avp->chanctx);
c6089ccc 1725 }
2d0ddec5 1726
2e5ef459 1727 if (changed & BSS_CHANGED_IBSS) {
2e5ef459
RM
1728 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1729 common->curaid = bss_conf->aid;
1730 ath9k_hw_write_associd(sc->sc_ah);
2e5ef459
RM
1731 }
1732
ef4ad633 1733 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
9198cf4a
RM
1734 (changed & BSS_CHANGED_BEACON_INT) ||
1735 (changed & BSS_CHANGED_BEACON_INFO)) {
9bf30ff9 1736 ath9k_beacon_config(sc, vif, changed);
9a9c4fbc
RM
1737 if (changed & BSS_CHANGED_BEACON_ENABLED)
1738 ath9k_calculate_summary_state(sc, avp->chanctx);
9a9c4fbc 1739 }
0005baf4 1740
9a9c4fbc
RM
1741 if ((avp->chanctx == sc->cur_chan) &&
1742 (changed & BSS_CHANGED_ERP_SLOT)) {
0005baf4
FF
1743 if (bss_conf->use_short_slot)
1744 slottime = 9;
1745 else
1746 slottime = 20;
1747 if (vif->type == NL80211_IFTYPE_AP) {
1748 /*
1749 * Defer update, so that connected stations can adjust
1750 * their settings at the same time.
1751 * See beacon.c for more details
1752 */
1753 sc->beacon.slottime = slottime;
1754 sc->beacon.updateslot = UPDATE;
1755 } else {
1756 ah->slottime = slottime;
1757 ath9k_hw_init_global_settings(ah);
1758 }
2d0ddec5
JB
1759 }
1760
c7dd40c9
SM
1761 if (changed & BSS_CHANGED_P2P_PS)
1762 ath9k_p2p_bss_info_changed(sc, vif);
d463af4a 1763
da0d45f7
SM
1764 if (changed & CHECK_ANI)
1765 ath_check_ani(sc);
1766
141b38b6 1767 mutex_unlock(&sc->mutex);
96f372c9 1768 ath9k_ps_restore(sc);
da0d45f7
SM
1769
1770#undef CHECK_ANI
8feceb67 1771}
f078f209 1772
37a41b4a 1773static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
8feceb67 1774{
9ac58615 1775 struct ath_softc *sc = hw->priv;
8feceb67 1776 u64 tsf;
f078f209 1777
141b38b6 1778 mutex_lock(&sc->mutex);
9abbfb27 1779 ath9k_ps_wakeup(sc);
141b38b6 1780 tsf = ath9k_hw_gettsf64(sc->sc_ah);
9abbfb27 1781 ath9k_ps_restore(sc);
141b38b6 1782 mutex_unlock(&sc->mutex);
f078f209 1783
8feceb67
VT
1784 return tsf;
1785}
f078f209 1786
37a41b4a
EP
1787static void ath9k_set_tsf(struct ieee80211_hw *hw,
1788 struct ieee80211_vif *vif,
1789 u64 tsf)
3b5d665b 1790{
9ac58615 1791 struct ath_softc *sc = hw->priv;
3b5d665b 1792
141b38b6 1793 mutex_lock(&sc->mutex);
9abbfb27 1794 ath9k_ps_wakeup(sc);
141b38b6 1795 ath9k_hw_settsf64(sc->sc_ah, tsf);
9abbfb27 1796 ath9k_ps_restore(sc);
141b38b6 1797 mutex_unlock(&sc->mutex);
3b5d665b
AF
1798}
1799
37a41b4a 1800static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
8feceb67 1801{
9ac58615 1802 struct ath_softc *sc = hw->priv;
c83be688 1803
141b38b6 1804 mutex_lock(&sc->mutex);
21526d57
LR
1805
1806 ath9k_ps_wakeup(sc);
141b38b6 1807 ath9k_hw_reset_tsf(sc->sc_ah);
21526d57
LR
1808 ath9k_ps_restore(sc);
1809
141b38b6 1810 mutex_unlock(&sc->mutex);
8feceb67 1811}
f078f209 1812
8feceb67 1813static int ath9k_ampdu_action(struct ieee80211_hw *hw,
c951ad35 1814 struct ieee80211_vif *vif,
141b38b6
S
1815 enum ieee80211_ampdu_mlme_action action,
1816 struct ieee80211_sta *sta,
0b01f030 1817 u16 tid, u16 *ssn, u8 buf_size)
8feceb67 1818{
9ac58615 1819 struct ath_softc *sc = hw->priv;
1e929d3e 1820 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
16e23428 1821 bool flush = false;
8feceb67 1822 int ret = 0;
f078f209 1823
7ca7c776 1824 mutex_lock(&sc->mutex);
85ad181e 1825
8feceb67
VT
1826 switch (action) {
1827 case IEEE80211_AMPDU_RX_START:
8feceb67
VT
1828 break;
1829 case IEEE80211_AMPDU_RX_STOP:
8feceb67
VT
1830 break;
1831 case IEEE80211_AMPDU_TX_START:
1e929d3e
SM
1832 if (ath9k_is_chanctx_enabled()) {
1833 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
1834 ret = -EBUSY;
1835 break;
1836 }
1837 }
8b685ba9 1838 ath9k_ps_wakeup(sc);
231c3a1f
FF
1839 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1840 if (!ret)
1841 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
8b685ba9 1842 ath9k_ps_restore(sc);
8feceb67 1843 break;
18b559d5
JB
1844 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1845 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
16e23428
FF
1846 flush = true;
1847 case IEEE80211_AMPDU_TX_STOP_CONT:
8b685ba9 1848 ath9k_ps_wakeup(sc);
f83da965 1849 ath_tx_aggr_stop(sc, sta, tid);
08c96abd 1850 if (!flush)
16e23428 1851 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
8b685ba9 1852 ath9k_ps_restore(sc);
8feceb67 1853 break;
b1720231 1854 case IEEE80211_AMPDU_TX_OPERATIONAL:
8b685ba9 1855 ath9k_ps_wakeup(sc);
8469cdef 1856 ath_tx_aggr_resume(sc, sta, tid);
8b685ba9 1857 ath9k_ps_restore(sc);
8469cdef 1858 break;
8feceb67 1859 default:
3800276a 1860 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
8feceb67
VT
1861 }
1862
7ca7c776 1863 mutex_unlock(&sc->mutex);
85ad181e 1864
8feceb67 1865 return ret;
f078f209
LR
1866}
1867
62dad5b0
BP
1868static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1869 struct survey_info *survey)
1870{
9ac58615 1871 struct ath_softc *sc = hw->priv;
3430098a 1872 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39162dbe 1873 struct ieee80211_supported_band *sband;
3430098a 1874 struct ieee80211_channel *chan;
3430098a
FF
1875 int pos;
1876
89f927af
LR
1877 if (config_enabled(CONFIG_ATH9K_TX99))
1878 return -EOPNOTSUPP;
1879
b7cc9b97 1880 spin_lock_bh(&common->cc_lock);
3430098a
FF
1881 if (idx == 0)
1882 ath_update_survey_stats(sc);
39162dbe
FF
1883
1884 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1885 if (sband && idx >= sband->n_channels) {
1886 idx -= sband->n_channels;
1887 sband = NULL;
1888 }
62dad5b0 1889
39162dbe
FF
1890 if (!sband)
1891 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
62dad5b0 1892
3430098a 1893 if (!sband || idx >= sband->n_channels) {
b7cc9b97 1894 spin_unlock_bh(&common->cc_lock);
3430098a 1895 return -ENOENT;
4f1a5a4b 1896 }
62dad5b0 1897
3430098a
FF
1898 chan = &sband->channels[idx];
1899 pos = chan->hw_value;
1900 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1901 survey->channel = chan;
b7cc9b97 1902 spin_unlock_bh(&common->cc_lock);
3430098a 1903
62dad5b0
BP
1904 return 0;
1905}
1906
24a1936b
LB
1907static void ath9k_enable_dynack(struct ath_softc *sc)
1908{
1909#ifdef CONFIG_ATH9K_DYNACK
1910 u32 rfilt;
1911 struct ath_hw *ah = sc->sc_ah;
1912
1913 ath_dynack_reset(ah);
1914
1915 ah->dynack.enabled = true;
1916 rfilt = ath_calcrxfilter(sc);
1917 ath9k_hw_setrxfilter(ah, rfilt);
1918#endif
1919}
1920
a4bcaf55
LB
1921static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1922 s16 coverage_class)
e239d859 1923{
9ac58615 1924 struct ath_softc *sc = hw->priv;
e239d859
FF
1925 struct ath_hw *ah = sc->sc_ah;
1926
89f927af
LR
1927 if (config_enabled(CONFIG_ATH9K_TX99))
1928 return;
1929
e239d859 1930 mutex_lock(&sc->mutex);
8b2a3827 1931
24a1936b
LB
1932 if (coverage_class >= 0) {
1933 ah->coverage_class = coverage_class;
1934 if (ah->dynack.enabled) {
1935 u32 rfilt;
1936
1937 ah->dynack.enabled = false;
1938 rfilt = ath_calcrxfilter(sc);
1939 ath9k_hw_setrxfilter(ah, rfilt);
1940 }
1941 ath9k_ps_wakeup(sc);
1942 ath9k_hw_init_global_settings(ah);
1943 ath9k_ps_restore(sc);
1944 } else if (!ah->dynack.enabled) {
1945 ath9k_enable_dynack(sc);
1946 }
8b2a3827 1947
e239d859
FF
1948 mutex_unlock(&sc->mutex);
1949}
1950
e2d389b5
SM
1951static bool ath9k_has_tx_pending(struct ath_softc *sc,
1952 bool sw_pending)
10e23181 1953{
f7838073 1954 int i, npend = 0;
10e23181
FF
1955
1956 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1957 if (!ATH_TXQ_SETUP(sc, i))
1958 continue;
1959
e2d389b5
SM
1960 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
1961 sw_pending);
10e23181
FF
1962 if (npend)
1963 break;
1964 }
1965
1966 return !!npend;
1967}
1968
77be2c54
EG
1969static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1970 u32 queues, bool drop)
bff11766
FF
1971{
1972 struct ath_softc *sc = hw->priv;
25f3bc7d
SM
1973 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1974
1975 if (ath9k_is_chanctx_enabled()) {
1976 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
1977 goto flush;
bff11766 1978
25f3bc7d
SM
1979 /*
1980 * If MCC is active, extend the flush timeout
1981 * and wait for the HW/SW queues to become
1982 * empty. This needs to be done outside the
1983 * sc->mutex lock to allow the channel scheduler
1984 * to switch channel contexts.
1985 *
1986 * The vif queues have been stopped in mac80211,
1987 * so there won't be any incoming frames.
1988 */
1989 __ath9k_flush(hw, queues, drop, true, true);
1990 return;
1991 }
1992flush:
bff11766 1993 mutex_lock(&sc->mutex);
25f3bc7d 1994 __ath9k_flush(hw, queues, drop, true, false);
bff11766
FF
1995 mutex_unlock(&sc->mutex);
1996}
1997
e2d389b5 1998void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
25f3bc7d 1999 bool sw_pending, bool timeout_override)
69081624 2000{
69081624 2001 struct ath_softc *sc = hw->priv;
99aa55b6
MSS
2002 struct ath_hw *ah = sc->sc_ah;
2003 struct ath_common *common = ath9k_hw_common(ah);
2fae0d9f 2004 int timeout;
2f6fc351 2005 bool drain_txq;
69081624 2006
69081624
VT
2007 cancel_delayed_work_sync(&sc->tx_complete_work);
2008
6a6b3f3e 2009 if (ah->ah_flags & AH_UNPLUGGED) {
d2182b69 2010 ath_dbg(common, ANY, "Device has been unplugged!\n");
6a6b3f3e
MSS
2011 return;
2012 }
2013
eefa01dd 2014 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
d2182b69 2015 ath_dbg(common, ANY, "Device not present\n");
99aa55b6
MSS
2016 return;
2017 }
2018
2fae0d9f 2019 spin_lock_bh(&sc->chan_lock);
25f3bc7d
SM
2020 if (timeout_override)
2021 timeout = HZ / 5;
2022 else
2023 timeout = sc->cur_chan->flush_timeout;
2fae0d9f
SM
2024 spin_unlock_bh(&sc->chan_lock);
2025
2026 ath_dbg(common, CHAN_CTX,
2027 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2028
e2d389b5 2029 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
10e23181
FF
2030 timeout) > 0)
2031 drop = false;
69081624 2032
9df0d6a2
FF
2033 if (drop) {
2034 ath9k_ps_wakeup(sc);
2035 spin_lock_bh(&sc->sc_pcu_lock);
1381559b 2036 drain_txq = ath_drain_all_txq(sc);
9df0d6a2 2037 spin_unlock_bh(&sc->sc_pcu_lock);
9adcf440 2038
9df0d6a2 2039 if (!drain_txq)
5555c955 2040 ath_reset(sc, NULL);
9adcf440 2041
9df0d6a2 2042 ath9k_ps_restore(sc);
9df0d6a2 2043 }
d78f4b3e 2044
69081624 2045 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
69081624
VT
2046}
2047
15b91e83
VN
2048static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2049{
2050 struct ath_softc *sc = hw->priv;
15b91e83 2051
e2d389b5 2052 return ath9k_has_tx_pending(sc, true);
15b91e83
VN
2053}
2054
5595f119 2055static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
ba4903f9
FF
2056{
2057 struct ath_softc *sc = hw->priv;
2058 struct ath_hw *ah = sc->sc_ah;
2059 struct ieee80211_vif *vif;
2060 struct ath_vif *avp;
2061 struct ath_buf *bf;
2062 struct ath_tx_status ts;
4286df60 2063 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
ba4903f9
FF
2064 int status;
2065
2066 vif = sc->beacon.bslot[0];
2067 if (!vif)
2068 return 0;
2069
aa45fe96 2070 if (!vif->bss_conf.enable_beacon)
ba4903f9
FF
2071 return 0;
2072
aa45fe96
SM
2073 avp = (void *)vif->drv_priv;
2074
4286df60 2075 if (!sc->beacon.tx_processed && !edma) {
ba4903f9
FF
2076 tasklet_disable(&sc->bcon_tasklet);
2077
2078 bf = avp->av_bcbuf;
2079 if (!bf || !bf->bf_mpdu)
2080 goto skip;
2081
2082 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2083 if (status == -EINPROGRESS)
2084 goto skip;
2085
2086 sc->beacon.tx_processed = true;
2087 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2088
2089skip:
2090 tasklet_enable(&sc->bcon_tasklet);
2091 }
2092
2093 return sc->beacon.tx_last;
2094}
2095
52c94f41
MSS
2096static int ath9k_get_stats(struct ieee80211_hw *hw,
2097 struct ieee80211_low_level_stats *stats)
2098{
2099 struct ath_softc *sc = hw->priv;
2100 struct ath_hw *ah = sc->sc_ah;
2101 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2102
2103 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2104 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2105 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2106 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2107 return 0;
2108}
2109
43c35284
FF
2110static u32 fill_chainmask(u32 cap, u32 new)
2111{
2112 u32 filled = 0;
2113 int i;
2114
2115 for (i = 0; cap && new; i++, cap >>= 1) {
2116 if (!(cap & BIT(0)))
2117 continue;
2118
2119 if (new & BIT(0))
2120 filled |= BIT(i);
2121
2122 new >>= 1;
2123 }
2124
2125 return filled;
2126}
2127
5d9c7e3c
FF
2128static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2129{
fea92cbf
FF
2130 if (AR_SREV_9300_20_OR_LATER(ah))
2131 return true;
2132
5d9c7e3c
FF
2133 switch (val & 0x7) {
2134 case 0x1:
2135 case 0x3:
2136 case 0x7:
2137 return true;
2138 case 0x2:
2139 return (ah->caps.rx_chainmask == 1);
2140 default:
2141 return false;
2142 }
2143}
2144
43c35284
FF
2145static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2146{
2147 struct ath_softc *sc = hw->priv;
2148 struct ath_hw *ah = sc->sc_ah;
2149
5d9c7e3c
FF
2150 if (ah->caps.rx_chainmask != 1)
2151 rx_ant |= tx_ant;
2152
2153 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
43c35284
FF
2154 return -EINVAL;
2155
2156 sc->ant_rx = rx_ant;
2157 sc->ant_tx = tx_ant;
2158
2159 if (ah->caps.rx_chainmask == 1)
2160 return 0;
2161
2162 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2163 if (AR_SREV_9100(ah))
2164 ah->rxchainmask = 0x7;
2165 else
2166 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2167
2168 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
b57ba3b2 2169 ath9k_cmn_reload_chainmask(ah);
43c35284
FF
2170
2171 return 0;
2172}
2173
2174static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2175{
2176 struct ath_softc *sc = hw->priv;
2177
2178 *tx_ant = sc->ant_tx;
2179 *rx_ant = sc->ant_rx;
2180 return 0;
2181}
2182
a344d677
JB
2183static void ath9k_sw_scan_start(struct ieee80211_hw *hw,
2184 struct ieee80211_vif *vif,
2185 const u8 *mac_addr)
e93d083f
SW
2186{
2187 struct ath_softc *sc = hw->priv;
eefa01dd
OR
2188 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2189 set_bit(ATH_OP_SCANNING, &common->op_flags);
e93d083f
SW
2190}
2191
a344d677
JB
2192static void ath9k_sw_scan_complete(struct ieee80211_hw *hw,
2193 struct ieee80211_vif *vif)
e93d083f
SW
2194{
2195 struct ath_softc *sc = hw->priv;
eefa01dd
OR
2196 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2197 clear_bit(ATH_OP_SCANNING, &common->op_flags);
e93d083f 2198}
b11e640a 2199
499afacc
SM
2200#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2201
6185672a
SM
2202static void ath9k_cancel_pending_offchannel(struct ath_softc *sc)
2203{
2204 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2205
2206 if (sc->offchannel.roc_vif) {
2207 ath_dbg(common, CHAN_CTX,
2208 "%s: Aborting RoC\n", __func__);
2209
2210 del_timer_sync(&sc->offchannel.timer);
2211 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2212 ath_roc_complete(sc, true);
2213 }
2214
2215 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
2216 ath_dbg(common, CHAN_CTX,
2217 "%s: Aborting HW scan\n", __func__);
2218
2219 del_timer_sync(&sc->offchannel.timer);
2220 ath_scan_complete(sc, true);
2221 }
2222}
2223
78b21949 2224static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
855df36d 2225 struct ieee80211_scan_request *hw_req)
78b21949 2226{
855df36d 2227 struct cfg80211_scan_request *req = &hw_req->req;
78b21949
FF
2228 struct ath_softc *sc = hw->priv;
2229 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2230 int ret = 0;
2231
2232 mutex_lock(&sc->mutex);
2233
2234 if (WARN_ON(sc->offchannel.scan_req)) {
2235 ret = -EBUSY;
2236 goto out;
2237 }
2238
2239 ath9k_ps_wakeup(sc);
2240 set_bit(ATH_OP_SCANNING, &common->op_flags);
2241 sc->offchannel.scan_vif = vif;
2242 sc->offchannel.scan_req = req;
2243 sc->offchannel.scan_idx = 0;
78b21949 2244
bc81d43a
SM
2245 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2246 vif->addr);
2247
2248 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2249 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
405393cf 2250 ath_offchannel_next(sc);
bc81d43a 2251 }
78b21949
FF
2252
2253out:
2254 mutex_unlock(&sc->mutex);
2255
2256 return ret;
2257}
2258
2259static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2260 struct ieee80211_vif *vif)
2261{
2262 struct ath_softc *sc = hw->priv;
bc81d43a
SM
2263 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2264
2265 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
78b21949
FF
2266
2267 mutex_lock(&sc->mutex);
2268 del_timer_sync(&sc->offchannel.timer);
2269 ath_scan_complete(sc, true);
2270 mutex_unlock(&sc->mutex);
2271}
2272
405393cf
FF
2273static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2274 struct ieee80211_vif *vif,
2275 struct ieee80211_channel *chan, int duration,
2276 enum ieee80211_roc_type type)
2277{
2278 struct ath_softc *sc = hw->priv;
bc81d43a 2279 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
405393cf
FF
2280 int ret = 0;
2281
2282 mutex_lock(&sc->mutex);
2283
2284 if (WARN_ON(sc->offchannel.roc_vif)) {
2285 ret = -EBUSY;
2286 goto out;
2287 }
2288
2289 ath9k_ps_wakeup(sc);
2290 sc->offchannel.roc_vif = vif;
2291 sc->offchannel.roc_chan = chan;
2292 sc->offchannel.roc_duration = duration;
2293
bc81d43a
SM
2294 ath_dbg(common, CHAN_CTX,
2295 "RoC request on vif: %pM, type: %d duration: %d\n",
2296 vif->addr, type, duration);
2297
2298 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2299 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
405393cf 2300 ath_offchannel_next(sc);
bc81d43a 2301 }
405393cf
FF
2302
2303out:
2304 mutex_unlock(&sc->mutex);
2305
2306 return ret;
2307}
2308
2309static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2310{
2311 struct ath_softc *sc = hw->priv;
bc81d43a 2312 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
405393cf
FF
2313
2314 mutex_lock(&sc->mutex);
2315
bc81d43a 2316 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
405393cf
FF
2317 del_timer_sync(&sc->offchannel.timer);
2318
2319 if (sc->offchannel.roc_vif) {
2320 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2321 ath_roc_complete(sc, true);
2322 }
2323
2324 mutex_unlock(&sc->mutex);
2325
2326 return 0;
2327}
2328
39305635
FF
2329static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2330 struct ieee80211_chanctx_conf *conf)
2331{
2332 struct ath_softc *sc = hw->priv;
bc81d43a 2333 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39305635 2334 struct ath_chanctx *ctx, **ptr;
3ad9c386 2335 int pos;
39305635
FF
2336
2337 mutex_lock(&sc->mutex);
c4dc0d04
RM
2338
2339 ath_for_each_chanctx(sc, ctx) {
2340 if (ctx->assigned)
2341 continue;
2342
2343 ptr = (void *) conf->drv_priv;
2344 *ptr = ctx;
2345 ctx->assigned = true;
3ad9c386
RM
2346 pos = ctx - &sc->chanctx[0];
2347 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
bc81d43a
SM
2348
2349 ath_dbg(common, CHAN_CTX,
2350 "Add channel context: %d MHz\n",
2351 conf->def.chan->center_freq);
2352
c4dc0d04 2353 ath_chanctx_set_channel(sc, ctx, &conf->def);
4c7e9aee 2354
39305635 2355 mutex_unlock(&sc->mutex);
c4dc0d04 2356 return 0;
39305635 2357 }
bc81d43a 2358
39305635 2359 mutex_unlock(&sc->mutex);
c4dc0d04 2360 return -ENOSPC;
39305635
FF
2361}
2362
2363
2364static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2365 struct ieee80211_chanctx_conf *conf)
2366{
2367 struct ath_softc *sc = hw->priv;
bc81d43a 2368 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39305635
FF
2369 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2370
2371 mutex_lock(&sc->mutex);
bc81d43a
SM
2372
2373 ath_dbg(common, CHAN_CTX,
2374 "Remove channel context: %d MHz\n",
2375 conf->def.chan->center_freq);
2376
39305635 2377 ctx->assigned = false;
b18111d9 2378 ctx->hw_queue_base = 0;
73fa2f26 2379 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
bc81d43a 2380
39305635
FF
2381 mutex_unlock(&sc->mutex);
2382}
2383
2384static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2385 struct ieee80211_chanctx_conf *conf,
2386 u32 changed)
2387{
2388 struct ath_softc *sc = hw->priv;
bc81d43a 2389 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39305635
FF
2390 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2391
2392 mutex_lock(&sc->mutex);
bc81d43a
SM
2393 ath_dbg(common, CHAN_CTX,
2394 "Change channel context: %d MHz\n",
2395 conf->def.chan->center_freq);
39305635
FF
2396 ath_chanctx_set_channel(sc, ctx, &conf->def);
2397 mutex_unlock(&sc->mutex);
2398}
2399
2400static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2401 struct ieee80211_vif *vif,
2402 struct ieee80211_chanctx_conf *conf)
2403{
2404 struct ath_softc *sc = hw->priv;
bc81d43a 2405 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39305635
FF
2406 struct ath_vif *avp = (void *)vif->drv_priv;
2407 struct ath_chanctx *ctx = ath_chanctx_get(conf);
3ad9c386 2408 int i;
39305635 2409
6185672a
SM
2410 ath9k_cancel_pending_offchannel(sc);
2411
39305635 2412 mutex_lock(&sc->mutex);
bc81d43a
SM
2413
2414 ath_dbg(common, CHAN_CTX,
2415 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2416 vif->addr, vif->type, vif->p2p,
2417 conf->def.chan->center_freq);
2418
39305635 2419 avp->chanctx = ctx;
2ce73c02 2420 ctx->nvifs_assigned++;
39305635 2421 list_add_tail(&avp->list, &ctx->vifs);
9a9c4fbc 2422 ath9k_calculate_summary_state(sc, ctx);
3ad9c386
RM
2423 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2424 vif->hw_queue[i] = ctx->hw_queue_base + i;
bc81d43a 2425
39305635
FF
2426 mutex_unlock(&sc->mutex);
2427
2428 return 0;
2429}
2430
2431static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2432 struct ieee80211_vif *vif,
2433 struct ieee80211_chanctx_conf *conf)
2434{
2435 struct ath_softc *sc = hw->priv;
bc81d43a 2436 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
39305635
FF
2437 struct ath_vif *avp = (void *)vif->drv_priv;
2438 struct ath_chanctx *ctx = ath_chanctx_get(conf);
3ad9c386 2439 int ac;
39305635 2440
6185672a
SM
2441 ath9k_cancel_pending_offchannel(sc);
2442
39305635 2443 mutex_lock(&sc->mutex);
bc81d43a
SM
2444
2445 ath_dbg(common, CHAN_CTX,
2446 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2447 vif->addr, vif->type, vif->p2p,
2448 conf->def.chan->center_freq);
2449
39305635 2450 avp->chanctx = NULL;
2ce73c02 2451 ctx->nvifs_assigned--;
39305635 2452 list_del(&avp->list);
9a9c4fbc 2453 ath9k_calculate_summary_state(sc, ctx);
3ad9c386
RM
2454 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2455 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
bc81d43a 2456
39305635
FF
2457 mutex_unlock(&sc->mutex);
2458}
2459
e20a854e
SM
2460static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2461 struct ieee80211_vif *vif)
2462{
2463 struct ath_softc *sc = hw->priv;
2464 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2465 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
c6500ea2
SM
2466 struct ath_beacon_config *cur_conf;
2467 struct ath_chanctx *go_ctx;
2468 unsigned long timeout;
e20a854e 2469 bool changed = false;
c6500ea2 2470 u32 beacon_int;
e20a854e
SM
2471
2472 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2473 return;
2474
2475 if (!avp->chanctx)
2476 return;
2477
2478 mutex_lock(&sc->mutex);
2479
2480 spin_lock_bh(&sc->chan_lock);
c6500ea2 2481 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
e20a854e 2482 changed = true;
c6500ea2
SM
2483 spin_unlock_bh(&sc->chan_lock);
2484
2485 if (!changed)
2486 goto out;
2487
6185672a 2488 ath9k_cancel_pending_offchannel(sc);
23aab0c2 2489
c6500ea2
SM
2490 go_ctx = ath_is_go_chanctx_present(sc);
2491
2492 if (go_ctx) {
2493 /*
2494 * Wait till the GO interface gets a chance
2495 * to send out an NoA.
2496 */
2497 spin_lock_bh(&sc->chan_lock);
2498 sc->sched.mgd_prepare_tx = true;
2499 cur_conf = &go_ctx->beacon;
2500 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2501 spin_unlock_bh(&sc->chan_lock);
2502
6185672a 2503 timeout = usecs_to_jiffies(beacon_int * 2);
c6500ea2
SM
2504 init_completion(&sc->go_beacon);
2505
6185672a 2506 mutex_unlock(&sc->mutex);
2c3634a8 2507
c6500ea2 2508 if (wait_for_completion_timeout(&sc->go_beacon,
2c3634a8 2509 timeout) == 0) {
c6500ea2
SM
2510 ath_dbg(common, CHAN_CTX,
2511 "Failed to send new NoA\n");
2c3634a8
SM
2512
2513 spin_lock_bh(&sc->chan_lock);
2514 sc->sched.mgd_prepare_tx = false;
2515 spin_unlock_bh(&sc->chan_lock);
2516 }
2517
6185672a 2518 mutex_lock(&sc->mutex);
e20a854e 2519 }
c6500ea2 2520
878066e7 2521 ath_dbg(common, CHAN_CTX,
c6500ea2
SM
2522 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2523 __func__, vif->addr);
2524
2525 spin_lock_bh(&sc->chan_lock);
2526 sc->next_chan = avp->chanctx;
e20a854e
SM
2527 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2528 spin_unlock_bh(&sc->chan_lock);
2529
c6500ea2
SM
2530 ath_chanctx_set_next(sc, true);
2531out:
e20a854e
SM
2532 mutex_unlock(&sc->mutex);
2533}
2534
78b21949
FF
2535void ath9k_fill_chanctx_ops(void)
2536{
499afacc 2537 if (!ath9k_is_chanctx_enabled())
78b21949
FF
2538 return;
2539
bc81d43a
SM
2540 ath9k_ops.hw_scan = ath9k_hw_scan;
2541 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2542 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
405393cf 2543 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
bc81d43a
SM
2544 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2545 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2546 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2547 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2548 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
e20a854e 2549 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
78b21949
FF
2550}
2551
499afacc
SM
2552#endif
2553
d385c5c2
FF
2554static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2555 int *dbm)
2556{
2557 struct ath_softc *sc = hw->priv;
2558 struct ath_vif *avp = (void *)vif->drv_priv;
2559
2560 mutex_lock(&sc->mutex);
2561 if (avp->chanctx)
2562 *dbm = avp->chanctx->cur_txpower;
2563 else
2564 *dbm = sc->cur_chan->cur_txpower;
2565 mutex_unlock(&sc->mutex);
2566
2567 *dbm /= 2;
2568
2569 return 0;
2570}
2571
6baff7f9 2572struct ieee80211_ops ath9k_ops = {
8feceb67
VT
2573 .tx = ath9k_tx,
2574 .start = ath9k_start,
2575 .stop = ath9k_stop,
2576 .add_interface = ath9k_add_interface,
6b3b991d 2577 .change_interface = ath9k_change_interface,
8feceb67
VT
2578 .remove_interface = ath9k_remove_interface,
2579 .config = ath9k_config,
8feceb67 2580 .configure_filter = ath9k_configure_filter,
df3c6eb3 2581 .sta_state = ath9k_sta_state,
5519541d 2582 .sta_notify = ath9k_sta_notify,
8feceb67 2583 .conf_tx = ath9k_conf_tx,
8feceb67 2584 .bss_info_changed = ath9k_bss_info_changed,
8feceb67 2585 .set_key = ath9k_set_key,
8feceb67 2586 .get_tsf = ath9k_get_tsf,
3b5d665b 2587 .set_tsf = ath9k_set_tsf,
8feceb67 2588 .reset_tsf = ath9k_reset_tsf,
4233df6b 2589 .ampdu_action = ath9k_ampdu_action,
62dad5b0 2590 .get_survey = ath9k_get_survey,
3b319aae 2591 .rfkill_poll = ath9k_rfkill_poll_state,
e239d859 2592 .set_coverage_class = ath9k_set_coverage_class,
69081624 2593 .flush = ath9k_flush,
15b91e83 2594 .tx_frames_pending = ath9k_tx_frames_pending,
52c94f41 2595 .tx_last_beacon = ath9k_tx_last_beacon,
86a22acf 2596 .release_buffered_frames = ath9k_release_buffered_frames,
52c94f41 2597 .get_stats = ath9k_get_stats,
43c35284
FF
2598 .set_antenna = ath9k_set_antenna,
2599 .get_antenna = ath9k_get_antenna,
b90bd9d1 2600
e60001e7 2601#ifdef CONFIG_ATH9K_WOW
b11e640a
MSS
2602 .suspend = ath9k_suspend,
2603 .resume = ath9k_resume,
2604 .set_wakeup = ath9k_set_wakeup,
2605#endif
2606
b90bd9d1
BG
2607#ifdef CONFIG_ATH9K_DEBUGFS
2608 .get_et_sset_count = ath9k_get_et_sset_count,
a145daf7
SM
2609 .get_et_stats = ath9k_get_et_stats,
2610 .get_et_strings = ath9k_get_et_strings,
2611#endif
2612
1cdbaf0d 2613#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
a145daf7 2614 .sta_add_debugfs = ath9k_sta_add_debugfs,
b90bd9d1 2615#endif
e93d083f
SW
2616 .sw_scan_start = ath9k_sw_scan_start,
2617 .sw_scan_complete = ath9k_sw_scan_complete,
d385c5c2 2618 .get_txpower = ath9k_get_txpower,
8feceb67 2619};