]> Pileus Git - ~andy/linux/blob - drivers/net/wireless/ath/ath9k/main.c
netfilter: nf_conntrack_dccp: fix skb_header_pointer API usages
[~andy/linux] / drivers / net / wireless / ath / ath9k / main.c
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/nl80211.h>
18 #include <linux/delay.h>
19 #include "ath9k.h"
20 #include "btcoex.h"
21
22 static void ath9k_set_assoc_state(struct ath_softc *sc,
23                                   struct ieee80211_vif *vif);
24
25 u8 ath9k_parse_mpdudensity(u8 mpdudensity)
26 {
27         /*
28          * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
29          *   0 for no restriction
30          *   1 for 1/4 us
31          *   2 for 1/2 us
32          *   3 for 1 us
33          *   4 for 2 us
34          *   5 for 4 us
35          *   6 for 8 us
36          *   7 for 16 us
37          */
38         switch (mpdudensity) {
39         case 0:
40                 return 0;
41         case 1:
42         case 2:
43         case 3:
44                 /* Our lower layer calculations limit our precision to
45                    1 microsecond */
46                 return 1;
47         case 4:
48                 return 2;
49         case 5:
50                 return 4;
51         case 6:
52                 return 8;
53         case 7:
54                 return 16;
55         default:
56                 return 0;
57         }
58 }
59
60 static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq)
61 {
62         bool pending = false;
63
64         spin_lock_bh(&txq->axq_lock);
65
66         if (txq->axq_depth || !list_empty(&txq->axq_acq))
67                 pending = true;
68
69         spin_unlock_bh(&txq->axq_lock);
70         return pending;
71 }
72
73 static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
74 {
75         unsigned long flags;
76         bool ret;
77
78         spin_lock_irqsave(&sc->sc_pm_lock, flags);
79         ret = ath9k_hw_setpower(sc->sc_ah, mode);
80         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
81
82         return ret;
83 }
84
85 void ath_ps_full_sleep(unsigned long data)
86 {
87         struct ath_softc *sc = (struct ath_softc *) data;
88         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
89         bool reset;
90
91         spin_lock(&common->cc_lock);
92         ath_hw_cycle_counters_update(common);
93         spin_unlock(&common->cc_lock);
94
95         ath9k_hw_setrxabort(sc->sc_ah, 1);
96         ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
97
98         ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
99 }
100
101 void ath9k_ps_wakeup(struct ath_softc *sc)
102 {
103         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
104         unsigned long flags;
105         enum ath9k_power_mode power_mode;
106
107         spin_lock_irqsave(&sc->sc_pm_lock, flags);
108         if (++sc->ps_usecount != 1)
109                 goto unlock;
110
111         del_timer_sync(&sc->sleep_timer);
112         power_mode = sc->sc_ah->power_mode;
113         ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
114
115         /*
116          * While the hardware is asleep, the cycle counters contain no
117          * useful data. Better clear them now so that they don't mess up
118          * survey data results.
119          */
120         if (power_mode != ATH9K_PM_AWAKE) {
121                 spin_lock(&common->cc_lock);
122                 ath_hw_cycle_counters_update(common);
123                 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
124                 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
125                 spin_unlock(&common->cc_lock);
126         }
127
128  unlock:
129         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
130 }
131
132 void ath9k_ps_restore(struct ath_softc *sc)
133 {
134         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
135         enum ath9k_power_mode mode;
136         unsigned long flags;
137
138         spin_lock_irqsave(&sc->sc_pm_lock, flags);
139         if (--sc->ps_usecount != 0)
140                 goto unlock;
141
142         if (sc->ps_idle) {
143                 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
144                 goto unlock;
145         }
146
147         if (sc->ps_enabled &&
148                    !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
149                                      PS_WAIT_FOR_CAB |
150                                      PS_WAIT_FOR_PSPOLL_DATA |
151                                      PS_WAIT_FOR_TX_ACK |
152                                      PS_WAIT_FOR_ANI))) {
153                 mode = ATH9K_PM_NETWORK_SLEEP;
154                 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
155                         ath9k_btcoex_stop_gen_timer(sc);
156         } else {
157                 goto unlock;
158         }
159
160         spin_lock(&common->cc_lock);
161         ath_hw_cycle_counters_update(common);
162         spin_unlock(&common->cc_lock);
163
164         ath9k_hw_setpower(sc->sc_ah, mode);
165
166  unlock:
167         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
168 }
169
170 static void __ath_cancel_work(struct ath_softc *sc)
171 {
172         cancel_work_sync(&sc->paprd_work);
173         cancel_work_sync(&sc->hw_check_work);
174         cancel_delayed_work_sync(&sc->tx_complete_work);
175         cancel_delayed_work_sync(&sc->hw_pll_work);
176
177 #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
178         if (ath9k_hw_mci_is_enabled(sc->sc_ah))
179                 cancel_work_sync(&sc->mci_work);
180 #endif
181 }
182
183 void ath_cancel_work(struct ath_softc *sc)
184 {
185         __ath_cancel_work(sc);
186         cancel_work_sync(&sc->hw_reset_work);
187 }
188
189 void ath_restart_work(struct ath_softc *sc)
190 {
191         ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
192
193         if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
194                 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
195                                      msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
196
197         ath_start_rx_poll(sc, 3);
198         ath_start_ani(sc);
199 }
200
201 static bool ath_prepare_reset(struct ath_softc *sc)
202 {
203         struct ath_hw *ah = sc->sc_ah;
204         bool ret = true;
205
206         ieee80211_stop_queues(sc->hw);
207
208         sc->hw_busy_count = 0;
209         ath_stop_ani(sc);
210         del_timer_sync(&sc->rx_poll_timer);
211
212         ath9k_hw_disable_interrupts(ah);
213
214         if (!ath_drain_all_txq(sc))
215                 ret = false;
216
217         if (!ath_stoprecv(sc))
218                 ret = false;
219
220         return ret;
221 }
222
223 static bool ath_complete_reset(struct ath_softc *sc, bool start)
224 {
225         struct ath_hw *ah = sc->sc_ah;
226         struct ath_common *common = ath9k_hw_common(ah);
227         unsigned long flags;
228         int i;
229
230         if (ath_startrecv(sc) != 0) {
231                 ath_err(common, "Unable to restart recv logic\n");
232                 return false;
233         }
234
235         ath9k_cmn_update_txpow(ah, sc->curtxpow,
236                                sc->config.txpowlimit, &sc->curtxpow);
237
238         clear_bit(SC_OP_HW_RESET, &sc->sc_flags);
239         ath9k_hw_set_interrupts(ah);
240         ath9k_hw_enable_interrupts(ah);
241
242         if (!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL) && start) {
243                 if (!test_bit(SC_OP_BEACONS, &sc->sc_flags))
244                         goto work;
245
246                 if (ah->opmode == NL80211_IFTYPE_STATION &&
247                     test_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags)) {
248                         spin_lock_irqsave(&sc->sc_pm_lock, flags);
249                         sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
250                         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
251                 } else {
252                         ath9k_set_beacon(sc);
253                 }
254         work:
255                 ath_restart_work(sc);
256
257                 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
258                         if (!ATH_TXQ_SETUP(sc, i))
259                                 continue;
260
261                         spin_lock_bh(&sc->tx.txq[i].axq_lock);
262                         ath_txq_schedule(sc, &sc->tx.txq[i]);
263                         spin_unlock_bh(&sc->tx.txq[i].axq_lock);
264                 }
265         }
266
267         ieee80211_wake_queues(sc->hw);
268
269         return true;
270 }
271
272 static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
273 {
274         struct ath_hw *ah = sc->sc_ah;
275         struct ath_common *common = ath9k_hw_common(ah);
276         struct ath9k_hw_cal_data *caldata = NULL;
277         bool fastcc = true;
278         int r;
279
280         __ath_cancel_work(sc);
281
282         tasklet_disable(&sc->intr_tq);
283         spin_lock_bh(&sc->sc_pcu_lock);
284
285         if (!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)) {
286                 fastcc = false;
287                 caldata = &sc->caldata;
288         }
289
290         if (!hchan) {
291                 fastcc = false;
292                 hchan = ah->curchan;
293         }
294
295         if (!ath_prepare_reset(sc))
296                 fastcc = false;
297
298         ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
299                 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
300
301         r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
302         if (r) {
303                 ath_err(common,
304                         "Unable to reset channel, reset status %d\n", r);
305
306                 ath9k_hw_enable_interrupts(ah);
307                 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
308
309                 goto out;
310         }
311
312         if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
313             (sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL))
314                 ath9k_mci_set_txpower(sc, true, false);
315
316         if (!ath_complete_reset(sc, true))
317                 r = -EIO;
318
319 out:
320         spin_unlock_bh(&sc->sc_pcu_lock);
321         tasklet_enable(&sc->intr_tq);
322
323         return r;
324 }
325
326
327 /*
328  * Set/change channels.  If the channel is really being changed, it's done
329  * by reseting the chip.  To accomplish this we must first cleanup any pending
330  * DMA, then restart stuff.
331 */
332 static int ath_set_channel(struct ath_softc *sc, struct cfg80211_chan_def *chandef)
333 {
334         struct ath_hw *ah = sc->sc_ah;
335         struct ath_common *common = ath9k_hw_common(ah);
336         struct ieee80211_hw *hw = sc->hw;
337         struct ath9k_channel *hchan;
338         struct ieee80211_channel *chan = chandef->chan;
339         unsigned long flags;
340         bool offchannel;
341         int pos = chan->hw_value;
342         int old_pos = -1;
343         int r;
344
345         if (test_bit(SC_OP_INVALID, &sc->sc_flags))
346                 return -EIO;
347
348         offchannel = !!(hw->conf.flags & IEEE80211_CONF_OFFCHANNEL);
349
350         if (ah->curchan)
351                 old_pos = ah->curchan - &ah->channels[0];
352
353         ath_dbg(common, CONFIG, "Set channel: %d MHz width: %d\n",
354                 chan->center_freq, chandef->width);
355
356         /* update survey stats for the old channel before switching */
357         spin_lock_irqsave(&common->cc_lock, flags);
358         ath_update_survey_stats(sc);
359         spin_unlock_irqrestore(&common->cc_lock, flags);
360
361         ath9k_cmn_get_channel(hw, ah, chandef);
362
363         /*
364          * If the operating channel changes, change the survey in-use flags
365          * along with it.
366          * Reset the survey data for the new channel, unless we're switching
367          * back to the operating channel from an off-channel operation.
368          */
369         if (!offchannel && sc->cur_survey != &sc->survey[pos]) {
370                 if (sc->cur_survey)
371                         sc->cur_survey->filled &= ~SURVEY_INFO_IN_USE;
372
373                 sc->cur_survey = &sc->survey[pos];
374
375                 memset(sc->cur_survey, 0, sizeof(struct survey_info));
376                 sc->cur_survey->filled |= SURVEY_INFO_IN_USE;
377         } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) {
378                 memset(&sc->survey[pos], 0, sizeof(struct survey_info));
379         }
380
381         hchan = &sc->sc_ah->channels[pos];
382         r = ath_reset_internal(sc, hchan);
383         if (r)
384                 return r;
385
386         /*
387          * The most recent snapshot of channel->noisefloor for the old
388          * channel is only available after the hardware reset. Copy it to
389          * the survey stats now.
390          */
391         if (old_pos >= 0)
392                 ath_update_survey_nf(sc, old_pos);
393
394         /*
395          * Enable radar pulse detection if on a DFS channel. Spectral
396          * scanning and radar detection can not be used concurrently.
397          */
398         if (hw->conf.radar_enabled) {
399                 u32 rxfilter;
400
401                 /* set HW specific DFS configuration */
402                 ath9k_hw_set_radar_params(ah);
403                 rxfilter = ath9k_hw_getrxfilter(ah);
404                 rxfilter |= ATH9K_RX_FILTER_PHYRADAR |
405                                 ATH9K_RX_FILTER_PHYERR;
406                 ath9k_hw_setrxfilter(ah, rxfilter);
407                 ath_dbg(common, DFS, "DFS enabled at freq %d\n",
408                         chan->center_freq);
409         } else {
410                 /* perform spectral scan if requested. */
411                 if (test_bit(SC_OP_SCANNING, &sc->sc_flags) &&
412                         sc->spectral_mode == SPECTRAL_CHANSCAN)
413                         ath9k_spectral_scan_trigger(hw);
414         }
415
416         return 0;
417 }
418
419 static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
420                             struct ieee80211_vif *vif)
421 {
422         struct ath_node *an;
423         an = (struct ath_node *)sta->drv_priv;
424
425         an->sc = sc;
426         an->sta = sta;
427         an->vif = vif;
428
429         ath_tx_node_init(sc, an);
430
431         if (sta->ht_cap.ht_supported) {
432                 an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
433                                      sta->ht_cap.ampdu_factor);
434                 an->mpdudensity = ath9k_parse_mpdudensity(sta->ht_cap.ampdu_density);
435         }
436 }
437
438 static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
439 {
440         struct ath_node *an = (struct ath_node *)sta->drv_priv;
441         ath_tx_node_cleanup(sc, an);
442 }
443
444 void ath9k_tasklet(unsigned long data)
445 {
446         struct ath_softc *sc = (struct ath_softc *)data;
447         struct ath_hw *ah = sc->sc_ah;
448         struct ath_common *common = ath9k_hw_common(ah);
449         enum ath_reset_type type;
450         unsigned long flags;
451         u32 status = sc->intrstatus;
452         u32 rxmask;
453
454         ath9k_ps_wakeup(sc);
455         spin_lock(&sc->sc_pcu_lock);
456
457         if ((status & ATH9K_INT_FATAL) ||
458             (status & ATH9K_INT_BB_WATCHDOG)) {
459
460                 if (status & ATH9K_INT_FATAL)
461                         type = RESET_TYPE_FATAL_INT;
462                 else
463                         type = RESET_TYPE_BB_WATCHDOG;
464
465                 ath9k_queue_reset(sc, type);
466
467                 /*
468                  * Increment the ref. counter here so that
469                  * interrupts are enabled in the reset routine.
470                  */
471                 atomic_inc(&ah->intr_ref_cnt);
472                 ath_dbg(common, ANY, "FATAL: Skipping interrupts\n");
473                 goto out;
474         }
475
476         spin_lock_irqsave(&sc->sc_pm_lock, flags);
477         if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
478                 /*
479                  * TSF sync does not look correct; remain awake to sync with
480                  * the next Beacon.
481                  */
482                 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
483                 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
484         }
485         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
486
487         if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
488                 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
489                           ATH9K_INT_RXORN);
490         else
491                 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
492
493         if (status & rxmask) {
494                 /* Check for high priority Rx first */
495                 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
496                     (status & ATH9K_INT_RXHP))
497                         ath_rx_tasklet(sc, 0, true);
498
499                 ath_rx_tasklet(sc, 0, false);
500         }
501
502         if (status & ATH9K_INT_TX) {
503                 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
504                         ath_tx_edma_tasklet(sc);
505                 else
506                         ath_tx_tasklet(sc);
507
508                 wake_up(&sc->tx_wait);
509         }
510
511         if (status & ATH9K_INT_GENTIMER)
512                 ath_gen_timer_isr(sc->sc_ah);
513
514         ath9k_btcoex_handle_interrupt(sc, status);
515
516         /* re-enable hardware interrupt */
517         ath9k_hw_enable_interrupts(ah);
518 out:
519         spin_unlock(&sc->sc_pcu_lock);
520         ath9k_ps_restore(sc);
521 }
522
523 irqreturn_t ath_isr(int irq, void *dev)
524 {
525 #define SCHED_INTR (                            \
526                 ATH9K_INT_FATAL |               \
527                 ATH9K_INT_BB_WATCHDOG |         \
528                 ATH9K_INT_RXORN |               \
529                 ATH9K_INT_RXEOL |               \
530                 ATH9K_INT_RX |                  \
531                 ATH9K_INT_RXLP |                \
532                 ATH9K_INT_RXHP |                \
533                 ATH9K_INT_TX |                  \
534                 ATH9K_INT_BMISS |               \
535                 ATH9K_INT_CST |                 \
536                 ATH9K_INT_TSFOOR |              \
537                 ATH9K_INT_GENTIMER |            \
538                 ATH9K_INT_MCI)
539
540         struct ath_softc *sc = dev;
541         struct ath_hw *ah = sc->sc_ah;
542         struct ath_common *common = ath9k_hw_common(ah);
543         enum ath9k_int status;
544         u32 sync_cause;
545         bool sched = false;
546
547         /*
548          * The hardware is not ready/present, don't
549          * touch anything. Note this can happen early
550          * on if the IRQ is shared.
551          */
552         if (test_bit(SC_OP_INVALID, &sc->sc_flags))
553                 return IRQ_NONE;
554
555         /* shared irq, not for us */
556
557         if (!ath9k_hw_intrpend(ah))
558                 return IRQ_NONE;
559
560         if (test_bit(SC_OP_HW_RESET, &sc->sc_flags)) {
561                 ath9k_hw_kill_interrupts(ah);
562                 return IRQ_HANDLED;
563         }
564
565         /*
566          * Figure out the reason(s) for the interrupt.  Note
567          * that the hal returns a pseudo-ISR that may include
568          * bits we haven't explicitly enabled so we mask the
569          * value to insure we only process bits we requested.
570          */
571         ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
572         ath9k_debug_sync_cause(sc, sync_cause);
573         status &= ah->imask;    /* discard unasked-for bits */
574
575         /*
576          * If there are no status bits set, then this interrupt was not
577          * for me (should have been caught above).
578          */
579         if (!status)
580                 return IRQ_NONE;
581
582         /* Cache the status */
583         sc->intrstatus = status;
584
585         if (status & SCHED_INTR)
586                 sched = true;
587
588         /*
589          * If a FATAL or RXORN interrupt is received, we have to reset the
590          * chip immediately.
591          */
592         if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
593             !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
594                 goto chip_reset;
595
596         if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
597             (status & ATH9K_INT_BB_WATCHDOG)) {
598
599                 spin_lock(&common->cc_lock);
600                 ath_hw_cycle_counters_update(common);
601                 ar9003_hw_bb_watchdog_dbg_info(ah);
602                 spin_unlock(&common->cc_lock);
603
604                 goto chip_reset;
605         }
606
607 #ifdef CONFIG_ATH9K_WOW
608         if (status & ATH9K_INT_BMISS) {
609                 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
610                         ath_dbg(common, ANY, "during WoW we got a BMISS\n");
611                         atomic_inc(&sc->wow_got_bmiss_intr);
612                         atomic_dec(&sc->wow_sleep_proc_intr);
613                 }
614         }
615 #endif
616
617
618         if (status & ATH9K_INT_SWBA)
619                 tasklet_schedule(&sc->bcon_tasklet);
620
621         if (status & ATH9K_INT_TXURN)
622                 ath9k_hw_updatetxtriglevel(ah, true);
623
624         if (status & ATH9K_INT_RXEOL) {
625                 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
626                 ath9k_hw_set_interrupts(ah);
627         }
628
629         if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
630                 if (status & ATH9K_INT_TIM_TIMER) {
631                         if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
632                                 goto chip_reset;
633                         /* Clear RxAbort bit so that we can
634                          * receive frames */
635                         ath9k_setpower(sc, ATH9K_PM_AWAKE);
636                         spin_lock(&sc->sc_pm_lock);
637                         ath9k_hw_setrxabort(sc->sc_ah, 0);
638                         sc->ps_flags |= PS_WAIT_FOR_BEACON;
639                         spin_unlock(&sc->sc_pm_lock);
640                 }
641
642 chip_reset:
643
644         ath_debug_stat_interrupt(sc, status);
645
646         if (sched) {
647                 /* turn off every interrupt */
648                 ath9k_hw_disable_interrupts(ah);
649                 tasklet_schedule(&sc->intr_tq);
650         }
651
652         return IRQ_HANDLED;
653
654 #undef SCHED_INTR
655 }
656
657 int ath_reset(struct ath_softc *sc)
658 {
659         int r;
660
661         ath9k_ps_wakeup(sc);
662         r = ath_reset_internal(sc, NULL);
663         ath9k_ps_restore(sc);
664
665         return r;
666 }
667
668 void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
669 {
670 #ifdef CONFIG_ATH9K_DEBUGFS
671         RESET_STAT_INC(sc, type);
672 #endif
673         set_bit(SC_OP_HW_RESET, &sc->sc_flags);
674         ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
675 }
676
677 void ath_reset_work(struct work_struct *work)
678 {
679         struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
680
681         ath_reset(sc);
682 }
683
684 /**********************/
685 /* mac80211 callbacks */
686 /**********************/
687
688 static int ath9k_start(struct ieee80211_hw *hw)
689 {
690         struct ath_softc *sc = hw->priv;
691         struct ath_hw *ah = sc->sc_ah;
692         struct ath_common *common = ath9k_hw_common(ah);
693         struct ieee80211_channel *curchan = hw->conf.chandef.chan;
694         struct ath9k_channel *init_channel;
695         int r;
696
697         ath_dbg(common, CONFIG,
698                 "Starting driver with initial channel: %d MHz\n",
699                 curchan->center_freq);
700
701         ath9k_ps_wakeup(sc);
702         mutex_lock(&sc->mutex);
703
704         init_channel = ath9k_cmn_get_channel(hw, ah, &hw->conf.chandef);
705
706         /* Reset SERDES registers */
707         ath9k_hw_configpcipowersave(ah, false);
708
709         /*
710          * The basic interface to setting the hardware in a good
711          * state is ``reset''.  On return the hardware is known to
712          * be powered up and with interrupts disabled.  This must
713          * be followed by initialization of the appropriate bits
714          * and then setup of the interrupt mask.
715          */
716         spin_lock_bh(&sc->sc_pcu_lock);
717
718         atomic_set(&ah->intr_ref_cnt, -1);
719
720         r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
721         if (r) {
722                 ath_err(common,
723                         "Unable to reset hardware; reset status %d (freq %u MHz)\n",
724                         r, curchan->center_freq);
725                 ah->reset_power_on = false;
726         }
727
728         /* Setup our intr mask. */
729         ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
730                     ATH9K_INT_RXORN | ATH9K_INT_FATAL |
731                     ATH9K_INT_GLOBAL;
732
733         if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
734                 ah->imask |= ATH9K_INT_RXHP |
735                              ATH9K_INT_RXLP |
736                              ATH9K_INT_BB_WATCHDOG;
737         else
738                 ah->imask |= ATH9K_INT_RX;
739
740         ah->imask |= ATH9K_INT_GTT;
741
742         if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
743                 ah->imask |= ATH9K_INT_CST;
744
745         ath_mci_enable(sc);
746
747         clear_bit(SC_OP_INVALID, &sc->sc_flags);
748         sc->sc_ah->is_monitoring = false;
749
750         if (!ath_complete_reset(sc, false))
751                 ah->reset_power_on = false;
752
753         if (ah->led_pin >= 0) {
754                 ath9k_hw_cfg_output(ah, ah->led_pin,
755                                     AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
756                 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
757         }
758
759         /*
760          * Reset key cache to sane defaults (all entries cleared) instead of
761          * semi-random values after suspend/resume.
762          */
763         ath9k_cmn_init_crypto(sc->sc_ah);
764
765         ath9k_hw_reset_tsf(ah);
766
767         spin_unlock_bh(&sc->sc_pcu_lock);
768
769         mutex_unlock(&sc->mutex);
770
771         ath9k_ps_restore(sc);
772
773         return 0;
774 }
775
776 static void ath9k_tx(struct ieee80211_hw *hw,
777                      struct ieee80211_tx_control *control,
778                      struct sk_buff *skb)
779 {
780         struct ath_softc *sc = hw->priv;
781         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
782         struct ath_tx_control txctl;
783         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
784         unsigned long flags;
785
786         if (sc->ps_enabled) {
787                 /*
788                  * mac80211 does not set PM field for normal data frames, so we
789                  * need to update that based on the current PS mode.
790                  */
791                 if (ieee80211_is_data(hdr->frame_control) &&
792                     !ieee80211_is_nullfunc(hdr->frame_control) &&
793                     !ieee80211_has_pm(hdr->frame_control)) {
794                         ath_dbg(common, PS,
795                                 "Add PM=1 for a TX frame while in PS mode\n");
796                         hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
797                 }
798         }
799
800         if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
801                 /*
802                  * We are using PS-Poll and mac80211 can request TX while in
803                  * power save mode. Need to wake up hardware for the TX to be
804                  * completed and if needed, also for RX of buffered frames.
805                  */
806                 ath9k_ps_wakeup(sc);
807                 spin_lock_irqsave(&sc->sc_pm_lock, flags);
808                 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
809                         ath9k_hw_setrxabort(sc->sc_ah, 0);
810                 if (ieee80211_is_pspoll(hdr->frame_control)) {
811                         ath_dbg(common, PS,
812                                 "Sending PS-Poll to pick a buffered frame\n");
813                         sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
814                 } else {
815                         ath_dbg(common, PS, "Wake up to complete TX\n");
816                         sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
817                 }
818                 /*
819                  * The actual restore operation will happen only after
820                  * the ps_flags bit is cleared. We are just dropping
821                  * the ps_usecount here.
822                  */
823                 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
824                 ath9k_ps_restore(sc);
825         }
826
827         /*
828          * Cannot tx while the hardware is in full sleep, it first needs a full
829          * chip reset to recover from that
830          */
831         if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
832                 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
833                 goto exit;
834         }
835
836         memset(&txctl, 0, sizeof(struct ath_tx_control));
837         txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
838         txctl.sta = control->sta;
839
840         ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
841
842         if (ath_tx_start(hw, skb, &txctl) != 0) {
843                 ath_dbg(common, XMIT, "TX failed\n");
844                 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
845                 goto exit;
846         }
847
848         return;
849 exit:
850         ieee80211_free_txskb(hw, skb);
851 }
852
853 static void ath9k_stop(struct ieee80211_hw *hw)
854 {
855         struct ath_softc *sc = hw->priv;
856         struct ath_hw *ah = sc->sc_ah;
857         struct ath_common *common = ath9k_hw_common(ah);
858         bool prev_idle;
859
860         mutex_lock(&sc->mutex);
861
862         ath_cancel_work(sc);
863         del_timer_sync(&sc->rx_poll_timer);
864
865         if (test_bit(SC_OP_INVALID, &sc->sc_flags)) {
866                 ath_dbg(common, ANY, "Device not present\n");
867                 mutex_unlock(&sc->mutex);
868                 return;
869         }
870
871         /* Ensure HW is awake when we try to shut it down. */
872         ath9k_ps_wakeup(sc);
873
874         spin_lock_bh(&sc->sc_pcu_lock);
875
876         /* prevent tasklets to enable interrupts once we disable them */
877         ah->imask &= ~ATH9K_INT_GLOBAL;
878
879         /* make sure h/w will not generate any interrupt
880          * before setting the invalid flag. */
881         ath9k_hw_disable_interrupts(ah);
882
883         spin_unlock_bh(&sc->sc_pcu_lock);
884
885         /* we can now sync irq and kill any running tasklets, since we already
886          * disabled interrupts and not holding a spin lock */
887         synchronize_irq(sc->irq);
888         tasklet_kill(&sc->intr_tq);
889         tasklet_kill(&sc->bcon_tasklet);
890
891         prev_idle = sc->ps_idle;
892         sc->ps_idle = true;
893
894         spin_lock_bh(&sc->sc_pcu_lock);
895
896         if (ah->led_pin >= 0) {
897                 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
898                 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
899         }
900
901         ath_prepare_reset(sc);
902
903         if (sc->rx.frag) {
904                 dev_kfree_skb_any(sc->rx.frag);
905                 sc->rx.frag = NULL;
906         }
907
908         if (!ah->curchan)
909                 ah->curchan = ath9k_cmn_get_channel(hw, ah, &hw->conf.chandef);
910
911         ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
912         ath9k_hw_phy_disable(ah);
913
914         ath9k_hw_configpcipowersave(ah, true);
915
916         spin_unlock_bh(&sc->sc_pcu_lock);
917
918         ath9k_ps_restore(sc);
919
920         set_bit(SC_OP_INVALID, &sc->sc_flags);
921         sc->ps_idle = prev_idle;
922
923         mutex_unlock(&sc->mutex);
924
925         ath_dbg(common, CONFIG, "Driver halt\n");
926 }
927
928 static bool ath9k_uses_beacons(int type)
929 {
930         switch (type) {
931         case NL80211_IFTYPE_AP:
932         case NL80211_IFTYPE_ADHOC:
933         case NL80211_IFTYPE_MESH_POINT:
934                 return true;
935         default:
936                 return false;
937         }
938 }
939
940 static void ath9k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
941 {
942         struct ath9k_vif_iter_data *iter_data = data;
943         int i;
944
945         if (iter_data->has_hw_macaddr) {
946                 for (i = 0; i < ETH_ALEN; i++)
947                         iter_data->mask[i] &=
948                                 ~(iter_data->hw_macaddr[i] ^ mac[i]);
949         } else {
950                 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
951                 iter_data->has_hw_macaddr = true;
952         }
953
954         switch (vif->type) {
955         case NL80211_IFTYPE_AP:
956                 iter_data->naps++;
957                 break;
958         case NL80211_IFTYPE_STATION:
959                 iter_data->nstations++;
960                 break;
961         case NL80211_IFTYPE_ADHOC:
962                 iter_data->nadhocs++;
963                 break;
964         case NL80211_IFTYPE_MESH_POINT:
965                 iter_data->nmeshes++;
966                 break;
967         case NL80211_IFTYPE_WDS:
968                 iter_data->nwds++;
969                 break;
970         default:
971                 break;
972         }
973 }
974
975 static void ath9k_sta_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
976 {
977         struct ath_softc *sc = data;
978         struct ath_vif *avp = (void *)vif->drv_priv;
979
980         if (vif->type != NL80211_IFTYPE_STATION)
981                 return;
982
983         if (avp->primary_sta_vif)
984                 ath9k_set_assoc_state(sc, vif);
985 }
986
987 /* Called with sc->mutex held. */
988 void ath9k_calculate_iter_data(struct ieee80211_hw *hw,
989                                struct ieee80211_vif *vif,
990                                struct ath9k_vif_iter_data *iter_data)
991 {
992         struct ath_softc *sc = hw->priv;
993         struct ath_hw *ah = sc->sc_ah;
994         struct ath_common *common = ath9k_hw_common(ah);
995
996         /*
997          * Use the hardware MAC address as reference, the hardware uses it
998          * together with the BSSID mask when matching addresses.
999          */
1000         memset(iter_data, 0, sizeof(*iter_data));
1001         memset(&iter_data->mask, 0xff, ETH_ALEN);
1002
1003         if (vif)
1004                 ath9k_vif_iter(iter_data, vif->addr, vif);
1005
1006         /* Get list of all active MAC addresses */
1007         ieee80211_iterate_active_interfaces_atomic(
1008                 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1009                 ath9k_vif_iter, iter_data);
1010
1011         memcpy(common->macaddr, iter_data->hw_macaddr, ETH_ALEN);
1012 }
1013
1014 /* Called with sc->mutex held. */
1015 static void ath9k_calculate_summary_state(struct ieee80211_hw *hw,
1016                                           struct ieee80211_vif *vif)
1017 {
1018         struct ath_softc *sc = hw->priv;
1019         struct ath_hw *ah = sc->sc_ah;
1020         struct ath_common *common = ath9k_hw_common(ah);
1021         struct ath9k_vif_iter_data iter_data;
1022         enum nl80211_iftype old_opmode = ah->opmode;
1023
1024         ath9k_calculate_iter_data(hw, vif, &iter_data);
1025
1026         memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1027         ath_hw_setbssidmask(common);
1028
1029         if (iter_data.naps > 0) {
1030                 ath9k_hw_set_tsfadjust(ah, true);
1031                 ah->opmode = NL80211_IFTYPE_AP;
1032         } else {
1033                 ath9k_hw_set_tsfadjust(ah, false);
1034
1035                 if (iter_data.nmeshes)
1036                         ah->opmode = NL80211_IFTYPE_MESH_POINT;
1037                 else if (iter_data.nwds)
1038                         ah->opmode = NL80211_IFTYPE_AP;
1039                 else if (iter_data.nadhocs)
1040                         ah->opmode = NL80211_IFTYPE_ADHOC;
1041                 else
1042                         ah->opmode = NL80211_IFTYPE_STATION;
1043         }
1044
1045         ath9k_hw_setopmode(ah);
1046
1047         if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
1048                 ah->imask |= ATH9K_INT_TSFOOR;
1049         else
1050                 ah->imask &= ~ATH9K_INT_TSFOOR;
1051
1052         ath9k_hw_set_interrupts(ah);
1053
1054         /*
1055          * If we are changing the opmode to STATION,
1056          * a beacon sync needs to be done.
1057          */
1058         if (ah->opmode == NL80211_IFTYPE_STATION &&
1059             old_opmode == NL80211_IFTYPE_AP &&
1060             test_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags)) {
1061                 ieee80211_iterate_active_interfaces_atomic(
1062                         sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1063                         ath9k_sta_vif_iter, sc);
1064         }
1065 }
1066
1067 static int ath9k_add_interface(struct ieee80211_hw *hw,
1068                                struct ieee80211_vif *vif)
1069 {
1070         struct ath_softc *sc = hw->priv;
1071         struct ath_hw *ah = sc->sc_ah;
1072         struct ath_common *common = ath9k_hw_common(ah);
1073         struct ath_vif *avp = (void *)vif->drv_priv;
1074         struct ath_node *an = &avp->mcast_node;
1075
1076         mutex_lock(&sc->mutex);
1077
1078         if (config_enabled(CONFIG_ATH9K_TX99)) {
1079                 if (sc->nvifs >= 1) {
1080                         mutex_unlock(&sc->mutex);
1081                         return -EOPNOTSUPP;
1082                 }
1083                 sc->tx99_vif = vif;
1084         }
1085
1086         ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
1087         sc->nvifs++;
1088
1089         ath9k_ps_wakeup(sc);
1090         ath9k_calculate_summary_state(hw, vif);
1091         ath9k_ps_restore(sc);
1092
1093         if (ath9k_uses_beacons(vif->type))
1094                 ath9k_beacon_assign_slot(sc, vif);
1095
1096         an->sc = sc;
1097         an->sta = NULL;
1098         an->vif = vif;
1099         an->no_ps_filter = true;
1100         ath_tx_node_init(sc, an);
1101
1102         mutex_unlock(&sc->mutex);
1103         return 0;
1104 }
1105
1106 static int ath9k_change_interface(struct ieee80211_hw *hw,
1107                                   struct ieee80211_vif *vif,
1108                                   enum nl80211_iftype new_type,
1109                                   bool p2p)
1110 {
1111         struct ath_softc *sc = hw->priv;
1112         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1113
1114         mutex_lock(&sc->mutex);
1115
1116         if (config_enabled(CONFIG_ATH9K_TX99)) {
1117                 mutex_unlock(&sc->mutex);
1118                 return -EOPNOTSUPP;
1119         }
1120
1121         ath_dbg(common, CONFIG, "Change Interface\n");
1122
1123         if (ath9k_uses_beacons(vif->type))
1124                 ath9k_beacon_remove_slot(sc, vif);
1125
1126         vif->type = new_type;
1127         vif->p2p = p2p;
1128
1129         ath9k_ps_wakeup(sc);
1130         ath9k_calculate_summary_state(hw, vif);
1131         ath9k_ps_restore(sc);
1132
1133         if (ath9k_uses_beacons(vif->type))
1134                 ath9k_beacon_assign_slot(sc, vif);
1135
1136         mutex_unlock(&sc->mutex);
1137         return 0;
1138 }
1139
1140 static void ath9k_remove_interface(struct ieee80211_hw *hw,
1141                                    struct ieee80211_vif *vif)
1142 {
1143         struct ath_softc *sc = hw->priv;
1144         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1145         struct ath_vif *avp = (void *)vif->drv_priv;
1146
1147         ath_dbg(common, CONFIG, "Detach Interface\n");
1148
1149         mutex_lock(&sc->mutex);
1150
1151         sc->nvifs--;
1152         sc->tx99_vif = NULL;
1153
1154         if (ath9k_uses_beacons(vif->type))
1155                 ath9k_beacon_remove_slot(sc, vif);
1156
1157         if (sc->csa_vif == vif)
1158                 sc->csa_vif = NULL;
1159
1160         ath9k_ps_wakeup(sc);
1161         ath9k_calculate_summary_state(hw, NULL);
1162         ath9k_ps_restore(sc);
1163
1164         ath_tx_node_cleanup(sc, &avp->mcast_node);
1165
1166         mutex_unlock(&sc->mutex);
1167 }
1168
1169 static void ath9k_enable_ps(struct ath_softc *sc)
1170 {
1171         struct ath_hw *ah = sc->sc_ah;
1172         struct ath_common *common = ath9k_hw_common(ah);
1173
1174         if (config_enabled(CONFIG_ATH9K_TX99))
1175                 return;
1176
1177         sc->ps_enabled = true;
1178         if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1179                 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1180                         ah->imask |= ATH9K_INT_TIM_TIMER;
1181                         ath9k_hw_set_interrupts(ah);
1182                 }
1183                 ath9k_hw_setrxabort(ah, 1);
1184         }
1185         ath_dbg(common, PS, "PowerSave enabled\n");
1186 }
1187
1188 static void ath9k_disable_ps(struct ath_softc *sc)
1189 {
1190         struct ath_hw *ah = sc->sc_ah;
1191         struct ath_common *common = ath9k_hw_common(ah);
1192
1193         if (config_enabled(CONFIG_ATH9K_TX99))
1194                 return;
1195
1196         sc->ps_enabled = false;
1197         ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1198         if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1199                 ath9k_hw_setrxabort(ah, 0);
1200                 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1201                                   PS_WAIT_FOR_CAB |
1202                                   PS_WAIT_FOR_PSPOLL_DATA |
1203                                   PS_WAIT_FOR_TX_ACK);
1204                 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1205                         ah->imask &= ~ATH9K_INT_TIM_TIMER;
1206                         ath9k_hw_set_interrupts(ah);
1207                 }
1208         }
1209         ath_dbg(common, PS, "PowerSave disabled\n");
1210 }
1211
1212 void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1213 {
1214         struct ath_softc *sc = hw->priv;
1215         struct ath_hw *ah = sc->sc_ah;
1216         struct ath_common *common = ath9k_hw_common(ah);
1217         u32 rxfilter;
1218
1219         if (config_enabled(CONFIG_ATH9K_TX99))
1220                 return;
1221
1222         if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1223                 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1224                 return;
1225         }
1226
1227         ath9k_ps_wakeup(sc);
1228         rxfilter = ath9k_hw_getrxfilter(ah);
1229         ath9k_hw_setrxfilter(ah, rxfilter |
1230                                  ATH9K_RX_FILTER_PHYRADAR |
1231                                  ATH9K_RX_FILTER_PHYERR);
1232
1233         /* TODO: usually this should not be neccesary, but for some reason
1234          * (or in some mode?) the trigger must be called after the
1235          * configuration, otherwise the register will have its values reset
1236          * (on my ar9220 to value 0x01002310)
1237          */
1238         ath9k_spectral_scan_config(hw, sc->spectral_mode);
1239         ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1240         ath9k_ps_restore(sc);
1241 }
1242
1243 int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1244                                enum spectral_mode spectral_mode)
1245 {
1246         struct ath_softc *sc = hw->priv;
1247         struct ath_hw *ah = sc->sc_ah;
1248         struct ath_common *common = ath9k_hw_common(ah);
1249
1250         if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1251                 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1252                 return -1;
1253         }
1254
1255         switch (spectral_mode) {
1256         case SPECTRAL_DISABLED:
1257                 sc->spec_config.enabled = 0;
1258                 break;
1259         case SPECTRAL_BACKGROUND:
1260                 /* send endless samples.
1261                  * TODO: is this really useful for "background"?
1262                  */
1263                 sc->spec_config.endless = 1;
1264                 sc->spec_config.enabled = 1;
1265                 break;
1266         case SPECTRAL_CHANSCAN:
1267         case SPECTRAL_MANUAL:
1268                 sc->spec_config.endless = 0;
1269                 sc->spec_config.enabled = 1;
1270                 break;
1271         default:
1272                 return -1;
1273         }
1274
1275         ath9k_ps_wakeup(sc);
1276         ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
1277         ath9k_ps_restore(sc);
1278
1279         sc->spectral_mode = spectral_mode;
1280
1281         return 0;
1282 }
1283
1284 static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
1285 {
1286         struct ath_softc *sc = hw->priv;
1287         struct ath_hw *ah = sc->sc_ah;
1288         struct ath_common *common = ath9k_hw_common(ah);
1289         struct ieee80211_conf *conf = &hw->conf;
1290         bool reset_channel = false;
1291
1292         ath9k_ps_wakeup(sc);
1293         mutex_lock(&sc->mutex);
1294
1295         if (changed & IEEE80211_CONF_CHANGE_IDLE) {
1296                 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
1297                 if (sc->ps_idle) {
1298                         ath_cancel_work(sc);
1299                         ath9k_stop_btcoex(sc);
1300                 } else {
1301                         ath9k_start_btcoex(sc);
1302                         /*
1303                          * The chip needs a reset to properly wake up from
1304                          * full sleep
1305                          */
1306                         reset_channel = ah->chip_fullsleep;
1307                 }
1308         }
1309
1310         /*
1311          * We just prepare to enable PS. We have to wait until our AP has
1312          * ACK'd our null data frame to disable RX otherwise we'll ignore
1313          * those ACKs and end up retransmitting the same null data frames.
1314          * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1315          */
1316         if (changed & IEEE80211_CONF_CHANGE_PS) {
1317                 unsigned long flags;
1318                 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1319                 if (conf->flags & IEEE80211_CONF_PS)
1320                         ath9k_enable_ps(sc);
1321                 else
1322                         ath9k_disable_ps(sc);
1323                 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1324         }
1325
1326         if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1327                 if (conf->flags & IEEE80211_CONF_MONITOR) {
1328                         ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
1329                         sc->sc_ah->is_monitoring = true;
1330                 } else {
1331                         ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
1332                         sc->sc_ah->is_monitoring = false;
1333                 }
1334         }
1335
1336         if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) || reset_channel) {
1337                 if (ath_set_channel(sc, &hw->conf.chandef) < 0) {
1338                         ath_err(common, "Unable to set channel\n");
1339                         mutex_unlock(&sc->mutex);
1340                         ath9k_ps_restore(sc);
1341                         return -EINVAL;
1342                 }
1343         }
1344
1345         if (changed & IEEE80211_CONF_CHANGE_POWER) {
1346                 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
1347                 sc->config.txpowlimit = 2 * conf->power_level;
1348                 ath9k_cmn_update_txpow(ah, sc->curtxpow,
1349                                        sc->config.txpowlimit, &sc->curtxpow);
1350         }
1351
1352         mutex_unlock(&sc->mutex);
1353         ath9k_ps_restore(sc);
1354
1355         return 0;
1356 }
1357
1358 #define SUPPORTED_FILTERS                       \
1359         (FIF_PROMISC_IN_BSS |                   \
1360         FIF_ALLMULTI |                          \
1361         FIF_CONTROL |                           \
1362         FIF_PSPOLL |                            \
1363         FIF_OTHER_BSS |                         \
1364         FIF_BCN_PRBRESP_PROMISC |               \
1365         FIF_PROBE_REQ |                         \
1366         FIF_FCSFAIL)
1367
1368 /* FIXME: sc->sc_full_reset ? */
1369 static void ath9k_configure_filter(struct ieee80211_hw *hw,
1370                                    unsigned int changed_flags,
1371                                    unsigned int *total_flags,
1372                                    u64 multicast)
1373 {
1374         struct ath_softc *sc = hw->priv;
1375         u32 rfilt;
1376
1377         changed_flags &= SUPPORTED_FILTERS;
1378         *total_flags &= SUPPORTED_FILTERS;
1379
1380         sc->rx.rxfilter = *total_flags;
1381         ath9k_ps_wakeup(sc);
1382         rfilt = ath_calcrxfilter(sc);
1383         ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
1384         ath9k_ps_restore(sc);
1385
1386         ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1387                 rfilt);
1388 }
1389
1390 static int ath9k_sta_add(struct ieee80211_hw *hw,
1391                          struct ieee80211_vif *vif,
1392                          struct ieee80211_sta *sta)
1393 {
1394         struct ath_softc *sc = hw->priv;
1395         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1396         struct ath_node *an = (struct ath_node *) sta->drv_priv;
1397         struct ieee80211_key_conf ps_key = { };
1398         int key;
1399
1400         ath_node_attach(sc, sta, vif);
1401
1402         if (vif->type != NL80211_IFTYPE_AP &&
1403             vif->type != NL80211_IFTYPE_AP_VLAN)
1404                 return 0;
1405
1406         key = ath_key_config(common, vif, sta, &ps_key);
1407         if (key > 0)
1408                 an->ps_key = key;
1409
1410         return 0;
1411 }
1412
1413 static void ath9k_del_ps_key(struct ath_softc *sc,
1414                              struct ieee80211_vif *vif,
1415                              struct ieee80211_sta *sta)
1416 {
1417         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1418         struct ath_node *an = (struct ath_node *) sta->drv_priv;
1419         struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1420
1421         if (!an->ps_key)
1422             return;
1423
1424         ath_key_delete(common, &ps_key);
1425         an->ps_key = 0;
1426 }
1427
1428 static int ath9k_sta_remove(struct ieee80211_hw *hw,
1429                             struct ieee80211_vif *vif,
1430                             struct ieee80211_sta *sta)
1431 {
1432         struct ath_softc *sc = hw->priv;
1433
1434         ath9k_del_ps_key(sc, vif, sta);
1435         ath_node_detach(sc, sta);
1436
1437         return 0;
1438 }
1439
1440 static void ath9k_sta_notify(struct ieee80211_hw *hw,
1441                          struct ieee80211_vif *vif,
1442                          enum sta_notify_cmd cmd,
1443                          struct ieee80211_sta *sta)
1444 {
1445         struct ath_softc *sc = hw->priv;
1446         struct ath_node *an = (struct ath_node *) sta->drv_priv;
1447
1448         switch (cmd) {
1449         case STA_NOTIFY_SLEEP:
1450                 an->sleeping = true;
1451                 ath_tx_aggr_sleep(sta, sc, an);
1452                 break;
1453         case STA_NOTIFY_AWAKE:
1454                 an->sleeping = false;
1455                 ath_tx_aggr_wakeup(sc, an);
1456                 break;
1457         }
1458 }
1459
1460 static int ath9k_conf_tx(struct ieee80211_hw *hw,
1461                          struct ieee80211_vif *vif, u16 queue,
1462                          const struct ieee80211_tx_queue_params *params)
1463 {
1464         struct ath_softc *sc = hw->priv;
1465         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1466         struct ath_txq *txq;
1467         struct ath9k_tx_queue_info qi;
1468         int ret = 0;
1469
1470         if (queue >= IEEE80211_NUM_ACS)
1471                 return 0;
1472
1473         txq = sc->tx.txq_map[queue];
1474
1475         ath9k_ps_wakeup(sc);
1476         mutex_lock(&sc->mutex);
1477
1478         memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1479
1480         qi.tqi_aifs = params->aifs;
1481         qi.tqi_cwmin = params->cw_min;
1482         qi.tqi_cwmax = params->cw_max;
1483         qi.tqi_burstTime = params->txop * 32;
1484
1485         ath_dbg(common, CONFIG,
1486                 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1487                 queue, txq->axq_qnum, params->aifs, params->cw_min,
1488                 params->cw_max, params->txop);
1489
1490         ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
1491         ret = ath_txq_update(sc, txq->axq_qnum, &qi);
1492         if (ret)
1493                 ath_err(common, "TXQ Update failed\n");
1494
1495         mutex_unlock(&sc->mutex);
1496         ath9k_ps_restore(sc);
1497
1498         return ret;
1499 }
1500
1501 static int ath9k_set_key(struct ieee80211_hw *hw,
1502                          enum set_key_cmd cmd,
1503                          struct ieee80211_vif *vif,
1504                          struct ieee80211_sta *sta,
1505                          struct ieee80211_key_conf *key)
1506 {
1507         struct ath_softc *sc = hw->priv;
1508         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1509         int ret = 0;
1510
1511         if (ath9k_modparam_nohwcrypt)
1512                 return -ENOSPC;
1513
1514         if ((vif->type == NL80211_IFTYPE_ADHOC ||
1515              vif->type == NL80211_IFTYPE_MESH_POINT) &&
1516             (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1517              key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1518             !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1519                 /*
1520                  * For now, disable hw crypto for the RSN IBSS group keys. This
1521                  * could be optimized in the future to use a modified key cache
1522                  * design to support per-STA RX GTK, but until that gets
1523                  * implemented, use of software crypto for group addressed
1524                  * frames is a acceptable to allow RSN IBSS to be used.
1525                  */
1526                 return -EOPNOTSUPP;
1527         }
1528
1529         mutex_lock(&sc->mutex);
1530         ath9k_ps_wakeup(sc);
1531         ath_dbg(common, CONFIG, "Set HW Key\n");
1532
1533         switch (cmd) {
1534         case SET_KEY:
1535                 if (sta)
1536                         ath9k_del_ps_key(sc, vif, sta);
1537
1538                 ret = ath_key_config(common, vif, sta, key);
1539                 if (ret >= 0) {
1540                         key->hw_key_idx = ret;
1541                         /* push IV and Michael MIC generation to stack */
1542                         key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
1543                         if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
1544                                 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
1545                         if (sc->sc_ah->sw_mgmt_crypto &&
1546                             key->cipher == WLAN_CIPHER_SUITE_CCMP)
1547                                 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
1548                         ret = 0;
1549                 }
1550                 break;
1551         case DISABLE_KEY:
1552                 ath_key_delete(common, key);
1553                 break;
1554         default:
1555                 ret = -EINVAL;
1556         }
1557
1558         ath9k_ps_restore(sc);
1559         mutex_unlock(&sc->mutex);
1560
1561         return ret;
1562 }
1563
1564 static void ath9k_set_assoc_state(struct ath_softc *sc,
1565                                   struct ieee80211_vif *vif)
1566 {
1567         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1568         struct ath_vif *avp = (void *)vif->drv_priv;
1569         struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1570         unsigned long flags;
1571
1572         set_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags);
1573         avp->primary_sta_vif = true;
1574
1575         /*
1576          * Set the AID, BSSID and do beacon-sync only when
1577          * the HW opmode is STATION.
1578          *
1579          * But the primary bit is set above in any case.
1580          */
1581         if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
1582                 return;
1583
1584         memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1585         common->curaid = bss_conf->aid;
1586         ath9k_hw_write_associd(sc->sc_ah);
1587
1588         sc->last_rssi = ATH_RSSI_DUMMY_MARKER;
1589         sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1590
1591         spin_lock_irqsave(&sc->sc_pm_lock, flags);
1592         sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1593         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1594
1595         if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1596                 ath9k_mci_update_wlan_channels(sc, false);
1597
1598         ath_dbg(common, CONFIG,
1599                 "Primary Station interface: %pM, BSSID: %pM\n",
1600                 vif->addr, common->curbssid);
1601 }
1602
1603 static void ath9k_bss_assoc_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
1604 {
1605         struct ath_softc *sc = data;
1606         struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1607
1608         if (test_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags))
1609                 return;
1610
1611         if (bss_conf->assoc)
1612                 ath9k_set_assoc_state(sc, vif);
1613 }
1614
1615 static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1616                                    struct ieee80211_vif *vif,
1617                                    struct ieee80211_bss_conf *bss_conf,
1618                                    u32 changed)
1619 {
1620 #define CHECK_ANI                               \
1621         (BSS_CHANGED_ASSOC |                    \
1622          BSS_CHANGED_IBSS |                     \
1623          BSS_CHANGED_BEACON_ENABLED)
1624
1625         struct ath_softc *sc = hw->priv;
1626         struct ath_hw *ah = sc->sc_ah;
1627         struct ath_common *common = ath9k_hw_common(ah);
1628         struct ath_vif *avp = (void *)vif->drv_priv;
1629         int slottime;
1630
1631         ath9k_ps_wakeup(sc);
1632         mutex_lock(&sc->mutex);
1633
1634         if (changed & BSS_CHANGED_ASSOC) {
1635                 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1636                         bss_conf->bssid, bss_conf->assoc);
1637
1638                 if (avp->primary_sta_vif && !bss_conf->assoc) {
1639                         clear_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags);
1640                         avp->primary_sta_vif = false;
1641
1642                         if (ah->opmode == NL80211_IFTYPE_STATION)
1643                                 clear_bit(SC_OP_BEACONS, &sc->sc_flags);
1644                 }
1645
1646                 ieee80211_iterate_active_interfaces_atomic(
1647                         sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1648                         ath9k_bss_assoc_iter, sc);
1649
1650                 if (!test_bit(SC_OP_PRIM_STA_VIF, &sc->sc_flags) &&
1651                     ah->opmode == NL80211_IFTYPE_STATION) {
1652                         memset(common->curbssid, 0, ETH_ALEN);
1653                         common->curaid = 0;
1654                         ath9k_hw_write_associd(sc->sc_ah);
1655                         if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1656                                 ath9k_mci_update_wlan_channels(sc, true);
1657                 }
1658         }
1659
1660         if (changed & BSS_CHANGED_IBSS) {
1661                 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1662                 common->curaid = bss_conf->aid;
1663                 ath9k_hw_write_associd(sc->sc_ah);
1664         }
1665
1666         if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
1667             (changed & BSS_CHANGED_BEACON_INT))
1668                 ath9k_beacon_config(sc, vif, changed);
1669
1670         if (changed & BSS_CHANGED_ERP_SLOT) {
1671                 if (bss_conf->use_short_slot)
1672                         slottime = 9;
1673                 else
1674                         slottime = 20;
1675                 if (vif->type == NL80211_IFTYPE_AP) {
1676                         /*
1677                          * Defer update, so that connected stations can adjust
1678                          * their settings at the same time.
1679                          * See beacon.c for more details
1680                          */
1681                         sc->beacon.slottime = slottime;
1682                         sc->beacon.updateslot = UPDATE;
1683                 } else {
1684                         ah->slottime = slottime;
1685                         ath9k_hw_init_global_settings(ah);
1686                 }
1687         }
1688
1689         if (changed & CHECK_ANI)
1690                 ath_check_ani(sc);
1691
1692         mutex_unlock(&sc->mutex);
1693         ath9k_ps_restore(sc);
1694
1695 #undef CHECK_ANI
1696 }
1697
1698 static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
1699 {
1700         struct ath_softc *sc = hw->priv;
1701         u64 tsf;
1702
1703         mutex_lock(&sc->mutex);
1704         ath9k_ps_wakeup(sc);
1705         tsf = ath9k_hw_gettsf64(sc->sc_ah);
1706         ath9k_ps_restore(sc);
1707         mutex_unlock(&sc->mutex);
1708
1709         return tsf;
1710 }
1711
1712 static void ath9k_set_tsf(struct ieee80211_hw *hw,
1713                           struct ieee80211_vif *vif,
1714                           u64 tsf)
1715 {
1716         struct ath_softc *sc = hw->priv;
1717
1718         mutex_lock(&sc->mutex);
1719         ath9k_ps_wakeup(sc);
1720         ath9k_hw_settsf64(sc->sc_ah, tsf);
1721         ath9k_ps_restore(sc);
1722         mutex_unlock(&sc->mutex);
1723 }
1724
1725 static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
1726 {
1727         struct ath_softc *sc = hw->priv;
1728
1729         mutex_lock(&sc->mutex);
1730
1731         ath9k_ps_wakeup(sc);
1732         ath9k_hw_reset_tsf(sc->sc_ah);
1733         ath9k_ps_restore(sc);
1734
1735         mutex_unlock(&sc->mutex);
1736 }
1737
1738 static int ath9k_ampdu_action(struct ieee80211_hw *hw,
1739                               struct ieee80211_vif *vif,
1740                               enum ieee80211_ampdu_mlme_action action,
1741                               struct ieee80211_sta *sta,
1742                               u16 tid, u16 *ssn, u8 buf_size)
1743 {
1744         struct ath_softc *sc = hw->priv;
1745         bool flush = false;
1746         int ret = 0;
1747
1748         mutex_lock(&sc->mutex);
1749
1750         switch (action) {
1751         case IEEE80211_AMPDU_RX_START:
1752                 break;
1753         case IEEE80211_AMPDU_RX_STOP:
1754                 break;
1755         case IEEE80211_AMPDU_TX_START:
1756                 ath9k_ps_wakeup(sc);
1757                 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1758                 if (!ret)
1759                         ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1760                 ath9k_ps_restore(sc);
1761                 break;
1762         case IEEE80211_AMPDU_TX_STOP_FLUSH:
1763         case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
1764                 flush = true;
1765         case IEEE80211_AMPDU_TX_STOP_CONT:
1766                 ath9k_ps_wakeup(sc);
1767                 ath_tx_aggr_stop(sc, sta, tid);
1768                 if (!flush)
1769                         ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1770                 ath9k_ps_restore(sc);
1771                 break;
1772         case IEEE80211_AMPDU_TX_OPERATIONAL:
1773                 ath9k_ps_wakeup(sc);
1774                 ath_tx_aggr_resume(sc, sta, tid);
1775                 ath9k_ps_restore(sc);
1776                 break;
1777         default:
1778                 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
1779         }
1780
1781         mutex_unlock(&sc->mutex);
1782
1783         return ret;
1784 }
1785
1786 static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1787                              struct survey_info *survey)
1788 {
1789         struct ath_softc *sc = hw->priv;
1790         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1791         struct ieee80211_supported_band *sband;
1792         struct ieee80211_channel *chan;
1793         unsigned long flags;
1794         int pos;
1795
1796         if (config_enabled(CONFIG_ATH9K_TX99))
1797                 return -EOPNOTSUPP;
1798
1799         spin_lock_irqsave(&common->cc_lock, flags);
1800         if (idx == 0)
1801                 ath_update_survey_stats(sc);
1802
1803         sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1804         if (sband && idx >= sband->n_channels) {
1805                 idx -= sband->n_channels;
1806                 sband = NULL;
1807         }
1808
1809         if (!sband)
1810                 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1811
1812         if (!sband || idx >= sband->n_channels) {
1813                 spin_unlock_irqrestore(&common->cc_lock, flags);
1814                 return -ENOENT;
1815         }
1816
1817         chan = &sband->channels[idx];
1818         pos = chan->hw_value;
1819         memcpy(survey, &sc->survey[pos], sizeof(*survey));
1820         survey->channel = chan;
1821         spin_unlock_irqrestore(&common->cc_lock, flags);
1822
1823         return 0;
1824 }
1825
1826 static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
1827 {
1828         struct ath_softc *sc = hw->priv;
1829         struct ath_hw *ah = sc->sc_ah;
1830
1831         if (config_enabled(CONFIG_ATH9K_TX99))
1832                 return;
1833
1834         mutex_lock(&sc->mutex);
1835         ah->coverage_class = coverage_class;
1836
1837         ath9k_ps_wakeup(sc);
1838         ath9k_hw_init_global_settings(ah);
1839         ath9k_ps_restore(sc);
1840
1841         mutex_unlock(&sc->mutex);
1842 }
1843
1844 static bool ath9k_has_tx_pending(struct ath_softc *sc)
1845 {
1846         int i, npend;
1847
1848         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1849                 if (!ATH_TXQ_SETUP(sc, i))
1850                         continue;
1851
1852                 if (!sc->tx.txq[i].axq_depth)
1853                         continue;
1854
1855                 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
1856                 if (npend)
1857                         break;
1858         }
1859
1860         return !!npend;
1861 }
1862
1863 static void ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
1864 {
1865         struct ath_softc *sc = hw->priv;
1866         struct ath_hw *ah = sc->sc_ah;
1867         struct ath_common *common = ath9k_hw_common(ah);
1868         int timeout = HZ / 5; /* 200 ms */
1869         bool drain_txq;
1870
1871         mutex_lock(&sc->mutex);
1872         cancel_delayed_work_sync(&sc->tx_complete_work);
1873
1874         if (ah->ah_flags & AH_UNPLUGGED) {
1875                 ath_dbg(common, ANY, "Device has been unplugged!\n");
1876                 mutex_unlock(&sc->mutex);
1877                 return;
1878         }
1879
1880         if (test_bit(SC_OP_INVALID, &sc->sc_flags)) {
1881                 ath_dbg(common, ANY, "Device not present\n");
1882                 mutex_unlock(&sc->mutex);
1883                 return;
1884         }
1885
1886         if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
1887                                timeout) > 0)
1888                 drop = false;
1889
1890         if (drop) {
1891                 ath9k_ps_wakeup(sc);
1892                 spin_lock_bh(&sc->sc_pcu_lock);
1893                 drain_txq = ath_drain_all_txq(sc);
1894                 spin_unlock_bh(&sc->sc_pcu_lock);
1895
1896                 if (!drain_txq)
1897                         ath_reset(sc);
1898
1899                 ath9k_ps_restore(sc);
1900                 ieee80211_wake_queues(hw);
1901         }
1902
1903         ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
1904         mutex_unlock(&sc->mutex);
1905 }
1906
1907 static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
1908 {
1909         struct ath_softc *sc = hw->priv;
1910         int i;
1911
1912         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1913                 if (!ATH_TXQ_SETUP(sc, i))
1914                         continue;
1915
1916                 if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
1917                         return true;
1918         }
1919         return false;
1920 }
1921
1922 static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
1923 {
1924         struct ath_softc *sc = hw->priv;
1925         struct ath_hw *ah = sc->sc_ah;
1926         struct ieee80211_vif *vif;
1927         struct ath_vif *avp;
1928         struct ath_buf *bf;
1929         struct ath_tx_status ts;
1930         bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1931         int status;
1932
1933         vif = sc->beacon.bslot[0];
1934         if (!vif)
1935                 return 0;
1936
1937         if (!vif->bss_conf.enable_beacon)
1938                 return 0;
1939
1940         avp = (void *)vif->drv_priv;
1941
1942         if (!sc->beacon.tx_processed && !edma) {
1943                 tasklet_disable(&sc->bcon_tasklet);
1944
1945                 bf = avp->av_bcbuf;
1946                 if (!bf || !bf->bf_mpdu)
1947                         goto skip;
1948
1949                 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
1950                 if (status == -EINPROGRESS)
1951                         goto skip;
1952
1953                 sc->beacon.tx_processed = true;
1954                 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
1955
1956 skip:
1957                 tasklet_enable(&sc->bcon_tasklet);
1958         }
1959
1960         return sc->beacon.tx_last;
1961 }
1962
1963 static int ath9k_get_stats(struct ieee80211_hw *hw,
1964                            struct ieee80211_low_level_stats *stats)
1965 {
1966         struct ath_softc *sc = hw->priv;
1967         struct ath_hw *ah = sc->sc_ah;
1968         struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
1969
1970         stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
1971         stats->dot11RTSFailureCount = mib_stats->rts_bad;
1972         stats->dot11FCSErrorCount = mib_stats->fcs_bad;
1973         stats->dot11RTSSuccessCount = mib_stats->rts_good;
1974         return 0;
1975 }
1976
1977 static u32 fill_chainmask(u32 cap, u32 new)
1978 {
1979         u32 filled = 0;
1980         int i;
1981
1982         for (i = 0; cap && new; i++, cap >>= 1) {
1983                 if (!(cap & BIT(0)))
1984                         continue;
1985
1986                 if (new & BIT(0))
1987                         filled |= BIT(i);
1988
1989                 new >>= 1;
1990         }
1991
1992         return filled;
1993 }
1994
1995 static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
1996 {
1997         if (AR_SREV_9300_20_OR_LATER(ah))
1998                 return true;
1999
2000         switch (val & 0x7) {
2001         case 0x1:
2002         case 0x3:
2003         case 0x7:
2004                 return true;
2005         case 0x2:
2006                 return (ah->caps.rx_chainmask == 1);
2007         default:
2008                 return false;
2009         }
2010 }
2011
2012 static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2013 {
2014         struct ath_softc *sc = hw->priv;
2015         struct ath_hw *ah = sc->sc_ah;
2016
2017         if (ah->caps.rx_chainmask != 1)
2018                 rx_ant |= tx_ant;
2019
2020         if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
2021                 return -EINVAL;
2022
2023         sc->ant_rx = rx_ant;
2024         sc->ant_tx = tx_ant;
2025
2026         if (ah->caps.rx_chainmask == 1)
2027                 return 0;
2028
2029         /* AR9100 runs into calibration issues if not all rx chains are enabled */
2030         if (AR_SREV_9100(ah))
2031                 ah->rxchainmask = 0x7;
2032         else
2033                 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2034
2035         ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
2036         ath9k_reload_chainmask_settings(sc);
2037
2038         return 0;
2039 }
2040
2041 static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2042 {
2043         struct ath_softc *sc = hw->priv;
2044
2045         *tx_ant = sc->ant_tx;
2046         *rx_ant = sc->ant_rx;
2047         return 0;
2048 }
2049
2050 static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2051 {
2052         struct ath_softc *sc = hw->priv;
2053         set_bit(SC_OP_SCANNING, &sc->sc_flags);
2054 }
2055
2056 static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2057 {
2058         struct ath_softc *sc = hw->priv;
2059         clear_bit(SC_OP_SCANNING, &sc->sc_flags);
2060 }
2061
2062 static void ath9k_channel_switch_beacon(struct ieee80211_hw *hw,
2063                                         struct ieee80211_vif *vif,
2064                                         struct cfg80211_chan_def *chandef)
2065 {
2066         struct ath_softc *sc = hw->priv;
2067
2068         /* mac80211 does not support CSA in multi-if cases (yet) */
2069         if (WARN_ON(sc->csa_vif))
2070                 return;
2071
2072         sc->csa_vif = vif;
2073 }
2074
2075 struct ieee80211_ops ath9k_ops = {
2076         .tx                 = ath9k_tx,
2077         .start              = ath9k_start,
2078         .stop               = ath9k_stop,
2079         .add_interface      = ath9k_add_interface,
2080         .change_interface   = ath9k_change_interface,
2081         .remove_interface   = ath9k_remove_interface,
2082         .config             = ath9k_config,
2083         .configure_filter   = ath9k_configure_filter,
2084         .sta_add            = ath9k_sta_add,
2085         .sta_remove         = ath9k_sta_remove,
2086         .sta_notify         = ath9k_sta_notify,
2087         .conf_tx            = ath9k_conf_tx,
2088         .bss_info_changed   = ath9k_bss_info_changed,
2089         .set_key            = ath9k_set_key,
2090         .get_tsf            = ath9k_get_tsf,
2091         .set_tsf            = ath9k_set_tsf,
2092         .reset_tsf          = ath9k_reset_tsf,
2093         .ampdu_action       = ath9k_ampdu_action,
2094         .get_survey         = ath9k_get_survey,
2095         .rfkill_poll        = ath9k_rfkill_poll_state,
2096         .set_coverage_class = ath9k_set_coverage_class,
2097         .flush              = ath9k_flush,
2098         .tx_frames_pending  = ath9k_tx_frames_pending,
2099         .tx_last_beacon     = ath9k_tx_last_beacon,
2100         .release_buffered_frames = ath9k_release_buffered_frames,
2101         .get_stats          = ath9k_get_stats,
2102         .set_antenna        = ath9k_set_antenna,
2103         .get_antenna        = ath9k_get_antenna,
2104
2105 #ifdef CONFIG_ATH9K_WOW
2106         .suspend            = ath9k_suspend,
2107         .resume             = ath9k_resume,
2108         .set_wakeup         = ath9k_set_wakeup,
2109 #endif
2110
2111 #ifdef CONFIG_ATH9K_DEBUGFS
2112         .get_et_sset_count  = ath9k_get_et_sset_count,
2113         .get_et_stats       = ath9k_get_et_stats,
2114         .get_et_strings     = ath9k_get_et_strings,
2115 #endif
2116
2117 #if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_DEBUGFS)
2118         .sta_add_debugfs    = ath9k_sta_add_debugfs,
2119 #endif
2120         .sw_scan_start      = ath9k_sw_scan_start,
2121         .sw_scan_complete   = ath9k_sw_scan_complete,
2122         .channel_switch_beacon     = ath9k_channel_switch_beacon,
2123 };