blob: cf58a304e9f0aa08d577dc00d49361b568f450d3 [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 Fietkau300f77c2015-06-02 10:38:32 +0200219 if (AR_SREV_9300_20_OR_LATER(ah)) {
220 ret &= ath_stoprecv(sc);
221 ret &= ath_drain_all_txq(sc);
222 } else {
223 ret &= ath_drain_all_txq(sc);
224 ret &= ath_stoprecv(sc);
225 }
Felix Fietkauceea2a52012-05-24 14:32:19 +0200226
Felix Fietkau9adcf442011-09-03 01:40:26 +0200227 return ret;
228}
229
230static bool ath_complete_reset(struct ath_softc *sc, bool start)
231{
232 struct ath_hw *ah = sc->sc_ah;
233 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530234 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200235
Sujith Manoharan9019f642014-09-05 08:03:15 +0530236 ath9k_calculate_summary_state(sc, sc->cur_chan);
Sujith Manoharan19ec4772014-09-05 08:03:16 +0530237 ath_startrecv(sc);
Felix Fietkaud385c5c2014-11-04 16:56:57 +0100238 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
239 sc->cur_chan->txpower,
240 &sc->cur_chan->cur_txpower);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100241 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200242
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530243 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530244 /* restore per chanctx TSF timer */
245 if (sc->cur_chan->tsf_val) {
246 u32 offset;
247
248 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
249 NULL);
250 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
251 }
252
253
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100254 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530255 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200256
Sujith Manoharan196fb862012-06-04 20:24:13 +0530257 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100258 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530259 spin_lock_irqsave(&sc->sc_pm_lock, flags);
260 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
261 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530262 } else {
263 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530264 }
265 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530266 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530267 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200268 }
269
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530270 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530271
272 ath9k_hw_set_interrupts(ah);
273 ath9k_hw_enable_interrupts(ah);
Sujith Manoharan5ba8d9d2014-10-02 06:33:19 +0530274 ieee80211_wake_queues(sc->hw);
Felix Fietkaud463af42014-04-06 00:37:03 +0200275 ath9k_p2p_ps_timer(sc);
276
Felix Fietkau9adcf442011-09-03 01:40:26 +0200277 return true;
278}
279
Sujith Manoharan5555c952014-10-17 07:40:11 +0530280static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200281{
282 struct ath_hw *ah = sc->sc_ah;
283 struct ath_common *common = ath9k_hw_common(ah);
284 struct ath9k_hw_cal_data *caldata = NULL;
285 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200286 int r;
287
288 __ath_cancel_work(sc);
289
Felix Fietkaue3f31172015-01-14 14:17:36 +0100290 disable_irq(sc->irq);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100291 tasklet_disable(&sc->intr_tq);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530292 tasklet_disable(&sc->bcon_tasklet);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200293 spin_lock_bh(&sc->sc_pcu_lock);
294
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530295 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200296 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530297 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200298 }
299
300 if (!hchan) {
301 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200302 hchan = ah->curchan;
303 }
304
John W. Linville9ebea382013-01-28 13:54:03 -0500305 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200306 fastcc = false;
307
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530308 if (ath9k_is_chanctx_enabled())
309 fastcc = false;
310
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530311 spin_lock_bh(&sc->chan_lock);
312 sc->cur_chandef = sc->cur_chan->chandef;
313 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530314
Joe Perchesd2182b62011-12-15 14:55:53 -0800315 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530316 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200317
318 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
319 if (r) {
320 ath_err(common,
321 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400322
323 ath9k_hw_enable_interrupts(ah);
324 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
325
Felix Fietkau9adcf442011-09-03 01:40:26 +0200326 goto out;
327 }
328
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530329 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530330 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530331 ath9k_mci_set_txpower(sc, true, false);
332
Felix Fietkau9adcf442011-09-03 01:40:26 +0200333 if (!ath_complete_reset(sc, true))
334 r = -EIO;
335
336out:
Felix Fietkaue3f31172015-01-14 14:17:36 +0100337 enable_irq(sc->irq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200338 spin_unlock_bh(&sc->sc_pcu_lock);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530339 tasklet_enable(&sc->bcon_tasklet);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100340 tasklet_enable(&sc->intr_tq);
341
Felix Fietkau9adcf442011-09-03 01:40:26 +0200342 return r;
343}
344
Ben Greear7e1e3862011-11-03 11:33:13 -0700345static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
346 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530347{
348 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530349 an = (struct ath_node *)sta->drv_priv;
350
Sujith Manoharana145daf2012-11-28 15:08:54 +0530351 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800352 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700353 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530354 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530355
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530356 ath_tx_node_init(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200357
358 ath_dynack_node_init(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530359}
360
361static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
362{
363 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530364 ath_tx_node_cleanup(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200365
366 ath_dynack_node_deinit(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530367}
368
Sujith55624202010-01-08 10:36:02 +0530369void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530370{
371 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700372 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700373 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530374 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530375 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530376 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400377 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530378
Felix Fietkaue3927002011-09-14 21:23:01 +0200379 ath9k_ps_wakeup(sc);
380 spin_lock(&sc->sc_pcu_lock);
381
Sujith Manoharan6549a862013-12-24 10:44:24 +0530382 if (status & ATH9K_INT_FATAL) {
383 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530384 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530385
386 /*
387 * Increment the ref. counter here so that
388 * interrupts are enabled in the reset routine.
389 */
390 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100391 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200392 goto out;
Sujithff37e332008-11-24 12:07:55 +0530393 }
394
Sujith Manoharan6549a862013-12-24 10:44:24 +0530395 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
396 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530397 spin_lock(&common->cc_lock);
398 ath_hw_cycle_counters_update(common);
399 ar9003_hw_bb_watchdog_dbg_info(ah);
400 spin_unlock(&common->cc_lock);
401
Sujith Manoharan6549a862013-12-24 10:44:24 +0530402 if (ar9003_hw_bb_watchdog_check(ah)) {
403 type = RESET_TYPE_BB_WATCHDOG;
404 ath9k_queue_reset(sc, type);
405
406 /*
407 * Increment the ref. counter here so that
408 * interrupts are enabled in the reset routine.
409 */
410 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100411 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530412 "BB_WATCHDOG: Skipping interrupts\n");
413 goto out;
414 }
415 }
416
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530417 if (status & ATH9K_INT_GTT) {
418 sc->gtt_cnt++;
419
420 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
421 type = RESET_TYPE_TX_GTT;
422 ath9k_queue_reset(sc, type);
423 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100424 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530425 "GTT: Skipping interrupts\n");
426 goto out;
427 }
428 }
429
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530430 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530431 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
432 /*
433 * TSF sync does not look correct; remain awake to sync with
434 * the next Beacon.
435 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800436 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530437 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530438 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530439 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530440
Felix Fietkaub5c804752010-04-15 17:38:48 -0400441 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
442 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
443 ATH9K_INT_RXORN);
444 else
445 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
446
447 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400448 /* Check for high priority Rx first */
449 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
450 (status & ATH9K_INT_RXHP))
451 ath_rx_tasklet(sc, 0, true);
452
453 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530454 }
455
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400456 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530457 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
458 /*
459 * For EDMA chips, TX completion is enabled for the
460 * beacon queue, so if a beacon has been transmitted
461 * successfully after a GTT interrupt, the GTT counter
462 * gets reset to zero here.
463 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530464 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530465
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400466 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530467 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400468 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530469 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100470
471 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400472 }
Sujith063d8be2009-03-30 15:28:49 +0530473
Felix Fietkauc67ce332013-12-14 18:03:38 +0100474 if (status & ATH9K_INT_GENTIMER)
475 ath_gen_timer_isr(sc->sc_ah);
476
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530477 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530478
Sujithff37e332008-11-24 12:07:55 +0530479 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100480 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530481out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530482 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400483 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530484}
485
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100486irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530487{
Sujith063d8be2009-03-30 15:28:49 +0530488#define SCHED_INTR ( \
489 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530490 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530491 ATH9K_INT_RXORN | \
492 ATH9K_INT_RXEOL | \
493 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400494 ATH9K_INT_RXLP | \
495 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530496 ATH9K_INT_TX | \
497 ATH9K_INT_BMISS | \
498 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530499 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530500 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530501 ATH9K_INT_GENTIMER | \
502 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530503
Sujithff37e332008-11-24 12:07:55 +0530504 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530505 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100506 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530507 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530508 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530509 bool sched = false;
510
Sujith063d8be2009-03-30 15:28:49 +0530511 /*
512 * The hardware is not ready/present, don't
513 * touch anything. Note this can happen early
514 * on if the IRQ is shared.
515 */
Wojciech Dubowik2ba7d142014-09-18 08:30:41 +0200516 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530517 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530518
Felix Fietkau872b5d82014-11-30 21:58:32 +0100519 /* shared irq, not for us */
520 if (!ath9k_hw_intrpend(ah))
521 return IRQ_NONE;
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530522
Sujith063d8be2009-03-30 15:28:49 +0530523 /*
524 * Figure out the reason(s) for the interrupt. Note
525 * that the hal returns a pseudo-ISR that may include
526 * bits we haven't explicitly enabled so we mask the
527 * value to insure we only process bits we requested.
528 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100529 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
530 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400531 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530532
Felix Fietkaue3f31172015-01-14 14:17:36 +0100533 if (test_bit(ATH_OP_HW_RESET, &common->op_flags))
Felix Fietkau872b5d82014-11-30 21:58:32 +0100534 return IRQ_HANDLED;
535
Sujith063d8be2009-03-30 15:28:49 +0530536 /*
537 * If there are no status bits set, then this interrupt was not
538 * for me (should have been caught above).
539 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400540 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530541 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530542
543 /* Cache the status */
544 sc->intrstatus = status;
545
546 if (status & SCHED_INTR)
547 sched = true;
548
549 /*
Felix Fietkau3b5801442014-10-25 17:19:28 +0200550 * If a FATAL interrupt is received, we have to reset the chip
551 * immediately.
Sujith063d8be2009-03-30 15:28:49 +0530552 */
Felix Fietkau3b5801442014-10-25 17:19:28 +0200553 if (status & ATH9K_INT_FATAL)
Sujith063d8be2009-03-30 15:28:49 +0530554 goto chip_reset;
555
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530556 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530557 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400558 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530559
Sujith063d8be2009-03-30 15:28:49 +0530560 if (status & ATH9K_INT_SWBA)
561 tasklet_schedule(&sc->bcon_tasklet);
562
563 if (status & ATH9K_INT_TXURN)
564 ath9k_hw_updatetxtriglevel(ah, true);
565
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530566 if (status & ATH9K_INT_RXEOL) {
567 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200568 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400569 }
570
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400571 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
572 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800573 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
574 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530575 /* Clear RxAbort bit so that we can
576 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700577 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530578 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400579 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530580 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530581 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530582 }
Sujith063d8be2009-03-30 15:28:49 +0530583
584chip_reset:
585
Sujith817e11d2008-12-07 21:42:44 +0530586 ath_debug_stat_interrupt(sc, status);
587
Sujithff37e332008-11-24 12:07:55 +0530588 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100589 /* turn off every interrupt */
590 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530591 tasklet_schedule(&sc->intr_tq);
592 }
593
594 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530595
596#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530597}
598
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530599/*
600 * This function is called when a HW reset cannot be deferred
601 * and has to be immediate.
602 */
Sujith Manoharan5555c952014-10-17 07:40:11 +0530603int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530604{
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530605 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauec303262013-10-05 14:09:30 +0200606 int r;
Sujithff37e332008-11-24 12:07:55 +0530607
Felix Fietkau872b5d82014-11-30 21:58:32 +0100608 ath9k_hw_kill_interrupts(sc->sc_ah);
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530609 set_bit(ATH_OP_HW_RESET, &common->op_flags);
610
Felix Fietkau783cd012011-01-21 18:52:38 +0100611 ath9k_ps_wakeup(sc);
Sujith Manoharan5555c952014-10-17 07:40:11 +0530612 r = ath_reset_internal(sc, hchan);
Felix Fietkau783cd012011-01-21 18:52:38 +0100613 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530614
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800615 return r;
Sujithff37e332008-11-24 12:07:55 +0530616}
617
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530618/*
619 * When a HW reset can be deferred, it is added to the
620 * hw_reset_work workqueue, but we set ATH_OP_HW_RESET before
621 * queueing.
622 */
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530623void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
624{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100625 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530626#ifdef CONFIG_ATH9K_DEBUGFS
627 RESET_STAT_INC(sc, type);
628#endif
Felix Fietkau872b5d82014-11-30 21:58:32 +0100629 ath9k_hw_kill_interrupts(sc->sc_ah);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100630 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530631 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
632}
633
Felix Fietkau236de512011-09-03 01:40:25 +0200634void ath_reset_work(struct work_struct *work)
635{
636 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
637
Sujith Manoharan5555c952014-10-17 07:40:11 +0530638 ath9k_ps_wakeup(sc);
639 ath_reset_internal(sc, NULL);
640 ath9k_ps_restore(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200641}
642
Sujithff37e332008-11-24 12:07:55 +0530643/**********************/
644/* mac80211 callbacks */
645/**********************/
646
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647static int ath9k_start(struct ieee80211_hw *hw)
648{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100649 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700650 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700651 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530652 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530653 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530654 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530655 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656
Joe Perchesd2182b62011-12-15 14:55:53 -0800657 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800658 "Starting driver with initial channel: %d MHz\n",
659 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700660
Felix Fietkauf62d8162011-03-25 17:43:41 +0100661 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530662 mutex_lock(&sc->mutex);
663
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530664 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530665 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700666
Sujithff37e332008-11-24 12:07:55 +0530667 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200668 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530669
670 /*
671 * The basic interface to setting the hardware in a good
672 * state is ``reset''. On return the hardware is known to
673 * be powered up and with interrupts disabled. This must
674 * be followed by initialization of the appropriate bits
675 * and then setup of the interrupt mask.
676 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700677 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100678
679 atomic_set(&ah->intr_ref_cnt, -1);
680
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200681 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800682 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800683 ath_err(common,
684 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
685 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200686 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687 }
Sujithff37e332008-11-24 12:07:55 +0530688
Sujithff37e332008-11-24 12:07:55 +0530689 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400690 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
691 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
692 ATH9K_INT_GLOBAL;
693
694 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400695 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530696 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400697 else
698 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530699
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530700 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
701 ah->imask |= ATH9K_INT_BB_WATCHDOG;
702
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530703 /*
704 * Enable GTT interrupts only for AR9003/AR9004 chips
705 * for now.
706 */
707 if (AR_SREV_9300_20_OR_LATER(ah))
708 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530709
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700710 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400711 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530712
Sujith Manoharane270e772012-06-04 16:27:19 +0530713 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530714
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100715 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530716 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530717
Felix Fietkauceb26a62012-10-03 21:07:51 +0200718 if (!ath_complete_reset(sc, false))
719 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720
Felix Fietkauc0c11742011-11-16 13:08:41 +0100721 if (ah->led_pin >= 0) {
722 ath9k_hw_cfg_output(ah, ah->led_pin,
723 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530724 ath9k_hw_set_gpio(ah, ah->led_pin,
725 (ah->config.led_active_high) ? 1 : 0);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100726 }
727
728 /*
729 * Reset key cache to sane defaults (all entries cleared) instead of
730 * semi-random values after suspend/resume.
731 */
732 ath9k_cmn_init_crypto(sc->sc_ah);
733
Felix Fietkaua35051c2013-12-14 18:03:45 +0100734 ath9k_hw_reset_tsf(ah);
735
Felix Fietkau9adcf442011-09-03 01:40:26 +0200736 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400737
Sujith141b38b2009-02-04 08:10:07 +0530738 mutex_unlock(&sc->mutex);
739
Felix Fietkauf62d8162011-03-25 17:43:41 +0100740 ath9k_ps_restore(sc);
741
Miaoqing Paned14dc02015-10-09 17:06:45 +0800742 ath9k_rng_start(sc);
743
Felix Fietkauceb26a62012-10-03 21:07:51 +0200744 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745}
746
Thomas Huehn36323f82012-07-23 21:33:42 +0200747static void ath9k_tx(struct ieee80211_hw *hw,
748 struct ieee80211_tx_control *control,
749 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100751 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700752 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530753 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100754 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530755 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530756
Gabor Juhos96148322009-07-24 17:27:21 +0200757 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300758 /*
759 * mac80211 does not set PM field for normal data frames, so we
760 * need to update that based on the current PS mode.
761 */
762 if (ieee80211_is_data(hdr->frame_control) &&
763 !ieee80211_is_nullfunc(hdr->frame_control) &&
764 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800765 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800766 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300767 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
768 }
769 }
770
Sujith Manoharanad128862012-04-24 10:23:20 +0530771 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300772 /*
773 * We are using PS-Poll and mac80211 can request TX while in
774 * power save mode. Need to wake up hardware for the TX to be
775 * completed and if needed, also for RX of buffered frames.
776 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300777 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530778 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700779 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
780 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300781 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800782 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800783 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530784 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300785 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800786 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530787 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300788 }
789 /*
790 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530791 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300792 * the ps_usecount here.
793 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530794 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300795 ath9k_ps_restore(sc);
796 }
797
Sujith Manoharanad128862012-04-24 10:23:20 +0530798 /*
799 * Cannot tx while the hardware is in full sleep, it first needs a full
800 * chip reset to recover from that
801 */
802 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
803 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
804 goto exit;
805 }
806
Sujith528f0c62008-10-29 10:14:26 +0530807 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100808 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200809 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530810
Joe Perchesd2182b62011-12-15 14:55:53 -0800811 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200813 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800814 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700815 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530816 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700817 }
818
Johannes Berg7bb45682011-02-24 14:42:06 +0100819 return;
Sujith528f0c62008-10-29 10:14:26 +0530820exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200821 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822}
823
824static void ath9k_stop(struct ieee80211_hw *hw)
825{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100826 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700827 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700828 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100829 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530830
Sujith Manoharanea22df22014-08-23 13:29:07 +0530831 ath9k_deinit_channel_context(sc);
832
Miaoqing Paned14dc02015-10-09 17:06:45 +0800833 ath9k_rng_stop(sc);
834
Sujith4c483812009-08-18 10:51:52 +0530835 mutex_lock(&sc->mutex);
836
Felix Fietkau9adcf442011-09-03 01:40:26 +0200837 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700838
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100839 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800840 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530841 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530842 return;
843 }
844
Sujith3867cf62009-12-23 20:03:27 -0500845 /* Ensure HW is awake when we try to shut it down. */
846 ath9k_ps_wakeup(sc);
847
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700848 spin_lock_bh(&sc->sc_pcu_lock);
849
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100850 /* prevent tasklets to enable interrupts once we disable them */
851 ah->imask &= ~ATH9K_INT_GLOBAL;
852
Sujithff37e332008-11-24 12:07:55 +0530853 /* make sure h/w will not generate any interrupt
854 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100855 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530856
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700857 spin_unlock_bh(&sc->sc_pcu_lock);
858
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100859 /* we can now sync irq and kill any running tasklets, since we already
860 * disabled interrupts and not holding a spin lock */
861 synchronize_irq(sc->irq);
862 tasklet_kill(&sc->intr_tq);
863 tasklet_kill(&sc->bcon_tasklet);
864
Felix Fietkauc0c11742011-11-16 13:08:41 +0100865 prev_idle = sc->ps_idle;
866 sc->ps_idle = true;
867
868 spin_lock_bh(&sc->sc_pcu_lock);
869
870 if (ah->led_pin >= 0) {
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530871 ath9k_hw_set_gpio(ah, ah->led_pin,
872 (ah->config.led_active_high) ? 0 : 1);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100873 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);
Felix Fietkauef739ab2014-11-30 21:58:31 +0100888
889 set_bit(ATH_OP_INVALID, &common->op_flags);
890
Felix Fietkauc0c11742011-11-16 13:08:41 +0100891 ath9k_hw_phy_disable(ah);
892
893 ath9k_hw_configpcipowersave(ah, true);
894
895 spin_unlock_bh(&sc->sc_pcu_lock);
896
Sujith3867cf62009-12-23 20:03:27 -0500897 ath9k_ps_restore(sc);
898
Felix Fietkauc0c11742011-11-16 13:08:41 +0100899 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700900
Sujith141b38b2009-02-04 08:10:07 +0530901 mutex_unlock(&sc->mutex);
902
Joe Perchesd2182b62011-12-15 14:55:53 -0800903 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700904}
905
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200906static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700907{
Ben Greear48014162011-01-15 19:13:48 +0000908 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200909 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000910 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400911 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000912 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700913 default:
Ben Greear48014162011-01-15 19:13:48 +0000914 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700915 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700916}
917
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530918static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
919 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000920{
Sujith Manoharancb355822014-09-17 14:45:56 +0530921 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Ben Greear48014162011-01-15 19:13:48 +0000922 int i;
923
Felix Fietkauab11bb22013-04-16 12:51:57 +0200924 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000925 for (i = 0; i < ETH_ALEN; i++)
926 iter_data->mask[i] &=
927 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200928 } else {
929 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
930 iter_data->has_hw_macaddr = true;
931 }
Ben Greear48014162011-01-15 19:13:48 +0000932
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530933 if (!vif->bss_conf.use_short_slot)
934 iter_data->slottime = ATH9K_SLOT_TIME_20;
935
Ben Greear48014162011-01-15 19:13:48 +0000936 switch (vif->type) {
937 case NL80211_IFTYPE_AP:
938 iter_data->naps++;
939 break;
940 case NL80211_IFTYPE_STATION:
941 iter_data->nstations++;
Sujith Manoharancb355822014-09-17 14:45:56 +0530942 if (avp->assoc && !iter_data->primary_sta)
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530943 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000944 break;
Jan Kaisrlik862a3362015-09-17 14:03:46 +0200945 case NL80211_IFTYPE_OCB:
946 iter_data->nocbs++;
947 break;
Ben Greear48014162011-01-15 19:13:48 +0000948 case NL80211_IFTYPE_ADHOC:
949 iter_data->nadhocs++;
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_MESH_POINT:
954 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530955 if (vif->bss_conf.enable_beacon)
956 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000957 break;
958 case NL80211_IFTYPE_WDS:
959 iter_data->nwds++;
960 break;
961 default:
Ben Greear48014162011-01-15 19:13:48 +0000962 break;
963 }
964}
965
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530966static void ath9k_update_bssid_mask(struct ath_softc *sc,
967 struct ath_chanctx *ctx,
968 struct ath9k_vif_iter_data *iter_data)
969{
970 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
971 struct ath_vif *avp;
972 int i;
973
974 if (!ath9k_is_chanctx_enabled())
975 return;
976
977 list_for_each_entry(avp, &ctx->vifs, list) {
978 if (ctx->nvifs_assigned != 1)
979 continue;
980
981 if (!avp->vif->p2p || !iter_data->has_hw_macaddr)
982 continue;
983
984 ether_addr_copy(common->curbssid, avp->bssid);
985
986 /* perm_addr will be used as the p2p device address. */
987 for (i = 0; i < ETH_ALEN; i++)
988 iter_data->mask[i] &=
989 ~(iter_data->hw_macaddr[i] ^
990 sc->hw->wiphy->perm_addr[i]);
991 }
992}
993
Ben Greear48014162011-01-15 19:13:48 +0000994/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530995void ath9k_calculate_iter_data(struct ath_softc *sc,
996 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000997 struct ath9k_vif_iter_data *iter_data)
998{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530999 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +00001000
1001 /*
Ben Greeardaad1662014-11-04 15:22:50 -08001002 * The hardware will use primary station addr together with the
1003 * BSSID mask when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +00001004 */
1005 memset(iter_data, 0, sizeof(*iter_data));
Joe Perches93803b32015-03-02 19:54:49 -08001006 eth_broadcast_addr(iter_data->mask);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301007 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +00001008
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301009 list_for_each_entry(avp, &ctx->vifs, list)
1010 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301011
1012 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301013}
1014
1015static void ath9k_set_assoc_state(struct ath_softc *sc,
1016 struct ieee80211_vif *vif, bool changed)
1017{
1018 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharancb355822014-09-17 14:45:56 +05301019 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301020 unsigned long flags;
1021
1022 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301023
Sujith Manoharancb355822014-09-17 14:45:56 +05301024 ether_addr_copy(common->curbssid, avp->bssid);
1025 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301026 ath9k_hw_write_associd(sc->sc_ah);
1027
1028 if (changed) {
1029 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1030 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1031
1032 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1033 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1034 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1035 }
1036
1037 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1038 ath9k_mci_update_wlan_channels(sc, false);
1039
1040 ath_dbg(common, CONFIG,
1041 "Primary Station interface: %pM, BSSID: %pM\n",
1042 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001043}
1044
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301045#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1046static void ath9k_set_offchannel_state(struct ath_softc *sc)
1047{
1048 struct ath_hw *ah = sc->sc_ah;
1049 struct ath_common *common = ath9k_hw_common(ah);
1050 struct ieee80211_vif *vif = NULL;
1051
1052 ath9k_ps_wakeup(sc);
1053
1054 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1055 vif = sc->offchannel.scan_vif;
1056 else
1057 vif = sc->offchannel.roc_vif;
1058
1059 if (WARN_ON(!vif))
1060 goto exit;
1061
1062 eth_zero_addr(common->curbssid);
1063 eth_broadcast_addr(common->bssidmask);
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301064 memcpy(common->macaddr, vif->addr, ETH_ALEN);
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301065 common->curaid = 0;
1066 ah->opmode = vif->type;
1067 ah->imask &= ~ATH9K_INT_SWBA;
1068 ah->imask &= ~ATH9K_INT_TSFOOR;
1069 ah->slottime = ATH9K_SLOT_TIME_9;
1070
1071 ath_hw_setbssidmask(common);
1072 ath9k_hw_setopmode(ah);
1073 ath9k_hw_write_associd(sc->sc_ah);
1074 ath9k_hw_set_interrupts(ah);
1075 ath9k_hw_init_global_settings(ah);
1076
1077exit:
1078 ath9k_ps_restore(sc);
1079}
1080#endif
1081
Ben Greear48014162011-01-15 19:13:48 +00001082/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301083void ath9k_calculate_summary_state(struct ath_softc *sc,
1084 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001085{
Ben Greear48014162011-01-15 19:13:48 +00001086 struct ath_hw *ah = sc->sc_ah;
1087 struct ath_common *common = ath9k_hw_common(ah);
1088 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301089 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001090
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301091 ath_chanctx_check_active(sc, ctx);
1092
1093 if (ctx != sc->cur_chan)
1094 return;
1095
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301096#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1097 if (ctx == &sc->offchannel.chan)
1098 return ath9k_set_offchannel_state(sc);
1099#endif
1100
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301101 ath9k_ps_wakeup(sc);
1102 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1103
1104 if (iter_data.has_hw_macaddr)
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301105 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +00001106
Ben Greear48014162011-01-15 19:13:48 +00001107 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1108 ath_hw_setbssidmask(common);
1109
Ben Greear48014162011-01-15 19:13:48 +00001110 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301111 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301112 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001113 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301114 if (cur_conf->enable_beacon)
1115 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001116 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301117 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001118
Javier Cardonafd5999c2011-05-03 16:57:19 -07001119 if (iter_data.nmeshes)
1120 ah->opmode = NL80211_IFTYPE_MESH_POINT;
Jan Kaisrlik862a3362015-09-17 14:03:46 +02001121 else if (iter_data.nocbs)
1122 ah->opmode = NL80211_IFTYPE_OCB;
Javier Cardonafd5999c2011-05-03 16:57:19 -07001123 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001124 ah->opmode = NL80211_IFTYPE_AP;
1125 else if (iter_data.nadhocs)
1126 ah->opmode = NL80211_IFTYPE_ADHOC;
1127 else
1128 ah->opmode = NL80211_IFTYPE_STATION;
1129 }
1130
Sujith Manoharandf35d292012-07-17 17:15:43 +05301131 ath9k_hw_setopmode(ah);
1132
Felix Fietkau748299f2014-06-11 16:18:04 +05301133 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001134 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001135 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301136 else {
Ben Greear48014162011-01-15 19:13:48 +00001137 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301138 if (iter_data.naps == 1 && iter_data.beacons)
1139 ctx->switch_after_beacon = true;
1140 }
Ben Greear48014162011-01-15 19:13:48 +00001141
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301142 ah->imask &= ~ATH9K_INT_SWBA;
1143 if (ah->opmode == NL80211_IFTYPE_STATION) {
1144 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1145
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301146 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301147 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301148 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1149 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301150 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301151 } else {
1152 ctx->primary_sta = NULL;
Joe Perches93803b32015-03-02 19:54:49 -08001153 eth_zero_addr(common->curbssid);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301154 common->curaid = 0;
1155 ath9k_hw_write_associd(sc->sc_ah);
1156 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1157 ath9k_mci_update_wlan_channels(sc, true);
1158 }
1159 } else if (iter_data.beacons) {
1160 ah->imask |= ATH9K_INT_SWBA;
1161 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001162 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301163
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301164 if (iter_data.beacons)
1165 set_bit(ATH_OP_BEACONS, &common->op_flags);
1166 else
1167 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1168
1169 if (ah->slottime != iter_data.slottime) {
1170 ah->slottime = iter_data.slottime;
1171 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301172 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301173
1174 if (iter_data.primary_sta)
1175 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1176 else
1177 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1178
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301179 ath_dbg(common, CONFIG,
1180 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1181 common->macaddr, common->curbssid, common->bssidmask);
1182
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301183 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001184}
1185
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001186static void ath9k_tpc_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
1187{
1188 int *power = (int *)data;
1189
1190 if (*power < vif->bss_conf.txpower)
1191 *power = vif->bss_conf.txpower;
1192}
1193
1194/* Called with sc->mutex held. */
1195void ath9k_set_txpower(struct ath_softc *sc, struct ieee80211_vif *vif)
1196{
1197 int power;
1198 struct ath_hw *ah = sc->sc_ah;
1199 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
1200
1201 ath9k_ps_wakeup(sc);
1202 if (ah->tpc_enabled) {
1203 power = (vif) ? vif->bss_conf.txpower : -1;
1204 ieee80211_iterate_active_interfaces_atomic(
1205 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1206 ath9k_tpc_vif_iter, &power);
1207 if (power == -1)
1208 power = sc->hw->conf.power_level;
1209 } else {
1210 power = sc->hw->conf.power_level;
1211 }
1212 sc->cur_chan->txpower = 2 * power;
1213 ath9k_hw_set_txpowerlimit(ah, sc->cur_chan->txpower, false);
1214 sc->cur_chan->cur_txpower = reg->max_power_level;
1215 ath9k_ps_restore(sc);
1216}
1217
Sujith Manoharana4027642014-09-05 09:50:55 +05301218static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1219 struct ieee80211_vif *vif)
1220{
1221 int i;
1222
Sujith Manoharan868caae2014-10-21 19:23:02 +05301223 if (!ath9k_is_chanctx_enabled())
1224 return;
1225
Sujith Manoharana4027642014-09-05 09:50:55 +05301226 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1227 vif->hw_queue[i] = i;
1228
Chun-Yeow Yeoh4b870c22014-11-12 16:40:19 +08001229 if (vif->type == NL80211_IFTYPE_AP ||
1230 vif->type == NL80211_IFTYPE_MESH_POINT)
Sujith Manoharana4027642014-09-05 09:50:55 +05301231 vif->cab_queue = hw->queues - 2;
1232 else
1233 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1234}
1235
Ben Greear48014162011-01-15 19:13:48 +00001236static int ath9k_add_interface(struct ieee80211_hw *hw,
1237 struct ieee80211_vif *vif)
1238{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001239 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001240 struct ath_hw *ah = sc->sc_ah;
1241 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001242 struct ath_vif *avp = (void *)vif->drv_priv;
1243 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001244
1245 mutex_lock(&sc->mutex);
1246
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001247 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301248 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001249 mutex_unlock(&sc->mutex);
1250 return -EOPNOTSUPP;
1251 }
1252 sc->tx99_vif = vif;
1253 }
1254
Joe Perchesd2182b62011-12-15 14:55:53 -08001255 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301256 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001257
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301258 if (ath9k_uses_beacons(vif->type))
1259 ath9k_beacon_assign_slot(sc, vif);
1260
Felix Fietkaud463af42014-04-06 00:37:03 +02001261 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301262 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301263 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301264 list_add_tail(&avp->list, &avp->chanctx->vifs);
1265 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301266
Ben Greeardaad1662014-11-04 15:22:50 -08001267 ath9k_calculate_summary_state(sc, avp->chanctx);
1268
Sujith Manoharana4027642014-09-05 09:50:55 +05301269 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301270
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001271 ath9k_set_txpower(sc, vif);
1272
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001273 an->sc = sc;
1274 an->sta = NULL;
1275 an->vif = vif;
1276 an->no_ps_filter = true;
1277 ath_tx_node_init(sc, an);
1278
Ben Greear48014162011-01-15 19:13:48 +00001279 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301280 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001281}
1282
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301283static int ath9k_change_interface(struct ieee80211_hw *hw,
1284 struct ieee80211_vif *vif,
1285 enum nl80211_iftype new_type,
1286 bool p2p)
1287{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001288 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301289 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301290 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301291
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301292 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001293
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001294 if (config_enabled(CONFIG_ATH9K_TX99)) {
1295 mutex_unlock(&sc->mutex);
1296 return -EOPNOTSUPP;
1297 }
1298
1299 ath_dbg(common, CONFIG, "Change Interface\n");
1300
Ben Greear48014162011-01-15 19:13:48 +00001301 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301302 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001303
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301304 vif->type = new_type;
1305 vif->p2p = p2p;
1306
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301307 if (ath9k_uses_beacons(vif->type))
1308 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301309
Sujith Manoharana4027642014-09-05 09:50:55 +05301310 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301311 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301312
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001313 ath9k_set_txpower(sc, vif);
1314
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301315 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301316 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301317}
1318
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001319static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001320 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001321{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001322 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001323 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001324 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001325
Joe Perchesd2182b62011-12-15 14:55:53 -08001326 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001327
Sujith141b38b2009-02-04 08:10:07 +05301328 mutex_lock(&sc->mutex);
1329
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301330 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001331
Sujith Manoharanca529c92014-09-05 08:03:19 +05301332 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001333 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301334 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301335 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336
Ben Greear48014162011-01-15 19:13:48 +00001337 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301338 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001339
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001340 ath_tx_node_cleanup(sc, &avp->mcast_node);
1341
Ben Greeardaad1662014-11-04 15:22:50 -08001342 ath9k_calculate_summary_state(sc, avp->chanctx);
1343
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001344 ath9k_set_txpower(sc, NULL);
1345
Sujith141b38b2009-02-04 08:10:07 +05301346 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001347}
1348
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301349static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301350{
Pavel Roskin30691682010-03-31 18:05:31 -04001351 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301352 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001353
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001354 if (config_enabled(CONFIG_ATH9K_TX99))
1355 return;
1356
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301357 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001358 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1359 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1360 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001361 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301362 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001363 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301364 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301365 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301366}
1367
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301368static void ath9k_disable_ps(struct ath_softc *sc)
1369{
1370 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301371 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301372
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001373 if (config_enabled(CONFIG_ATH9K_TX99))
1374 return;
1375
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301376 sc->ps_enabled = false;
1377 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1378 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1379 ath9k_hw_setrxabort(ah, 0);
1380 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1381 PS_WAIT_FOR_CAB |
1382 PS_WAIT_FOR_PSPOLL_DATA |
1383 PS_WAIT_FOR_TX_ACK);
1384 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1385 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001386 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301387 }
1388 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301389 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301390}
1391
Johannes Berge8975582008-10-09 12:18:51 +02001392static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001394 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001395 struct ath_hw *ah = sc->sc_ah;
1396 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001397 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301398 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399
Felix Fietkauc0c11742011-11-16 13:08:41 +01001400 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301401 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301402
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001403 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001404 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301405 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001406 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301407 ath9k_stop_btcoex(sc);
1408 } else {
1409 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001410 /*
1411 * The chip needs a reset to properly wake up from
1412 * full sleep
1413 */
Felix Fietkau39305632014-06-11 16:17:57 +05301414 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301415 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001416 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001417
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001418 /*
1419 * We just prepare to enable PS. We have to wait until our AP has
1420 * ACK'd our null data frame to disable RX otherwise we'll ignore
1421 * those ACKs and end up retransmitting the same null data frames.
1422 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1423 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301424 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001425 unsigned long flags;
1426 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301427 if (conf->flags & IEEE80211_CONF_PS)
1428 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301429 else
1430 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001431 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301432 }
1433
Sujith199afd92010-01-08 10:36:13 +05301434 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1435 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001436 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301437 sc->sc_ah->is_monitoring = true;
1438 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001439 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301440 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301441 }
1442 }
1443
Sujith Manoharan499afac2014-08-22 20:39:31 +05301444 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301445 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301446 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301447 }
Sujith86b89ee2008-08-07 10:54:57 +05301448
Sujithaa33de02008-12-18 11:40:16 +05301449 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001450 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301451
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001452 return 0;
1453}
1454
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455#define SUPPORTED_FILTERS \
Johannes Bergdf140462015-04-22 14:40:58 +02001456 (FIF_ALLMULTI | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001458 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459 FIF_OTHER_BSS | \
1460 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001461 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001462 FIF_FCSFAIL)
1463
Sujith7dcfdcd2008-08-11 14:03:13 +05301464/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001465static void ath9k_configure_filter(struct ieee80211_hw *hw,
1466 unsigned int changed_flags,
1467 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001468 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001470 struct ath_softc *sc = hw->priv;
Janusz.Dziedzic@tieto.comf3771c02015-07-21 11:11:42 +02001471 struct ath_chanctx *ctx;
Sujith7dcfdcd2008-08-11 14:03:13 +05301472 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001473
1474 changed_flags &= SUPPORTED_FILTERS;
1475 *total_flags &= SUPPORTED_FILTERS;
1476
Sujith Manoharanfce34432014-09-05 08:03:18 +05301477 spin_lock_bh(&sc->chan_lock);
Janusz.Dziedzic@tieto.comf3771c02015-07-21 11:11:42 +02001478 ath_for_each_chanctx(sc, ctx)
1479 ctx->rxfilter = *total_flags;
Janusz.Dziedzic@tieto.com17382032015-07-21 11:11:43 +02001480#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1481 sc->offchannel.chan.rxfilter = *total_flags;
1482#endif
Sujith Manoharanfce34432014-09-05 08:03:18 +05301483 spin_unlock_bh(&sc->chan_lock);
1484
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001485 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301486 rfilt = ath_calcrxfilter(sc);
1487 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001488 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301489
Joe Perchesd2182b62011-12-15 14:55:53 -08001490 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1491 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492}
1493
Johannes Berg4ca77862010-02-19 19:06:56 +01001494static int ath9k_sta_add(struct ieee80211_hw *hw,
1495 struct ieee80211_vif *vif,
1496 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001498 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001499 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1500 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1501 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001502 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001503
Ben Greear7e1e3862011-11-03 11:33:13 -07001504 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001505
1506 if (vif->type != NL80211_IFTYPE_AP &&
1507 vif->type != NL80211_IFTYPE_AP_VLAN)
1508 return 0;
1509
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001510 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301511 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001512 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301513 an->key_idx[0] = key;
1514 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001515
1516 return 0;
1517}
1518
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001519static void ath9k_del_ps_key(struct ath_softc *sc,
1520 struct ieee80211_vif *vif,
1521 struct ieee80211_sta *sta)
1522{
1523 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1524 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1525 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1526
1527 if (!an->ps_key)
1528 return;
1529
1530 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001531 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301532 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001533}
1534
Johannes Berg4ca77862010-02-19 19:06:56 +01001535static int ath9k_sta_remove(struct ieee80211_hw *hw,
1536 struct ieee80211_vif *vif,
1537 struct ieee80211_sta *sta)
1538{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001539 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001540
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001541 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001542 ath_node_detach(sc, sta);
1543
1544 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001545}
1546
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301547static int ath9k_sta_state(struct ieee80211_hw *hw,
1548 struct ieee80211_vif *vif,
1549 struct ieee80211_sta *sta,
1550 enum ieee80211_sta_state old_state,
1551 enum ieee80211_sta_state new_state)
1552{
1553 struct ath_softc *sc = hw->priv;
1554 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1555 int ret = 0;
1556
1557 if (old_state == IEEE80211_STA_AUTH &&
1558 new_state == IEEE80211_STA_ASSOC) {
1559 ret = ath9k_sta_add(hw, vif, sta);
1560 ath_dbg(common, CONFIG,
1561 "Add station: %pM\n", sta->addr);
1562 } else if (old_state == IEEE80211_STA_ASSOC &&
1563 new_state == IEEE80211_STA_AUTH) {
1564 ret = ath9k_sta_remove(hw, vif, sta);
1565 ath_dbg(common, CONFIG,
1566 "Remove station: %pM\n", sta->addr);
1567 }
1568
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301569 if (ath9k_is_chanctx_enabled()) {
Sujith Manoharan91e6ceb2014-10-17 07:40:19 +05301570 if (vif->type == NL80211_IFTYPE_STATION) {
1571 if (old_state == IEEE80211_STA_ASSOC &&
1572 new_state == IEEE80211_STA_AUTHORIZED)
1573 ath_chanctx_event(sc, vif,
1574 ATH_CHANCTX_EVENT_AUTHORIZED);
1575 }
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301576 }
1577
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301578 return ret;
1579}
1580
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301581static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1582 struct ath_node *an,
1583 bool set)
1584{
1585 int i;
1586
1587 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1588 if (!an->key_idx[i])
1589 continue;
1590 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1591 }
1592}
1593
Felix Fietkau55195412011-04-17 23:28:09 +02001594static void ath9k_sta_notify(struct ieee80211_hw *hw,
1595 struct ieee80211_vif *vif,
1596 enum sta_notify_cmd cmd,
1597 struct ieee80211_sta *sta)
1598{
1599 struct ath_softc *sc = hw->priv;
1600 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1601
1602 switch (cmd) {
1603 case STA_NOTIFY_SLEEP:
1604 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001605 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301606 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001607 break;
1608 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301609 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001610 an->sleeping = false;
1611 ath_tx_aggr_wakeup(sc, an);
1612 break;
1613 }
1614}
1615
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001616static int ath9k_conf_tx(struct ieee80211_hw *hw,
1617 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001618 const struct ieee80211_tx_queue_params *params)
1619{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001620 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001621 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001622 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301623 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001624 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001625
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301626 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001627 return 0;
1628
Felix Fietkau066dae92010-11-07 14:59:39 +01001629 txq = sc->tx.txq_map[queue];
1630
Felix Fietkau96f372c2011-04-07 19:07:17 +02001631 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301632 mutex_lock(&sc->mutex);
1633
Sujith1ffb0612009-03-30 15:28:46 +05301634 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1635
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636 qi.tqi_aifs = params->aifs;
1637 qi.tqi_cwmin = params->cw_min;
1638 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001639 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001640
Joe Perchesd2182b62011-12-15 14:55:53 -08001641 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001642 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1643 queue, txq->axq_qnum, params->aifs, params->cw_min,
1644 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001645
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001646 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001647 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001648 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001649 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001650
Sujith141b38b2009-02-04 08:10:07 +05301651 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001652 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301653
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001654 return ret;
1655}
1656
1657static int ath9k_set_key(struct ieee80211_hw *hw,
1658 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001659 struct ieee80211_vif *vif,
1660 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001661 struct ieee80211_key_conf *key)
1662{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001663 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001664 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301665 struct ath_node *an = NULL;
1666 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001667
John W. Linville3e6109c2011-01-05 09:39:17 -05001668 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001669 return -ENOSPC;
1670
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001671 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1672 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001673 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1674 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1675 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1676 /*
1677 * For now, disable hw crypto for the RSN IBSS group keys. This
1678 * could be optimized in the future to use a modified key cache
1679 * design to support per-STA RX GTK, but until that gets
1680 * implemented, use of software crypto for group addressed
1681 * frames is a acceptable to allow RSN IBSS to be used.
1682 */
1683 return -EOPNOTSUPP;
1684 }
1685
Sujith141b38b2009-02-04 08:10:07 +05301686 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301687 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301688 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1689 if (sta)
1690 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001691
1692 switch (cmd) {
1693 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001694 if (sta)
1695 ath9k_del_ps_key(sc, vif, sta);
1696
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301697 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001698 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001699 if (ret >= 0) {
1700 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001701 /* push IV and Michael MIC generation to stack */
1702 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001703 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301704 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001705 if (sc->sc_ah->sw_mgmt_crypto_tx &&
Johannes Berg97359d12010-08-10 09:46:38 +02001706 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001707 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001708 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001709 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301710 if (an && key->hw_key_idx) {
1711 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1712 if (an->key_idx[i])
1713 continue;
1714 an->key_idx[i] = key->hw_key_idx;
1715 break;
1716 }
1717 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1718 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001719 break;
1720 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001721 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301722 if (an) {
1723 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1724 if (an->key_idx[i] != key->hw_key_idx)
1725 continue;
1726 an->key_idx[i] = 0;
1727 break;
1728 }
1729 }
1730 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001731 break;
1732 default:
1733 ret = -EINVAL;
1734 }
1735
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301736 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301737 mutex_unlock(&sc->mutex);
1738
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001739 return ret;
1740}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301741
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1743 struct ieee80211_vif *vif,
1744 struct ieee80211_bss_conf *bss_conf,
1745 u32 changed)
1746{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301747#define CHECK_ANI \
1748 (BSS_CHANGED_ASSOC | \
1749 BSS_CHANGED_IBSS | \
1750 BSS_CHANGED_BEACON_ENABLED)
1751
Felix Fietkau9ac586152011-01-24 19:23:18 +01001752 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001753 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001754 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001755 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001756 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001757
Felix Fietkau96f372c2011-04-07 19:07:17 +02001758 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301759 mutex_lock(&sc->mutex);
1760
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301761 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301762 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1763 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301764
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301765 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Sujith Manoharancb355822014-09-17 14:45:56 +05301766 avp->aid = bss_conf->aid;
1767 avp->assoc = bss_conf->assoc;
1768
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301769 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001770 }
1771
Jan Kaisrlik862a3362015-09-17 14:03:46 +02001772 if ((changed & BSS_CHANGED_IBSS) ||
1773 (changed & BSS_CHANGED_OCB)) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301774 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1775 common->curaid = bss_conf->aid;
1776 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301777 }
1778
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301779 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301780 (changed & BSS_CHANGED_BEACON_INT) ||
1781 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301782 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301783 if (changed & BSS_CHANGED_BEACON_ENABLED)
1784 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301785 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001786
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301787 if ((avp->chanctx == sc->cur_chan) &&
1788 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001789 if (bss_conf->use_short_slot)
1790 slottime = 9;
1791 else
1792 slottime = 20;
1793 if (vif->type == NL80211_IFTYPE_AP) {
1794 /*
1795 * Defer update, so that connected stations can adjust
1796 * their settings at the same time.
1797 * See beacon.c for more details
1798 */
1799 sc->beacon.slottime = slottime;
1800 sc->beacon.updateslot = UPDATE;
1801 } else {
1802 ah->slottime = slottime;
1803 ath9k_hw_init_global_settings(ah);
1804 }
1805 }
1806
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301807 if (changed & BSS_CHANGED_P2P_PS)
1808 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001809
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301810 if (changed & CHECK_ANI)
1811 ath_check_ani(sc);
1812
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001813 if (changed & BSS_CHANGED_TXPOWER) {
1814 ath_dbg(common, CONFIG, "vif %pM power %d dbm power_type %d\n",
1815 vif->addr, bss_conf->txpower, bss_conf->txpower_type);
1816 ath9k_set_txpower(sc, vif);
1817 }
1818
Sujith141b38b2009-02-04 08:10:07 +05301819 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001820 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301821
1822#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001823}
1824
Eliad Peller37a41b42011-09-21 14:06:11 +03001825static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001827 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001828 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829
Sujith141b38b2009-02-04 08:10:07 +05301830 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301831 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301832 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301833 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301834 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001835
1836 return tsf;
1837}
1838
Eliad Peller37a41b42011-09-21 14:06:11 +03001839static void ath9k_set_tsf(struct ieee80211_hw *hw,
1840 struct ieee80211_vif *vif,
1841 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001842{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001843 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001844
Sujith141b38b2009-02-04 08:10:07 +05301845 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301846 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301847 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301848 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301849 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001850}
1851
Eliad Peller37a41b42011-09-21 14:06:11 +03001852static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001853{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001854 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855
Sujith141b38b2009-02-04 08:10:07 +05301856 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001857
1858 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301859 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001860 ath9k_ps_restore(sc);
1861
Sujith141b38b2009-02-04 08:10:07 +05301862 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863}
1864
1865static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001866 struct ieee80211_vif *vif,
Sara Sharon50ea05e2015-12-30 16:06:04 +02001867 struct ieee80211_ampdu_params *params)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001868{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001869 struct ath_softc *sc = hw->priv;
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301870 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau16e23422013-05-17 12:58:24 +02001871 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872 int ret = 0;
Sara Sharon50ea05e2015-12-30 16:06:04 +02001873 struct ieee80211_sta *sta = params->sta;
1874 enum ieee80211_ampdu_mlme_action action = params->action;
1875 u16 tid = params->tid;
1876 u16 *ssn = &params->ssn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001877
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301878 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001879
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001880 switch (action) {
1881 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882 break;
1883 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 break;
1885 case IEEE80211_AMPDU_TX_START:
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301886 if (ath9k_is_chanctx_enabled()) {
1887 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
1888 ret = -EBUSY;
1889 break;
1890 }
1891 }
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001892 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001893 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1894 if (!ret)
1895 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001896 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001898 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1899 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001900 flush = true;
1901 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001902 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301903 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001904 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001905 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001906 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001907 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001908 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001909 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301910 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001911 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301912 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001913 default:
Joe Perches38002762010-12-02 19:12:36 -08001914 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 }
1916
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301917 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001918
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919 return ret;
1920}
1921
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001922static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1923 struct survey_info *survey)
1924{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001925 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001926 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001927 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001928 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001929 int pos;
1930
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001931 if (config_enabled(CONFIG_ATH9K_TX99))
1932 return -EOPNOTSUPP;
1933
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301934 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001935 if (idx == 0)
1936 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001937
Felix Fietkau39162db2010-09-29 19:12:06 +02001938 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1939 if (sband && idx >= sband->n_channels) {
1940 idx -= sband->n_channels;
1941 sband = NULL;
1942 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001943
Felix Fietkau39162db2010-09-29 19:12:06 +02001944 if (!sband)
1945 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1946
Felix Fietkau34300982010-10-10 18:21:52 +02001947 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301948 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001949 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001950 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001951
Felix Fietkau34300982010-10-10 18:21:52 +02001952 chan = &sband->channels[idx];
1953 pos = chan->hw_value;
1954 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1955 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301956 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001957
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001958 return 0;
1959}
1960
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001961static void ath9k_enable_dynack(struct ath_softc *sc)
1962{
1963#ifdef CONFIG_ATH9K_DYNACK
1964 u32 rfilt;
1965 struct ath_hw *ah = sc->sc_ah;
1966
1967 ath_dynack_reset(ah);
1968
1969 ah->dynack.enabled = true;
1970 rfilt = ath_calcrxfilter(sc);
1971 ath9k_hw_setrxfilter(ah, rfilt);
1972#endif
1973}
1974
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001975static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1976 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001977{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001978 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001979 struct ath_hw *ah = sc->sc_ah;
1980
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001981 if (config_enabled(CONFIG_ATH9K_TX99))
1982 return;
1983
Felix Fietkaue239d852010-01-15 02:34:58 +01001984 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301985
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001986 if (coverage_class >= 0) {
1987 ah->coverage_class = coverage_class;
1988 if (ah->dynack.enabled) {
1989 u32 rfilt;
1990
1991 ah->dynack.enabled = false;
1992 rfilt = ath_calcrxfilter(sc);
1993 ath9k_hw_setrxfilter(ah, rfilt);
1994 }
1995 ath9k_ps_wakeup(sc);
1996 ath9k_hw_init_global_settings(ah);
1997 ath9k_ps_restore(sc);
1998 } else if (!ah->dynack.enabled) {
1999 ath9k_enable_dynack(sc);
2000 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05302001
Felix Fietkaue239d852010-01-15 02:34:58 +01002002 mutex_unlock(&sc->mutex);
2003}
2004
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302005static bool ath9k_has_tx_pending(struct ath_softc *sc,
2006 bool sw_pending)
Felix Fietkau10e23182013-11-11 22:23:35 +01002007{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01002008 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01002009
2010 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2011 if (!ATH_TXQ_SETUP(sc, i))
2012 continue;
2013
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302014 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
2015 sw_pending);
Felix Fietkau10e23182013-11-11 22:23:35 +01002016 if (npend)
2017 break;
2018 }
2019
2020 return !!npend;
2021}
2022
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002023static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2024 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002025{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002026 struct ath_softc *sc = hw->priv;
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302027 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkaubff11762014-06-11 16:17:52 +05302028
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302029 if (ath9k_is_chanctx_enabled()) {
2030 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2031 goto flush;
2032
2033 /*
2034 * If MCC is active, extend the flush timeout
2035 * and wait for the HW/SW queues to become
2036 * empty. This needs to be done outside the
2037 * sc->mutex lock to allow the channel scheduler
2038 * to switch channel contexts.
2039 *
2040 * The vif queues have been stopped in mac80211,
2041 * so there won't be any incoming frames.
2042 */
2043 __ath9k_flush(hw, queues, drop, true, true);
2044 return;
2045 }
2046flush:
Felix Fietkaubff11762014-06-11 16:17:52 +05302047 mutex_lock(&sc->mutex);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302048 __ath9k_flush(hw, queues, drop, true, false);
Felix Fietkaubff11762014-06-11 16:17:52 +05302049 mutex_unlock(&sc->mutex);
2050}
2051
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302052void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302053 bool sw_pending, bool timeout_override)
Felix Fietkaubff11762014-06-11 16:17:52 +05302054{
2055 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302056 struct ath_hw *ah = sc->sc_ah;
2057 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302058 int timeout;
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302059 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002060
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002061 cancel_delayed_work_sync(&sc->tx_complete_work);
2062
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302063 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002064 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302065 return;
2066 }
2067
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002068 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002069 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302070 return;
2071 }
2072
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302073 spin_lock_bh(&sc->chan_lock);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302074 if (timeout_override)
2075 timeout = HZ / 5;
2076 else
2077 timeout = sc->cur_chan->flush_timeout;
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302078 spin_unlock_bh(&sc->chan_lock);
2079
2080 ath_dbg(common, CHAN_CTX,
2081 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2082
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302083 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
Felix Fietkau10e23182013-11-11 22:23:35 +01002084 timeout) > 0)
2085 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002086
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002087 if (drop) {
2088 ath9k_ps_wakeup(sc);
2089 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002090 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002091 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002092
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002093 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302094 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002095
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002096 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002097 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302098
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002099 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002100}
2101
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302102static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2103{
2104 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302105
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302106 return ath9k_has_tx_pending(sc, true);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302107}
2108
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302109static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002110{
2111 struct ath_softc *sc = hw->priv;
2112 struct ath_hw *ah = sc->sc_ah;
2113 struct ieee80211_vif *vif;
2114 struct ath_vif *avp;
2115 struct ath_buf *bf;
2116 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002117 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002118 int status;
2119
2120 vif = sc->beacon.bslot[0];
2121 if (!vif)
2122 return 0;
2123
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302124 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002125 return 0;
2126
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302127 avp = (void *)vif->drv_priv;
2128
Felix Fietkau4286df62012-02-27 19:58:40 +01002129 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002130 tasklet_disable(&sc->bcon_tasklet);
2131
2132 bf = avp->av_bcbuf;
2133 if (!bf || !bf->bf_mpdu)
2134 goto skip;
2135
2136 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2137 if (status == -EINPROGRESS)
2138 goto skip;
2139
2140 sc->beacon.tx_processed = true;
2141 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2142
2143skip:
2144 tasklet_enable(&sc->bcon_tasklet);
2145 }
2146
2147 return sc->beacon.tx_last;
2148}
2149
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302150static int ath9k_get_stats(struct ieee80211_hw *hw,
2151 struct ieee80211_low_level_stats *stats)
2152{
2153 struct ath_softc *sc = hw->priv;
2154 struct ath_hw *ah = sc->sc_ah;
2155 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2156
2157 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2158 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2159 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2160 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2161 return 0;
2162}
2163
Felix Fietkau43c35282011-09-03 01:40:27 +02002164static u32 fill_chainmask(u32 cap, u32 new)
2165{
2166 u32 filled = 0;
2167 int i;
2168
2169 for (i = 0; cap && new; i++, cap >>= 1) {
2170 if (!(cap & BIT(0)))
2171 continue;
2172
2173 if (new & BIT(0))
2174 filled |= BIT(i);
2175
2176 new >>= 1;
2177 }
2178
2179 return filled;
2180}
2181
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002182static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2183{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002184 if (AR_SREV_9300_20_OR_LATER(ah))
2185 return true;
2186
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002187 switch (val & 0x7) {
2188 case 0x1:
2189 case 0x3:
2190 case 0x7:
2191 return true;
2192 case 0x2:
2193 return (ah->caps.rx_chainmask == 1);
2194 default:
2195 return false;
2196 }
2197}
2198
Felix Fietkau43c35282011-09-03 01:40:27 +02002199static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2200{
2201 struct ath_softc *sc = hw->priv;
2202 struct ath_hw *ah = sc->sc_ah;
2203
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002204 if (ah->caps.rx_chainmask != 1)
2205 rx_ant |= tx_ant;
2206
2207 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002208 return -EINVAL;
2209
2210 sc->ant_rx = rx_ant;
2211 sc->ant_tx = tx_ant;
2212
2213 if (ah->caps.rx_chainmask == 1)
2214 return 0;
2215
2216 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2217 if (AR_SREV_9100(ah))
2218 ah->rxchainmask = 0x7;
2219 else
2220 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2221
2222 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002223 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002224
2225 return 0;
2226}
2227
2228static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2229{
2230 struct ath_softc *sc = hw->priv;
2231
2232 *tx_ant = sc->ant_tx;
2233 *rx_ant = sc->ant_rx;
2234 return 0;
2235}
2236
Johannes Berga344d672014-06-12 22:24:31 +02002237static void ath9k_sw_scan_start(struct ieee80211_hw *hw,
2238 struct ieee80211_vif *vif,
2239 const u8 *mac_addr)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002240{
2241 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002242 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2243 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002244}
2245
Johannes Berga344d672014-06-12 22:24:31 +02002246static void ath9k_sw_scan_complete(struct ieee80211_hw *hw,
2247 struct ieee80211_vif *vif)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002248{
2249 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002250 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2251 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002252}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302253
Sujith Manoharan499afac2014-08-22 20:39:31 +05302254#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2255
Sujith Manoharan61856722014-11-16 06:11:07 +05302256static void ath9k_cancel_pending_offchannel(struct ath_softc *sc)
2257{
2258 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2259
2260 if (sc->offchannel.roc_vif) {
2261 ath_dbg(common, CHAN_CTX,
2262 "%s: Aborting RoC\n", __func__);
2263
2264 del_timer_sync(&sc->offchannel.timer);
2265 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
Janusz.Dziedzic@tieto.comd83520b2015-07-21 11:11:41 +02002266 ath_roc_complete(sc, ATH_ROC_COMPLETE_ABORT);
Sujith Manoharan61856722014-11-16 06:11:07 +05302267 }
2268
2269 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
2270 ath_dbg(common, CHAN_CTX,
2271 "%s: Aborting HW scan\n", __func__);
2272
2273 del_timer_sync(&sc->offchannel.timer);
2274 ath_scan_complete(sc, true);
2275 }
2276}
2277
Felix Fietkau78b21942014-06-11 16:17:55 +05302278static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002279 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302280{
John W. Linville855df362014-06-25 15:15:14 -04002281 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302282 struct ath_softc *sc = hw->priv;
2283 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2284 int ret = 0;
2285
2286 mutex_lock(&sc->mutex);
2287
2288 if (WARN_ON(sc->offchannel.scan_req)) {
2289 ret = -EBUSY;
2290 goto out;
2291 }
2292
2293 ath9k_ps_wakeup(sc);
2294 set_bit(ATH_OP_SCANNING, &common->op_flags);
2295 sc->offchannel.scan_vif = vif;
2296 sc->offchannel.scan_req = req;
2297 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302298
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302299 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2300 vif->addr);
2301
2302 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2303 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302304 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302305 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302306
2307out:
2308 mutex_unlock(&sc->mutex);
2309
2310 return ret;
2311}
2312
2313static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2314 struct ieee80211_vif *vif)
2315{
2316 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302317 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2318
2319 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302320
2321 mutex_lock(&sc->mutex);
2322 del_timer_sync(&sc->offchannel.timer);
2323 ath_scan_complete(sc, true);
2324 mutex_unlock(&sc->mutex);
2325}
2326
Felix Fietkau405393c2014-06-11 16:17:56 +05302327static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2328 struct ieee80211_vif *vif,
2329 struct ieee80211_channel *chan, int duration,
2330 enum ieee80211_roc_type type)
2331{
2332 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302333 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302334 int ret = 0;
2335
2336 mutex_lock(&sc->mutex);
2337
2338 if (WARN_ON(sc->offchannel.roc_vif)) {
2339 ret = -EBUSY;
2340 goto out;
2341 }
2342
2343 ath9k_ps_wakeup(sc);
2344 sc->offchannel.roc_vif = vif;
2345 sc->offchannel.roc_chan = chan;
2346 sc->offchannel.roc_duration = duration;
2347
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302348 ath_dbg(common, CHAN_CTX,
2349 "RoC request on vif: %pM, type: %d duration: %d\n",
2350 vif->addr, type, duration);
2351
2352 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2353 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302354 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302355 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302356
2357out:
2358 mutex_unlock(&sc->mutex);
2359
2360 return ret;
2361}
2362
2363static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2364{
2365 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302366 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302367
2368 mutex_lock(&sc->mutex);
2369
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302370 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302371 del_timer_sync(&sc->offchannel.timer);
2372
2373 if (sc->offchannel.roc_vif) {
2374 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
Janusz.Dziedzic@tieto.comd83520b2015-07-21 11:11:41 +02002375 ath_roc_complete(sc, ATH_ROC_COMPLETE_CANCEL);
Felix Fietkau405393c2014-06-11 16:17:56 +05302376 }
2377
2378 mutex_unlock(&sc->mutex);
2379
2380 return 0;
2381}
2382
Felix Fietkau39305632014-06-11 16:17:57 +05302383static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2384 struct ieee80211_chanctx_conf *conf)
2385{
2386 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302387 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302388 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302389 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302390
2391 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302392
2393 ath_for_each_chanctx(sc, ctx) {
2394 if (ctx->assigned)
2395 continue;
2396
2397 ptr = (void *) conf->drv_priv;
2398 *ptr = ctx;
2399 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302400 pos = ctx - &sc->chanctx[0];
2401 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302402
2403 ath_dbg(common, CHAN_CTX,
2404 "Add channel context: %d MHz\n",
2405 conf->def.chan->center_freq);
2406
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302407 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302408
Felix Fietkau39305632014-06-11 16:17:57 +05302409 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302410 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302411 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302412
Felix Fietkau39305632014-06-11 16:17:57 +05302413 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302414 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302415}
2416
2417
2418static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2419 struct ieee80211_chanctx_conf *conf)
2420{
2421 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302422 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302423 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2424
2425 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302426
2427 ath_dbg(common, CHAN_CTX,
2428 "Remove channel context: %d MHz\n",
2429 conf->def.chan->center_freq);
2430
Felix Fietkau39305632014-06-11 16:17:57 +05302431 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302432 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302433 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302434
Felix Fietkau39305632014-06-11 16:17:57 +05302435 mutex_unlock(&sc->mutex);
2436}
2437
2438static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2439 struct ieee80211_chanctx_conf *conf,
2440 u32 changed)
2441{
2442 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302443 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302444 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2445
2446 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302447 ath_dbg(common, CHAN_CTX,
2448 "Change channel context: %d MHz\n",
2449 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302450 ath_chanctx_set_channel(sc, ctx, &conf->def);
2451 mutex_unlock(&sc->mutex);
2452}
2453
2454static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2455 struct ieee80211_vif *vif,
2456 struct ieee80211_chanctx_conf *conf)
2457{
2458 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302459 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302460 struct ath_vif *avp = (void *)vif->drv_priv;
2461 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302462 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302463
Sujith Manoharan61856722014-11-16 06:11:07 +05302464 ath9k_cancel_pending_offchannel(sc);
2465
Felix Fietkau39305632014-06-11 16:17:57 +05302466 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302467
2468 ath_dbg(common, CHAN_CTX,
2469 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2470 vif->addr, vif->type, vif->p2p,
2471 conf->def.chan->center_freq);
2472
Felix Fietkau39305632014-06-11 16:17:57 +05302473 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302474 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302475 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302476 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302477 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2478 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302479
Felix Fietkau39305632014-06-11 16:17:57 +05302480 mutex_unlock(&sc->mutex);
2481
2482 return 0;
2483}
2484
2485static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2486 struct ieee80211_vif *vif,
2487 struct ieee80211_chanctx_conf *conf)
2488{
2489 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302490 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302491 struct ath_vif *avp = (void *)vif->drv_priv;
2492 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302493 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302494
Sujith Manoharan61856722014-11-16 06:11:07 +05302495 ath9k_cancel_pending_offchannel(sc);
2496
Felix Fietkau39305632014-06-11 16:17:57 +05302497 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302498
2499 ath_dbg(common, CHAN_CTX,
2500 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2501 vif->addr, vif->type, vif->p2p,
2502 conf->def.chan->center_freq);
2503
Felix Fietkau39305632014-06-11 16:17:57 +05302504 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302505 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302506 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302507 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302508 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2509 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302510
Felix Fietkau39305632014-06-11 16:17:57 +05302511 mutex_unlock(&sc->mutex);
2512}
2513
Sujith Manoharane20a8542014-08-23 13:29:09 +05302514static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2515 struct ieee80211_vif *vif)
2516{
2517 struct ath_softc *sc = hw->priv;
2518 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2519 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302520 struct ath_beacon_config *cur_conf;
2521 struct ath_chanctx *go_ctx;
2522 unsigned long timeout;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302523 bool changed = false;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302524 u32 beacon_int;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302525
2526 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2527 return;
2528
2529 if (!avp->chanctx)
2530 return;
2531
2532 mutex_lock(&sc->mutex);
2533
2534 spin_lock_bh(&sc->chan_lock);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302535 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
Sujith Manoharane20a8542014-08-23 13:29:09 +05302536 changed = true;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302537 spin_unlock_bh(&sc->chan_lock);
2538
2539 if (!changed)
2540 goto out;
2541
Sujith Manoharan61856722014-11-16 06:11:07 +05302542 ath9k_cancel_pending_offchannel(sc);
Sujith Manoharan23aab0c2014-10-17 07:40:28 +05302543
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302544 go_ctx = ath_is_go_chanctx_present(sc);
2545
2546 if (go_ctx) {
2547 /*
2548 * Wait till the GO interface gets a chance
2549 * to send out an NoA.
2550 */
2551 spin_lock_bh(&sc->chan_lock);
2552 sc->sched.mgd_prepare_tx = true;
2553 cur_conf = &go_ctx->beacon;
2554 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2555 spin_unlock_bh(&sc->chan_lock);
2556
Sujith Manoharan61856722014-11-16 06:11:07 +05302557 timeout = usecs_to_jiffies(beacon_int * 2);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302558 init_completion(&sc->go_beacon);
2559
Sujith Manoharan61856722014-11-16 06:11:07 +05302560 mutex_unlock(&sc->mutex);
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302561
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302562 if (wait_for_completion_timeout(&sc->go_beacon,
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302563 timeout) == 0) {
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302564 ath_dbg(common, CHAN_CTX,
2565 "Failed to send new NoA\n");
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302566
2567 spin_lock_bh(&sc->chan_lock);
2568 sc->sched.mgd_prepare_tx = false;
2569 spin_unlock_bh(&sc->chan_lock);
2570 }
2571
Sujith Manoharan61856722014-11-16 06:11:07 +05302572 mutex_lock(&sc->mutex);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302573 }
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302574
Sujith Manoharan878066e2014-08-27 12:07:24 +05302575 ath_dbg(common, CHAN_CTX,
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302576 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2577 __func__, vif->addr);
2578
2579 spin_lock_bh(&sc->chan_lock);
2580 sc->next_chan = avp->chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302581 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2582 spin_unlock_bh(&sc->chan_lock);
2583
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302584 ath_chanctx_set_next(sc, true);
2585out:
Sujith Manoharane20a8542014-08-23 13:29:09 +05302586 mutex_unlock(&sc->mutex);
2587}
2588
Felix Fietkau78b21942014-06-11 16:17:55 +05302589void ath9k_fill_chanctx_ops(void)
2590{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302591 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302592 return;
2593
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302594 ath9k_ops.hw_scan = ath9k_hw_scan;
2595 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2596 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302597 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302598 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2599 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2600 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2601 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2602 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302603 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302604}
2605
Sujith Manoharan499afac2014-08-22 20:39:31 +05302606#endif
2607
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002608static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2609 int *dbm)
2610{
2611 struct ath_softc *sc = hw->priv;
2612 struct ath_vif *avp = (void *)vif->drv_priv;
2613
2614 mutex_lock(&sc->mutex);
2615 if (avp->chanctx)
2616 *dbm = avp->chanctx->cur_txpower;
2617 else
2618 *dbm = sc->cur_chan->cur_txpower;
2619 mutex_unlock(&sc->mutex);
2620
2621 *dbm /= 2;
2622
2623 return 0;
2624}
2625
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002626struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002627 .tx = ath9k_tx,
2628 .start = ath9k_start,
2629 .stop = ath9k_stop,
2630 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302631 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002632 .remove_interface = ath9k_remove_interface,
2633 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002634 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302635 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002636 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002637 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002638 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002639 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002640 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002641 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002642 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002643 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002644 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302645 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002646 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002647 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302648 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302649 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002650 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302651 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002652 .set_antenna = ath9k_set_antenna,
2653 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002654
Sujith Manoharane60001e2013-10-28 12:22:04 +05302655#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302656 .suspend = ath9k_suspend,
2657 .resume = ath9k_resume,
2658 .set_wakeup = ath9k_set_wakeup,
2659#endif
2660
Ben Greearb90bd9d2012-05-15 15:33:25 -07002661#ifdef CONFIG_ATH9K_DEBUGFS
2662 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302663 .get_et_stats = ath9k_get_et_stats,
2664 .get_et_strings = ath9k_get_et_strings,
2665#endif
2666
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302667#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302668 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002669#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002670 .sw_scan_start = ath9k_sw_scan_start,
2671 .sw_scan_complete = ath9k_sw_scan_complete,
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002672 .get_txpower = ath9k_get_txpower,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002673};