blob: a6cb15c96052968b1453397c8475d8bee8c5e713 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080018#include <linux/delay.h>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "btcoex.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
Sven Eckelmann313eb872012-06-25 07:15:22 +020022u8 ath9k_parse_mpdudensity(u8 mpdudensity)
Sujithff37e332008-11-24 12:07:55 +053023{
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
Sujith Manoharane2d389b2014-10-17 07:40:18 +053057static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq,
58 bool sw_pending)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080059{
60 bool pending = false;
61
62 spin_lock_bh(&txq->axq_lock);
63
Sujith Manoharanb7367282014-10-02 06:33:13 +053064 if (txq->axq_depth) {
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080065 pending = true;
Sujith Manoharanb7367282014-10-02 06:33:13 +053066 goto out;
67 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080068
Sujith Manoharane2d389b2014-10-17 07:40:18 +053069 if (!sw_pending)
70 goto out;
71
Felix Fietkau04535312014-06-11 16:17:51 +053072 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 }
Sujith Manoharanb7367282014-10-02 06:33:13 +053079out:
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080080 spin_unlock_bh(&txq->axq_lock);
81 return pending;
82}
83
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053084static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070085{
86 unsigned long flags;
87 bool ret;
88
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070089 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);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070092
93 return ret;
94}
95
Felix Fietkaubf3dac52013-11-11 22:23:33 +010096void 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
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700112void ath9k_ps_wakeup(struct ath_softc *sc)
113{
Felix Fietkau898c9142010-10-12 14:02:53 +0200114 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700115 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100116 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700117
118 spin_lock_irqsave(&sc->sc_pm_lock, flags);
119 if (++sc->ps_usecount != 1)
120 goto unlock;
121
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100122 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100123 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700124 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700125
Felix Fietkau898c9142010-10-12 14:02:53 +0200126 /*
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 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100131 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));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530135 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100136 spin_unlock(&common->cc_lock);
137 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200138
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700139 unlock:
140 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
141}
142
143void ath9k_ps_restore(struct ath_softc *sc)
144{
Felix Fietkau898c9142010-10-12 14:02:53 +0200145 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200146 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700147 unsigned long flags;
148
149 spin_lock_irqsave(&sc->sc_pm_lock, flags);
150 if (--sc->ps_usecount != 0)
151 goto unlock;
152
Sujith Manoharanad128862012-04-24 10:23:20 +0530153 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100154 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
155 goto unlock;
156 }
157
158 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530159 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
160 PS_WAIT_FOR_CAB |
161 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530162 PS_WAIT_FOR_TX_ACK |
163 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200164 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530165 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
166 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530167 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200168 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530169 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200170
171 spin_lock(&common->cc_lock);
172 ath_hw_cycle_counters_update(common);
173 spin_unlock(&common->cc_lock);
174
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600175 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700176
177 unlock:
178 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
179}
180
Felix Fietkau9adcf442011-09-03 01:40:26 +0200181static void __ath_cancel_work(struct ath_softc *sc)
182{
183 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200184 cancel_delayed_work_sync(&sc->tx_complete_work);
185 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530186
Sujith Manoharanbf525922012-06-27 14:15:59 +0530187#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530188 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
189 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530190#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200191}
192
Sujith Manoharane60001e2013-10-28 12:22:04 +0530193void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200194{
195 __ath_cancel_work(sc);
196 cancel_work_sync(&sc->hw_reset_work);
197}
198
Sujith Manoharane60001e2013-10-28 12:22:04 +0530199void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530200{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530201 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
202
Sujith Manoharan19c36162013-08-20 10:05:59 +0530203 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530204 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
205 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
206
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530207 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530208}
209
John W. Linville9ebea382013-01-28 13:54:03 -0500210static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200211{
212 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200213 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200214
215 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530216 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200217 ath9k_hw_disable_interrupts(ah);
218
Felix Fietkau13815592013-01-20 18:51:53 +0100219 if (!ath_drain_all_txq(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200220 ret = false;
221
Felix Fietkau0a62acb2013-01-20 18:51:52 +0100222 if (!ath_stoprecv(sc))
Felix Fietkauceea2a52012-05-24 14:32:19 +0200223 ret = false;
224
Felix Fietkau9adcf442011-09-03 01:40:26 +0200225 return ret;
226}
227
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);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530232 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200233
Sujith Manoharan9019f642014-09-05 08:03:15 +0530234 ath9k_calculate_summary_state(sc, sc->cur_chan);
Sujith Manoharan19ec4772014-09-05 08:03:16 +0530235 ath_startrecv(sc);
Felix Fietkaud385c5c2014-11-04 16:56:57 +0100236 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
237 sc->cur_chan->txpower,
238 &sc->cur_chan->cur_txpower);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100239 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200240
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530241 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530242 /* 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
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100252 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530253 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200254
Sujith Manoharan196fb862012-06-04 20:24:13 +0530255 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100256 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530257 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);
Sujith Manoharana6768282013-05-06 10:09:03 +0530260 } else {
261 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530262 }
263 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530264 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530265 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200266 }
267
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530268 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530269
270 ath9k_hw_set_interrupts(ah);
271 ath9k_hw_enable_interrupts(ah);
Sujith Manoharan5ba8d9d2014-10-02 06:33:19 +0530272 ieee80211_wake_queues(sc->hw);
Felix Fietkaud463af42014-04-06 00:37:03 +0200273 ath9k_p2p_ps_timer(sc);
274
Felix Fietkau9adcf442011-09-03 01:40:26 +0200275 return true;
276}
277
Sujith Manoharan5555c952014-10-17 07:40:11 +0530278static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200279{
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;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200284 int r;
285
286 __ath_cancel_work(sc);
287
Felix Fietkau4668cce2013-01-14 16:56:46 +0100288 tasklet_disable(&sc->intr_tq);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530289 tasklet_disable(&sc->bcon_tasklet);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200290 spin_lock_bh(&sc->sc_pcu_lock);
291
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530292 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200293 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530294 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200295 }
296
297 if (!hchan) {
298 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200299 hchan = ah->curchan;
300 }
301
John W. Linville9ebea382013-01-28 13:54:03 -0500302 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200303 fastcc = false;
304
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530305 if (ath9k_is_chanctx_enabled())
306 fastcc = false;
307
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530308 spin_lock_bh(&sc->chan_lock);
309 sc->cur_chandef = sc->cur_chan->chandef;
310 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530311
Joe Perchesd2182b62011-12-15 14:55:53 -0800312 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530313 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200314
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);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400319
320 ath9k_hw_enable_interrupts(ah);
321 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
322
Felix Fietkau9adcf442011-09-03 01:40:26 +0200323 goto out;
324 }
325
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530326 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530327 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530328 ath9k_mci_set_txpower(sc, true, false);
329
Felix Fietkau9adcf442011-09-03 01:40:26 +0200330 if (!ath_complete_reset(sc, true))
331 r = -EIO;
332
333out:
334 spin_unlock_bh(&sc->sc_pcu_lock);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530335 tasklet_enable(&sc->bcon_tasklet);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100336 tasklet_enable(&sc->intr_tq);
337
Felix Fietkau9adcf442011-09-03 01:40:26 +0200338 return r;
339}
340
Ben Greear7e1e3862011-11-03 11:33:13 -0700341static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
342 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530343{
344 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530345 an = (struct ath_node *)sta->drv_priv;
346
Sujith Manoharana145daf2012-11-28 15:08:54 +0530347 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800348 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700349 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530350 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530351
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530352 ath_tx_node_init(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200353
354 ath_dynack_node_init(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530355}
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;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530360 ath_tx_node_cleanup(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200361
362 ath_dynack_node_deinit(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530363}
364
Sujith55624202010-01-08 10:36:02 +0530365void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530366{
367 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700368 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700369 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530370 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530371 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530372 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400373 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530374
Felix Fietkaue3927002011-09-14 21:23:01 +0200375 ath9k_ps_wakeup(sc);
376 spin_lock(&sc->sc_pcu_lock);
377
Sujith Manoharan6549a862013-12-24 10:44:24 +0530378 if (status & ATH9K_INT_FATAL) {
379 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530380 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530381
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);
Felix Fietkauaffad452014-02-22 14:52:49 +0100387 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200388 goto out;
Sujithff37e332008-11-24 12:07:55 +0530389 }
390
Sujith Manoharan6549a862013-12-24 10:44:24 +0530391 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
392 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530393 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
Sujith Manoharan6549a862013-12-24 10:44:24 +0530398 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);
Felix Fietkauaffad452014-02-22 14:52:49 +0100407 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530408 "BB_WATCHDOG: Skipping interrupts\n");
409 goto out;
410 }
411 }
412
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530413 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);
Felix Fietkauaffad452014-02-22 14:52:49 +0100420 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530421 "GTT: Skipping interrupts\n");
422 goto out;
423 }
424 }
425
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530426 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530427 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 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800432 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530433 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530434 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530435 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530436
Felix Fietkaub5c804752010-04-15 17:38:48 -0400437 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) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400444 /* 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);
Sujith063d8be2009-03-30 15:28:49 +0530450 }
451
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400452 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530453 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 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530460 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530461
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400462 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530463 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400464 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530465 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100466
467 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400468 }
Sujith063d8be2009-03-30 15:28:49 +0530469
Felix Fietkauc67ce332013-12-14 18:03:38 +0100470 if (status & ATH9K_INT_GENTIMER)
471 ath_gen_timer_isr(sc->sc_ah);
472
Sujith Manoharan56ca0dba2012-02-22 12:40:32 +0530473 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530474
Sujithff37e332008-11-24 12:07:55 +0530475 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100476 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530477out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530478 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400479 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530480}
481
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100482irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530483{
Sujith063d8be2009-03-30 15:28:49 +0530484#define SCHED_INTR ( \
485 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530486 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530487 ATH9K_INT_RXORN | \
488 ATH9K_INT_RXEOL | \
489 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400490 ATH9K_INT_RXLP | \
491 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530492 ATH9K_INT_TX | \
493 ATH9K_INT_BMISS | \
494 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530495 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530496 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530497 ATH9K_INT_GENTIMER | \
498 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530499
Sujithff37e332008-11-24 12:07:55 +0530500 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530501 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100502 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530503 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530504 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530505 bool sched = false;
506
Sujith063d8be2009-03-30 15:28:49 +0530507 /*
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 */
Wojciech Dubowik2ba7d142014-09-18 08:30:41 +0200512 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530513 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530514
Sujith063d8be2009-03-30 15:28:49 +0530515 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530516
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400517 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530518 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530519
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100520 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200521 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530522 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200523 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530524
Sujith063d8be2009-03-30 15:28:49 +0530525 /*
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 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100531 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
532 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400533 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530534
535 /*
536 * If there are no status bits set, then this interrupt was not
537 * for me (should have been caught above).
538 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400539 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530540 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530541
542 /* Cache the status */
543 sc->intrstatus = status;
544
545 if (status & SCHED_INTR)
546 sched = true;
547
548 /*
Felix Fietkau3b5801442014-10-25 17:19:28 +0200549 * If a FATAL interrupt is received, we have to reset the chip
550 * immediately.
Sujith063d8be2009-03-30 15:28:49 +0530551 */
Felix Fietkau3b5801442014-10-25 17:19:28 +0200552 if (status & ATH9K_INT_FATAL)
Sujith063d8be2009-03-30 15:28:49 +0530553 goto chip_reset;
554
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530555 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530556 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400557 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530558
559#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530560 if (status & ATH9K_INT_BMISS) {
561 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530562 atomic_inc(&sc->wow_got_bmiss_intr);
563 atomic_dec(&sc->wow_sleep_proc_intr);
564 }
565 }
566#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530567
Sujith063d8be2009-03-30 15:28:49 +0530568 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
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530574 if (status & ATH9K_INT_RXEOL) {
575 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200576 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400577 }
578
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400579 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
580 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800581 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
582 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530583 /* Clear RxAbort bit so that we can
584 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700585 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530586 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400587 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530588 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530589 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530590 }
Sujith063d8be2009-03-30 15:28:49 +0530591
592chip_reset:
593
Sujith817e11d2008-12-07 21:42:44 +0530594 ath_debug_stat_interrupt(sc, status);
595
Sujithff37e332008-11-24 12:07:55 +0530596 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100597 /* turn off every interrupt */
598 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530599 tasklet_schedule(&sc->intr_tq);
600 }
601
602 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530603
604#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530605}
606
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530607/*
608 * This function is called when a HW reset cannot be deferred
609 * and has to be immediate.
610 */
Sujith Manoharan5555c952014-10-17 07:40:11 +0530611int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530612{
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530613 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauec303262013-10-05 14:09:30 +0200614 int r;
Sujithff37e332008-11-24 12:07:55 +0530615
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530616 set_bit(ATH_OP_HW_RESET, &common->op_flags);
617
Felix Fietkau783cd012011-01-21 18:52:38 +0100618 ath9k_ps_wakeup(sc);
Sujith Manoharan5555c952014-10-17 07:40:11 +0530619 r = ath_reset_internal(sc, hchan);
Felix Fietkau783cd012011-01-21 18:52:38 +0100620 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530621
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800622 return r;
Sujithff37e332008-11-24 12:07:55 +0530623}
624
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530625/*
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 */
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530630void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
631{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100632 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530633#ifdef CONFIG_ATH9K_DEBUGFS
634 RESET_STAT_INC(sc, type);
635#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100636 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530637 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
638}
639
Felix Fietkau236de512011-09-03 01:40:25 +0200640void ath_reset_work(struct work_struct *work)
641{
642 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
643
Sujith Manoharan5555c952014-10-17 07:40:11 +0530644 ath9k_ps_wakeup(sc);
645 ath_reset_internal(sc, NULL);
646 ath9k_ps_restore(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200647}
648
Sujithff37e332008-11-24 12:07:55 +0530649/**********************/
650/* mac80211 callbacks */
651/**********************/
652
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653static int ath9k_start(struct ieee80211_hw *hw)
654{
Felix Fietkau9ac58612011-01-24 19:23:18 +0100655 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700656 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700657 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530658 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530659 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530660 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530661 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662
Joe Perchesd2182b62011-12-15 14:55:53 -0800663 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800664 "Starting driver with initial channel: %d MHz\n",
665 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700666
Felix Fietkauf62d8162011-03-25 17:43:41 +0100667 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530668 mutex_lock(&sc->mutex);
669
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530670 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530671 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672
Sujithff37e332008-11-24 12:07:55 +0530673 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200674 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530675
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 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700683 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100684
685 atomic_set(&ah->intr_ref_cnt, -1);
686
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200687 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800688 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800689 ath_err(common,
690 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
691 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200692 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700693 }
Sujithff37e332008-11-24 12:07:55 +0530694
Sujithff37e332008-11-24 12:07:55 +0530695 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400696 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)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400701 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530702 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400703 else
704 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530705
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530706 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
707 ah->imask |= ATH9K_INT_BB_WATCHDOG;
708
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530709 /*
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;
Sujithff37e332008-11-24 12:07:55 +0530715
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700716 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400717 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530718
Sujith Manoharane270e772012-06-04 16:27:19 +0530719 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530720
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100721 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530722 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530723
Felix Fietkauceb26a62012-10-03 21:07:51 +0200724 if (!ath_complete_reset(sc, false))
725 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726
Felix Fietkauc0c11742011-11-16 13:08:41 +0100727 if (ah->led_pin >= 0) {
728 ath9k_hw_cfg_output(ah, ah->led_pin,
729 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530730 ath9k_hw_set_gpio(ah, ah->led_pin,
731 (ah->config.led_active_high) ? 1 : 0);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100732 }
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
Felix Fietkaua35051c2013-12-14 18:03:45 +0100740 ath9k_hw_reset_tsf(ah);
741
Felix Fietkau9adcf442011-09-03 01:40:26 +0200742 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400743
Sujith141b38b2009-02-04 08:10:07 +0530744 mutex_unlock(&sc->mutex);
745
Felix Fietkauf62d8162011-03-25 17:43:41 +0100746 ath9k_ps_restore(sc);
747
Felix Fietkauceb26a62012-10-03 21:07:51 +0200748 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749}
750
Thomas Huehn36323f82012-07-23 21:33:42 +0200751static void ath9k_tx(struct ieee80211_hw *hw,
752 struct ieee80211_tx_control *control,
753 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700754{
Felix Fietkau9ac58612011-01-24 19:23:18 +0100755 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700756 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530757 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100758 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530759 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530760
Gabor Juhos96148322009-07-24 17:27:21 +0200761 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300762 /*
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)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800769 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800770 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300771 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
772 }
773 }
774
Sujith Manoharanad128862012-04-24 10:23:20 +0530775 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300776 /*
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 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300781 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530782 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700783 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
784 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300785 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800786 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800787 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530788 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300789 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800790 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530791 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300792 }
793 /*
794 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530795 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300796 * the ps_usecount here.
797 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530798 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300799 ath9k_ps_restore(sc);
800 }
801
Sujith Manoharanad128862012-04-24 10:23:20 +0530802 /*
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
Sujith528f0c62008-10-29 10:14:26 +0530811 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100812 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200813 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530814
Joe Perchesd2182b62011-12-15 14:55:53 -0800815 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200817 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800818 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700819 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530820 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700821 }
822
Johannes Berg7bb45682011-02-24 14:42:06 +0100823 return;
Sujith528f0c62008-10-29 10:14:26 +0530824exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200825 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700826}
827
828static void ath9k_stop(struct ieee80211_hw *hw)
829{
Felix Fietkau9ac58612011-01-24 19:23:18 +0100830 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700831 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700832 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100833 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530834
Sujith Manoharanea22df22014-08-23 13:29:07 +0530835 ath9k_deinit_channel_context(sc);
836
Sujith4c483812009-08-18 10:51:52 +0530837 mutex_lock(&sc->mutex);
838
Felix Fietkau9adcf442011-09-03 01:40:26 +0200839 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700840
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100841 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800842 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530843 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530844 return;
845 }
846
Sujith3867cf62009-12-23 20:03:27 -0500847 /* Ensure HW is awake when we try to shut it down. */
848 ath9k_ps_wakeup(sc);
849
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700850 spin_lock_bh(&sc->sc_pcu_lock);
851
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100852 /* prevent tasklets to enable interrupts once we disable them */
853 ah->imask &= ~ATH9K_INT_GLOBAL;
854
Sujithff37e332008-11-24 12:07:55 +0530855 /* make sure h/w will not generate any interrupt
856 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100857 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530858
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700859 spin_unlock_bh(&sc->sc_pcu_lock);
860
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100861 /* 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
Felix Fietkauc0c11742011-11-16 13:08:41 +0100867 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) {
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530873 ath9k_hw_set_gpio(ah, ah->led_pin,
874 (ah->config.led_active_high) ? 0 : 1);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100875 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
876 }
877
John W. Linville9ebea382013-01-28 13:54:03 -0500878 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100879
880 if (sc->rx.frag) {
881 dev_kfree_skb_any(sc->rx.frag);
882 sc->rx.frag = NULL;
883 }
884
885 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530886 ah->curchan = ath9k_cmn_get_channel(hw, ah,
887 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100888
889 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
890 ath9k_hw_phy_disable(ah);
891
892 ath9k_hw_configpcipowersave(ah, true);
893
894 spin_unlock_bh(&sc->sc_pcu_lock);
895
Sujith3867cf62009-12-23 20:03:27 -0500896 ath9k_ps_restore(sc);
897
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100898 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100899 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700900
Sujith141b38b2009-02-04 08:10:07 +0530901 mutex_unlock(&sc->mutex);
902
Joe Perchesd2182b62011-12-15 14:55:53 -0800903 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700904}
905
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200906static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700907{
Ben Greear48014162011-01-15 19:13:48 +0000908 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200909 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000910 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400911 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000912 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700913 default:
Ben Greear48014162011-01-15 19:13:48 +0000914 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700915 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700916}
917
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530918static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
919 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000920{
Sujith Manoharancb355822014-09-17 14:45:56 +0530921 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Ben Greear48014162011-01-15 19:13:48 +0000922 int i;
923
Felix Fietkauab11bb22013-04-16 12:51:57 +0200924 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000925 for (i = 0; i < ETH_ALEN; i++)
926 iter_data->mask[i] &=
927 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200928 } else {
929 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
930 iter_data->has_hw_macaddr = true;
931 }
Ben Greear48014162011-01-15 19:13:48 +0000932
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530933 if (!vif->bss_conf.use_short_slot)
934 iter_data->slottime = ATH9K_SLOT_TIME_20;
935
Ben Greear48014162011-01-15 19:13:48 +0000936 switch (vif->type) {
937 case NL80211_IFTYPE_AP:
938 iter_data->naps++;
939 break;
940 case NL80211_IFTYPE_STATION:
941 iter_data->nstations++;
Sujith Manoharancb355822014-09-17 14:45:56 +0530942 if (avp->assoc && !iter_data->primary_sta)
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530943 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000944 break;
945 case NL80211_IFTYPE_ADHOC:
946 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530947 if (vif->bss_conf.enable_beacon)
948 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000949 break;
950 case NL80211_IFTYPE_MESH_POINT:
951 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530952 if (vif->bss_conf.enable_beacon)
953 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000954 break;
955 case NL80211_IFTYPE_WDS:
956 iter_data->nwds++;
957 break;
958 default:
Ben Greear48014162011-01-15 19:13:48 +0000959 break;
960 }
961}
962
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530963static 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
Ben Greear48014162011-01-15 19:13:48 +0000991/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530992void ath9k_calculate_iter_data(struct ath_softc *sc,
993 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000994 struct ath9k_vif_iter_data *iter_data)
995{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530996 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000997
998 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100999 * 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.
Ben Greear48014162011-01-15 19:13:48 +00001002 */
1003 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +00001004 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301005 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +00001006
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301007 list_for_each_entry(avp, &ctx->vifs, list)
1008 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301009
1010 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301011}
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);
Sujith Manoharancb355822014-09-17 14:45:56 +05301017 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301018 unsigned long flags;
1019
1020 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301021
Sujith Manoharancb355822014-09-17 14:45:56 +05301022 ether_addr_copy(common->curbssid, avp->bssid);
1023 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301024 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;
1029
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 }
1034
1035 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1036 ath9k_mci_update_wlan_channels(sc, false);
1037
1038 ath_dbg(common, CONFIG,
1039 "Primary Station interface: %pM, BSSID: %pM\n",
1040 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001041}
1042
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301043#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);
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301062 memcpy(common->macaddr, vif->addr, ETH_ALEN);
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301063 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
Ben Greear48014162011-01-15 19:13:48 +00001080/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301081void ath9k_calculate_summary_state(struct ath_softc *sc,
1082 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001083{
Ben Greear48014162011-01-15 19:13:48 +00001084 struct ath_hw *ah = sc->sc_ah;
1085 struct ath_common *common = ath9k_hw_common(ah);
1086 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301087 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001088
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301089 ath_chanctx_check_active(sc, ctx);
1090
1091 if (ctx != sc->cur_chan)
1092 return;
1093
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301094#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1095 if (ctx == &sc->offchannel.chan)
1096 return ath9k_set_offchannel_state(sc);
1097#endif
1098
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301099 ath9k_ps_wakeup(sc);
1100 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1101
1102 if (iter_data.has_hw_macaddr)
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301103 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +00001104
Ben Greear48014162011-01-15 19:13:48 +00001105 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1106 ath_hw_setbssidmask(common);
1107
Ben Greear48014162011-01-15 19:13:48 +00001108 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301109 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301110 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001111 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301112 if (cur_conf->enable_beacon)
1113 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001114 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301115 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001116
Javier Cardonafd5999c2011-05-03 16:57:19 -07001117 if (iter_data.nmeshes)
1118 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1119 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001120 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 }
1126
Sujith Manoharandf35d292012-07-17 17:15:43 +05301127 ath9k_hw_setopmode(ah);
1128
Felix Fietkau748299f2014-06-11 16:18:04 +05301129 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001130 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001131 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301132 else {
Ben Greear48014162011-01-15 19:13:48 +00001133 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301134 if (iter_data.naps == 1 && iter_data.beacons)
1135 ctx->switch_after_beacon = true;
1136 }
Ben Greear48014162011-01-15 19:13:48 +00001137
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301138 ah->imask &= ~ATH9K_INT_SWBA;
1139 if (ah->opmode == NL80211_IFTYPE_STATION) {
1140 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1141
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301142 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301143 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301144 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1145 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301146 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301147 } 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 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001158 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301159
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301160 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);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301168 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301169
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
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301175 ath_dbg(common, CONFIG,
1176 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1177 common->macaddr, common->curbssid, common->bssidmask);
1178
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301179 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001180}
1181
Sujith Manoharana4027642014-09-05 09:50:55 +05301182static 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
Chun-Yeow Yeoh4b870c22014-11-12 16:40:19 +08001190 if (vif->type == NL80211_IFTYPE_AP ||
1191 vif->type == NL80211_IFTYPE_MESH_POINT)
Sujith Manoharana4027642014-09-05 09:50:55 +05301192 vif->cab_queue = hw->queues - 2;
1193 else
1194 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1195}
1196
Ben Greear48014162011-01-15 19:13:48 +00001197static int ath9k_add_interface(struct ieee80211_hw *hw,
1198 struct ieee80211_vif *vif)
1199{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001200 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001201 struct ath_hw *ah = sc->sc_ah;
1202 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001203 struct ath_vif *avp = (void *)vif->drv_priv;
1204 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001205
1206 mutex_lock(&sc->mutex);
1207
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001208 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301209 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001210 mutex_unlock(&sc->mutex);
1211 return -EOPNOTSUPP;
1212 }
1213 sc->tx99_vif = vif;
1214 }
1215
Joe Perchesd2182b62011-12-15 14:55:53 -08001216 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301217 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001218
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301219 if (ath9k_uses_beacons(vif->type))
1220 ath9k_beacon_assign_slot(sc, vif);
1221
Felix Fietkaud463af42014-04-06 00:37:03 +02001222 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301223 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301224 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301225 list_add_tail(&avp->list, &avp->chanctx->vifs);
1226 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301227
1228 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301229
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001230 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
Ben Greear48014162011-01-15 19:13:48 +00001236 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301237 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001238}
1239
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301240static int ath9k_change_interface(struct ieee80211_hw *hw,
1241 struct ieee80211_vif *vif,
1242 enum nl80211_iftype new_type,
1243 bool p2p)
1244{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001245 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301246 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301247 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301248
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301249 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001250
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001251 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
Ben Greear48014162011-01-15 19:13:48 +00001258 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301259 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001260
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301261 vif->type = new_type;
1262 vif->p2p = p2p;
1263
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301264 if (ath9k_uses_beacons(vif->type))
1265 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301266
Sujith Manoharana4027642014-09-05 09:50:55 +05301267 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301268 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301269
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301270 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301271 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301272}
1273
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001274static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001275 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001276{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001277 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001278 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001279 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001280
Joe Perchesd2182b62011-12-15 14:55:53 -08001281 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001282
Sujith141b38b2009-02-04 08:10:07 +05301283 mutex_lock(&sc->mutex);
1284
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301285 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001286
Sujith Manoharanca529c92014-09-05 08:03:19 +05301287 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001288 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301289 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301290 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001291
Ben Greear48014162011-01-15 19:13:48 +00001292 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301293 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001294
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001295 ath_tx_node_cleanup(sc, &avp->mcast_node);
1296
Sujith141b38b2009-02-04 08:10:07 +05301297 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001298}
1299
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301300static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301301{
Pavel Roskin30691682010-03-31 18:05:31 -04001302 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301303 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001304
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001305 if (config_enabled(CONFIG_ATH9K_TX99))
1306 return;
1307
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301308 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001309 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;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001312 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301313 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001314 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301315 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301316 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301317}
1318
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301319static void ath9k_disable_ps(struct ath_softc *sc)
1320{
1321 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301322 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301323
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001324 if (config_enabled(CONFIG_ATH9K_TX99))
1325 return;
1326
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301327 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;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001337 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301338 }
1339 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301340 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301341}
1342
Johannes Berge8975582008-10-09 12:18:51 +02001343static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001344{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001345 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001346 struct ath_hw *ah = sc->sc_ah;
1347 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001348 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301349 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001350
Felix Fietkauc0c11742011-11-16 13:08:41 +01001351 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301352 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301353
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001354 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001355 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301356 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001357 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301358 ath9k_stop_btcoex(sc);
1359 } else {
1360 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001361 /*
1362 * The chip needs a reset to properly wake up from
1363 * full sleep
1364 */
Felix Fietkau39305632014-06-11 16:17:57 +05301365 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301366 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001367 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001368
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001369 /*
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 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301375 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001376 unsigned long flags;
1377 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301378 if (conf->flags & IEEE80211_CONF_PS)
1379 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301380 else
1381 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001382 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301383 }
1384
Sujith199afd92010-01-08 10:36:13 +05301385 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1386 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001387 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301388 sc->sc_ah->is_monitoring = true;
1389 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001390 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301391 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301392 }
1393 }
1394
Sujith Manoharan499afac2014-08-22 20:39:31 +05301395 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301396 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301397 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301398 }
Sujith86b89ee2008-08-07 10:54:57 +05301399
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001400 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001401 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301402 sc->cur_chan->txpower = 2 * conf->power_level;
Felix Fietkaud385c5c2014-11-04 16:56:57 +01001403 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
1404 sc->cur_chan->txpower,
1405 &sc->cur_chan->cur_txpower);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001406 }
1407
Sujithaa33de02008-12-18 11:40:16 +05301408 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001409 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301410
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001411 return 0;
1412}
1413
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414#define SUPPORTED_FILTERS \
1415 (FIF_PROMISC_IN_BSS | \
1416 FIF_ALLMULTI | \
1417 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001418 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419 FIF_OTHER_BSS | \
1420 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001421 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 FIF_FCSFAIL)
1423
Sujith7dcfdcd2008-08-11 14:03:13 +05301424/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001425static void ath9k_configure_filter(struct ieee80211_hw *hw,
1426 unsigned int changed_flags,
1427 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001428 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001429{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001430 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301431 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001432
1433 changed_flags &= SUPPORTED_FILTERS;
1434 *total_flags &= SUPPORTED_FILTERS;
1435
Sujith Manoharanfce34432014-09-05 08:03:18 +05301436 spin_lock_bh(&sc->chan_lock);
1437 sc->cur_chan->rxfilter = *total_flags;
1438 spin_unlock_bh(&sc->chan_lock);
1439
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001440 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301441 rfilt = ath_calcrxfilter(sc);
1442 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001443 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301444
Joe Perchesd2182b62011-12-15 14:55:53 -08001445 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1446 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001447}
1448
Johannes Berg4ca77862010-02-19 19:06:56 +01001449static int ath9k_sta_add(struct ieee80211_hw *hw,
1450 struct ieee80211_vif *vif,
1451 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001452{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001453 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001454 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 = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001457 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001458
Ben Greear7e1e3862011-11-03 11:33:13 -07001459 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001460
1461 if (vif->type != NL80211_IFTYPE_AP &&
1462 vif->type != NL80211_IFTYPE_AP_VLAN)
1463 return 0;
1464
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001465 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301466 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001467 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301468 an->key_idx[0] = key;
1469 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001470
1471 return 0;
1472}
1473
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001474static 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);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001486 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301487 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001488}
1489
Johannes Berg4ca77862010-02-19 19:06:56 +01001490static int ath9k_sta_remove(struct ieee80211_hw *hw,
1491 struct ieee80211_vif *vif,
1492 struct ieee80211_sta *sta)
1493{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001494 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001495
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001496 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001497 ath_node_detach(sc, sta);
1498
1499 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500}
1501
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301502static 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
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301524 if (ath9k_is_chanctx_enabled()) {
Sujith Manoharan91e6ceb2014-10-17 07:40:19 +05301525 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 }
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301531 }
1532
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301533 return ret;
1534}
1535
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301536static 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
Felix Fietkau55195412011-04-17 23:28:09 +02001549static 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;
Johannes Berg042ec452011-09-29 16:04:26 +02001560 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301561 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001562 break;
1563 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301564 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001565 an->sleeping = false;
1566 ath_tx_aggr_wakeup(sc, an);
1567 break;
1568 }
1569}
1570
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001571static int ath9k_conf_tx(struct ieee80211_hw *hw,
1572 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001573 const struct ieee80211_tx_queue_params *params)
1574{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001575 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001576 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001577 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301578 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001579 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001580
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301581 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001582 return 0;
1583
Felix Fietkau066dae92010-11-07 14:59:39 +01001584 txq = sc->tx.txq_map[queue];
1585
Felix Fietkau96f372c2011-04-07 19:07:17 +02001586 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301587 mutex_lock(&sc->mutex);
1588
Sujith1ffb0612009-03-30 15:28:46 +05301589 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1590
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001591 qi.tqi_aifs = params->aifs;
1592 qi.tqi_cwmin = params->cw_min;
1593 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001594 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001595
Joe Perchesd2182b62011-12-15 14:55:53 -08001596 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001597 "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);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001600
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001601 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001602 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001603 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001604 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001605
Sujith141b38b2009-02-04 08:10:07 +05301606 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001607 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301608
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609 return ret;
1610}
1611
1612static int ath9k_set_key(struct ieee80211_hw *hw,
1613 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001614 struct ieee80211_vif *vif,
1615 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001616 struct ieee80211_key_conf *key)
1617{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001618 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001619 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301620 struct ath_node *an = NULL;
1621 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001622
John W. Linville3e6109c2011-01-05 09:39:17 -05001623 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001624 return -ENOSPC;
1625
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001626 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1627 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001628 (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
Sujith141b38b2009-02-04 08:10:07 +05301641 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301642 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301643 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1644 if (sta)
1645 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001646
1647 switch (cmd) {
1648 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001649 if (sta)
1650 ath9k_del_ps_key(sc, vif, sta);
1651
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301652 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001653 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001654 if (ret >= 0) {
1655 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001656 /* push IV and Michael MIC generation to stack */
1657 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001658 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301659 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001660 if (sc->sc_ah->sw_mgmt_crypto_tx &&
Johannes Berg97359d12010-08-10 09:46:38 +02001661 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001662 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001663 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001664 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301665 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 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001674 break;
1675 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001676 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301677 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;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686 break;
1687 default:
1688 ret = -EINVAL;
1689 }
1690
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301691 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301692 mutex_unlock(&sc->mutex);
1693
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001694 return ret;
1695}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301696
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001697static 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{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301702#define CHECK_ANI \
1703 (BSS_CHANGED_ASSOC | \
1704 BSS_CHANGED_IBSS | \
1705 BSS_CHANGED_BEACON_ENABLED)
1706
Felix Fietkau9ac58612011-01-24 19:23:18 +01001707 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001708 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001709 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001710 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001711 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001712
Felix Fietkau96f372c2011-04-07 19:07:17 +02001713 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301714 mutex_lock(&sc->mutex);
1715
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301716 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301717 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1718 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301719
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301720 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Sujith Manoharancb355822014-09-17 14:45:56 +05301721 avp->aid = bss_conf->aid;
1722 avp->assoc = bss_conf->assoc;
1723
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301724 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001725 }
1726
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301727 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301728 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1729 common->curaid = bss_conf->aid;
1730 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301731 }
1732
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301733 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301734 (changed & BSS_CHANGED_BEACON_INT) ||
1735 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301736 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301737 if (changed & BSS_CHANGED_BEACON_ENABLED)
1738 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301739 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001740
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301741 if ((avp->chanctx == sc->cur_chan) &&
1742 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001743 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 }
1759 }
1760
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301761 if (changed & BSS_CHANGED_P2P_PS)
1762 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001763
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301764 if (changed & CHECK_ANI)
1765 ath_check_ani(sc);
1766
Sujith141b38b2009-02-04 08:10:07 +05301767 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001768 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301769
1770#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001771}
1772
Eliad Peller37a41b42011-09-21 14:06:11 +03001773static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001775 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001776 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001777
Sujith141b38b2009-02-04 08:10:07 +05301778 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301779 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301780 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301781 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301782 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783
1784 return tsf;
1785}
1786
Eliad Peller37a41b42011-09-21 14:06:11 +03001787static void ath9k_set_tsf(struct ieee80211_hw *hw,
1788 struct ieee80211_vif *vif,
1789 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001790{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001791 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001792
Sujith141b38b2009-02-04 08:10:07 +05301793 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301794 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301795 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301796 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301797 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001798}
1799
Eliad Peller37a41b42011-09-21 14:06:11 +03001800static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001802 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803
Sujith141b38b2009-02-04 08:10:07 +05301804 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001805
1806 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301807 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001808 ath9k_ps_restore(sc);
1809
Sujith141b38b2009-02-04 08:10:07 +05301810 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001811}
1812
1813static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001814 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301815 enum ieee80211_ampdu_mlme_action action,
1816 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001817 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001818{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001819 struct ath_softc *sc = hw->priv;
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301820 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau16e23422013-05-17 12:58:24 +02001821 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 int ret = 0;
1823
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301824 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001825
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826 switch (action) {
1827 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001828 break;
1829 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001830 break;
1831 case IEEE80211_AMPDU_TX_START:
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301832 if (ath9k_is_chanctx_enabled()) {
1833 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
1834 ret = -EBUSY;
1835 break;
1836 }
1837 }
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001838 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001839 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1840 if (!ret)
1841 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001842 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001843 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001844 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1845 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001846 flush = true;
1847 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001848 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301849 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001850 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001851 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001852 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001853 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001854 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001855 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301856 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001857 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301858 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001859 default:
Joe Perches38002762010-12-02 19:12:36 -08001860 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001861 }
1862
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301863 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001864
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865 return ret;
1866}
1867
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001868static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1869 struct survey_info *survey)
1870{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001871 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001872 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001873 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001874 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001875 int pos;
1876
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001877 if (config_enabled(CONFIG_ATH9K_TX99))
1878 return -EOPNOTSUPP;
1879
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301880 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001881 if (idx == 0)
1882 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001883
Felix Fietkau39162db2010-09-29 19:12:06 +02001884 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1885 if (sband && idx >= sband->n_channels) {
1886 idx -= sband->n_channels;
1887 sband = NULL;
1888 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001889
Felix Fietkau39162db2010-09-29 19:12:06 +02001890 if (!sband)
1891 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1892
Felix Fietkau34300982010-10-10 18:21:52 +02001893 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301894 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001895 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001896 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001897
Felix Fietkau34300982010-10-10 18:21:52 +02001898 chan = &sband->channels[idx];
1899 pos = chan->hw_value;
1900 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1901 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301902 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001903
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001904 return 0;
1905}
1906
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001907static 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
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001921static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1922 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001923{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001924 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001925 struct ath_hw *ah = sc->sc_ah;
1926
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001927 if (config_enabled(CONFIG_ATH9K_TX99))
1928 return;
1929
Felix Fietkaue239d852010-01-15 02:34:58 +01001930 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301931
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001932 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 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301947
Felix Fietkaue239d852010-01-15 02:34:58 +01001948 mutex_unlock(&sc->mutex);
1949}
1950
Sujith Manoharane2d389b2014-10-17 07:40:18 +05301951static bool ath9k_has_tx_pending(struct ath_softc *sc,
1952 bool sw_pending)
Felix Fietkau10e23182013-11-11 22:23:35 +01001953{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001954 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001955
1956 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1957 if (!ATH_TXQ_SETUP(sc, i))
1958 continue;
1959
Sujith Manoharane2d389b2014-10-17 07:40:18 +05301960 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
1961 sw_pending);
Felix Fietkau10e23182013-11-11 22:23:35 +01001962 if (npend)
1963 break;
1964 }
1965
1966 return !!npend;
1967}
1968
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02001969static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1970 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001971{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001972 struct ath_softc *sc = hw->priv;
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05301973 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkaubff11762014-06-11 16:17:52 +05301974
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05301975 if (ath9k_is_chanctx_enabled()) {
1976 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
1977 goto flush;
1978
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:
Felix Fietkaubff11762014-06-11 16:17:52 +05301993 mutex_lock(&sc->mutex);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05301994 __ath9k_flush(hw, queues, drop, true, false);
Felix Fietkaubff11762014-06-11 16:17:52 +05301995 mutex_unlock(&sc->mutex);
1996}
1997
Sujith Manoharane2d389b2014-10-17 07:40:18 +05301998void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05301999 bool sw_pending, bool timeout_override)
Felix Fietkaubff11762014-06-11 16:17:52 +05302000{
2001 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302002 struct ath_hw *ah = sc->sc_ah;
2003 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302004 int timeout;
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302005 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002006
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002007 cancel_delayed_work_sync(&sc->tx_complete_work);
2008
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302009 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002010 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302011 return;
2012 }
2013
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002014 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002015 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302016 return;
2017 }
2018
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302019 spin_lock_bh(&sc->chan_lock);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302020 if (timeout_override)
2021 timeout = HZ / 5;
2022 else
2023 timeout = sc->cur_chan->flush_timeout;
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302024 spin_unlock_bh(&sc->chan_lock);
2025
2026 ath_dbg(common, CHAN_CTX,
2027 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2028
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302029 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
Felix Fietkau10e23182013-11-11 22:23:35 +01002030 timeout) > 0)
2031 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002032
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002033 if (drop) {
2034 ath9k_ps_wakeup(sc);
2035 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002036 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002037 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002038
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002039 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302040 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002041
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002042 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002043 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302044
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002045 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002046}
2047
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302048static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2049{
2050 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302051
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302052 return ath9k_has_tx_pending(sc, true);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302053}
2054
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302055static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002056{
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;
Felix Fietkau4286df62012-02-27 19:58:40 +01002063 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002064 int status;
2065
2066 vif = sc->beacon.bslot[0];
2067 if (!vif)
2068 return 0;
2069
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302070 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002071 return 0;
2072
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302073 avp = (void *)vif->drv_priv;
2074
Felix Fietkau4286df62012-02-27 19:58:40 +01002075 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002076 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
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302096static 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
Felix Fietkau43c35282011-09-03 01:40:27 +02002110static 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
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002128static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2129{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002130 if (AR_SREV_9300_20_OR_LATER(ah))
2131 return true;
2132
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002133 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
Felix Fietkau43c35282011-09-03 01:40:27 +02002145static 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
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002150 if (ah->caps.rx_chainmask != 1)
2151 rx_ant |= tx_ant;
2152
2153 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002154 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);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002169 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002170
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
Simon Wunderliche93d0832013-01-08 14:48:58 +01002183static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2184{
2185 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002186 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2187 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002188}
2189
2190static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2191{
2192 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002193 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2194 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002195}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302196
Sujith Manoharan499afac2014-08-22 20:39:31 +05302197#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2198
Sujith Manoharan61856722014-11-16 06:11:07 +05302199static void ath9k_cancel_pending_offchannel(struct ath_softc *sc)
2200{
2201 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2202
2203 if (sc->offchannel.roc_vif) {
2204 ath_dbg(common, CHAN_CTX,
2205 "%s: Aborting RoC\n", __func__);
2206
2207 del_timer_sync(&sc->offchannel.timer);
2208 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2209 ath_roc_complete(sc, true);
2210 }
2211
2212 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
2213 ath_dbg(common, CHAN_CTX,
2214 "%s: Aborting HW scan\n", __func__);
2215
2216 del_timer_sync(&sc->offchannel.timer);
2217 ath_scan_complete(sc, true);
2218 }
2219}
2220
Felix Fietkau78b21942014-06-11 16:17:55 +05302221static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002222 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302223{
John W. Linville855df362014-06-25 15:15:14 -04002224 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302225 struct ath_softc *sc = hw->priv;
2226 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2227 int ret = 0;
2228
2229 mutex_lock(&sc->mutex);
2230
2231 if (WARN_ON(sc->offchannel.scan_req)) {
2232 ret = -EBUSY;
2233 goto out;
2234 }
2235
2236 ath9k_ps_wakeup(sc);
2237 set_bit(ATH_OP_SCANNING, &common->op_flags);
2238 sc->offchannel.scan_vif = vif;
2239 sc->offchannel.scan_req = req;
2240 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302241
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302242 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2243 vif->addr);
2244
2245 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2246 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302247 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302248 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302249
2250out:
2251 mutex_unlock(&sc->mutex);
2252
2253 return ret;
2254}
2255
2256static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2257 struct ieee80211_vif *vif)
2258{
2259 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302260 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2261
2262 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302263
2264 mutex_lock(&sc->mutex);
2265 del_timer_sync(&sc->offchannel.timer);
2266 ath_scan_complete(sc, true);
2267 mutex_unlock(&sc->mutex);
2268}
2269
Felix Fietkau405393c2014-06-11 16:17:56 +05302270static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2271 struct ieee80211_vif *vif,
2272 struct ieee80211_channel *chan, int duration,
2273 enum ieee80211_roc_type type)
2274{
2275 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302276 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302277 int ret = 0;
2278
2279 mutex_lock(&sc->mutex);
2280
2281 if (WARN_ON(sc->offchannel.roc_vif)) {
2282 ret = -EBUSY;
2283 goto out;
2284 }
2285
2286 ath9k_ps_wakeup(sc);
2287 sc->offchannel.roc_vif = vif;
2288 sc->offchannel.roc_chan = chan;
2289 sc->offchannel.roc_duration = duration;
2290
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302291 ath_dbg(common, CHAN_CTX,
2292 "RoC request on vif: %pM, type: %d duration: %d\n",
2293 vif->addr, type, duration);
2294
2295 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2296 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302297 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302298 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302299
2300out:
2301 mutex_unlock(&sc->mutex);
2302
2303 return ret;
2304}
2305
2306static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2307{
2308 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302309 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302310
2311 mutex_lock(&sc->mutex);
2312
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302313 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302314 del_timer_sync(&sc->offchannel.timer);
2315
2316 if (sc->offchannel.roc_vif) {
2317 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2318 ath_roc_complete(sc, true);
2319 }
2320
2321 mutex_unlock(&sc->mutex);
2322
2323 return 0;
2324}
2325
Felix Fietkau39305632014-06-11 16:17:57 +05302326static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2327 struct ieee80211_chanctx_conf *conf)
2328{
2329 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302330 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302331 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302332 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302333
2334 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302335
2336 ath_for_each_chanctx(sc, ctx) {
2337 if (ctx->assigned)
2338 continue;
2339
2340 ptr = (void *) conf->drv_priv;
2341 *ptr = ctx;
2342 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302343 pos = ctx - &sc->chanctx[0];
2344 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302345
2346 ath_dbg(common, CHAN_CTX,
2347 "Add channel context: %d MHz\n",
2348 conf->def.chan->center_freq);
2349
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302350 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302351
Felix Fietkau39305632014-06-11 16:17:57 +05302352 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302353 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302354 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302355
Felix Fietkau39305632014-06-11 16:17:57 +05302356 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302357 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302358}
2359
2360
2361static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2362 struct ieee80211_chanctx_conf *conf)
2363{
2364 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302365 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302366 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2367
2368 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302369
2370 ath_dbg(common, CHAN_CTX,
2371 "Remove channel context: %d MHz\n",
2372 conf->def.chan->center_freq);
2373
Felix Fietkau39305632014-06-11 16:17:57 +05302374 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302375 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302376 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302377
Felix Fietkau39305632014-06-11 16:17:57 +05302378 mutex_unlock(&sc->mutex);
2379}
2380
2381static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2382 struct ieee80211_chanctx_conf *conf,
2383 u32 changed)
2384{
2385 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302386 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302387 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2388
2389 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302390 ath_dbg(common, CHAN_CTX,
2391 "Change channel context: %d MHz\n",
2392 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302393 ath_chanctx_set_channel(sc, ctx, &conf->def);
2394 mutex_unlock(&sc->mutex);
2395}
2396
2397static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2398 struct ieee80211_vif *vif,
2399 struct ieee80211_chanctx_conf *conf)
2400{
2401 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302402 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302403 struct ath_vif *avp = (void *)vif->drv_priv;
2404 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302405 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302406
Sujith Manoharan61856722014-11-16 06:11:07 +05302407 ath9k_cancel_pending_offchannel(sc);
2408
Felix Fietkau39305632014-06-11 16:17:57 +05302409 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302410
2411 ath_dbg(common, CHAN_CTX,
2412 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2413 vif->addr, vif->type, vif->p2p,
2414 conf->def.chan->center_freq);
2415
Felix Fietkau39305632014-06-11 16:17:57 +05302416 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302417 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302418 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302419 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302420 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2421 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302422
Felix Fietkau39305632014-06-11 16:17:57 +05302423 mutex_unlock(&sc->mutex);
2424
2425 return 0;
2426}
2427
2428static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2429 struct ieee80211_vif *vif,
2430 struct ieee80211_chanctx_conf *conf)
2431{
2432 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302433 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302434 struct ath_vif *avp = (void *)vif->drv_priv;
2435 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302436 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302437
Sujith Manoharan61856722014-11-16 06:11:07 +05302438 ath9k_cancel_pending_offchannel(sc);
2439
Felix Fietkau39305632014-06-11 16:17:57 +05302440 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302441
2442 ath_dbg(common, CHAN_CTX,
2443 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2444 vif->addr, vif->type, vif->p2p,
2445 conf->def.chan->center_freq);
2446
Felix Fietkau39305632014-06-11 16:17:57 +05302447 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302448 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302449 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302450 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302451 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2452 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302453
Felix Fietkau39305632014-06-11 16:17:57 +05302454 mutex_unlock(&sc->mutex);
2455}
2456
Sujith Manoharane20a8542014-08-23 13:29:09 +05302457static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2458 struct ieee80211_vif *vif)
2459{
2460 struct ath_softc *sc = hw->priv;
2461 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2462 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302463 struct ath_beacon_config *cur_conf;
2464 struct ath_chanctx *go_ctx;
2465 unsigned long timeout;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302466 bool changed = false;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302467 u32 beacon_int;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302468
2469 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2470 return;
2471
2472 if (!avp->chanctx)
2473 return;
2474
2475 mutex_lock(&sc->mutex);
2476
2477 spin_lock_bh(&sc->chan_lock);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302478 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
Sujith Manoharane20a8542014-08-23 13:29:09 +05302479 changed = true;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302480 spin_unlock_bh(&sc->chan_lock);
2481
2482 if (!changed)
2483 goto out;
2484
Sujith Manoharan61856722014-11-16 06:11:07 +05302485 ath9k_cancel_pending_offchannel(sc);
Sujith Manoharan23aab0c2014-10-17 07:40:28 +05302486
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302487 go_ctx = ath_is_go_chanctx_present(sc);
2488
2489 if (go_ctx) {
2490 /*
2491 * Wait till the GO interface gets a chance
2492 * to send out an NoA.
2493 */
2494 spin_lock_bh(&sc->chan_lock);
2495 sc->sched.mgd_prepare_tx = true;
2496 cur_conf = &go_ctx->beacon;
2497 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2498 spin_unlock_bh(&sc->chan_lock);
2499
Sujith Manoharan61856722014-11-16 06:11:07 +05302500 timeout = usecs_to_jiffies(beacon_int * 2);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302501 init_completion(&sc->go_beacon);
2502
Sujith Manoharan61856722014-11-16 06:11:07 +05302503 mutex_unlock(&sc->mutex);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302504 if (wait_for_completion_timeout(&sc->go_beacon,
2505 timeout) == 0)
2506 ath_dbg(common, CHAN_CTX,
2507 "Failed to send new NoA\n");
Sujith Manoharan61856722014-11-16 06:11:07 +05302508 mutex_lock(&sc->mutex);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302509 }
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302510
Sujith Manoharan878066e2014-08-27 12:07:24 +05302511 ath_dbg(common, CHAN_CTX,
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302512 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2513 __func__, vif->addr);
2514
2515 spin_lock_bh(&sc->chan_lock);
2516 sc->next_chan = avp->chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302517 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2518 spin_unlock_bh(&sc->chan_lock);
2519
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302520 ath_chanctx_set_next(sc, true);
2521out:
Sujith Manoharane20a8542014-08-23 13:29:09 +05302522 mutex_unlock(&sc->mutex);
2523}
2524
Felix Fietkau78b21942014-06-11 16:17:55 +05302525void ath9k_fill_chanctx_ops(void)
2526{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302527 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302528 return;
2529
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302530 ath9k_ops.hw_scan = ath9k_hw_scan;
2531 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2532 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302533 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302534 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2535 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2536 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2537 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2538 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302539 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302540}
2541
Sujith Manoharan499afac2014-08-22 20:39:31 +05302542#endif
2543
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002544static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2545 int *dbm)
2546{
2547 struct ath_softc *sc = hw->priv;
2548 struct ath_vif *avp = (void *)vif->drv_priv;
2549
2550 mutex_lock(&sc->mutex);
2551 if (avp->chanctx)
2552 *dbm = avp->chanctx->cur_txpower;
2553 else
2554 *dbm = sc->cur_chan->cur_txpower;
2555 mutex_unlock(&sc->mutex);
2556
2557 *dbm /= 2;
2558
2559 return 0;
2560}
2561
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002562struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 .tx = ath9k_tx,
2564 .start = ath9k_start,
2565 .stop = ath9k_stop,
2566 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302567 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568 .remove_interface = ath9k_remove_interface,
2569 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002570 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302571 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002572 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002573 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002574 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002575 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002576 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002577 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002579 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002580 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302581 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002582 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002583 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302584 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302585 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002586 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302587 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002588 .set_antenna = ath9k_set_antenna,
2589 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002590
Sujith Manoharane60001e2013-10-28 12:22:04 +05302591#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302592 .suspend = ath9k_suspend,
2593 .resume = ath9k_resume,
2594 .set_wakeup = ath9k_set_wakeup,
2595#endif
2596
Ben Greearb90bd9d2012-05-15 15:33:25 -07002597#ifdef CONFIG_ATH9K_DEBUGFS
2598 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302599 .get_et_stats = ath9k_get_et_stats,
2600 .get_et_strings = ath9k_get_et_strings,
2601#endif
2602
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302603#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302604 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002605#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002606 .sw_scan_start = ath9k_sw_scan_start,
2607 .sw_scan_complete = ath9k_sw_scan_complete,
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002608 .get_txpower = ath9k_get_txpower,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002609};