blob: f58781a147925747edbc61546fa0d73db140c849 [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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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. Rodrigueza91d75ae2009-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 Fietkau9adcf442011-09-03 01:40:26 +0200236 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530237 sc->cur_chan->txpower, &sc->curtxpow);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100238 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200239
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530240 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530241 /* restore per chanctx TSF timer */
242 if (sc->cur_chan->tsf_val) {
243 u32 offset;
244
245 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
246 NULL);
247 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
248 }
249
250
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100251 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530252 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200253
Sujith Manoharan196fb862012-06-04 20:24:13 +0530254 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100255 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530256 spin_lock_irqsave(&sc->sc_pm_lock, flags);
257 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
258 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530259 } else {
260 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530261 }
262 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530263 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530264 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200265 }
266
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530267 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530268
269 ath9k_hw_set_interrupts(ah);
270 ath9k_hw_enable_interrupts(ah);
Sujith Manoharan5ba8d9d2014-10-02 06:33:19 +0530271 ieee80211_wake_queues(sc->hw);
Felix Fietkaud463af42014-04-06 00:37:03 +0200272 ath9k_p2p_ps_timer(sc);
273
Felix Fietkau9adcf442011-09-03 01:40:26 +0200274 return true;
275}
276
Sujith Manoharan5555c952014-10-17 07:40:11 +0530277static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200278{
279 struct ath_hw *ah = sc->sc_ah;
280 struct ath_common *common = ath9k_hw_common(ah);
281 struct ath9k_hw_cal_data *caldata = NULL;
282 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200283 int r;
284
285 __ath_cancel_work(sc);
286
Felix Fietkau4668cce2013-01-14 16:56:46 +0100287 tasklet_disable(&sc->intr_tq);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530288 tasklet_disable(&sc->bcon_tasklet);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200289 spin_lock_bh(&sc->sc_pcu_lock);
290
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530291 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200292 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530293 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200294 }
295
296 if (!hchan) {
297 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200298 hchan = ah->curchan;
299 }
300
John W. Linville9ebea382013-01-28 13:54:03 -0500301 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200302 fastcc = false;
303
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530304 if (ath9k_is_chanctx_enabled())
305 fastcc = false;
306
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530307 spin_lock_bh(&sc->chan_lock);
308 sc->cur_chandef = sc->cur_chan->chandef;
309 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530310
Joe Perchesd2182b62011-12-15 14:55:53 -0800311 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530312 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200313
314 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
315 if (r) {
316 ath_err(common,
317 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400318
319 ath9k_hw_enable_interrupts(ah);
320 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
321
Felix Fietkau9adcf442011-09-03 01:40:26 +0200322 goto out;
323 }
324
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530325 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530326 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530327 ath9k_mci_set_txpower(sc, true, false);
328
Felix Fietkau9adcf442011-09-03 01:40:26 +0200329 if (!ath_complete_reset(sc, true))
330 r = -EIO;
331
332out:
333 spin_unlock_bh(&sc->sc_pcu_lock);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530334 tasklet_enable(&sc->bcon_tasklet);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100335 tasklet_enable(&sc->intr_tq);
336
Felix Fietkau9adcf442011-09-03 01:40:26 +0200337 return r;
338}
339
Ben Greear7e1e3862011-11-03 11:33:13 -0700340static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
341 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530342{
343 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530344 an = (struct ath_node *)sta->drv_priv;
345
Sujith Manoharana145daf2012-11-28 15:08:54 +0530346 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800347 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700348 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530349 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530350
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530351 ath_tx_node_init(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200352
353 ath_dynack_node_init(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530354}
355
356static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
357{
358 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530359 ath_tx_node_cleanup(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200360
361 ath_dynack_node_deinit(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530362}
363
Sujith55624202010-01-08 10:36:02 +0530364void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530365{
366 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700367 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700368 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530369 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530370 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530371 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400372 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530373
Felix Fietkaue3927002011-09-14 21:23:01 +0200374 ath9k_ps_wakeup(sc);
375 spin_lock(&sc->sc_pcu_lock);
376
Sujith Manoharan6549a862013-12-24 10:44:24 +0530377 if (status & ATH9K_INT_FATAL) {
378 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530379 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530380
381 /*
382 * Increment the ref. counter here so that
383 * interrupts are enabled in the reset routine.
384 */
385 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100386 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200387 goto out;
Sujithff37e332008-11-24 12:07:55 +0530388 }
389
Sujith Manoharan6549a862013-12-24 10:44:24 +0530390 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
391 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530392 spin_lock(&common->cc_lock);
393 ath_hw_cycle_counters_update(common);
394 ar9003_hw_bb_watchdog_dbg_info(ah);
395 spin_unlock(&common->cc_lock);
396
Sujith Manoharan6549a862013-12-24 10:44:24 +0530397 if (ar9003_hw_bb_watchdog_check(ah)) {
398 type = RESET_TYPE_BB_WATCHDOG;
399 ath9k_queue_reset(sc, type);
400
401 /*
402 * Increment the ref. counter here so that
403 * interrupts are enabled in the reset routine.
404 */
405 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100406 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530407 "BB_WATCHDOG: Skipping interrupts\n");
408 goto out;
409 }
410 }
411
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530412 if (status & ATH9K_INT_GTT) {
413 sc->gtt_cnt++;
414
415 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
416 type = RESET_TYPE_TX_GTT;
417 ath9k_queue_reset(sc, type);
418 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100419 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530420 "GTT: Skipping interrupts\n");
421 goto out;
422 }
423 }
424
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530425 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530426 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
427 /*
428 * TSF sync does not look correct; remain awake to sync with
429 * the next Beacon.
430 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800431 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530432 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530433 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530434 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530435
Felix Fietkaub5c804752010-04-15 17:38:48 -0400436 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
437 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
438 ATH9K_INT_RXORN);
439 else
440 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
441
442 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400443 /* Check for high priority Rx first */
444 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
445 (status & ATH9K_INT_RXHP))
446 ath_rx_tasklet(sc, 0, true);
447
448 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530449 }
450
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400451 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530452 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
453 /*
454 * For EDMA chips, TX completion is enabled for the
455 * beacon queue, so if a beacon has been transmitted
456 * successfully after a GTT interrupt, the GTT counter
457 * gets reset to zero here.
458 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530459 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530460
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400461 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530462 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400463 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530464 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100465
466 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400467 }
Sujith063d8be2009-03-30 15:28:49 +0530468
Felix Fietkauc67ce332013-12-14 18:03:38 +0100469 if (status & ATH9K_INT_GENTIMER)
470 ath_gen_timer_isr(sc->sc_ah);
471
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530472 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530473
Sujithff37e332008-11-24 12:07:55 +0530474 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100475 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530476out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530477 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400478 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530479}
480
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100481irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530482{
Sujith063d8be2009-03-30 15:28:49 +0530483#define SCHED_INTR ( \
484 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530485 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530486 ATH9K_INT_RXORN | \
487 ATH9K_INT_RXEOL | \
488 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400489 ATH9K_INT_RXLP | \
490 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530491 ATH9K_INT_TX | \
492 ATH9K_INT_BMISS | \
493 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530494 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530495 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530496 ATH9K_INT_GENTIMER | \
497 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530498
Sujithff37e332008-11-24 12:07:55 +0530499 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530500 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100501 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530502 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530503 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530504 bool sched = false;
505
Sujith063d8be2009-03-30 15:28:49 +0530506 /*
507 * The hardware is not ready/present, don't
508 * touch anything. Note this can happen early
509 * on if the IRQ is shared.
510 */
Wojciech Dubowik2ba7d142014-09-18 08:30:41 +0200511 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530512 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530513
Sujith063d8be2009-03-30 15:28:49 +0530514 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530515
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400516 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530517 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530518
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100519 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200520 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530521 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200522 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530523
Sujith063d8be2009-03-30 15:28:49 +0530524 /*
525 * Figure out the reason(s) for the interrupt. Note
526 * that the hal returns a pseudo-ISR that may include
527 * bits we haven't explicitly enabled so we mask the
528 * value to insure we only process bits we requested.
529 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100530 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
531 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400532 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530533
534 /*
535 * If there are no status bits set, then this interrupt was not
536 * for me (should have been caught above).
537 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400538 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530539 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530540
541 /* Cache the status */
542 sc->intrstatus = status;
543
544 if (status & SCHED_INTR)
545 sched = true;
546
547 /*
548 * If a FATAL or RXORN interrupt is received, we have to reset the
549 * chip immediately.
550 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400551 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
552 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
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 Fietkau9ac586152011-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);
730 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
731 }
732
733 /*
734 * Reset key cache to sane defaults (all entries cleared) instead of
735 * semi-random values after suspend/resume.
736 */
737 ath9k_cmn_init_crypto(sc->sc_ah);
738
Felix Fietkaua35051c2013-12-14 18:03:45 +0100739 ath9k_hw_reset_tsf(ah);
740
Felix Fietkau9adcf442011-09-03 01:40:26 +0200741 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400742
Sujith141b38b2009-02-04 08:10:07 +0530743 mutex_unlock(&sc->mutex);
744
Felix Fietkauf62d8162011-03-25 17:43:41 +0100745 ath9k_ps_restore(sc);
746
Felix Fietkauceb26a62012-10-03 21:07:51 +0200747 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748}
749
Thomas Huehn36323f82012-07-23 21:33:42 +0200750static void ath9k_tx(struct ieee80211_hw *hw,
751 struct ieee80211_tx_control *control,
752 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100754 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700755 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530756 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100757 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530758 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530759
Gabor Juhos96148322009-07-24 17:27:21 +0200760 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300761 /*
762 * mac80211 does not set PM field for normal data frames, so we
763 * need to update that based on the current PS mode.
764 */
765 if (ieee80211_is_data(hdr->frame_control) &&
766 !ieee80211_is_nullfunc(hdr->frame_control) &&
767 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800768 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800769 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300770 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
771 }
772 }
773
Sujith Manoharanad128862012-04-24 10:23:20 +0530774 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300775 /*
776 * We are using PS-Poll and mac80211 can request TX while in
777 * power save mode. Need to wake up hardware for the TX to be
778 * completed and if needed, also for RX of buffered frames.
779 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300780 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530781 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700782 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
783 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300784 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800785 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800786 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530787 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300788 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800789 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530790 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300791 }
792 /*
793 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530794 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300795 * the ps_usecount here.
796 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530797 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300798 ath9k_ps_restore(sc);
799 }
800
Sujith Manoharanad128862012-04-24 10:23:20 +0530801 /*
802 * Cannot tx while the hardware is in full sleep, it first needs a full
803 * chip reset to recover from that
804 */
805 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
806 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
807 goto exit;
808 }
809
Sujith528f0c62008-10-29 10:14:26 +0530810 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100811 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200812 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530813
Joe Perchesd2182b62011-12-15 14:55:53 -0800814 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200816 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800817 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700818 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530819 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700820 }
821
Johannes Berg7bb45682011-02-24 14:42:06 +0100822 return;
Sujith528f0c62008-10-29 10:14:26 +0530823exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200824 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700825}
826
827static void ath9k_stop(struct ieee80211_hw *hw)
828{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100829 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700830 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700831 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100832 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530833
Sujith Manoharanea22df22014-08-23 13:29:07 +0530834 ath9k_deinit_channel_context(sc);
835
Sujith4c483812009-08-18 10:51:52 +0530836 mutex_lock(&sc->mutex);
837
Felix Fietkau9adcf442011-09-03 01:40:26 +0200838 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700839
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100840 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800841 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530842 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530843 return;
844 }
845
Sujith3867cf62009-12-23 20:03:27 -0500846 /* Ensure HW is awake when we try to shut it down. */
847 ath9k_ps_wakeup(sc);
848
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700849 spin_lock_bh(&sc->sc_pcu_lock);
850
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100851 /* prevent tasklets to enable interrupts once we disable them */
852 ah->imask &= ~ATH9K_INT_GLOBAL;
853
Sujithff37e332008-11-24 12:07:55 +0530854 /* make sure h/w will not generate any interrupt
855 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100856 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530857
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700858 spin_unlock_bh(&sc->sc_pcu_lock);
859
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100860 /* we can now sync irq and kill any running tasklets, since we already
861 * disabled interrupts and not holding a spin lock */
862 synchronize_irq(sc->irq);
863 tasklet_kill(&sc->intr_tq);
864 tasklet_kill(&sc->bcon_tasklet);
865
Felix Fietkauc0c11742011-11-16 13:08:41 +0100866 prev_idle = sc->ps_idle;
867 sc->ps_idle = true;
868
869 spin_lock_bh(&sc->sc_pcu_lock);
870
871 if (ah->led_pin >= 0) {
872 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
873 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
874 }
875
John W. Linville9ebea382013-01-28 13:54:03 -0500876 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100877
878 if (sc->rx.frag) {
879 dev_kfree_skb_any(sc->rx.frag);
880 sc->rx.frag = NULL;
881 }
882
883 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530884 ah->curchan = ath9k_cmn_get_channel(hw, ah,
885 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100886
887 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
888 ath9k_hw_phy_disable(ah);
889
890 ath9k_hw_configpcipowersave(ah, true);
891
892 spin_unlock_bh(&sc->sc_pcu_lock);
893
Sujith3867cf62009-12-23 20:03:27 -0500894 ath9k_ps_restore(sc);
895
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100896 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100897 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700898
Sujith141b38b2009-02-04 08:10:07 +0530899 mutex_unlock(&sc->mutex);
900
Joe Perchesd2182b62011-12-15 14:55:53 -0800901 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700902}
903
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200904static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700905{
Ben Greear48014162011-01-15 19:13:48 +0000906 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200907 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000908 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400909 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000910 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700911 default:
Ben Greear48014162011-01-15 19:13:48 +0000912 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700913 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700914}
915
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530916static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
917 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000918{
Sujith Manoharancb355822014-09-17 14:45:56 +0530919 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Ben Greear48014162011-01-15 19:13:48 +0000920 int i;
921
Felix Fietkauab11bb22013-04-16 12:51:57 +0200922 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000923 for (i = 0; i < ETH_ALEN; i++)
924 iter_data->mask[i] &=
925 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200926 } else {
927 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
928 iter_data->has_hw_macaddr = true;
929 }
Ben Greear48014162011-01-15 19:13:48 +0000930
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530931 if (!vif->bss_conf.use_short_slot)
932 iter_data->slottime = ATH9K_SLOT_TIME_20;
933
Ben Greear48014162011-01-15 19:13:48 +0000934 switch (vif->type) {
935 case NL80211_IFTYPE_AP:
936 iter_data->naps++;
937 break;
938 case NL80211_IFTYPE_STATION:
939 iter_data->nstations++;
Sujith Manoharancb355822014-09-17 14:45:56 +0530940 if (avp->assoc && !iter_data->primary_sta)
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530941 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000942 break;
943 case NL80211_IFTYPE_ADHOC:
944 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530945 if (vif->bss_conf.enable_beacon)
946 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000947 break;
948 case NL80211_IFTYPE_MESH_POINT:
949 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530950 if (vif->bss_conf.enable_beacon)
951 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000952 break;
953 case NL80211_IFTYPE_WDS:
954 iter_data->nwds++;
955 break;
956 default:
Ben Greear48014162011-01-15 19:13:48 +0000957 break;
958 }
959}
960
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530961static void ath9k_update_bssid_mask(struct ath_softc *sc,
962 struct ath_chanctx *ctx,
963 struct ath9k_vif_iter_data *iter_data)
964{
965 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
966 struct ath_vif *avp;
967 int i;
968
969 if (!ath9k_is_chanctx_enabled())
970 return;
971
972 list_for_each_entry(avp, &ctx->vifs, list) {
973 if (ctx->nvifs_assigned != 1)
974 continue;
975
976 if (!avp->vif->p2p || !iter_data->has_hw_macaddr)
977 continue;
978
979 ether_addr_copy(common->curbssid, avp->bssid);
980
981 /* perm_addr will be used as the p2p device address. */
982 for (i = 0; i < ETH_ALEN; i++)
983 iter_data->mask[i] &=
984 ~(iter_data->hw_macaddr[i] ^
985 sc->hw->wiphy->perm_addr[i]);
986 }
987}
988
Ben Greear48014162011-01-15 19:13:48 +0000989/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530990void ath9k_calculate_iter_data(struct ath_softc *sc,
991 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000992 struct ath9k_vif_iter_data *iter_data)
993{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530994 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000995
996 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100997 * Pick the MAC address of the first interface as the new hardware
998 * MAC address. The hardware will use it together with the BSSID mask
999 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +00001000 */
1001 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +00001002 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301003 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +00001004
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301005 list_for_each_entry(avp, &ctx->vifs, list)
1006 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301007
1008 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301009}
1010
1011static void ath9k_set_assoc_state(struct ath_softc *sc,
1012 struct ieee80211_vif *vif, bool changed)
1013{
1014 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharancb355822014-09-17 14:45:56 +05301015 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301016 unsigned long flags;
1017
1018 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301019
Sujith Manoharancb355822014-09-17 14:45:56 +05301020 ether_addr_copy(common->curbssid, avp->bssid);
1021 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301022 ath9k_hw_write_associd(sc->sc_ah);
1023
1024 if (changed) {
1025 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1026 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1027
1028 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1029 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1030 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1031 }
1032
1033 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1034 ath9k_mci_update_wlan_channels(sc, false);
1035
1036 ath_dbg(common, CONFIG,
1037 "Primary Station interface: %pM, BSSID: %pM\n",
1038 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001039}
1040
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301041#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1042static void ath9k_set_offchannel_state(struct ath_softc *sc)
1043{
1044 struct ath_hw *ah = sc->sc_ah;
1045 struct ath_common *common = ath9k_hw_common(ah);
1046 struct ieee80211_vif *vif = NULL;
1047
1048 ath9k_ps_wakeup(sc);
1049
1050 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1051 vif = sc->offchannel.scan_vif;
1052 else
1053 vif = sc->offchannel.roc_vif;
1054
1055 if (WARN_ON(!vif))
1056 goto exit;
1057
1058 eth_zero_addr(common->curbssid);
1059 eth_broadcast_addr(common->bssidmask);
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301060 memcpy(common->macaddr, vif->addr, ETH_ALEN);
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301061 common->curaid = 0;
1062 ah->opmode = vif->type;
1063 ah->imask &= ~ATH9K_INT_SWBA;
1064 ah->imask &= ~ATH9K_INT_TSFOOR;
1065 ah->slottime = ATH9K_SLOT_TIME_9;
1066
1067 ath_hw_setbssidmask(common);
1068 ath9k_hw_setopmode(ah);
1069 ath9k_hw_write_associd(sc->sc_ah);
1070 ath9k_hw_set_interrupts(ah);
1071 ath9k_hw_init_global_settings(ah);
1072
1073exit:
1074 ath9k_ps_restore(sc);
1075}
1076#endif
1077
Ben Greear48014162011-01-15 19:13:48 +00001078/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301079void ath9k_calculate_summary_state(struct ath_softc *sc,
1080 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001081{
Ben Greear48014162011-01-15 19:13:48 +00001082 struct ath_hw *ah = sc->sc_ah;
1083 struct ath_common *common = ath9k_hw_common(ah);
1084 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301085 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001086
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301087 ath_chanctx_check_active(sc, ctx);
1088
1089 if (ctx != sc->cur_chan)
1090 return;
1091
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301092#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1093 if (ctx == &sc->offchannel.chan)
1094 return ath9k_set_offchannel_state(sc);
1095#endif
1096
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301097 ath9k_ps_wakeup(sc);
1098 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1099
1100 if (iter_data.has_hw_macaddr)
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301101 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +00001102
Ben Greear48014162011-01-15 19:13:48 +00001103 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1104 ath_hw_setbssidmask(common);
1105
Ben Greear48014162011-01-15 19:13:48 +00001106 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301107 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301108 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001109 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301110 if (cur_conf->enable_beacon)
1111 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001112 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301113 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001114
Javier Cardonafd5999c2011-05-03 16:57:19 -07001115 if (iter_data.nmeshes)
1116 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1117 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001118 ah->opmode = NL80211_IFTYPE_AP;
1119 else if (iter_data.nadhocs)
1120 ah->opmode = NL80211_IFTYPE_ADHOC;
1121 else
1122 ah->opmode = NL80211_IFTYPE_STATION;
1123 }
1124
Sujith Manoharandf35d292012-07-17 17:15:43 +05301125 ath9k_hw_setopmode(ah);
1126
Felix Fietkau748299f2014-06-11 16:18:04 +05301127 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001128 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001129 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301130 else {
Ben Greear48014162011-01-15 19:13:48 +00001131 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301132 if (iter_data.naps == 1 && iter_data.beacons)
1133 ctx->switch_after_beacon = true;
1134 }
Ben Greear48014162011-01-15 19:13:48 +00001135
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301136 ah->imask &= ~ATH9K_INT_SWBA;
1137 if (ah->opmode == NL80211_IFTYPE_STATION) {
1138 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1139
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301140 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301141 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301142 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1143 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301144 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301145 } else {
1146 ctx->primary_sta = NULL;
1147 memset(common->curbssid, 0, ETH_ALEN);
1148 common->curaid = 0;
1149 ath9k_hw_write_associd(sc->sc_ah);
1150 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1151 ath9k_mci_update_wlan_channels(sc, true);
1152 }
1153 } else if (iter_data.beacons) {
1154 ah->imask |= ATH9K_INT_SWBA;
1155 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001156 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301157
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301158 if (iter_data.beacons)
1159 set_bit(ATH_OP_BEACONS, &common->op_flags);
1160 else
1161 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1162
1163 if (ah->slottime != iter_data.slottime) {
1164 ah->slottime = iter_data.slottime;
1165 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301166 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301167
1168 if (iter_data.primary_sta)
1169 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1170 else
1171 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1172
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301173 ath_dbg(common, CONFIG,
1174 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1175 common->macaddr, common->curbssid, common->bssidmask);
1176
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301177 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001178}
1179
Sujith Manoharana4027642014-09-05 09:50:55 +05301180static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1181 struct ieee80211_vif *vif)
1182{
1183 int i;
1184
1185 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1186 vif->hw_queue[i] = i;
1187
1188 if (vif->type == NL80211_IFTYPE_AP)
1189 vif->cab_queue = hw->queues - 2;
1190 else
1191 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1192}
1193
Ben Greear48014162011-01-15 19:13:48 +00001194static int ath9k_add_interface(struct ieee80211_hw *hw,
1195 struct ieee80211_vif *vif)
1196{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001197 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001198 struct ath_hw *ah = sc->sc_ah;
1199 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001200 struct ath_vif *avp = (void *)vif->drv_priv;
1201 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001202
1203 mutex_lock(&sc->mutex);
1204
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001205 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301206 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001207 mutex_unlock(&sc->mutex);
1208 return -EOPNOTSUPP;
1209 }
1210 sc->tx99_vif = vif;
1211 }
1212
Joe Perchesd2182b62011-12-15 14:55:53 -08001213 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301214 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001215
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301216 if (ath9k_uses_beacons(vif->type))
1217 ath9k_beacon_assign_slot(sc, vif);
1218
Felix Fietkaud463af42014-04-06 00:37:03 +02001219 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301220 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301221 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301222 list_add_tail(&avp->list, &avp->chanctx->vifs);
1223 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301224
1225 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301226
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001227 an->sc = sc;
1228 an->sta = NULL;
1229 an->vif = vif;
1230 an->no_ps_filter = true;
1231 ath_tx_node_init(sc, an);
1232
Ben Greear48014162011-01-15 19:13:48 +00001233 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301234 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001235}
1236
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301237static int ath9k_change_interface(struct ieee80211_hw *hw,
1238 struct ieee80211_vif *vif,
1239 enum nl80211_iftype new_type,
1240 bool p2p)
1241{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001242 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301243 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301244 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301245
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301246 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001247
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001248 if (config_enabled(CONFIG_ATH9K_TX99)) {
1249 mutex_unlock(&sc->mutex);
1250 return -EOPNOTSUPP;
1251 }
1252
1253 ath_dbg(common, CONFIG, "Change Interface\n");
1254
Ben Greear48014162011-01-15 19:13:48 +00001255 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301256 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001257
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301258 vif->type = new_type;
1259 vif->p2p = p2p;
1260
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301261 if (ath9k_uses_beacons(vif->type))
1262 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301263
Sujith Manoharana4027642014-09-05 09:50:55 +05301264 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301265 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301266
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301267 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301268 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301269}
1270
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001271static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001272 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001273{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001274 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001275 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001276 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001277
Joe Perchesd2182b62011-12-15 14:55:53 -08001278 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001279
Sujith141b38b2009-02-04 08:10:07 +05301280 mutex_lock(&sc->mutex);
1281
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301282 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001283
Sujith Manoharanca529c92014-09-05 08:03:19 +05301284 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001285 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301286 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301287 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001288
Ben Greear48014162011-01-15 19:13:48 +00001289 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301290 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001291
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001292 ath_tx_node_cleanup(sc, &avp->mcast_node);
1293
Sujith141b38b2009-02-04 08:10:07 +05301294 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001295}
1296
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301297static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301298{
Pavel Roskin30691682010-03-31 18:05:31 -04001299 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301300 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001301
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001302 if (config_enabled(CONFIG_ATH9K_TX99))
1303 return;
1304
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301305 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001306 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1307 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1308 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001309 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301310 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001311 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301312 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301313 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301314}
1315
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301316static void ath9k_disable_ps(struct ath_softc *sc)
1317{
1318 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301319 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301320
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001321 if (config_enabled(CONFIG_ATH9K_TX99))
1322 return;
1323
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301324 sc->ps_enabled = false;
1325 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1326 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1327 ath9k_hw_setrxabort(ah, 0);
1328 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1329 PS_WAIT_FOR_CAB |
1330 PS_WAIT_FOR_PSPOLL_DATA |
1331 PS_WAIT_FOR_TX_ACK);
1332 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1333 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001334 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301335 }
1336 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301337 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301338}
1339
Simon Wunderliche93d0832013-01-08 14:48:58 +01001340void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1341{
1342 struct ath_softc *sc = hw->priv;
1343 struct ath_hw *ah = sc->sc_ah;
1344 struct ath_common *common = ath9k_hw_common(ah);
1345 u32 rxfilter;
1346
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001347 if (config_enabled(CONFIG_ATH9K_TX99))
1348 return;
1349
Simon Wunderliche93d0832013-01-08 14:48:58 +01001350 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1351 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1352 return;
1353 }
1354
1355 ath9k_ps_wakeup(sc);
1356 rxfilter = ath9k_hw_getrxfilter(ah);
1357 ath9k_hw_setrxfilter(ah, rxfilter |
1358 ATH9K_RX_FILTER_PHYRADAR |
1359 ATH9K_RX_FILTER_PHYERR);
1360
1361 /* TODO: usually this should not be neccesary, but for some reason
1362 * (or in some mode?) the trigger must be called after the
1363 * configuration, otherwise the register will have its values reset
1364 * (on my ar9220 to value 0x01002310)
1365 */
1366 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1367 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1368 ath9k_ps_restore(sc);
1369}
1370
1371int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1372 enum spectral_mode spectral_mode)
1373{
1374 struct ath_softc *sc = hw->priv;
1375 struct ath_hw *ah = sc->sc_ah;
1376 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001377
1378 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1379 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1380 return -1;
1381 }
1382
Simon Wunderliche93d0832013-01-08 14:48:58 +01001383 switch (spectral_mode) {
1384 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001385 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001386 break;
1387 case SPECTRAL_BACKGROUND:
1388 /* send endless samples.
1389 * TODO: is this really useful for "background"?
1390 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001391 sc->spec_config.endless = 1;
1392 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001393 break;
1394 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001395 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001396 sc->spec_config.endless = 0;
1397 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001398 break;
1399 default:
1400 return -1;
1401 }
1402
1403 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001404 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001405 ath9k_ps_restore(sc);
1406
1407 sc->spectral_mode = spectral_mode;
1408
1409 return 0;
1410}
1411
Johannes Berge8975582008-10-09 12:18:51 +02001412static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001413{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001414 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001415 struct ath_hw *ah = sc->sc_ah;
1416 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001417 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301418 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419
Felix Fietkauc0c11742011-11-16 13:08:41 +01001420 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301421 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301422
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001423 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001424 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301425 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001426 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301427 ath9k_stop_btcoex(sc);
1428 } else {
1429 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001430 /*
1431 * The chip needs a reset to properly wake up from
1432 * full sleep
1433 */
Felix Fietkau39305632014-06-11 16:17:57 +05301434 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301435 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001436 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001437
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001438 /*
1439 * We just prepare to enable PS. We have to wait until our AP has
1440 * ACK'd our null data frame to disable RX otherwise we'll ignore
1441 * those ACKs and end up retransmitting the same null data frames.
1442 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1443 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301444 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001445 unsigned long flags;
1446 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301447 if (conf->flags & IEEE80211_CONF_PS)
1448 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301449 else
1450 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001451 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301452 }
1453
Sujith199afd92010-01-08 10:36:13 +05301454 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1455 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001456 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301457 sc->sc_ah->is_monitoring = true;
1458 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001459 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301460 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301461 }
1462 }
1463
Sujith Manoharan499afac2014-08-22 20:39:31 +05301464 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301465 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301466 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301467 }
Sujith86b89ee2008-08-07 10:54:57 +05301468
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001469 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001470 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301471 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301472 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301473 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001474 }
1475
Sujithaa33de02008-12-18 11:40:16 +05301476 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001477 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301478
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001479 return 0;
1480}
1481
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482#define SUPPORTED_FILTERS \
1483 (FIF_PROMISC_IN_BSS | \
1484 FIF_ALLMULTI | \
1485 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001486 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001487 FIF_OTHER_BSS | \
1488 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001489 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 FIF_FCSFAIL)
1491
Sujith7dcfdcd2008-08-11 14:03:13 +05301492/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001493static void ath9k_configure_filter(struct ieee80211_hw *hw,
1494 unsigned int changed_flags,
1495 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001496 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001498 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301499 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500
1501 changed_flags &= SUPPORTED_FILTERS;
1502 *total_flags &= SUPPORTED_FILTERS;
1503
Sujith Manoharanfce34432014-09-05 08:03:18 +05301504 spin_lock_bh(&sc->chan_lock);
1505 sc->cur_chan->rxfilter = *total_flags;
1506 spin_unlock_bh(&sc->chan_lock);
1507
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001508 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301509 rfilt = ath_calcrxfilter(sc);
1510 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001511 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301512
Joe Perchesd2182b62011-12-15 14:55:53 -08001513 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1514 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001515}
1516
Johannes Berg4ca77862010-02-19 19:06:56 +01001517static int ath9k_sta_add(struct ieee80211_hw *hw,
1518 struct ieee80211_vif *vif,
1519 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001520{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001521 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001522 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1523 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1524 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001525 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001526
Ben Greear7e1e3862011-11-03 11:33:13 -07001527 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001528
1529 if (vif->type != NL80211_IFTYPE_AP &&
1530 vif->type != NL80211_IFTYPE_AP_VLAN)
1531 return 0;
1532
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001533 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301534 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001535 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301536 an->key_idx[0] = key;
1537 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001538
1539 return 0;
1540}
1541
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001542static void ath9k_del_ps_key(struct ath_softc *sc,
1543 struct ieee80211_vif *vif,
1544 struct ieee80211_sta *sta)
1545{
1546 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1547 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1548 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1549
1550 if (!an->ps_key)
1551 return;
1552
1553 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001554 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301555 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001556}
1557
Johannes Berg4ca77862010-02-19 19:06:56 +01001558static int ath9k_sta_remove(struct ieee80211_hw *hw,
1559 struct ieee80211_vif *vif,
1560 struct ieee80211_sta *sta)
1561{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001562 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001563
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001564 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001565 ath_node_detach(sc, sta);
1566
1567 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001568}
1569
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301570static int ath9k_sta_state(struct ieee80211_hw *hw,
1571 struct ieee80211_vif *vif,
1572 struct ieee80211_sta *sta,
1573 enum ieee80211_sta_state old_state,
1574 enum ieee80211_sta_state new_state)
1575{
1576 struct ath_softc *sc = hw->priv;
1577 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1578 int ret = 0;
1579
1580 if (old_state == IEEE80211_STA_AUTH &&
1581 new_state == IEEE80211_STA_ASSOC) {
1582 ret = ath9k_sta_add(hw, vif, sta);
1583 ath_dbg(common, CONFIG,
1584 "Add station: %pM\n", sta->addr);
1585 } else if (old_state == IEEE80211_STA_ASSOC &&
1586 new_state == IEEE80211_STA_AUTH) {
1587 ret = ath9k_sta_remove(hw, vif, sta);
1588 ath_dbg(common, CONFIG,
1589 "Remove station: %pM\n", sta->addr);
1590 }
1591
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301592 if (ath9k_is_chanctx_enabled()) {
Sujith Manoharan91e6ceb2014-10-17 07:40:19 +05301593 if (vif->type == NL80211_IFTYPE_STATION) {
1594 if (old_state == IEEE80211_STA_ASSOC &&
1595 new_state == IEEE80211_STA_AUTHORIZED)
1596 ath_chanctx_event(sc, vif,
1597 ATH_CHANCTX_EVENT_AUTHORIZED);
1598 }
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301599 }
1600
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301601 return ret;
1602}
1603
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301604static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1605 struct ath_node *an,
1606 bool set)
1607{
1608 int i;
1609
1610 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1611 if (!an->key_idx[i])
1612 continue;
1613 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1614 }
1615}
1616
Felix Fietkau55195412011-04-17 23:28:09 +02001617static void ath9k_sta_notify(struct ieee80211_hw *hw,
1618 struct ieee80211_vif *vif,
1619 enum sta_notify_cmd cmd,
1620 struct ieee80211_sta *sta)
1621{
1622 struct ath_softc *sc = hw->priv;
1623 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1624
1625 switch (cmd) {
1626 case STA_NOTIFY_SLEEP:
1627 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001628 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301629 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001630 break;
1631 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301632 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001633 an->sleeping = false;
1634 ath_tx_aggr_wakeup(sc, an);
1635 break;
1636 }
1637}
1638
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001639static int ath9k_conf_tx(struct ieee80211_hw *hw,
1640 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001641 const struct ieee80211_tx_queue_params *params)
1642{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001643 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001644 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001645 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301646 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001647 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001648
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301649 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001650 return 0;
1651
Felix Fietkau066dae92010-11-07 14:59:39 +01001652 txq = sc->tx.txq_map[queue];
1653
Felix Fietkau96f372c2011-04-07 19:07:17 +02001654 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301655 mutex_lock(&sc->mutex);
1656
Sujith1ffb0612009-03-30 15:28:46 +05301657 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1658
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001659 qi.tqi_aifs = params->aifs;
1660 qi.tqi_cwmin = params->cw_min;
1661 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001662 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001663
Joe Perchesd2182b62011-12-15 14:55:53 -08001664 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001665 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1666 queue, txq->axq_qnum, params->aifs, params->cw_min,
1667 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001668
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001669 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001670 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001671 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001672 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001673
Sujith141b38b2009-02-04 08:10:07 +05301674 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001675 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301676
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001677 return ret;
1678}
1679
1680static int ath9k_set_key(struct ieee80211_hw *hw,
1681 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001682 struct ieee80211_vif *vif,
1683 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001684 struct ieee80211_key_conf *key)
1685{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001686 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001687 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301688 struct ath_node *an = NULL;
1689 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001690
John W. Linville3e6109c2011-01-05 09:39:17 -05001691 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001692 return -ENOSPC;
1693
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001694 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1695 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001696 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1697 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1698 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1699 /*
1700 * For now, disable hw crypto for the RSN IBSS group keys. This
1701 * could be optimized in the future to use a modified key cache
1702 * design to support per-STA RX GTK, but until that gets
1703 * implemented, use of software crypto for group addressed
1704 * frames is a acceptable to allow RSN IBSS to be used.
1705 */
1706 return -EOPNOTSUPP;
1707 }
1708
Sujith141b38b2009-02-04 08:10:07 +05301709 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301710 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301711 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1712 if (sta)
1713 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001714
1715 switch (cmd) {
1716 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001717 if (sta)
1718 ath9k_del_ps_key(sc, vif, sta);
1719
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301720 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001721 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001722 if (ret >= 0) {
1723 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001724 /* push IV and Michael MIC generation to stack */
1725 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001726 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301727 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001728 if (sc->sc_ah->sw_mgmt_crypto &&
1729 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001730 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001731 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001732 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301733 if (an && key->hw_key_idx) {
1734 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1735 if (an->key_idx[i])
1736 continue;
1737 an->key_idx[i] = key->hw_key_idx;
1738 break;
1739 }
1740 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1741 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742 break;
1743 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001744 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301745 if (an) {
1746 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1747 if (an->key_idx[i] != key->hw_key_idx)
1748 continue;
1749 an->key_idx[i] = 0;
1750 break;
1751 }
1752 }
1753 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001754 break;
1755 default:
1756 ret = -EINVAL;
1757 }
1758
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301759 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301760 mutex_unlock(&sc->mutex);
1761
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762 return ret;
1763}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301764
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001765static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1766 struct ieee80211_vif *vif,
1767 struct ieee80211_bss_conf *bss_conf,
1768 u32 changed)
1769{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301770#define CHECK_ANI \
1771 (BSS_CHANGED_ASSOC | \
1772 BSS_CHANGED_IBSS | \
1773 BSS_CHANGED_BEACON_ENABLED)
1774
Felix Fietkau9ac586152011-01-24 19:23:18 +01001775 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001776 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001777 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001778 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001779 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780
Felix Fietkau96f372c2011-04-07 19:07:17 +02001781 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301782 mutex_lock(&sc->mutex);
1783
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301784 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301785 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1786 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301787
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301788 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Sujith Manoharancb355822014-09-17 14:45:56 +05301789 avp->aid = bss_conf->aid;
1790 avp->assoc = bss_conf->assoc;
1791
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301792 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001793 }
1794
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301795 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301796 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1797 common->curaid = bss_conf->aid;
1798 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301799 }
1800
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301801 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301802 (changed & BSS_CHANGED_BEACON_INT) ||
1803 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301804 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301805 if (changed & BSS_CHANGED_BEACON_ENABLED)
1806 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301807 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001808
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301809 if ((avp->chanctx == sc->cur_chan) &&
1810 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001811 if (bss_conf->use_short_slot)
1812 slottime = 9;
1813 else
1814 slottime = 20;
1815 if (vif->type == NL80211_IFTYPE_AP) {
1816 /*
1817 * Defer update, so that connected stations can adjust
1818 * their settings at the same time.
1819 * See beacon.c for more details
1820 */
1821 sc->beacon.slottime = slottime;
1822 sc->beacon.updateslot = UPDATE;
1823 } else {
1824 ah->slottime = slottime;
1825 ath9k_hw_init_global_settings(ah);
1826 }
1827 }
1828
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301829 if (changed & BSS_CHANGED_P2P_PS)
1830 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001831
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301832 if (changed & CHECK_ANI)
1833 ath_check_ani(sc);
1834
Sujith141b38b2009-02-04 08:10:07 +05301835 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001836 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301837
1838#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839}
1840
Eliad Peller37a41b42011-09-21 14:06:11 +03001841static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001842{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001843 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001844 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845
Sujith141b38b2009-02-04 08:10:07 +05301846 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301847 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301848 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301849 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301850 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001851
1852 return tsf;
1853}
1854
Eliad Peller37a41b42011-09-21 14:06:11 +03001855static void ath9k_set_tsf(struct ieee80211_hw *hw,
1856 struct ieee80211_vif *vif,
1857 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001858{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001859 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001860
Sujith141b38b2009-02-04 08:10:07 +05301861 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301862 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301863 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301864 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301865 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001866}
1867
Eliad Peller37a41b42011-09-21 14:06:11 +03001868static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001870 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871
Sujith141b38b2009-02-04 08:10:07 +05301872 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001873
1874 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301875 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001876 ath9k_ps_restore(sc);
1877
Sujith141b38b2009-02-04 08:10:07 +05301878 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001879}
1880
1881static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001882 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301883 enum ieee80211_ampdu_mlme_action action,
1884 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001885 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001886{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001887 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001888 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889 int ret = 0;
1890
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301891 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001892
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001893 switch (action) {
1894 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001895 break;
1896 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 break;
1898 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001899 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001900 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1901 if (!ret)
1902 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001903 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001904 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001905 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1906 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001907 flush = true;
1908 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001909 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301910 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001911 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001912 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001913 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001914 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001915 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001916 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301917 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001918 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301919 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001920 default:
Joe Perches38002762010-12-02 19:12:36 -08001921 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001922 }
1923
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301924 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001925
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001926 return ret;
1927}
1928
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001929static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1930 struct survey_info *survey)
1931{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001932 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001933 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001934 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001935 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001936 int pos;
1937
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001938 if (config_enabled(CONFIG_ATH9K_TX99))
1939 return -EOPNOTSUPP;
1940
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301941 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001942 if (idx == 0)
1943 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001944
Felix Fietkau39162db2010-09-29 19:12:06 +02001945 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1946 if (sband && idx >= sband->n_channels) {
1947 idx -= sband->n_channels;
1948 sband = NULL;
1949 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001950
Felix Fietkau39162db2010-09-29 19:12:06 +02001951 if (!sband)
1952 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1953
Felix Fietkau34300982010-10-10 18:21:52 +02001954 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301955 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001956 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001957 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001958
Felix Fietkau34300982010-10-10 18:21:52 +02001959 chan = &sband->channels[idx];
1960 pos = chan->hw_value;
1961 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1962 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301963 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001964
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001965 return 0;
1966}
1967
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001968static void ath9k_enable_dynack(struct ath_softc *sc)
1969{
1970#ifdef CONFIG_ATH9K_DYNACK
1971 u32 rfilt;
1972 struct ath_hw *ah = sc->sc_ah;
1973
1974 ath_dynack_reset(ah);
1975
1976 ah->dynack.enabled = true;
1977 rfilt = ath_calcrxfilter(sc);
1978 ath9k_hw_setrxfilter(ah, rfilt);
1979#endif
1980}
1981
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001982static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1983 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001984{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001985 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001986 struct ath_hw *ah = sc->sc_ah;
1987
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001988 if (config_enabled(CONFIG_ATH9K_TX99))
1989 return;
1990
Felix Fietkaue239d852010-01-15 02:34:58 +01001991 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301992
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001993 if (coverage_class >= 0) {
1994 ah->coverage_class = coverage_class;
1995 if (ah->dynack.enabled) {
1996 u32 rfilt;
1997
1998 ah->dynack.enabled = false;
1999 rfilt = ath_calcrxfilter(sc);
2000 ath9k_hw_setrxfilter(ah, rfilt);
2001 }
2002 ath9k_ps_wakeup(sc);
2003 ath9k_hw_init_global_settings(ah);
2004 ath9k_ps_restore(sc);
2005 } else if (!ah->dynack.enabled) {
2006 ath9k_enable_dynack(sc);
2007 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05302008
Felix Fietkaue239d852010-01-15 02:34:58 +01002009 mutex_unlock(&sc->mutex);
2010}
2011
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302012static bool ath9k_has_tx_pending(struct ath_softc *sc,
2013 bool sw_pending)
Felix Fietkau10e23182013-11-11 22:23:35 +01002014{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01002015 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01002016
2017 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2018 if (!ATH_TXQ_SETUP(sc, i))
2019 continue;
2020
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302021 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
2022 sw_pending);
Felix Fietkau10e23182013-11-11 22:23:35 +01002023 if (npend)
2024 break;
2025 }
2026
2027 return !!npend;
2028}
2029
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002030static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2031 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002032{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002033 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05302034
2035 mutex_lock(&sc->mutex);
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302036 __ath9k_flush(hw, queues, drop, true);
Felix Fietkaubff11762014-06-11 16:17:52 +05302037 mutex_unlock(&sc->mutex);
2038}
2039
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302040void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
2041 bool sw_pending)
Felix Fietkaubff11762014-06-11 16:17:52 +05302042{
2043 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302044 struct ath_hw *ah = sc->sc_ah;
2045 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302046 int timeout;
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302047 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002048
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002049 cancel_delayed_work_sync(&sc->tx_complete_work);
2050
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302051 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002052 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302053 return;
2054 }
2055
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002056 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002057 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302058 return;
2059 }
2060
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302061 spin_lock_bh(&sc->chan_lock);
2062 timeout = sc->cur_chan->flush_timeout;
2063 spin_unlock_bh(&sc->chan_lock);
2064
2065 ath_dbg(common, CHAN_CTX,
2066 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2067
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302068 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
Felix Fietkau10e23182013-11-11 22:23:35 +01002069 timeout) > 0)
2070 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002071
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002072 if (drop) {
2073 ath9k_ps_wakeup(sc);
2074 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002075 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002076 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002077
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002078 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302079 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002080
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002081 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002082 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302083
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002084 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002085}
2086
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302087static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2088{
2089 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302090
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302091 return ath9k_has_tx_pending(sc, true);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302092}
2093
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302094static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002095{
2096 struct ath_softc *sc = hw->priv;
2097 struct ath_hw *ah = sc->sc_ah;
2098 struct ieee80211_vif *vif;
2099 struct ath_vif *avp;
2100 struct ath_buf *bf;
2101 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002102 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002103 int status;
2104
2105 vif = sc->beacon.bslot[0];
2106 if (!vif)
2107 return 0;
2108
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302109 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002110 return 0;
2111
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302112 avp = (void *)vif->drv_priv;
2113
Felix Fietkau4286df62012-02-27 19:58:40 +01002114 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002115 tasklet_disable(&sc->bcon_tasklet);
2116
2117 bf = avp->av_bcbuf;
2118 if (!bf || !bf->bf_mpdu)
2119 goto skip;
2120
2121 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2122 if (status == -EINPROGRESS)
2123 goto skip;
2124
2125 sc->beacon.tx_processed = true;
2126 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2127
2128skip:
2129 tasklet_enable(&sc->bcon_tasklet);
2130 }
2131
2132 return sc->beacon.tx_last;
2133}
2134
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302135static int ath9k_get_stats(struct ieee80211_hw *hw,
2136 struct ieee80211_low_level_stats *stats)
2137{
2138 struct ath_softc *sc = hw->priv;
2139 struct ath_hw *ah = sc->sc_ah;
2140 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2141
2142 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2143 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2144 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2145 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2146 return 0;
2147}
2148
Felix Fietkau43c35282011-09-03 01:40:27 +02002149static u32 fill_chainmask(u32 cap, u32 new)
2150{
2151 u32 filled = 0;
2152 int i;
2153
2154 for (i = 0; cap && new; i++, cap >>= 1) {
2155 if (!(cap & BIT(0)))
2156 continue;
2157
2158 if (new & BIT(0))
2159 filled |= BIT(i);
2160
2161 new >>= 1;
2162 }
2163
2164 return filled;
2165}
2166
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002167static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2168{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002169 if (AR_SREV_9300_20_OR_LATER(ah))
2170 return true;
2171
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002172 switch (val & 0x7) {
2173 case 0x1:
2174 case 0x3:
2175 case 0x7:
2176 return true;
2177 case 0x2:
2178 return (ah->caps.rx_chainmask == 1);
2179 default:
2180 return false;
2181 }
2182}
2183
Felix Fietkau43c35282011-09-03 01:40:27 +02002184static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2185{
2186 struct ath_softc *sc = hw->priv;
2187 struct ath_hw *ah = sc->sc_ah;
2188
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002189 if (ah->caps.rx_chainmask != 1)
2190 rx_ant |= tx_ant;
2191
2192 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002193 return -EINVAL;
2194
2195 sc->ant_rx = rx_ant;
2196 sc->ant_tx = tx_ant;
2197
2198 if (ah->caps.rx_chainmask == 1)
2199 return 0;
2200
2201 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2202 if (AR_SREV_9100(ah))
2203 ah->rxchainmask = 0x7;
2204 else
2205 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2206
2207 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002208 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002209
2210 return 0;
2211}
2212
2213static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2214{
2215 struct ath_softc *sc = hw->priv;
2216
2217 *tx_ant = sc->ant_tx;
2218 *rx_ant = sc->ant_rx;
2219 return 0;
2220}
2221
Simon Wunderliche93d0832013-01-08 14:48:58 +01002222static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2223{
2224 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002225 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2226 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002227}
2228
2229static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2230{
2231 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002232 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2233 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002234}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302235
Sujith Manoharan499afac2014-08-22 20:39:31 +05302236#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2237
Felix Fietkau78b21942014-06-11 16:17:55 +05302238static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002239 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302240{
John W. Linville855df362014-06-25 15:15:14 -04002241 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302242 struct ath_softc *sc = hw->priv;
2243 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2244 int ret = 0;
2245
2246 mutex_lock(&sc->mutex);
2247
2248 if (WARN_ON(sc->offchannel.scan_req)) {
2249 ret = -EBUSY;
2250 goto out;
2251 }
2252
2253 ath9k_ps_wakeup(sc);
2254 set_bit(ATH_OP_SCANNING, &common->op_flags);
2255 sc->offchannel.scan_vif = vif;
2256 sc->offchannel.scan_req = req;
2257 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302258
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302259 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2260 vif->addr);
2261
2262 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2263 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302264 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302265 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302266
2267out:
2268 mutex_unlock(&sc->mutex);
2269
2270 return ret;
2271}
2272
2273static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2274 struct ieee80211_vif *vif)
2275{
2276 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302277 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2278
2279 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302280
2281 mutex_lock(&sc->mutex);
2282 del_timer_sync(&sc->offchannel.timer);
2283 ath_scan_complete(sc, true);
2284 mutex_unlock(&sc->mutex);
2285}
2286
Felix Fietkau405393c2014-06-11 16:17:56 +05302287static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2288 struct ieee80211_vif *vif,
2289 struct ieee80211_channel *chan, int duration,
2290 enum ieee80211_roc_type type)
2291{
2292 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302293 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302294 int ret = 0;
2295
2296 mutex_lock(&sc->mutex);
2297
2298 if (WARN_ON(sc->offchannel.roc_vif)) {
2299 ret = -EBUSY;
2300 goto out;
2301 }
2302
2303 ath9k_ps_wakeup(sc);
2304 sc->offchannel.roc_vif = vif;
2305 sc->offchannel.roc_chan = chan;
2306 sc->offchannel.roc_duration = duration;
2307
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302308 ath_dbg(common, CHAN_CTX,
2309 "RoC request on vif: %pM, type: %d duration: %d\n",
2310 vif->addr, type, duration);
2311
2312 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2313 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302314 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302315 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302316
2317out:
2318 mutex_unlock(&sc->mutex);
2319
2320 return ret;
2321}
2322
2323static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2324{
2325 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302326 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302327
2328 mutex_lock(&sc->mutex);
2329
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302330 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302331 del_timer_sync(&sc->offchannel.timer);
2332
2333 if (sc->offchannel.roc_vif) {
2334 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2335 ath_roc_complete(sc, true);
2336 }
2337
2338 mutex_unlock(&sc->mutex);
2339
2340 return 0;
2341}
2342
Felix Fietkau39305632014-06-11 16:17:57 +05302343static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2344 struct ieee80211_chanctx_conf *conf)
2345{
2346 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302347 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302348 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302349 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302350
2351 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302352
2353 ath_for_each_chanctx(sc, ctx) {
2354 if (ctx->assigned)
2355 continue;
2356
2357 ptr = (void *) conf->drv_priv;
2358 *ptr = ctx;
2359 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302360 pos = ctx - &sc->chanctx[0];
2361 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302362
2363 ath_dbg(common, CHAN_CTX,
2364 "Add channel context: %d MHz\n",
2365 conf->def.chan->center_freq);
2366
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302367 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302368 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_ASSIGN);
2369
Felix Fietkau39305632014-06-11 16:17:57 +05302370 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302371 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302372 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302373
Felix Fietkau39305632014-06-11 16:17:57 +05302374 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302375 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302376}
2377
2378
2379static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2380 struct ieee80211_chanctx_conf *conf)
2381{
2382 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302383 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302384 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2385
2386 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302387
2388 ath_dbg(common, CHAN_CTX,
2389 "Remove channel context: %d MHz\n",
2390 conf->def.chan->center_freq);
2391
Felix Fietkau39305632014-06-11 16:17:57 +05302392 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302393 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302394 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302395
Felix Fietkau39305632014-06-11 16:17:57 +05302396 mutex_unlock(&sc->mutex);
2397}
2398
2399static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2400 struct ieee80211_chanctx_conf *conf,
2401 u32 changed)
2402{
2403 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302404 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302405 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2406
2407 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302408 ath_dbg(common, CHAN_CTX,
2409 "Change channel context: %d MHz\n",
2410 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302411 ath_chanctx_set_channel(sc, ctx, &conf->def);
2412 mutex_unlock(&sc->mutex);
2413}
2414
2415static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2416 struct ieee80211_vif *vif,
2417 struct ieee80211_chanctx_conf *conf)
2418{
2419 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302420 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302421 struct ath_vif *avp = (void *)vif->drv_priv;
2422 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302423 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302424
2425 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302426
2427 ath_dbg(common, CHAN_CTX,
2428 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2429 vif->addr, vif->type, vif->p2p,
2430 conf->def.chan->center_freq);
2431
Felix Fietkau39305632014-06-11 16:17:57 +05302432 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302433 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302434 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302435 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302436 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2437 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302438
Felix Fietkau39305632014-06-11 16:17:57 +05302439 mutex_unlock(&sc->mutex);
2440
2441 return 0;
2442}
2443
2444static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2445 struct ieee80211_vif *vif,
2446 struct ieee80211_chanctx_conf *conf)
2447{
2448 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302449 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302450 struct ath_vif *avp = (void *)vif->drv_priv;
2451 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302452 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302453
2454 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302455
2456 ath_dbg(common, CHAN_CTX,
2457 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2458 vif->addr, vif->type, vif->p2p,
2459 conf->def.chan->center_freq);
2460
Felix Fietkau39305632014-06-11 16:17:57 +05302461 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302462 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302463 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302464 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302465 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2466 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302467
Felix Fietkau39305632014-06-11 16:17:57 +05302468 mutex_unlock(&sc->mutex);
2469}
2470
Sujith Manoharane20a8542014-08-23 13:29:09 +05302471static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2472 struct ieee80211_vif *vif)
2473{
2474 struct ath_softc *sc = hw->priv;
2475 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2476 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302477 struct ath_beacon_config *cur_conf;
2478 struct ath_chanctx *go_ctx;
2479 unsigned long timeout;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302480 bool changed = false;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302481 u32 beacon_int;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302482
2483 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2484 return;
2485
2486 if (!avp->chanctx)
2487 return;
2488
2489 mutex_lock(&sc->mutex);
2490
2491 spin_lock_bh(&sc->chan_lock);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302492 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
Sujith Manoharane20a8542014-08-23 13:29:09 +05302493 changed = true;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302494 spin_unlock_bh(&sc->chan_lock);
2495
2496 if (!changed)
2497 goto out;
2498
2499 go_ctx = ath_is_go_chanctx_present(sc);
2500
2501 if (go_ctx) {
2502 /*
2503 * Wait till the GO interface gets a chance
2504 * to send out an NoA.
2505 */
2506 spin_lock_bh(&sc->chan_lock);
2507 sc->sched.mgd_prepare_tx = true;
2508 cur_conf = &go_ctx->beacon;
2509 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2510 spin_unlock_bh(&sc->chan_lock);
2511
2512 timeout = usecs_to_jiffies(beacon_int);
2513 init_completion(&sc->go_beacon);
2514
2515 if (wait_for_completion_timeout(&sc->go_beacon,
2516 timeout) == 0)
2517 ath_dbg(common, CHAN_CTX,
2518 "Failed to send new NoA\n");
Sujith Manoharane20a8542014-08-23 13:29:09 +05302519 }
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302520
Sujith Manoharan878066e2014-08-27 12:07:24 +05302521 ath_dbg(common, CHAN_CTX,
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302522 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2523 __func__, vif->addr);
2524
2525 spin_lock_bh(&sc->chan_lock);
2526 sc->next_chan = avp->chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302527 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2528 spin_unlock_bh(&sc->chan_lock);
2529
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302530 ath_chanctx_set_next(sc, true);
2531out:
Sujith Manoharane20a8542014-08-23 13:29:09 +05302532 mutex_unlock(&sc->mutex);
2533}
2534
Felix Fietkau78b21942014-06-11 16:17:55 +05302535void ath9k_fill_chanctx_ops(void)
2536{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302537 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302538 return;
2539
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302540 ath9k_ops.hw_scan = ath9k_hw_scan;
2541 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2542 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302543 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302544 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2545 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2546 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2547 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2548 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302549 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302550}
2551
Sujith Manoharan499afac2014-08-22 20:39:31 +05302552#endif
2553
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002554struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002555 .tx = ath9k_tx,
2556 .start = ath9k_start,
2557 .stop = ath9k_stop,
2558 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302559 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560 .remove_interface = ath9k_remove_interface,
2561 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002562 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302563 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002564 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002565 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002566 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002567 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002569 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002570 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002571 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002572 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302573 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002574 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002575 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302576 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302577 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002578 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302579 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002580 .set_antenna = ath9k_set_antenna,
2581 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002582
Sujith Manoharane60001e2013-10-28 12:22:04 +05302583#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302584 .suspend = ath9k_suspend,
2585 .resume = ath9k_resume,
2586 .set_wakeup = ath9k_set_wakeup,
2587#endif
2588
Ben Greearb90bd9d2012-05-15 15:33:25 -07002589#ifdef CONFIG_ATH9K_DEBUGFS
2590 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302591 .get_et_stats = ath9k_get_et_stats,
2592 .get_et_strings = ath9k_get_et_strings,
2593#endif
2594
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302595#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302596 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002597#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002598 .sw_scan_start = ath9k_sw_scan_start,
2599 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002600};