blob: a394622c9022c09488c59a85b878021c7c7b11a0 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080018#include <linux/delay.h>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "btcoex.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
Sven Eckelmann313eb872012-06-25 07:15:22 +020022u8 ath9k_parse_mpdudensity(u8 mpdudensity)
Sujithff37e332008-11-24 12:07:55 +053023{
24 /*
25 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
26 * 0 for no restriction
27 * 1 for 1/4 us
28 * 2 for 1/2 us
29 * 3 for 1 us
30 * 4 for 2 us
31 * 5 for 4 us
32 * 6 for 8 us
33 * 7 for 16 us
34 */
35 switch (mpdudensity) {
36 case 0:
37 return 0;
38 case 1:
39 case 2:
40 case 3:
41 /* Our lower layer calculations limit our precision to
42 1 microsecond */
43 return 1;
44 case 4:
45 return 2;
46 case 5:
47 return 4;
48 case 6:
49 return 8;
50 case 7:
51 return 16;
52 default:
53 return 0;
54 }
55}
56
Sujith Manoharane2d389b2014-10-17 07:40:18 +053057static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq,
58 bool sw_pending)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080059{
60 bool pending = false;
61
62 spin_lock_bh(&txq->axq_lock);
63
Sujith Manoharanb7367282014-10-02 06:33:13 +053064 if (txq->axq_depth) {
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080065 pending = true;
Sujith Manoharanb7367282014-10-02 06:33:13 +053066 goto out;
67 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080068
Sujith Manoharane2d389b2014-10-17 07:40:18 +053069 if (!sw_pending)
70 goto out;
71
Felix Fietkau04535312014-06-11 16:17:51 +053072 if (txq->mac80211_qnum >= 0) {
73 struct list_head *list;
74
75 list = &sc->cur_chan->acq[txq->mac80211_qnum];
76 if (!list_empty(list))
77 pending = true;
78 }
Sujith Manoharanb7367282014-10-02 06:33:13 +053079out:
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080080 spin_unlock_bh(&txq->axq_lock);
81 return pending;
82}
83
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053084static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070085{
86 unsigned long flags;
87 bool ret;
88
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070089 spin_lock_irqsave(&sc->sc_pm_lock, flags);
90 ret = ath9k_hw_setpower(sc->sc_ah, mode);
91 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070092
93 return ret;
94}
95
Felix Fietkaubf3dac52013-11-11 22:23:33 +010096void ath_ps_full_sleep(unsigned long data)
97{
98 struct ath_softc *sc = (struct ath_softc *) data;
99 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
100 bool reset;
101
102 spin_lock(&common->cc_lock);
103 ath_hw_cycle_counters_update(common);
104 spin_unlock(&common->cc_lock);
105
106 ath9k_hw_setrxabort(sc->sc_ah, 1);
107 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
108
109 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
110}
111
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700112void ath9k_ps_wakeup(struct ath_softc *sc)
113{
Felix Fietkau898c9142010-10-12 14:02:53 +0200114 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700115 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100116 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700117
118 spin_lock_irqsave(&sc->sc_pm_lock, flags);
119 if (++sc->ps_usecount != 1)
120 goto unlock;
121
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100122 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100123 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700124 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700125
Felix Fietkau898c9142010-10-12 14:02:53 +0200126 /*
127 * While the hardware is asleep, the cycle counters contain no
128 * useful data. Better clear them now so that they don't mess up
129 * survey data results.
130 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100131 if (power_mode != ATH9K_PM_AWAKE) {
132 spin_lock(&common->cc_lock);
133 ath_hw_cycle_counters_update(common);
134 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530135 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100136 spin_unlock(&common->cc_lock);
137 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200138
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700139 unlock:
140 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
141}
142
143void ath9k_ps_restore(struct ath_softc *sc)
144{
Felix Fietkau898c9142010-10-12 14:02:53 +0200145 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200146 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700147 unsigned long flags;
148
149 spin_lock_irqsave(&sc->sc_pm_lock, flags);
150 if (--sc->ps_usecount != 0)
151 goto unlock;
152
Sujith Manoharanad128862012-04-24 10:23:20 +0530153 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100154 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
155 goto unlock;
156 }
157
158 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530159 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
160 PS_WAIT_FOR_CAB |
161 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530162 PS_WAIT_FOR_TX_ACK |
163 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200164 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530165 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
166 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530167 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200168 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530169 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200170
171 spin_lock(&common->cc_lock);
172 ath_hw_cycle_counters_update(common);
173 spin_unlock(&common->cc_lock);
174
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600175 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -0700176
177 unlock:
178 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
179}
180
Felix Fietkau9adcf442011-09-03 01:40:26 +0200181static void __ath_cancel_work(struct ath_softc *sc)
182{
183 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200184 cancel_delayed_work_sync(&sc->tx_complete_work);
185 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530186
Sujith Manoharanbf525922012-06-27 14:15:59 +0530187#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530188 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
189 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530190#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200191}
192
Sujith Manoharane60001e2013-10-28 12:22:04 +0530193void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200194{
195 __ath_cancel_work(sc);
196 cancel_work_sync(&sc->hw_reset_work);
197}
198
Sujith Manoharane60001e2013-10-28 12:22:04 +0530199void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530200{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530201 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
202
Sujith Manoharan19c36162013-08-20 10:05:59 +0530203 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530204 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
205 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
206
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530207 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530208}
209
John W. Linville9ebea382013-01-28 13:54:03 -0500210static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200211{
212 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200213 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200214
215 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530216 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200217 ath9k_hw_disable_interrupts(ah);
218
Felix 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 Manoharan56ca0dba2012-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 Fietkau9ac58612011-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
Miaoqing Pan79d4db12016-03-07 10:38:17 +0800721 if (ah->led_pin >= 0)
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530722 ath9k_hw_set_gpio(ah, ah->led_pin,
723 (ah->config.led_active_high) ? 1 : 0);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100724
725 /*
726 * Reset key cache to sane defaults (all entries cleared) instead of
727 * semi-random values after suspend/resume.
728 */
729 ath9k_cmn_init_crypto(sc->sc_ah);
730
Felix Fietkaua35051c2013-12-14 18:03:45 +0100731 ath9k_hw_reset_tsf(ah);
732
Felix Fietkau9adcf442011-09-03 01:40:26 +0200733 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400734
Sujith141b38b2009-02-04 08:10:07 +0530735 mutex_unlock(&sc->mutex);
736
Felix Fietkauf62d8162011-03-25 17:43:41 +0100737 ath9k_ps_restore(sc);
738
Miaoqing Paned14dc02015-10-09 17:06:45 +0800739 ath9k_rng_start(sc);
740
Felix Fietkauceb26a62012-10-03 21:07:51 +0200741 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742}
743
Thomas Huehn36323f82012-07-23 21:33:42 +0200744static void ath9k_tx(struct ieee80211_hw *hw,
745 struct ieee80211_tx_control *control,
746 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747{
Felix Fietkau9ac58612011-01-24 19:23:18 +0100748 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700749 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530750 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100751 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530752 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530753
Gabor Juhos96148322009-07-24 17:27:21 +0200754 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300755 /*
756 * mac80211 does not set PM field for normal data frames, so we
757 * need to update that based on the current PS mode.
758 */
759 if (ieee80211_is_data(hdr->frame_control) &&
760 !ieee80211_is_nullfunc(hdr->frame_control) &&
761 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800762 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800763 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300764 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
765 }
766 }
767
Sujith Manoharanad128862012-04-24 10:23:20 +0530768 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300769 /*
770 * We are using PS-Poll and mac80211 can request TX while in
771 * power save mode. Need to wake up hardware for the TX to be
772 * completed and if needed, also for RX of buffered frames.
773 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300774 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530775 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700776 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
777 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300778 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800779 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800780 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530781 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300782 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800783 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530784 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300785 }
786 /*
787 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530788 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300789 * the ps_usecount here.
790 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530791 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300792 ath9k_ps_restore(sc);
793 }
794
Sujith Manoharanad128862012-04-24 10:23:20 +0530795 /*
796 * Cannot tx while the hardware is in full sleep, it first needs a full
797 * chip reset to recover from that
798 */
799 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
800 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
801 goto exit;
802 }
803
Sujith528f0c62008-10-29 10:14:26 +0530804 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100805 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200806 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530807
Joe Perchesd2182b62011-12-15 14:55:53 -0800808 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200810 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800811 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700812 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530813 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700814 }
815
Johannes Berg7bb45682011-02-24 14:42:06 +0100816 return;
Sujith528f0c62008-10-29 10:14:26 +0530817exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200818 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819}
820
821static void ath9k_stop(struct ieee80211_hw *hw)
822{
Felix Fietkau9ac58612011-01-24 19:23:18 +0100823 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700824 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700825 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100826 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530827
Sujith Manoharanea22df22014-08-23 13:29:07 +0530828 ath9k_deinit_channel_context(sc);
829
Miaoqing Paned14dc02015-10-09 17:06:45 +0800830 ath9k_rng_stop(sc);
831
Sujith4c483812009-08-18 10:51:52 +0530832 mutex_lock(&sc->mutex);
833
Felix Fietkau9adcf442011-09-03 01:40:26 +0200834 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700835
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100836 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800837 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530838 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530839 return;
840 }
841
Sujith3867cf62009-12-23 20:03:27 -0500842 /* Ensure HW is awake when we try to shut it down. */
843 ath9k_ps_wakeup(sc);
844
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700845 spin_lock_bh(&sc->sc_pcu_lock);
846
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100847 /* prevent tasklets to enable interrupts once we disable them */
848 ah->imask &= ~ATH9K_INT_GLOBAL;
849
Sujithff37e332008-11-24 12:07:55 +0530850 /* make sure h/w will not generate any interrupt
851 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100852 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530853
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700854 spin_unlock_bh(&sc->sc_pcu_lock);
855
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100856 /* we can now sync irq and kill any running tasklets, since we already
857 * disabled interrupts and not holding a spin lock */
858 synchronize_irq(sc->irq);
859 tasklet_kill(&sc->intr_tq);
860 tasklet_kill(&sc->bcon_tasklet);
861
Felix Fietkauc0c11742011-11-16 13:08:41 +0100862 prev_idle = sc->ps_idle;
863 sc->ps_idle = true;
864
865 spin_lock_bh(&sc->sc_pcu_lock);
866
Miaoqing Pan79d4db12016-03-07 10:38:17 +0800867 if (ah->led_pin >= 0)
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530868 ath9k_hw_set_gpio(ah, ah->led_pin,
869 (ah->config.led_active_high) ? 0 : 1);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100870
John W. Linville9ebea382013-01-28 13:54:03 -0500871 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100872
873 if (sc->rx.frag) {
874 dev_kfree_skb_any(sc->rx.frag);
875 sc->rx.frag = NULL;
876 }
877
878 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530879 ah->curchan = ath9k_cmn_get_channel(hw, ah,
880 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100881
882 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
Felix Fietkauef739ab2014-11-30 21:58:31 +0100883
884 set_bit(ATH_OP_INVALID, &common->op_flags);
885
Felix Fietkauc0c11742011-11-16 13:08:41 +0100886 ath9k_hw_phy_disable(ah);
887
888 ath9k_hw_configpcipowersave(ah, true);
889
890 spin_unlock_bh(&sc->sc_pcu_lock);
891
Sujith3867cf62009-12-23 20:03:27 -0500892 ath9k_ps_restore(sc);
893
Felix Fietkauc0c11742011-11-16 13:08:41 +0100894 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700895
Sujith141b38b2009-02-04 08:10:07 +0530896 mutex_unlock(&sc->mutex);
897
Joe Perchesd2182b62011-12-15 14:55:53 -0800898 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700899}
900
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200901static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700902{
Ben Greear48014162011-01-15 19:13:48 +0000903 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200904 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000905 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400906 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000907 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700908 default:
Ben Greear48014162011-01-15 19:13:48 +0000909 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700910 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700911}
912
Benjamin Bergcfda2d82016-07-04 14:37:25 +0200913static void ath9k_vif_iter_set_beacon(struct ath9k_vif_iter_data *iter_data,
914 struct ieee80211_vif *vif)
915{
916 /* Use the first (configured) interface, but prefering AP interfaces. */
917 if (!iter_data->primary_beacon_vif) {
918 iter_data->primary_beacon_vif = vif;
919 } else {
920 if (iter_data->primary_beacon_vif->type != NL80211_IFTYPE_AP &&
921 vif->type == NL80211_IFTYPE_AP)
922 iter_data->primary_beacon_vif = vif;
923 }
924
925 iter_data->beacons = true;
926 iter_data->nbcnvifs += 1;
927}
928
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530929static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
930 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000931{
Sujith Manoharancb355822014-09-17 14:45:56 +0530932 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Ben Greear48014162011-01-15 19:13:48 +0000933 int i;
934
Felix Fietkauab11bb22013-04-16 12:51:57 +0200935 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000936 for (i = 0; i < ETH_ALEN; i++)
937 iter_data->mask[i] &=
938 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200939 } else {
940 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
941 iter_data->has_hw_macaddr = true;
942 }
Ben Greear48014162011-01-15 19:13:48 +0000943
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530944 if (!vif->bss_conf.use_short_slot)
Benjamin Berg11b0ac22016-07-04 14:37:24 +0200945 iter_data->slottime = 20;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530946
Ben Greear48014162011-01-15 19:13:48 +0000947 switch (vif->type) {
948 case NL80211_IFTYPE_AP:
949 iter_data->naps++;
Benjamin Bergcfda2d82016-07-04 14:37:25 +0200950 if (vif->bss_conf.enable_beacon)
951 ath9k_vif_iter_set_beacon(iter_data, vif);
Ben Greear48014162011-01-15 19:13:48 +0000952 break;
953 case NL80211_IFTYPE_STATION:
954 iter_data->nstations++;
Sujith Manoharancb355822014-09-17 14:45:56 +0530955 if (avp->assoc && !iter_data->primary_sta)
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530956 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000957 break;
Jan Kaisrlik862a3362015-09-17 14:03:46 +0200958 case NL80211_IFTYPE_OCB:
959 iter_data->nocbs++;
960 break;
Ben Greear48014162011-01-15 19:13:48 +0000961 case NL80211_IFTYPE_ADHOC:
962 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530963 if (vif->bss_conf.enable_beacon)
Benjamin Bergcfda2d82016-07-04 14:37:25 +0200964 ath9k_vif_iter_set_beacon(iter_data, vif);
Ben Greear48014162011-01-15 19:13:48 +0000965 break;
966 case NL80211_IFTYPE_MESH_POINT:
967 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530968 if (vif->bss_conf.enable_beacon)
Benjamin Bergcfda2d82016-07-04 14:37:25 +0200969 ath9k_vif_iter_set_beacon(iter_data, vif);
Ben Greear48014162011-01-15 19:13:48 +0000970 break;
971 case NL80211_IFTYPE_WDS:
972 iter_data->nwds++;
973 break;
974 default:
Ben Greear48014162011-01-15 19:13:48 +0000975 break;
976 }
977}
978
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530979static void ath9k_update_bssid_mask(struct ath_softc *sc,
980 struct ath_chanctx *ctx,
981 struct ath9k_vif_iter_data *iter_data)
982{
983 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
984 struct ath_vif *avp;
985 int i;
986
987 if (!ath9k_is_chanctx_enabled())
988 return;
989
990 list_for_each_entry(avp, &ctx->vifs, list) {
991 if (ctx->nvifs_assigned != 1)
992 continue;
993
Kalle Valob9a96932015-11-27 09:37:14 +0100994 if (!iter_data->has_hw_macaddr)
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530995 continue;
996
997 ether_addr_copy(common->curbssid, avp->bssid);
998
999 /* perm_addr will be used as the p2p device address. */
1000 for (i = 0; i < ETH_ALEN; i++)
1001 iter_data->mask[i] &=
1002 ~(iter_data->hw_macaddr[i] ^
1003 sc->hw->wiphy->perm_addr[i]);
1004 }
1005}
1006
Ben Greear48014162011-01-15 19:13:48 +00001007/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301008void ath9k_calculate_iter_data(struct ath_softc *sc,
1009 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +00001010 struct ath9k_vif_iter_data *iter_data)
1011{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301012 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +00001013
1014 /*
Ben Greeardaad1662014-11-04 15:22:50 -08001015 * The hardware will use primary station addr together with the
1016 * BSSID mask when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +00001017 */
1018 memset(iter_data, 0, sizeof(*iter_data));
Joe Perches93803b32015-03-02 19:54:49 -08001019 eth_broadcast_addr(iter_data->mask);
Benjamin Berg11b0ac22016-07-04 14:37:24 +02001020 iter_data->slottime = 9;
Ben Greear48014162011-01-15 19:13:48 +00001021
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301022 list_for_each_entry(avp, &ctx->vifs, list)
1023 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301024
1025 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301026}
1027
1028static void ath9k_set_assoc_state(struct ath_softc *sc,
1029 struct ieee80211_vif *vif, bool changed)
1030{
1031 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharancb355822014-09-17 14:45:56 +05301032 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301033 unsigned long flags;
1034
1035 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301036
Sujith Manoharancb355822014-09-17 14:45:56 +05301037 ether_addr_copy(common->curbssid, avp->bssid);
1038 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301039 ath9k_hw_write_associd(sc->sc_ah);
1040
1041 if (changed) {
1042 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1043 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1044
1045 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1046 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1047 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1048 }
1049
1050 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1051 ath9k_mci_update_wlan_channels(sc, false);
1052
1053 ath_dbg(common, CONFIG,
1054 "Primary Station interface: %pM, BSSID: %pM\n",
1055 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001056}
1057
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301058#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1059static void ath9k_set_offchannel_state(struct ath_softc *sc)
1060{
1061 struct ath_hw *ah = sc->sc_ah;
1062 struct ath_common *common = ath9k_hw_common(ah);
1063 struct ieee80211_vif *vif = NULL;
1064
1065 ath9k_ps_wakeup(sc);
1066
1067 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1068 vif = sc->offchannel.scan_vif;
1069 else
1070 vif = sc->offchannel.roc_vif;
1071
1072 if (WARN_ON(!vif))
1073 goto exit;
1074
1075 eth_zero_addr(common->curbssid);
1076 eth_broadcast_addr(common->bssidmask);
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301077 memcpy(common->macaddr, vif->addr, ETH_ALEN);
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301078 common->curaid = 0;
1079 ah->opmode = vif->type;
1080 ah->imask &= ~ATH9K_INT_SWBA;
1081 ah->imask &= ~ATH9K_INT_TSFOOR;
Benjamin Berg11b0ac22016-07-04 14:37:24 +02001082 ah->slottime = 9;
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301083
1084 ath_hw_setbssidmask(common);
1085 ath9k_hw_setopmode(ah);
1086 ath9k_hw_write_associd(sc->sc_ah);
1087 ath9k_hw_set_interrupts(ah);
1088 ath9k_hw_init_global_settings(ah);
1089
1090exit:
1091 ath9k_ps_restore(sc);
1092}
1093#endif
1094
Ben Greear48014162011-01-15 19:13:48 +00001095/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301096void ath9k_calculate_summary_state(struct ath_softc *sc,
1097 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001098{
Ben Greear48014162011-01-15 19:13:48 +00001099 struct ath_hw *ah = sc->sc_ah;
1100 struct ath_common *common = ath9k_hw_common(ah);
1101 struct ath9k_vif_iter_data iter_data;
1102
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301103 ath_chanctx_check_active(sc, ctx);
1104
1105 if (ctx != sc->cur_chan)
1106 return;
1107
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301108#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1109 if (ctx == &sc->offchannel.chan)
1110 return ath9k_set_offchannel_state(sc);
1111#endif
1112
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301113 ath9k_ps_wakeup(sc);
1114 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1115
1116 if (iter_data.has_hw_macaddr)
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301117 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +00001118
Ben Greear48014162011-01-15 19:13:48 +00001119 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1120 ath_hw_setbssidmask(common);
1121
Ben Greear48014162011-01-15 19:13:48 +00001122 if (iter_data.naps > 0) {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301123 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001124 ah->opmode = NL80211_IFTYPE_AP;
1125 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301126 ath9k_hw_set_tsfadjust(ah, false);
Benjamin Bergcfda2d82016-07-04 14:37:25 +02001127 if (iter_data.beacons)
1128 ath9k_beacon_ensure_primary_slot(sc);
Ben Greear48014162011-01-15 19:13:48 +00001129
Javier Cardonafd5999c2011-05-03 16:57:19 -07001130 if (iter_data.nmeshes)
1131 ah->opmode = NL80211_IFTYPE_MESH_POINT;
Jan Kaisrlik862a3362015-09-17 14:03:46 +02001132 else if (iter_data.nocbs)
1133 ah->opmode = NL80211_IFTYPE_OCB;
Javier Cardonafd5999c2011-05-03 16:57:19 -07001134 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001135 ah->opmode = NL80211_IFTYPE_AP;
1136 else if (iter_data.nadhocs)
1137 ah->opmode = NL80211_IFTYPE_ADHOC;
1138 else
1139 ah->opmode = NL80211_IFTYPE_STATION;
1140 }
1141
Sujith Manoharandf35d292012-07-17 17:15:43 +05301142 ath9k_hw_setopmode(ah);
1143
Felix Fietkau748299f2014-06-11 16:18:04 +05301144 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001145 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001146 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301147 else {
Ben Greear48014162011-01-15 19:13:48 +00001148 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301149 if (iter_data.naps == 1 && iter_data.beacons)
1150 ctx->switch_after_beacon = true;
1151 }
Ben Greear48014162011-01-15 19:13:48 +00001152
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301153 if (ah->opmode == NL80211_IFTYPE_STATION) {
1154 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1155
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301156 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301157 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301158 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1159 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301160 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301161 } else {
1162 ctx->primary_sta = NULL;
Joe Perches93803b32015-03-02 19:54:49 -08001163 eth_zero_addr(common->curbssid);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301164 common->curaid = 0;
1165 ath9k_hw_write_associd(sc->sc_ah);
1166 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1167 ath9k_mci_update_wlan_channels(sc, true);
1168 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301169 }
Benjamin Bergcfda2d82016-07-04 14:37:25 +02001170 sc->nbcnvifs = iter_data.nbcnvifs;
1171 ath9k_beacon_config(sc, iter_data.primary_beacon_vif,
1172 iter_data.beacons);
Felix Fietkau72d874c2011-10-08 20:06:19 +02001173 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301174
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301175 if (ah->slottime != iter_data.slottime) {
1176 ah->slottime = iter_data.slottime;
1177 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301178 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301179
1180 if (iter_data.primary_sta)
1181 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1182 else
1183 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1184
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301185 ath_dbg(common, CONFIG,
1186 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1187 common->macaddr, common->curbssid, common->bssidmask);
1188
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301189 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001190}
1191
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001192static void ath9k_tpc_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
1193{
1194 int *power = (int *)data;
1195
1196 if (*power < vif->bss_conf.txpower)
1197 *power = vif->bss_conf.txpower;
1198}
1199
1200/* Called with sc->mutex held. */
1201void ath9k_set_txpower(struct ath_softc *sc, struct ieee80211_vif *vif)
1202{
1203 int power;
1204 struct ath_hw *ah = sc->sc_ah;
1205 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
1206
1207 ath9k_ps_wakeup(sc);
1208 if (ah->tpc_enabled) {
1209 power = (vif) ? vif->bss_conf.txpower : -1;
1210 ieee80211_iterate_active_interfaces_atomic(
1211 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1212 ath9k_tpc_vif_iter, &power);
1213 if (power == -1)
1214 power = sc->hw->conf.power_level;
1215 } else {
1216 power = sc->hw->conf.power_level;
1217 }
1218 sc->cur_chan->txpower = 2 * power;
1219 ath9k_hw_set_txpowerlimit(ah, sc->cur_chan->txpower, false);
1220 sc->cur_chan->cur_txpower = reg->max_power_level;
1221 ath9k_ps_restore(sc);
1222}
1223
Sujith Manoharana4027642014-09-05 09:50:55 +05301224static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1225 struct ieee80211_vif *vif)
1226{
1227 int i;
1228
Sujith Manoharan868caae2014-10-21 19:23:02 +05301229 if (!ath9k_is_chanctx_enabled())
1230 return;
1231
Sujith Manoharana4027642014-09-05 09:50:55 +05301232 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1233 vif->hw_queue[i] = i;
1234
Chun-Yeow Yeoh4b870c22014-11-12 16:40:19 +08001235 if (vif->type == NL80211_IFTYPE_AP ||
1236 vif->type == NL80211_IFTYPE_MESH_POINT)
Sujith Manoharana4027642014-09-05 09:50:55 +05301237 vif->cab_queue = hw->queues - 2;
1238 else
1239 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1240}
1241
Ben Greear48014162011-01-15 19:13:48 +00001242static int ath9k_add_interface(struct ieee80211_hw *hw,
1243 struct ieee80211_vif *vif)
1244{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001245 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001246 struct ath_hw *ah = sc->sc_ah;
1247 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001248 struct ath_vif *avp = (void *)vif->drv_priv;
1249 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001250
1251 mutex_lock(&sc->mutex);
1252
Masahiro Yamada97f26452016-08-03 13:45:50 -07001253 if (IS_ENABLED(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301254 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001255 mutex_unlock(&sc->mutex);
1256 return -EOPNOTSUPP;
1257 }
1258 sc->tx99_vif = vif;
1259 }
1260
Joe Perchesd2182b62011-12-15 14:55:53 -08001261 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301262 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001263
Kalle Valob9a96932015-11-27 09:37:14 +01001264 if (vif->type == NL80211_IFTYPE_STATION && ath9k_is_chanctx_enabled())
1265 vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
1266
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301267 if (ath9k_uses_beacons(vif->type))
1268 ath9k_beacon_assign_slot(sc, vif);
1269
Felix Fietkaud463af42014-04-06 00:37:03 +02001270 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301271 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301272 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301273 list_add_tail(&avp->list, &avp->chanctx->vifs);
1274 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301275
Ben Greeardaad1662014-11-04 15:22:50 -08001276 ath9k_calculate_summary_state(sc, avp->chanctx);
1277
Sujith Manoharana4027642014-09-05 09:50:55 +05301278 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301279
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001280 ath9k_set_txpower(sc, vif);
1281
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001282 an->sc = sc;
1283 an->sta = NULL;
1284 an->vif = vif;
1285 an->no_ps_filter = true;
1286 ath_tx_node_init(sc, an);
1287
Ben Greear48014162011-01-15 19:13:48 +00001288 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301289 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001290}
1291
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301292static int ath9k_change_interface(struct ieee80211_hw *hw,
1293 struct ieee80211_vif *vif,
1294 enum nl80211_iftype new_type,
1295 bool p2p)
1296{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001297 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301298 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301299 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301300
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301301 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001302
Masahiro Yamada97f26452016-08-03 13:45:50 -07001303 if (IS_ENABLED(CONFIG_ATH9K_TX99)) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001304 mutex_unlock(&sc->mutex);
1305 return -EOPNOTSUPP;
1306 }
1307
1308 ath_dbg(common, CONFIG, "Change Interface\n");
1309
Ben Greear48014162011-01-15 19:13:48 +00001310 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301311 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001312
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301313 vif->type = new_type;
1314 vif->p2p = p2p;
1315
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301316 if (ath9k_uses_beacons(vif->type))
1317 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301318
Sujith Manoharana4027642014-09-05 09:50:55 +05301319 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301320 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301321
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001322 ath9k_set_txpower(sc, vif);
1323
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301324 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301325 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301326}
1327
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001328static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001329 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001330{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001331 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001332 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001333 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001334
Joe Perchesd2182b62011-12-15 14:55:53 -08001335 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336
Sujith141b38b2009-02-04 08:10:07 +05301337 mutex_lock(&sc->mutex);
1338
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301339 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001340
Sujith Manoharanca529c92014-09-05 08:03:19 +05301341 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001342 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301343 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301344 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345
Ben Greear48014162011-01-15 19:13:48 +00001346 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301347 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001348
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001349 ath_tx_node_cleanup(sc, &avp->mcast_node);
1350
Ben Greeardaad1662014-11-04 15:22:50 -08001351 ath9k_calculate_summary_state(sc, avp->chanctx);
1352
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001353 ath9k_set_txpower(sc, NULL);
1354
Sujith141b38b2009-02-04 08:10:07 +05301355 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356}
1357
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301358static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301359{
Pavel Roskin30691682010-03-31 18:05:31 -04001360 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301361 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001362
Masahiro Yamada97f26452016-08-03 13:45:50 -07001363 if (IS_ENABLED(CONFIG_ATH9K_TX99))
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001364 return;
1365
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301366 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001367 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1368 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1369 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001370 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301371 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001372 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301373 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301374 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301375}
1376
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301377static void ath9k_disable_ps(struct ath_softc *sc)
1378{
1379 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301380 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301381
Masahiro Yamada97f26452016-08-03 13:45:50 -07001382 if (IS_ENABLED(CONFIG_ATH9K_TX99))
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001383 return;
1384
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301385 sc->ps_enabled = false;
1386 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1387 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1388 ath9k_hw_setrxabort(ah, 0);
1389 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1390 PS_WAIT_FOR_CAB |
1391 PS_WAIT_FOR_PSPOLL_DATA |
1392 PS_WAIT_FOR_TX_ACK);
1393 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1394 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001395 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301396 }
1397 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301398 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301399}
1400
Johannes Berge8975582008-10-09 12:18:51 +02001401static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001403 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001404 struct ath_hw *ah = sc->sc_ah;
1405 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001406 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301407 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001408
Felix Fietkauc0c11742011-11-16 13:08:41 +01001409 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301410 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301411
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001412 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001413 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301414 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001415 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301416 ath9k_stop_btcoex(sc);
1417 } else {
1418 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001419 /*
1420 * The chip needs a reset to properly wake up from
1421 * full sleep
1422 */
Felix Fietkau39305632014-06-11 16:17:57 +05301423 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301424 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001425 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001426
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001427 /*
1428 * We just prepare to enable PS. We have to wait until our AP has
1429 * ACK'd our null data frame to disable RX otherwise we'll ignore
1430 * those ACKs and end up retransmitting the same null data frames.
1431 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1432 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301433 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001434 unsigned long flags;
1435 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301436 if (conf->flags & IEEE80211_CONF_PS)
1437 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301438 else
1439 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001440 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301441 }
1442
Sujith199afd92010-01-08 10:36:13 +05301443 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1444 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001445 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301446 sc->sc_ah->is_monitoring = true;
1447 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001448 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301449 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301450 }
1451 }
1452
Sujith Manoharan499afac2014-08-22 20:39:31 +05301453 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301454 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301455 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301456 }
Sujith86b89ee2008-08-07 10:54:57 +05301457
Sujithaa33de02008-12-18 11:40:16 +05301458 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001459 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301460
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001461 return 0;
1462}
1463
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001464#define SUPPORTED_FILTERS \
Johannes Bergdf140462015-04-22 14:40:58 +02001465 (FIF_ALLMULTI | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001466 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001467 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468 FIF_OTHER_BSS | \
1469 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001470 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001471 FIF_FCSFAIL)
1472
Sujith7dcfdcd2008-08-11 14:03:13 +05301473/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001474static void ath9k_configure_filter(struct ieee80211_hw *hw,
1475 unsigned int changed_flags,
1476 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001477 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001478{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001479 struct ath_softc *sc = hw->priv;
Janusz.Dziedzic@tieto.comf3771c02015-07-21 11:11:42 +02001480 struct ath_chanctx *ctx;
Sujith7dcfdcd2008-08-11 14:03:13 +05301481 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482
1483 changed_flags &= SUPPORTED_FILTERS;
1484 *total_flags &= SUPPORTED_FILTERS;
1485
Sujith Manoharanfce34432014-09-05 08:03:18 +05301486 spin_lock_bh(&sc->chan_lock);
Janusz.Dziedzic@tieto.comf3771c02015-07-21 11:11:42 +02001487 ath_for_each_chanctx(sc, ctx)
1488 ctx->rxfilter = *total_flags;
Janusz.Dziedzic@tieto.com17382032015-07-21 11:11:43 +02001489#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1490 sc->offchannel.chan.rxfilter = *total_flags;
1491#endif
Sujith Manoharanfce34432014-09-05 08:03:18 +05301492 spin_unlock_bh(&sc->chan_lock);
1493
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001494 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301495 rfilt = ath_calcrxfilter(sc);
1496 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001497 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301498
Joe Perchesd2182b62011-12-15 14:55:53 -08001499 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1500 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001501}
1502
Johannes Berg4ca77862010-02-19 19:06:56 +01001503static int ath9k_sta_add(struct ieee80211_hw *hw,
1504 struct ieee80211_vif *vif,
1505 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001506{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001507 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001508 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1509 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1510 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001511 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512
Ben Greear7e1e3862011-11-03 11:33:13 -07001513 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001514
1515 if (vif->type != NL80211_IFTYPE_AP &&
1516 vif->type != NL80211_IFTYPE_AP_VLAN)
1517 return 0;
1518
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001519 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301520 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001521 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301522 an->key_idx[0] = key;
1523 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001524
1525 return 0;
1526}
1527
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001528static void ath9k_del_ps_key(struct ath_softc *sc,
1529 struct ieee80211_vif *vif,
1530 struct ieee80211_sta *sta)
1531{
1532 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1533 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1534 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1535
1536 if (!an->ps_key)
1537 return;
1538
1539 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001540 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301541 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001542}
1543
Johannes Berg4ca77862010-02-19 19:06:56 +01001544static int ath9k_sta_remove(struct ieee80211_hw *hw,
1545 struct ieee80211_vif *vif,
1546 struct ieee80211_sta *sta)
1547{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001548 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001549
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001550 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001551 ath_node_detach(sc, sta);
1552
1553 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554}
1555
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301556static int ath9k_sta_state(struct ieee80211_hw *hw,
1557 struct ieee80211_vif *vif,
1558 struct ieee80211_sta *sta,
1559 enum ieee80211_sta_state old_state,
1560 enum ieee80211_sta_state new_state)
1561{
1562 struct ath_softc *sc = hw->priv;
1563 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1564 int ret = 0;
1565
1566 if (old_state == IEEE80211_STA_AUTH &&
1567 new_state == IEEE80211_STA_ASSOC) {
1568 ret = ath9k_sta_add(hw, vif, sta);
1569 ath_dbg(common, CONFIG,
1570 "Add station: %pM\n", sta->addr);
1571 } else if (old_state == IEEE80211_STA_ASSOC &&
1572 new_state == IEEE80211_STA_AUTH) {
1573 ret = ath9k_sta_remove(hw, vif, sta);
1574 ath_dbg(common, CONFIG,
1575 "Remove station: %pM\n", sta->addr);
1576 }
1577
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301578 if (ath9k_is_chanctx_enabled()) {
Sujith Manoharan91e6ceb2014-10-17 07:40:19 +05301579 if (vif->type == NL80211_IFTYPE_STATION) {
1580 if (old_state == IEEE80211_STA_ASSOC &&
1581 new_state == IEEE80211_STA_AUTHORIZED)
1582 ath_chanctx_event(sc, vif,
1583 ATH_CHANCTX_EVENT_AUTHORIZED);
1584 }
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301585 }
1586
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301587 return ret;
1588}
1589
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301590static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1591 struct ath_node *an,
1592 bool set)
1593{
1594 int i;
1595
1596 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1597 if (!an->key_idx[i])
1598 continue;
1599 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1600 }
1601}
1602
Felix Fietkau55195412011-04-17 23:28:09 +02001603static void ath9k_sta_notify(struct ieee80211_hw *hw,
1604 struct ieee80211_vif *vif,
1605 enum sta_notify_cmd cmd,
1606 struct ieee80211_sta *sta)
1607{
1608 struct ath_softc *sc = hw->priv;
1609 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1610
1611 switch (cmd) {
1612 case STA_NOTIFY_SLEEP:
1613 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001614 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301615 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001616 break;
1617 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301618 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001619 an->sleeping = false;
1620 ath_tx_aggr_wakeup(sc, an);
1621 break;
1622 }
1623}
1624
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001625static int ath9k_conf_tx(struct ieee80211_hw *hw,
1626 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001627 const struct ieee80211_tx_queue_params *params)
1628{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001629 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001630 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001631 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301632 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001633 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001634
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301635 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636 return 0;
1637
Felix Fietkau066dae92010-11-07 14:59:39 +01001638 txq = sc->tx.txq_map[queue];
1639
Felix Fietkau96f372c2011-04-07 19:07:17 +02001640 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301641 mutex_lock(&sc->mutex);
1642
Sujith1ffb0612009-03-30 15:28:46 +05301643 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1644
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001645 qi.tqi_aifs = params->aifs;
1646 qi.tqi_cwmin = params->cw_min;
1647 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001648 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649
Joe Perchesd2182b62011-12-15 14:55:53 -08001650 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001651 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1652 queue, txq->axq_qnum, params->aifs, params->cw_min,
1653 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001654
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001655 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001656 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001657 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001658 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001659
Sujith141b38b2009-02-04 08:10:07 +05301660 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001661 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301662
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001663 return ret;
1664}
1665
1666static int ath9k_set_key(struct ieee80211_hw *hw,
1667 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001668 struct ieee80211_vif *vif,
1669 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001670 struct ieee80211_key_conf *key)
1671{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001672 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001673 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301674 struct ath_node *an = NULL;
1675 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001676
John W. Linville3e6109c2011-01-05 09:39:17 -05001677 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001678 return -ENOSPC;
1679
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001680 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1681 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001682 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1683 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1684 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1685 /*
1686 * For now, disable hw crypto for the RSN IBSS group keys. This
1687 * could be optimized in the future to use a modified key cache
1688 * design to support per-STA RX GTK, but until that gets
1689 * implemented, use of software crypto for group addressed
1690 * frames is a acceptable to allow RSN IBSS to be used.
1691 */
1692 return -EOPNOTSUPP;
1693 }
1694
Sujith141b38b2009-02-04 08:10:07 +05301695 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301696 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301697 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1698 if (sta)
1699 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001700
1701 switch (cmd) {
1702 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001703 if (sta)
1704 ath9k_del_ps_key(sc, vif, sta);
1705
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301706 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001707 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001708 if (ret >= 0) {
1709 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001710 /* push IV and Michael MIC generation to stack */
1711 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001712 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301713 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001714 if (sc->sc_ah->sw_mgmt_crypto_tx &&
Johannes Berg97359d12010-08-10 09:46:38 +02001715 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001716 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001717 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001718 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301719 if (an && key->hw_key_idx) {
1720 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1721 if (an->key_idx[i])
1722 continue;
1723 an->key_idx[i] = key->hw_key_idx;
1724 break;
1725 }
1726 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1727 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001728 break;
1729 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001730 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301731 if (an) {
1732 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1733 if (an->key_idx[i] != key->hw_key_idx)
1734 continue;
1735 an->key_idx[i] = 0;
1736 break;
1737 }
1738 }
1739 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001740 break;
1741 default:
1742 ret = -EINVAL;
1743 }
1744
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301745 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301746 mutex_unlock(&sc->mutex);
1747
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001748 return ret;
1749}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301750
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001751static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1752 struct ieee80211_vif *vif,
1753 struct ieee80211_bss_conf *bss_conf,
1754 u32 changed)
1755{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301756#define CHECK_ANI \
1757 (BSS_CHANGED_ASSOC | \
1758 BSS_CHANGED_IBSS | \
1759 BSS_CHANGED_BEACON_ENABLED)
1760
Felix Fietkau9ac58612011-01-24 19:23:18 +01001761 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001762 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001763 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001764 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001765 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766
Felix Fietkau96f372c2011-04-07 19:07:17 +02001767 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301768 mutex_lock(&sc->mutex);
1769
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301770 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301771 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1772 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301773
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301774 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Sujith Manoharancb355822014-09-17 14:45:56 +05301775 avp->aid = bss_conf->aid;
1776 avp->assoc = bss_conf->assoc;
1777
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301778 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001779 }
1780
Jan Kaisrlik862a3362015-09-17 14:03:46 +02001781 if ((changed & BSS_CHANGED_IBSS) ||
1782 (changed & BSS_CHANGED_OCB)) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301783 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1784 common->curaid = bss_conf->aid;
1785 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301786 }
1787
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301788 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301789 (changed & BSS_CHANGED_BEACON_INT) ||
1790 (changed & BSS_CHANGED_BEACON_INFO)) {
Benjamin Bergcfda2d82016-07-04 14:37:25 +02001791 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301792 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001793
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301794 if ((avp->chanctx == sc->cur_chan) &&
1795 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001796 if (bss_conf->use_short_slot)
1797 slottime = 9;
1798 else
1799 slottime = 20;
Benjamin Berg11b0ac22016-07-04 14:37:24 +02001800
Felix Fietkau0005baf2010-01-15 02:33:40 +01001801 if (vif->type == NL80211_IFTYPE_AP) {
1802 /*
1803 * Defer update, so that connected stations can adjust
1804 * their settings at the same time.
1805 * See beacon.c for more details
1806 */
1807 sc->beacon.slottime = slottime;
1808 sc->beacon.updateslot = UPDATE;
1809 } else {
1810 ah->slottime = slottime;
1811 ath9k_hw_init_global_settings(ah);
1812 }
1813 }
1814
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301815 if (changed & BSS_CHANGED_P2P_PS)
1816 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001817
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301818 if (changed & CHECK_ANI)
1819 ath_check_ani(sc);
1820
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001821 if (changed & BSS_CHANGED_TXPOWER) {
1822 ath_dbg(common, CONFIG, "vif %pM power %d dbm power_type %d\n",
1823 vif->addr, bss_conf->txpower, bss_conf->txpower_type);
1824 ath9k_set_txpower(sc, vif);
1825 }
1826
Sujith141b38b2009-02-04 08:10:07 +05301827 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001828 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301829
1830#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001831}
1832
Eliad Peller37a41b42011-09-21 14:06:11 +03001833static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001834{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001835 struct ath_softc *sc = hw->priv;
Benjamin Berg9580cb82016-07-04 14:37:21 +02001836 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001837 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001838
Sujith141b38b2009-02-04 08:10:07 +05301839 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301840 ath9k_ps_wakeup(sc);
Benjamin Berg9580cb82016-07-04 14:37:21 +02001841 /* Get current TSF either from HW or kernel time. */
1842 if (sc->cur_chan == avp->chanctx) {
1843 tsf = ath9k_hw_gettsf64(sc->sc_ah);
1844 } else {
1845 tsf = sc->cur_chan->tsf_val +
1846 ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts, NULL);
1847 }
Benjamin Berg7fde5122016-07-04 14:37:23 +02001848 tsf += le64_to_cpu(avp->tsf_adjust);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301849 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301850 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001851
1852 return tsf;
1853}
1854
Eliad Peller37a41b42011-09-21 14:06:11 +03001855static void ath9k_set_tsf(struct ieee80211_hw *hw,
1856 struct ieee80211_vif *vif,
1857 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001858{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001859 struct ath_softc *sc = hw->priv;
Benjamin Berg9580cb82016-07-04 14:37:21 +02001860 struct ath_vif *avp = (void *)vif->drv_priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001861
Sujith141b38b2009-02-04 08:10:07 +05301862 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301863 ath9k_ps_wakeup(sc);
Benjamin Berg7fde5122016-07-04 14:37:23 +02001864 tsf -= le64_to_cpu(avp->tsf_adjust);
Benjamin Berg9580cb82016-07-04 14:37:21 +02001865 getrawmonotonic(&avp->chanctx->tsf_ts);
1866 if (sc->cur_chan == avp->chanctx)
1867 ath9k_hw_settsf64(sc->sc_ah, tsf);
1868 avp->chanctx->tsf_val = tsf;
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301869 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301870 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001871}
1872
Eliad Peller37a41b42011-09-21 14:06:11 +03001873static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001874{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001875 struct ath_softc *sc = hw->priv;
Benjamin Berg9580cb82016-07-04 14:37:21 +02001876 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001877
Sujith141b38b2009-02-04 08:10:07 +05301878 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001879
1880 ath9k_ps_wakeup(sc);
Benjamin Berg9580cb82016-07-04 14:37:21 +02001881 getrawmonotonic(&avp->chanctx->tsf_ts);
1882 if (sc->cur_chan == avp->chanctx)
1883 ath9k_hw_reset_tsf(sc->sc_ah);
1884 avp->chanctx->tsf_val = 0;
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001885 ath9k_ps_restore(sc);
1886
Sujith141b38b2009-02-04 08:10:07 +05301887 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001888}
1889
1890static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001891 struct ieee80211_vif *vif,
Sara Sharon50ea05e2015-12-30 16:06:04 +02001892 struct ieee80211_ampdu_params *params)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001893{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001894 struct ath_softc *sc = hw->priv;
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301895 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau16e23422013-05-17 12:58:24 +02001896 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 int ret = 0;
Sara Sharon50ea05e2015-12-30 16:06:04 +02001898 struct ieee80211_sta *sta = params->sta;
1899 enum ieee80211_ampdu_mlme_action action = params->action;
1900 u16 tid = params->tid;
1901 u16 *ssn = &params->ssn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301903 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001904
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001905 switch (action) {
1906 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001907 break;
1908 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909 break;
1910 case IEEE80211_AMPDU_TX_START:
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301911 if (ath9k_is_chanctx_enabled()) {
1912 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
1913 ret = -EBUSY;
1914 break;
1915 }
1916 }
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001917 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001918 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1919 if (!ret)
1920 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001921 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001922 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001923 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1924 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001925 flush = true;
1926 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001927 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301928 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001929 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001930 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001931 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001932 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001933 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001934 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301935 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001936 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301937 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001938 default:
Joe Perches38002762010-12-02 19:12:36 -08001939 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940 }
1941
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301942 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001943
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001944 return ret;
1945}
1946
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001947static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1948 struct survey_info *survey)
1949{
Felix Fietkau9ac58612011-01-24 19:23:18 +01001950 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001951 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001952 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001953 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001954 int pos;
1955
Masahiro Yamada97f26452016-08-03 13:45:50 -07001956 if (IS_ENABLED(CONFIG_ATH9K_TX99))
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001957 return -EOPNOTSUPP;
1958
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301959 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001960 if (idx == 0)
1961 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001962
Johannes Berg57fbcce2016-04-12 15:56:15 +02001963 sband = hw->wiphy->bands[NL80211_BAND_2GHZ];
Felix Fietkau39162db2010-09-29 19:12:06 +02001964 if (sband && idx >= sband->n_channels) {
1965 idx -= sband->n_channels;
1966 sband = NULL;
1967 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001968
Felix Fietkau39162db2010-09-29 19:12:06 +02001969 if (!sband)
Johannes Berg57fbcce2016-04-12 15:56:15 +02001970 sband = hw->wiphy->bands[NL80211_BAND_5GHZ];
Felix Fietkau39162db2010-09-29 19:12:06 +02001971
Felix Fietkau34300982010-10-10 18:21:52 +02001972 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301973 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001974 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001975 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001976
Felix Fietkau34300982010-10-10 18:21:52 +02001977 chan = &sband->channels[idx];
1978 pos = chan->hw_value;
1979 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1980 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301981 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001982
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001983 return 0;
1984}
1985
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001986static void ath9k_enable_dynack(struct ath_softc *sc)
1987{
1988#ifdef CONFIG_ATH9K_DYNACK
1989 u32 rfilt;
1990 struct ath_hw *ah = sc->sc_ah;
1991
1992 ath_dynack_reset(ah);
1993
1994 ah->dynack.enabled = true;
1995 rfilt = ath_calcrxfilter(sc);
1996 ath9k_hw_setrxfilter(ah, rfilt);
1997#endif
1998}
1999
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02002000static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
2001 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01002002{
Felix Fietkau9ac58612011-01-24 19:23:18 +01002003 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01002004 struct ath_hw *ah = sc->sc_ah;
2005
Masahiro Yamada97f26452016-08-03 13:45:50 -07002006 if (IS_ENABLED(CONFIG_ATH9K_TX99))
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07002007 return;
2008
Felix Fietkaue239d852010-01-15 02:34:58 +01002009 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05302010
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02002011 if (coverage_class >= 0) {
2012 ah->coverage_class = coverage_class;
2013 if (ah->dynack.enabled) {
2014 u32 rfilt;
2015
2016 ah->dynack.enabled = false;
2017 rfilt = ath_calcrxfilter(sc);
2018 ath9k_hw_setrxfilter(ah, rfilt);
2019 }
2020 ath9k_ps_wakeup(sc);
2021 ath9k_hw_init_global_settings(ah);
2022 ath9k_ps_restore(sc);
2023 } else if (!ah->dynack.enabled) {
2024 ath9k_enable_dynack(sc);
2025 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05302026
Felix Fietkaue239d852010-01-15 02:34:58 +01002027 mutex_unlock(&sc->mutex);
2028}
2029
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302030static bool ath9k_has_tx_pending(struct ath_softc *sc,
2031 bool sw_pending)
Felix Fietkau10e23182013-11-11 22:23:35 +01002032{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01002033 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01002034
2035 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2036 if (!ATH_TXQ_SETUP(sc, i))
2037 continue;
2038
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302039 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
2040 sw_pending);
Felix Fietkau10e23182013-11-11 22:23:35 +01002041 if (npend)
2042 break;
2043 }
2044
2045 return !!npend;
2046}
2047
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002048static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2049 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002050{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002051 struct ath_softc *sc = hw->priv;
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302052 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkaubff11762014-06-11 16:17:52 +05302053
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302054 if (ath9k_is_chanctx_enabled()) {
2055 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2056 goto flush;
2057
2058 /*
2059 * If MCC is active, extend the flush timeout
2060 * and wait for the HW/SW queues to become
2061 * empty. This needs to be done outside the
2062 * sc->mutex lock to allow the channel scheduler
2063 * to switch channel contexts.
2064 *
2065 * The vif queues have been stopped in mac80211,
2066 * so there won't be any incoming frames.
2067 */
2068 __ath9k_flush(hw, queues, drop, true, true);
2069 return;
2070 }
2071flush:
Felix Fietkaubff11762014-06-11 16:17:52 +05302072 mutex_lock(&sc->mutex);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302073 __ath9k_flush(hw, queues, drop, true, false);
Felix Fietkaubff11762014-06-11 16:17:52 +05302074 mutex_unlock(&sc->mutex);
2075}
2076
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302077void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302078 bool sw_pending, bool timeout_override)
Felix Fietkaubff11762014-06-11 16:17:52 +05302079{
2080 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302081 struct ath_hw *ah = sc->sc_ah;
2082 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302083 int timeout;
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302084 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002085
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002086 cancel_delayed_work_sync(&sc->tx_complete_work);
2087
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302088 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002089 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302090 return;
2091 }
2092
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002093 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002094 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302095 return;
2096 }
2097
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302098 spin_lock_bh(&sc->chan_lock);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302099 if (timeout_override)
2100 timeout = HZ / 5;
2101 else
2102 timeout = sc->cur_chan->flush_timeout;
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302103 spin_unlock_bh(&sc->chan_lock);
2104
2105 ath_dbg(common, CHAN_CTX,
2106 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2107
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302108 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
Felix Fietkau10e23182013-11-11 22:23:35 +01002109 timeout) > 0)
2110 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002111
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002112 if (drop) {
2113 ath9k_ps_wakeup(sc);
2114 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002115 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002116 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002117
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002118 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302119 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002120
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002121 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002122 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302123
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002124 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002125}
2126
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302127static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2128{
2129 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302130
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302131 return ath9k_has_tx_pending(sc, true);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302132}
2133
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302134static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002135{
2136 struct ath_softc *sc = hw->priv;
2137 struct ath_hw *ah = sc->sc_ah;
2138 struct ieee80211_vif *vif;
2139 struct ath_vif *avp;
2140 struct ath_buf *bf;
2141 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002142 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002143 int status;
2144
2145 vif = sc->beacon.bslot[0];
2146 if (!vif)
2147 return 0;
2148
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302149 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002150 return 0;
2151
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302152 avp = (void *)vif->drv_priv;
2153
Felix Fietkau4286df62012-02-27 19:58:40 +01002154 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002155 tasklet_disable(&sc->bcon_tasklet);
2156
2157 bf = avp->av_bcbuf;
2158 if (!bf || !bf->bf_mpdu)
2159 goto skip;
2160
2161 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2162 if (status == -EINPROGRESS)
2163 goto skip;
2164
2165 sc->beacon.tx_processed = true;
2166 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2167
2168skip:
2169 tasklet_enable(&sc->bcon_tasklet);
2170 }
2171
2172 return sc->beacon.tx_last;
2173}
2174
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302175static int ath9k_get_stats(struct ieee80211_hw *hw,
2176 struct ieee80211_low_level_stats *stats)
2177{
2178 struct ath_softc *sc = hw->priv;
2179 struct ath_hw *ah = sc->sc_ah;
2180 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2181
2182 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2183 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2184 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2185 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2186 return 0;
2187}
2188
Felix Fietkau43c35282011-09-03 01:40:27 +02002189static u32 fill_chainmask(u32 cap, u32 new)
2190{
2191 u32 filled = 0;
2192 int i;
2193
2194 for (i = 0; cap && new; i++, cap >>= 1) {
2195 if (!(cap & BIT(0)))
2196 continue;
2197
2198 if (new & BIT(0))
2199 filled |= BIT(i);
2200
2201 new >>= 1;
2202 }
2203
2204 return filled;
2205}
2206
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002207static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2208{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002209 if (AR_SREV_9300_20_OR_LATER(ah))
2210 return true;
2211
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002212 switch (val & 0x7) {
2213 case 0x1:
2214 case 0x3:
2215 case 0x7:
2216 return true;
2217 case 0x2:
2218 return (ah->caps.rx_chainmask == 1);
2219 default:
2220 return false;
2221 }
2222}
2223
Felix Fietkau43c35282011-09-03 01:40:27 +02002224static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2225{
2226 struct ath_softc *sc = hw->priv;
2227 struct ath_hw *ah = sc->sc_ah;
2228
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002229 if (ah->caps.rx_chainmask != 1)
2230 rx_ant |= tx_ant;
2231
2232 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002233 return -EINVAL;
2234
2235 sc->ant_rx = rx_ant;
2236 sc->ant_tx = tx_ant;
2237
2238 if (ah->caps.rx_chainmask == 1)
2239 return 0;
2240
2241 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2242 if (AR_SREV_9100(ah))
2243 ah->rxchainmask = 0x7;
2244 else
2245 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2246
2247 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002248 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002249
2250 return 0;
2251}
2252
2253static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2254{
2255 struct ath_softc *sc = hw->priv;
2256
2257 *tx_ant = sc->ant_tx;
2258 *rx_ant = sc->ant_rx;
2259 return 0;
2260}
2261
Johannes Berga344d672014-06-12 22:24:31 +02002262static void ath9k_sw_scan_start(struct ieee80211_hw *hw,
2263 struct ieee80211_vif *vif,
2264 const u8 *mac_addr)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002265{
2266 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002267 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2268 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002269}
2270
Johannes Berga344d672014-06-12 22:24:31 +02002271static void ath9k_sw_scan_complete(struct ieee80211_hw *hw,
2272 struct ieee80211_vif *vif)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002273{
2274 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002275 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2276 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002277}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302278
Sujith Manoharan499afac2014-08-22 20:39:31 +05302279#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2280
Sujith Manoharan61856722014-11-16 06:11:07 +05302281static void ath9k_cancel_pending_offchannel(struct ath_softc *sc)
2282{
2283 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2284
2285 if (sc->offchannel.roc_vif) {
2286 ath_dbg(common, CHAN_CTX,
2287 "%s: Aborting RoC\n", __func__);
2288
2289 del_timer_sync(&sc->offchannel.timer);
2290 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
Janusz.Dziedzic@tieto.comd83520b2015-07-21 11:11:41 +02002291 ath_roc_complete(sc, ATH_ROC_COMPLETE_ABORT);
Sujith Manoharan61856722014-11-16 06:11:07 +05302292 }
2293
2294 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
2295 ath_dbg(common, CHAN_CTX,
2296 "%s: Aborting HW scan\n", __func__);
2297
2298 del_timer_sync(&sc->offchannel.timer);
2299 ath_scan_complete(sc, true);
2300 }
2301}
2302
Felix Fietkau78b21942014-06-11 16:17:55 +05302303static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002304 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302305{
John W. Linville855df362014-06-25 15:15:14 -04002306 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302307 struct ath_softc *sc = hw->priv;
2308 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2309 int ret = 0;
2310
2311 mutex_lock(&sc->mutex);
2312
2313 if (WARN_ON(sc->offchannel.scan_req)) {
2314 ret = -EBUSY;
2315 goto out;
2316 }
2317
2318 ath9k_ps_wakeup(sc);
2319 set_bit(ATH_OP_SCANNING, &common->op_flags);
2320 sc->offchannel.scan_vif = vif;
2321 sc->offchannel.scan_req = req;
2322 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302323
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302324 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2325 vif->addr);
2326
2327 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2328 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302329 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302330 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302331
2332out:
2333 mutex_unlock(&sc->mutex);
2334
2335 return ret;
2336}
2337
2338static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2339 struct ieee80211_vif *vif)
2340{
2341 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302342 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2343
2344 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302345
2346 mutex_lock(&sc->mutex);
2347 del_timer_sync(&sc->offchannel.timer);
2348 ath_scan_complete(sc, true);
2349 mutex_unlock(&sc->mutex);
2350}
2351
Felix Fietkau405393c2014-06-11 16:17:56 +05302352static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2353 struct ieee80211_vif *vif,
2354 struct ieee80211_channel *chan, int duration,
2355 enum ieee80211_roc_type type)
2356{
2357 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302358 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302359 int ret = 0;
2360
2361 mutex_lock(&sc->mutex);
2362
2363 if (WARN_ON(sc->offchannel.roc_vif)) {
2364 ret = -EBUSY;
2365 goto out;
2366 }
2367
2368 ath9k_ps_wakeup(sc);
2369 sc->offchannel.roc_vif = vif;
2370 sc->offchannel.roc_chan = chan;
2371 sc->offchannel.roc_duration = duration;
2372
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302373 ath_dbg(common, CHAN_CTX,
2374 "RoC request on vif: %pM, type: %d duration: %d\n",
2375 vif->addr, type, duration);
2376
2377 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2378 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302379 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302380 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302381
2382out:
2383 mutex_unlock(&sc->mutex);
2384
2385 return ret;
2386}
2387
2388static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2389{
2390 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302391 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302392
2393 mutex_lock(&sc->mutex);
2394
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302395 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302396 del_timer_sync(&sc->offchannel.timer);
2397
2398 if (sc->offchannel.roc_vif) {
2399 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
Janusz.Dziedzic@tieto.comd83520b2015-07-21 11:11:41 +02002400 ath_roc_complete(sc, ATH_ROC_COMPLETE_CANCEL);
Felix Fietkau405393c2014-06-11 16:17:56 +05302401 }
2402
2403 mutex_unlock(&sc->mutex);
2404
2405 return 0;
2406}
2407
Felix Fietkau39305632014-06-11 16:17:57 +05302408static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2409 struct ieee80211_chanctx_conf *conf)
2410{
2411 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302412 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302413 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302414 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302415
2416 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302417
2418 ath_for_each_chanctx(sc, ctx) {
2419 if (ctx->assigned)
2420 continue;
2421
2422 ptr = (void *) conf->drv_priv;
2423 *ptr = ctx;
2424 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302425 pos = ctx - &sc->chanctx[0];
2426 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302427
2428 ath_dbg(common, CHAN_CTX,
2429 "Add channel context: %d MHz\n",
2430 conf->def.chan->center_freq);
2431
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302432 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302433
Felix Fietkau39305632014-06-11 16:17:57 +05302434 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302435 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302436 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302437
Felix Fietkau39305632014-06-11 16:17:57 +05302438 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302439 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302440}
2441
2442
2443static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2444 struct ieee80211_chanctx_conf *conf)
2445{
2446 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302447 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302448 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2449
2450 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302451
2452 ath_dbg(common, CHAN_CTX,
2453 "Remove channel context: %d MHz\n",
2454 conf->def.chan->center_freq);
2455
Felix Fietkau39305632014-06-11 16:17:57 +05302456 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302457 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302458 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302459
Felix Fietkau39305632014-06-11 16:17:57 +05302460 mutex_unlock(&sc->mutex);
2461}
2462
2463static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2464 struct ieee80211_chanctx_conf *conf,
2465 u32 changed)
2466{
2467 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302468 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302469 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2470
2471 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302472 ath_dbg(common, CHAN_CTX,
2473 "Change channel context: %d MHz\n",
2474 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302475 ath_chanctx_set_channel(sc, ctx, &conf->def);
2476 mutex_unlock(&sc->mutex);
2477}
2478
2479static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2480 struct ieee80211_vif *vif,
2481 struct ieee80211_chanctx_conf *conf)
2482{
2483 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302484 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302485 struct ath_vif *avp = (void *)vif->drv_priv;
2486 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302487 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302488
Sujith Manoharan61856722014-11-16 06:11:07 +05302489 ath9k_cancel_pending_offchannel(sc);
2490
Felix Fietkau39305632014-06-11 16:17:57 +05302491 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302492
2493 ath_dbg(common, CHAN_CTX,
2494 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2495 vif->addr, vif->type, vif->p2p,
2496 conf->def.chan->center_freq);
2497
Felix Fietkau39305632014-06-11 16:17:57 +05302498 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302499 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302500 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302501 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302502 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2503 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302504
Felix Fietkau39305632014-06-11 16:17:57 +05302505 mutex_unlock(&sc->mutex);
2506
2507 return 0;
2508}
2509
2510static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2511 struct ieee80211_vif *vif,
2512 struct ieee80211_chanctx_conf *conf)
2513{
2514 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302515 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302516 struct ath_vif *avp = (void *)vif->drv_priv;
2517 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302518 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302519
Sujith Manoharan61856722014-11-16 06:11:07 +05302520 ath9k_cancel_pending_offchannel(sc);
2521
Felix Fietkau39305632014-06-11 16:17:57 +05302522 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302523
2524 ath_dbg(common, CHAN_CTX,
2525 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2526 vif->addr, vif->type, vif->p2p,
2527 conf->def.chan->center_freq);
2528
Felix Fietkau39305632014-06-11 16:17:57 +05302529 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302530 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302531 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302532 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302533 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2534 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302535
Felix Fietkau39305632014-06-11 16:17:57 +05302536 mutex_unlock(&sc->mutex);
2537}
2538
Sujith Manoharane20a8542014-08-23 13:29:09 +05302539static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2540 struct ieee80211_vif *vif)
2541{
2542 struct ath_softc *sc = hw->priv;
2543 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2544 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302545 struct ath_beacon_config *cur_conf;
2546 struct ath_chanctx *go_ctx;
2547 unsigned long timeout;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302548 bool changed = false;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302549 u32 beacon_int;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302550
2551 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2552 return;
2553
2554 if (!avp->chanctx)
2555 return;
2556
2557 mutex_lock(&sc->mutex);
2558
2559 spin_lock_bh(&sc->chan_lock);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302560 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
Sujith Manoharane20a8542014-08-23 13:29:09 +05302561 changed = true;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302562 spin_unlock_bh(&sc->chan_lock);
2563
2564 if (!changed)
2565 goto out;
2566
Sujith Manoharan61856722014-11-16 06:11:07 +05302567 ath9k_cancel_pending_offchannel(sc);
Sujith Manoharan23aab0c2014-10-17 07:40:28 +05302568
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302569 go_ctx = ath_is_go_chanctx_present(sc);
2570
2571 if (go_ctx) {
2572 /*
2573 * Wait till the GO interface gets a chance
2574 * to send out an NoA.
2575 */
2576 spin_lock_bh(&sc->chan_lock);
2577 sc->sched.mgd_prepare_tx = true;
2578 cur_conf = &go_ctx->beacon;
2579 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2580 spin_unlock_bh(&sc->chan_lock);
2581
Sujith Manoharan61856722014-11-16 06:11:07 +05302582 timeout = usecs_to_jiffies(beacon_int * 2);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302583 init_completion(&sc->go_beacon);
2584
Sujith Manoharan61856722014-11-16 06:11:07 +05302585 mutex_unlock(&sc->mutex);
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302586
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302587 if (wait_for_completion_timeout(&sc->go_beacon,
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302588 timeout) == 0) {
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302589 ath_dbg(common, CHAN_CTX,
2590 "Failed to send new NoA\n");
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302591
2592 spin_lock_bh(&sc->chan_lock);
2593 sc->sched.mgd_prepare_tx = false;
2594 spin_unlock_bh(&sc->chan_lock);
2595 }
2596
Sujith Manoharan61856722014-11-16 06:11:07 +05302597 mutex_lock(&sc->mutex);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302598 }
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302599
Sujith Manoharan878066e2014-08-27 12:07:24 +05302600 ath_dbg(common, CHAN_CTX,
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302601 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2602 __func__, vif->addr);
2603
2604 spin_lock_bh(&sc->chan_lock);
2605 sc->next_chan = avp->chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302606 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2607 spin_unlock_bh(&sc->chan_lock);
2608
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302609 ath_chanctx_set_next(sc, true);
2610out:
Sujith Manoharane20a8542014-08-23 13:29:09 +05302611 mutex_unlock(&sc->mutex);
2612}
2613
Felix Fietkau78b21942014-06-11 16:17:55 +05302614void ath9k_fill_chanctx_ops(void)
2615{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302616 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302617 return;
2618
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302619 ath9k_ops.hw_scan = ath9k_hw_scan;
2620 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2621 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302622 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302623 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2624 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2625 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2626 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2627 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302628 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302629}
2630
Sujith Manoharan499afac2014-08-22 20:39:31 +05302631#endif
2632
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002633static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2634 int *dbm)
2635{
2636 struct ath_softc *sc = hw->priv;
2637 struct ath_vif *avp = (void *)vif->drv_priv;
2638
2639 mutex_lock(&sc->mutex);
2640 if (avp->chanctx)
2641 *dbm = avp->chanctx->cur_txpower;
2642 else
2643 *dbm = sc->cur_chan->cur_txpower;
2644 mutex_unlock(&sc->mutex);
2645
2646 *dbm /= 2;
2647
2648 return 0;
2649}
2650
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002651struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002652 .tx = ath9k_tx,
2653 .start = ath9k_start,
2654 .stop = ath9k_stop,
2655 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302656 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002657 .remove_interface = ath9k_remove_interface,
2658 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002659 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302660 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002661 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002662 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002663 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002664 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002665 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002666 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002667 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002668 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002669 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302670 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002671 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002672 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302673 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302674 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002675 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302676 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002677 .set_antenna = ath9k_set_antenna,
2678 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002679
Sujith Manoharane60001e2013-10-28 12:22:04 +05302680#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302681 .suspend = ath9k_suspend,
2682 .resume = ath9k_resume,
2683 .set_wakeup = ath9k_set_wakeup,
2684#endif
2685
Ben Greearb90bd9d2012-05-15 15:33:25 -07002686#ifdef CONFIG_ATH9K_DEBUGFS
2687 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302688 .get_et_stats = ath9k_get_et_stats,
2689 .get_et_strings = ath9k_get_et_strings,
2690#endif
2691
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302692#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302693 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002694#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002695 .sw_scan_start = ath9k_sw_scan_start,
2696 .sw_scan_complete = ath9k_sw_scan_complete,
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002697 .get_txpower = ath9k_get_txpower,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002698};