blob: 9e10434dbfa5a5d9ad4af4e08a4fa01e7266ca84 [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
Sujith Manoharan6dcc3442012-07-17 17:16:36 +053022static void ath9k_set_assoc_state(struct ath_softc *sc,
23 struct ieee80211_vif *vif);
24
Sven Eckelmann313eb872012-06-25 07:15:22 +020025u8 ath9k_parse_mpdudensity(u8 mpdudensity)
Sujithff37e332008-11-24 12:07:55 +053026{
27 /*
28 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
29 * 0 for no restriction
30 * 1 for 1/4 us
31 * 2 for 1/2 us
32 * 3 for 1 us
33 * 4 for 2 us
34 * 5 for 4 us
35 * 6 for 8 us
36 * 7 for 16 us
37 */
38 switch (mpdudensity) {
39 case 0:
40 return 0;
41 case 1:
42 case 2:
43 case 3:
44 /* Our lower layer calculations limit our precision to
45 1 microsecond */
46 return 1;
47 case 4:
48 return 2;
49 case 5:
50 return 4;
51 case 6:
52 return 8;
53 case 7:
54 return 16;
55 default:
56 return 0;
57 }
58}
59
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080060static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq)
61{
62 bool pending = false;
63
64 spin_lock_bh(&txq->axq_lock);
65
Felix Fietkau04535312014-06-11 16:17:51 +053066 if (txq->axq_depth)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080067 pending = true;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080068
Felix Fietkau04535312014-06-11 16:17:51 +053069 if (txq->mac80211_qnum >= 0) {
70 struct list_head *list;
71
72 list = &sc->cur_chan->acq[txq->mac80211_qnum];
73 if (!list_empty(list))
74 pending = true;
75 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080076 spin_unlock_bh(&txq->axq_lock);
77 return pending;
78}
79
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053080static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070081{
82 unsigned long flags;
83 bool ret;
84
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070085 spin_lock_irqsave(&sc->sc_pm_lock, flags);
86 ret = ath9k_hw_setpower(sc->sc_ah, mode);
87 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070088
89 return ret;
90}
91
Felix Fietkaubf3dac52013-11-11 22:23:33 +010092void ath_ps_full_sleep(unsigned long data)
93{
94 struct ath_softc *sc = (struct ath_softc *) data;
95 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
96 bool reset;
97
98 spin_lock(&common->cc_lock);
99 ath_hw_cycle_counters_update(common);
100 spin_unlock(&common->cc_lock);
101
102 ath9k_hw_setrxabort(sc->sc_ah, 1);
103 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
104
105 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
106}
107
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700108void ath9k_ps_wakeup(struct ath_softc *sc)
109{
Felix Fietkau898c9142010-10-12 14:02:53 +0200110 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700111 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100112 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700113
114 spin_lock_irqsave(&sc->sc_pm_lock, flags);
115 if (++sc->ps_usecount != 1)
116 goto unlock;
117
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100118 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100119 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700120 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700121
Felix Fietkau898c9142010-10-12 14:02:53 +0200122 /*
123 * While the hardware is asleep, the cycle counters contain no
124 * useful data. Better clear them now so that they don't mess up
125 * survey data results.
126 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100127 if (power_mode != ATH9K_PM_AWAKE) {
128 spin_lock(&common->cc_lock);
129 ath_hw_cycle_counters_update(common);
130 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530131 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100132 spin_unlock(&common->cc_lock);
133 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200134
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700135 unlock:
136 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
137}
138
139void ath9k_ps_restore(struct ath_softc *sc)
140{
Felix Fietkau898c9142010-10-12 14:02:53 +0200141 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200142 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700143 unsigned long flags;
144
145 spin_lock_irqsave(&sc->sc_pm_lock, flags);
146 if (--sc->ps_usecount != 0)
147 goto unlock;
148
Sujith Manoharanad128862012-04-24 10:23:20 +0530149 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100150 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
151 goto unlock;
152 }
153
154 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530155 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
156 PS_WAIT_FOR_CAB |
157 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530158 PS_WAIT_FOR_TX_ACK |
159 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200160 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530161 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
162 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530163 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200164 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530165 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200166
167 spin_lock(&common->cc_lock);
168 ath_hw_cycle_counters_update(common);
169 spin_unlock(&common->cc_lock);
170
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600171 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700172
173 unlock:
174 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
175}
176
Felix Fietkau9adcf442011-09-03 01:40:26 +0200177static void __ath_cancel_work(struct ath_softc *sc)
178{
179 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200180 cancel_delayed_work_sync(&sc->tx_complete_work);
181 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530182
Sujith Manoharanbf525922012-06-27 14:15:59 +0530183#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530184 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
185 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530186#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200187}
188
Sujith Manoharane60001e2013-10-28 12:22:04 +0530189void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200190{
191 __ath_cancel_work(sc);
192 cancel_work_sync(&sc->hw_reset_work);
193}
194
Sujith Manoharane60001e2013-10-28 12:22:04 +0530195void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530196{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530197 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
198
Sujith Manoharan19c36162013-08-20 10:05:59 +0530199 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530200 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
201 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
202
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530203 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530204}
205
John W. Linville9ebea382013-01-28 13:54:03 -0500206static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200207{
208 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200209 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200210
211 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530212 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200213 ath9k_hw_disable_interrupts(ah);
214
Felix Fietkau13815592013-01-20 18:51:53 +0100215 if (!ath_drain_all_txq(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200216 ret = false;
217
Felix Fietkau0a62acb2013-01-20 18:51:52 +0100218 if (!ath_stoprecv(sc))
Felix Fietkauceea2a52012-05-24 14:32:19 +0200219 ret = false;
220
Felix Fietkau9adcf442011-09-03 01:40:26 +0200221 return ret;
222}
223
224static bool ath_complete_reset(struct ath_softc *sc, bool start)
225{
226 struct ath_hw *ah = sc->sc_ah;
227 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530228 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200229
230 if (ath_startrecv(sc) != 0) {
231 ath_err(common, "Unable to restart recv logic\n");
232 return false;
233 }
234
235 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530236 sc->cur_chan->txpower, &sc->curtxpow);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530237
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100238 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200239 ath9k_hw_set_interrupts(ah);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200240 ath9k_hw_enable_interrupts(ah);
241
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530242 if (!sc->cur_chan->offchannel && start) {
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100243 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530244 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200245
Sujith Manoharan196fb862012-06-04 20:24:13 +0530246 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100247 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530248 spin_lock_irqsave(&sc->sc_pm_lock, flags);
249 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
250 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530251 } else {
252 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530253 }
254 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530255 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530256 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200257 }
258
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530259 sc->gtt_cnt = 0;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200260 ieee80211_wake_queues(sc->hw);
261
Felix Fietkaud463af42014-04-06 00:37:03 +0200262 ath9k_p2p_ps_timer(sc);
263
Felix Fietkau9adcf442011-09-03 01:40:26 +0200264 return true;
265}
266
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530267int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200268{
269 struct ath_hw *ah = sc->sc_ah;
270 struct ath_common *common = ath9k_hw_common(ah);
271 struct ath9k_hw_cal_data *caldata = NULL;
272 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200273 int r;
274
275 __ath_cancel_work(sc);
276
Felix Fietkau4668cce2013-01-14 16:56:46 +0100277 tasklet_disable(&sc->intr_tq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200278 spin_lock_bh(&sc->sc_pcu_lock);
279
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530280 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200281 fastcc = false;
282 caldata = &sc->caldata;
283 }
284
285 if (!hchan) {
286 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200287 hchan = ah->curchan;
288 }
289
John W. Linville9ebea382013-01-28 13:54:03 -0500290 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200291 fastcc = false;
292
Felix Fietkaubff11762014-06-11 16:17:52 +0530293 if (hchan) {
294 spin_lock_bh(&sc->chan_lock);
295 sc->cur_chandef = sc->cur_chan->chandef;
296 spin_unlock_bh(&sc->chan_lock);
297 }
298
Joe Perchesd2182b62011-12-15 14:55:53 -0800299 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530300 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200301
302 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
303 if (r) {
304 ath_err(common,
305 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400306
307 ath9k_hw_enable_interrupts(ah);
308 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
309
Felix Fietkau9adcf442011-09-03 01:40:26 +0200310 goto out;
311 }
312
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530313 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530314 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530315 ath9k_mci_set_txpower(sc, true, false);
316
Felix Fietkau9adcf442011-09-03 01:40:26 +0200317 if (!ath_complete_reset(sc, true))
318 r = -EIO;
319
320out:
321 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100322 tasklet_enable(&sc->intr_tq);
323
Felix Fietkau9adcf442011-09-03 01:40:26 +0200324 return r;
325}
326
Ben Greear7e1e3862011-11-03 11:33:13 -0700327static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
328 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530329{
330 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530331 an = (struct ath_node *)sta->drv_priv;
332
Sujith Manoharana145daf2012-11-28 15:08:54 +0530333 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800334 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700335 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530336 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530337
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530338 ath_tx_node_init(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530339}
340
341static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
342{
343 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530344 ath_tx_node_cleanup(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530345}
346
Sujith55624202010-01-08 10:36:02 +0530347void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530348{
349 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700350 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700351 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530352 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530353 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530354 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400355 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530356
Felix Fietkaue3927002011-09-14 21:23:01 +0200357 ath9k_ps_wakeup(sc);
358 spin_lock(&sc->sc_pcu_lock);
359
Sujith Manoharan6549a862013-12-24 10:44:24 +0530360 if (status & ATH9K_INT_FATAL) {
361 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530362 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530363
364 /*
365 * Increment the ref. counter here so that
366 * interrupts are enabled in the reset routine.
367 */
368 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100369 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200370 goto out;
Sujithff37e332008-11-24 12:07:55 +0530371 }
372
Sujith Manoharan6549a862013-12-24 10:44:24 +0530373 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
374 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530375 spin_lock(&common->cc_lock);
376 ath_hw_cycle_counters_update(common);
377 ar9003_hw_bb_watchdog_dbg_info(ah);
378 spin_unlock(&common->cc_lock);
379
Sujith Manoharan6549a862013-12-24 10:44:24 +0530380 if (ar9003_hw_bb_watchdog_check(ah)) {
381 type = RESET_TYPE_BB_WATCHDOG;
382 ath9k_queue_reset(sc, type);
383
384 /*
385 * Increment the ref. counter here so that
386 * interrupts are enabled in the reset routine.
387 */
388 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100389 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530390 "BB_WATCHDOG: Skipping interrupts\n");
391 goto out;
392 }
393 }
394
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530395 if (status & ATH9K_INT_GTT) {
396 sc->gtt_cnt++;
397
398 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
399 type = RESET_TYPE_TX_GTT;
400 ath9k_queue_reset(sc, type);
401 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100402 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530403 "GTT: Skipping interrupts\n");
404 goto out;
405 }
406 }
407
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530408 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530409 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
410 /*
411 * TSF sync does not look correct; remain awake to sync with
412 * the next Beacon.
413 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800414 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530415 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530416 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530417 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530418
Felix Fietkaub5c804752010-04-15 17:38:48 -0400419 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
420 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
421 ATH9K_INT_RXORN);
422 else
423 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
424
425 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400426 /* Check for high priority Rx first */
427 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
428 (status & ATH9K_INT_RXHP))
429 ath_rx_tasklet(sc, 0, true);
430
431 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530432 }
433
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400434 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530435 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
436 /*
437 * For EDMA chips, TX completion is enabled for the
438 * beacon queue, so if a beacon has been transmitted
439 * successfully after a GTT interrupt, the GTT counter
440 * gets reset to zero here.
441 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530442 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530443
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400444 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530445 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400446 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530447 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100448
449 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400450 }
Sujith063d8be2009-03-30 15:28:49 +0530451
Felix Fietkauc67ce332013-12-14 18:03:38 +0100452 if (status & ATH9K_INT_GENTIMER)
453 ath_gen_timer_isr(sc->sc_ah);
454
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530455 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530456
Sujithff37e332008-11-24 12:07:55 +0530457 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100458 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530459out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530460 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400461 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530462}
463
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100464irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530465{
Sujith063d8be2009-03-30 15:28:49 +0530466#define SCHED_INTR ( \
467 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530468 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530469 ATH9K_INT_RXORN | \
470 ATH9K_INT_RXEOL | \
471 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400472 ATH9K_INT_RXLP | \
473 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530474 ATH9K_INT_TX | \
475 ATH9K_INT_BMISS | \
476 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530477 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530478 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530479 ATH9K_INT_GENTIMER | \
480 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530481
Sujithff37e332008-11-24 12:07:55 +0530482 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530483 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100484 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530485 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530486 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530487 bool sched = false;
488
Sujith063d8be2009-03-30 15:28:49 +0530489 /*
490 * The hardware is not ready/present, don't
491 * touch anything. Note this can happen early
492 * on if the IRQ is shared.
493 */
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100494 if (test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530495 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530496
Sujith063d8be2009-03-30 15:28:49 +0530497 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530498
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400499 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530500 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530501
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100502 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200503 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530504 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200505 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530506
Sujith063d8be2009-03-30 15:28:49 +0530507 /*
508 * Figure out the reason(s) for the interrupt. Note
509 * that the hal returns a pseudo-ISR that may include
510 * bits we haven't explicitly enabled so we mask the
511 * value to insure we only process bits we requested.
512 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100513 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
514 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400515 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530516
517 /*
518 * If there are no status bits set, then this interrupt was not
519 * for me (should have been caught above).
520 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400521 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530522 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530523
524 /* Cache the status */
525 sc->intrstatus = status;
526
527 if (status & SCHED_INTR)
528 sched = true;
529
530 /*
531 * If a FATAL or RXORN interrupt is received, we have to reset the
532 * chip immediately.
533 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400534 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
535 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
Sujith063d8be2009-03-30 15:28:49 +0530536 goto chip_reset;
537
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530538 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530539 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400540 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530541
542#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530543 if (status & ATH9K_INT_BMISS) {
544 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530545 atomic_inc(&sc->wow_got_bmiss_intr);
546 atomic_dec(&sc->wow_sleep_proc_intr);
547 }
548 }
549#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530550
Sujith063d8be2009-03-30 15:28:49 +0530551 if (status & ATH9K_INT_SWBA)
552 tasklet_schedule(&sc->bcon_tasklet);
553
554 if (status & ATH9K_INT_TXURN)
555 ath9k_hw_updatetxtriglevel(ah, true);
556
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530557 if (status & ATH9K_INT_RXEOL) {
558 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200559 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400560 }
561
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400562 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
563 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800564 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
565 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530566 /* Clear RxAbort bit so that we can
567 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700568 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530569 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400570 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530571 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530572 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530573 }
Sujith063d8be2009-03-30 15:28:49 +0530574
575chip_reset:
576
Sujith817e11d2008-12-07 21:42:44 +0530577 ath_debug_stat_interrupt(sc, status);
578
Sujithff37e332008-11-24 12:07:55 +0530579 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100580 /* turn off every interrupt */
581 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530582 tasklet_schedule(&sc->intr_tq);
583 }
584
585 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530586
587#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530588}
589
Sujith Manoharanef6b19e2013-10-24 12:04:39 +0530590int ath_reset(struct ath_softc *sc)
Sujithff37e332008-11-24 12:07:55 +0530591{
Felix Fietkauec303262013-10-05 14:09:30 +0200592 int r;
Sujithff37e332008-11-24 12:07:55 +0530593
Felix Fietkau783cd012011-01-21 18:52:38 +0100594 ath9k_ps_wakeup(sc);
Felix Fietkau13815592013-01-20 18:51:53 +0100595 r = ath_reset_internal(sc, NULL);
Felix Fietkau783cd012011-01-21 18:52:38 +0100596 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530597
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800598 return r;
Sujithff37e332008-11-24 12:07:55 +0530599}
600
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530601void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
602{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100603 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530604#ifdef CONFIG_ATH9K_DEBUGFS
605 RESET_STAT_INC(sc, type);
606#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100607 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530608 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
609}
610
Felix Fietkau236de512011-09-03 01:40:25 +0200611void ath_reset_work(struct work_struct *work)
612{
613 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
614
Felix Fietkau13815592013-01-20 18:51:53 +0100615 ath_reset(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200616}
617
Sujithff37e332008-11-24 12:07:55 +0530618/**********************/
619/* mac80211 callbacks */
620/**********************/
621
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622static int ath9k_start(struct ieee80211_hw *hw)
623{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100624 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700625 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700626 struct ath_common *common = ath9k_hw_common(ah);
Karl Beldan675a0b02013-03-25 16:26:57 +0100627 struct ieee80211_channel *curchan = hw->conf.chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530628 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530629 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530630 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
Joe Perchesd2182b62011-12-15 14:55:53 -0800632 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800633 "Starting driver with initial channel: %d MHz\n",
634 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635
Felix Fietkauf62d8162011-03-25 17:43:41 +0100636 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530637 mutex_lock(&sc->mutex);
638
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530639 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530640 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641
Sujithff37e332008-11-24 12:07:55 +0530642 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200643 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530644
645 /*
646 * The basic interface to setting the hardware in a good
647 * state is ``reset''. On return the hardware is known to
648 * be powered up and with interrupts disabled. This must
649 * be followed by initialization of the appropriate bits
650 * and then setup of the interrupt mask.
651 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700652 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100653
654 atomic_set(&ah->intr_ref_cnt, -1);
655
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200656 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800657 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800658 ath_err(common,
659 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
660 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200661 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662 }
Sujithff37e332008-11-24 12:07:55 +0530663
Sujithff37e332008-11-24 12:07:55 +0530664 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400665 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
666 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
667 ATH9K_INT_GLOBAL;
668
669 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400670 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530671 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400672 else
673 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530674
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530675 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
676 ah->imask |= ATH9K_INT_BB_WATCHDOG;
677
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530678 /*
679 * Enable GTT interrupts only for AR9003/AR9004 chips
680 * for now.
681 */
682 if (AR_SREV_9300_20_OR_LATER(ah))
683 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530684
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700685 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400686 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530687
Sujith Manoharane270e772012-06-04 16:27:19 +0530688 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530689
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100690 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530691 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530692
Felix Fietkauceb26a62012-10-03 21:07:51 +0200693 if (!ath_complete_reset(sc, false))
694 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700695
Felix Fietkauc0c11742011-11-16 13:08:41 +0100696 if (ah->led_pin >= 0) {
697 ath9k_hw_cfg_output(ah, ah->led_pin,
698 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
699 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
700 }
701
702 /*
703 * Reset key cache to sane defaults (all entries cleared) instead of
704 * semi-random values after suspend/resume.
705 */
706 ath9k_cmn_init_crypto(sc->sc_ah);
707
Felix Fietkaua35051c2013-12-14 18:03:45 +0100708 ath9k_hw_reset_tsf(ah);
709
Felix Fietkau9adcf442011-09-03 01:40:26 +0200710 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400711
Sujith141b38b2009-02-04 08:10:07 +0530712 mutex_unlock(&sc->mutex);
713
Felix Fietkauf62d8162011-03-25 17:43:41 +0100714 ath9k_ps_restore(sc);
715
Felix Fietkauceb26a62012-10-03 21:07:51 +0200716 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717}
718
Thomas Huehn36323f82012-07-23 21:33:42 +0200719static void ath9k_tx(struct ieee80211_hw *hw,
720 struct ieee80211_tx_control *control,
721 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100723 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700724 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530725 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100726 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530727 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530728
Gabor Juhos96148322009-07-24 17:27:21 +0200729 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300730 /*
731 * mac80211 does not set PM field for normal data frames, so we
732 * need to update that based on the current PS mode.
733 */
734 if (ieee80211_is_data(hdr->frame_control) &&
735 !ieee80211_is_nullfunc(hdr->frame_control) &&
736 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800737 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800738 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300739 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
740 }
741 }
742
Sujith Manoharanad128862012-04-24 10:23:20 +0530743 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300744 /*
745 * We are using PS-Poll and mac80211 can request TX while in
746 * power save mode. Need to wake up hardware for the TX to be
747 * completed and if needed, also for RX of buffered frames.
748 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300749 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530750 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700751 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
752 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300753 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800754 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800755 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530756 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300757 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800758 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530759 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300760 }
761 /*
762 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530763 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300764 * the ps_usecount here.
765 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530766 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300767 ath9k_ps_restore(sc);
768 }
769
Sujith Manoharanad128862012-04-24 10:23:20 +0530770 /*
771 * Cannot tx while the hardware is in full sleep, it first needs a full
772 * chip reset to recover from that
773 */
774 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
775 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
776 goto exit;
777 }
778
Sujith528f0c62008-10-29 10:14:26 +0530779 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100780 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200781 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530782
Joe Perchesd2182b62011-12-15 14:55:53 -0800783 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200785 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800786 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700787 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530788 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 }
790
Johannes Berg7bb45682011-02-24 14:42:06 +0100791 return;
Sujith528f0c62008-10-29 10:14:26 +0530792exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200793 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794}
795
796static void ath9k_stop(struct ieee80211_hw *hw)
797{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100798 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700799 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700800 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100801 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530802
Felix Fietkaubff11762014-06-11 16:17:52 +0530803 cancel_work_sync(&sc->chanctx_work);
Sujith4c483812009-08-18 10:51:52 +0530804 mutex_lock(&sc->mutex);
805
Felix Fietkau9adcf442011-09-03 01:40:26 +0200806 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700807
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100808 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800809 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530810 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530811 return;
812 }
813
Sujith3867cf62009-12-23 20:03:27 -0500814 /* Ensure HW is awake when we try to shut it down. */
815 ath9k_ps_wakeup(sc);
816
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700817 spin_lock_bh(&sc->sc_pcu_lock);
818
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100819 /* prevent tasklets to enable interrupts once we disable them */
820 ah->imask &= ~ATH9K_INT_GLOBAL;
821
Sujithff37e332008-11-24 12:07:55 +0530822 /* make sure h/w will not generate any interrupt
823 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100824 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530825
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700826 spin_unlock_bh(&sc->sc_pcu_lock);
827
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100828 /* we can now sync irq and kill any running tasklets, since we already
829 * disabled interrupts and not holding a spin lock */
830 synchronize_irq(sc->irq);
831 tasklet_kill(&sc->intr_tq);
832 tasklet_kill(&sc->bcon_tasklet);
833
Felix Fietkauc0c11742011-11-16 13:08:41 +0100834 prev_idle = sc->ps_idle;
835 sc->ps_idle = true;
836
837 spin_lock_bh(&sc->sc_pcu_lock);
838
839 if (ah->led_pin >= 0) {
840 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
841 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
842 }
843
John W. Linville9ebea382013-01-28 13:54:03 -0500844 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100845
846 if (sc->rx.frag) {
847 dev_kfree_skb_any(sc->rx.frag);
848 sc->rx.frag = NULL;
849 }
850
851 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530852 ah->curchan = ath9k_cmn_get_channel(hw, ah,
853 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100854
855 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
856 ath9k_hw_phy_disable(ah);
857
858 ath9k_hw_configpcipowersave(ah, true);
859
860 spin_unlock_bh(&sc->sc_pcu_lock);
861
Sujith3867cf62009-12-23 20:03:27 -0500862 ath9k_ps_restore(sc);
863
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100864 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100865 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700866
Sujith141b38b2009-02-04 08:10:07 +0530867 mutex_unlock(&sc->mutex);
868
Joe Perchesd2182b62011-12-15 14:55:53 -0800869 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870}
871
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200872static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873{
Ben Greear48014162011-01-15 19:13:48 +0000874 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200875 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000876 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400877 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000878 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700879 default:
Ben Greear48014162011-01-15 19:13:48 +0000880 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700881 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700882}
883
Ben Greear48014162011-01-15 19:13:48 +0000884static void ath9k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
885{
886 struct ath9k_vif_iter_data *iter_data = data;
887 int i;
888
Felix Fietkauab11bb22013-04-16 12:51:57 +0200889 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000890 for (i = 0; i < ETH_ALEN; i++)
891 iter_data->mask[i] &=
892 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200893 } else {
894 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
895 iter_data->has_hw_macaddr = true;
896 }
Ben Greear48014162011-01-15 19:13:48 +0000897
898 switch (vif->type) {
899 case NL80211_IFTYPE_AP:
900 iter_data->naps++;
901 break;
902 case NL80211_IFTYPE_STATION:
903 iter_data->nstations++;
904 break;
905 case NL80211_IFTYPE_ADHOC:
906 iter_data->nadhocs++;
907 break;
908 case NL80211_IFTYPE_MESH_POINT:
909 iter_data->nmeshes++;
910 break;
911 case NL80211_IFTYPE_WDS:
912 iter_data->nwds++;
913 break;
914 default:
Ben Greear48014162011-01-15 19:13:48 +0000915 break;
916 }
917}
918
Sujith Manoharan6dcc3442012-07-17 17:16:36 +0530919static void ath9k_sta_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
920{
921 struct ath_softc *sc = data;
922 struct ath_vif *avp = (void *)vif->drv_priv;
923
924 if (vif->type != NL80211_IFTYPE_STATION)
925 return;
926
927 if (avp->primary_sta_vif)
928 ath9k_set_assoc_state(sc, vif);
929}
930
Ben Greear48014162011-01-15 19:13:48 +0000931/* Called with sc->mutex held. */
932void ath9k_calculate_iter_data(struct ieee80211_hw *hw,
933 struct ieee80211_vif *vif,
934 struct ath9k_vif_iter_data *iter_data)
935{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100936 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +0000937 struct ath_hw *ah = sc->sc_ah;
938 struct ath_common *common = ath9k_hw_common(ah);
Ben Greear48014162011-01-15 19:13:48 +0000939
940 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100941 * Pick the MAC address of the first interface as the new hardware
942 * MAC address. The hardware will use it together with the BSSID mask
943 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000944 */
945 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +0000946 memset(&iter_data->mask, 0xff, ETH_ALEN);
947
948 if (vif)
949 ath9k_vif_iter(iter_data, vif->addr, vif);
950
951 /* Get list of all active MAC addresses */
Johannes Berg8b2c9822012-11-06 20:23:30 +0100952 ieee80211_iterate_active_interfaces_atomic(
953 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
954 ath9k_vif_iter, iter_data);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200955
956 memcpy(common->macaddr, iter_data->hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +0000957}
958
959/* Called with sc->mutex held. */
960static void ath9k_calculate_summary_state(struct ieee80211_hw *hw,
961 struct ieee80211_vif *vif)
962{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100963 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +0000964 struct ath_hw *ah = sc->sc_ah;
965 struct ath_common *common = ath9k_hw_common(ah);
966 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan6dcc3442012-07-17 17:16:36 +0530967 enum nl80211_iftype old_opmode = ah->opmode;
Ben Greear48014162011-01-15 19:13:48 +0000968
969 ath9k_calculate_iter_data(hw, vif, &iter_data);
970
Ben Greear48014162011-01-15 19:13:48 +0000971 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
972 ath_hw_setbssidmask(common);
973
Ben Greear48014162011-01-15 19:13:48 +0000974 if (iter_data.naps > 0) {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +0530975 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +0000976 ah->opmode = NL80211_IFTYPE_AP;
977 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +0530978 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +0000979
Javier Cardonafd5999c2011-05-03 16:57:19 -0700980 if (iter_data.nmeshes)
981 ah->opmode = NL80211_IFTYPE_MESH_POINT;
982 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +0000983 ah->opmode = NL80211_IFTYPE_AP;
984 else if (iter_data.nadhocs)
985 ah->opmode = NL80211_IFTYPE_ADHOC;
986 else
987 ah->opmode = NL80211_IFTYPE_STATION;
988 }
989
Sujith Manoharandf35d292012-07-17 17:15:43 +0530990 ath9k_hw_setopmode(ah);
991
Felix Fietkau198823f2012-06-15 15:25:25 +0200992 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +0000993 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau198823f2012-06-15 15:25:25 +0200994 else
Ben Greear48014162011-01-15 19:13:48 +0000995 ah->imask &= ~ATH9K_INT_TSFOOR;
Ben Greear48014162011-01-15 19:13:48 +0000996
Felix Fietkau72d874c2011-10-08 20:06:19 +0200997 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +0530998
999 /*
1000 * If we are changing the opmode to STATION,
1001 * a beacon sync needs to be done.
1002 */
1003 if (ah->opmode == NL80211_IFTYPE_STATION &&
1004 old_opmode == NL80211_IFTYPE_AP &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001005 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Johannes Berg8b2c9822012-11-06 20:23:30 +01001006 ieee80211_iterate_active_interfaces_atomic(
1007 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1008 ath9k_sta_vif_iter, sc);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301009 }
Ben Greear48014162011-01-15 19:13:48 +00001010}
1011
Ben Greear48014162011-01-15 19:13:48 +00001012static int ath9k_add_interface(struct ieee80211_hw *hw,
1013 struct ieee80211_vif *vif)
1014{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001015 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001016 struct ath_hw *ah = sc->sc_ah;
1017 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001018 struct ath_vif *avp = (void *)vif->drv_priv;
1019 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001020
1021 mutex_lock(&sc->mutex);
1022
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001023 if (config_enabled(CONFIG_ATH9K_TX99)) {
1024 if (sc->nvifs >= 1) {
1025 mutex_unlock(&sc->mutex);
1026 return -EOPNOTSUPP;
1027 }
1028 sc->tx99_vif = vif;
1029 }
1030
Joe Perchesd2182b62011-12-15 14:55:53 -08001031 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Ben Greear48014162011-01-15 19:13:48 +00001032 sc->nvifs++;
1033
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301034 ath9k_ps_wakeup(sc);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301035 ath9k_calculate_summary_state(hw, vif);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301036 ath9k_ps_restore(sc);
1037
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301038 if (ath9k_uses_beacons(vif->type))
1039 ath9k_beacon_assign_slot(sc, vif);
1040
Felix Fietkaud463af42014-04-06 00:37:03 +02001041 avp->vif = vif;
1042
Felix Fietkau04535312014-06-11 16:17:51 +05301043 /* XXX - will be removed once chanctx ops are added */
1044 avp->chanctx = sc->cur_chan;
1045 list_add_tail(&avp->list, &sc->cur_chan->vifs);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301046 ath_chanctx_check_active(sc, avp->chanctx);
Felix Fietkau04535312014-06-11 16:17:51 +05301047
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001048 an->sc = sc;
1049 an->sta = NULL;
1050 an->vif = vif;
1051 an->no_ps_filter = true;
1052 ath_tx_node_init(sc, an);
1053
Ben Greear48014162011-01-15 19:13:48 +00001054 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301055 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001056}
1057
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301058static int ath9k_change_interface(struct ieee80211_hw *hw,
1059 struct ieee80211_vif *vif,
1060 enum nl80211_iftype new_type,
1061 bool p2p)
1062{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001063 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301064 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301065 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301066
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301067 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001068
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001069 if (config_enabled(CONFIG_ATH9K_TX99)) {
1070 mutex_unlock(&sc->mutex);
1071 return -EOPNOTSUPP;
1072 }
1073
1074 ath_dbg(common, CONFIG, "Change Interface\n");
1075
Ben Greear48014162011-01-15 19:13:48 +00001076 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301077 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001078
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301079 vif->type = new_type;
1080 vif->p2p = p2p;
1081
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301082 ath9k_ps_wakeup(sc);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301083 ath9k_calculate_summary_state(hw, vif);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301084 ath9k_ps_restore(sc);
1085
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301086 if (ath9k_uses_beacons(vif->type))
1087 ath9k_beacon_assign_slot(sc, vif);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301088 ath_chanctx_check_active(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301089
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301090 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301091 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301092}
1093
Felix Fietkaud463af42014-04-06 00:37:03 +02001094static void
1095ath9k_update_p2p_ps_timer(struct ath_softc *sc, struct ath_vif *avp)
1096{
1097 struct ath_hw *ah = sc->sc_ah;
1098 s32 tsf, target_tsf;
1099
1100 if (!avp || !avp->noa.has_next_tsf)
1101 return;
1102
1103 ath9k_hw_gen_timer_stop(ah, sc->p2p_ps_timer);
1104
1105 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1106
1107 target_tsf = avp->noa.next_tsf;
1108 if (!avp->noa.absent)
1109 target_tsf -= ATH_P2P_PS_STOP_TIME;
1110
1111 if (target_tsf - tsf < ATH_P2P_PS_STOP_TIME)
1112 target_tsf = tsf + ATH_P2P_PS_STOP_TIME;
1113
1114 ath9k_hw_gen_timer_start(ah, sc->p2p_ps_timer, (u32) target_tsf, 1000000);
1115}
1116
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001117static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001118 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001119{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001120 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001121 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001122 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001123
Joe Perchesd2182b62011-12-15 14:55:53 -08001124 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001125
Sujith141b38b2009-02-04 08:10:07 +05301126 mutex_lock(&sc->mutex);
1127
Felix Fietkaud463af42014-04-06 00:37:03 +02001128 spin_lock_bh(&sc->sc_pcu_lock);
1129 if (avp == sc->p2p_ps_vif) {
1130 sc->p2p_ps_vif = NULL;
1131 ath9k_update_p2p_ps_timer(sc, NULL);
1132 }
1133 spin_unlock_bh(&sc->sc_pcu_lock);
1134
Felix Fietkau04535312014-06-11 16:17:51 +05301135 list_del(&avp->list);
Ben Greear48014162011-01-15 19:13:48 +00001136 sc->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001137 sc->tx99_vif = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001138
Ben Greear48014162011-01-15 19:13:48 +00001139 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301140 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001141
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301142 ath9k_ps_wakeup(sc);
Ben Greear48014162011-01-15 19:13:48 +00001143 ath9k_calculate_summary_state(hw, NULL);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301144 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301145
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001146 ath_tx_node_cleanup(sc, &avp->mcast_node);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301147 ath_chanctx_check_active(sc, avp->chanctx);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001148
Sujith141b38b2009-02-04 08:10:07 +05301149 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001150}
1151
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301152static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301153{
Pavel Roskin30691682010-03-31 18:05:31 -04001154 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301155 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001156
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001157 if (config_enabled(CONFIG_ATH9K_TX99))
1158 return;
1159
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301160 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001161 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1162 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1163 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001164 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301165 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001166 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301167 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301168 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301169}
1170
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301171static void ath9k_disable_ps(struct ath_softc *sc)
1172{
1173 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301174 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301175
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001176 if (config_enabled(CONFIG_ATH9K_TX99))
1177 return;
1178
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301179 sc->ps_enabled = false;
1180 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1181 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1182 ath9k_hw_setrxabort(ah, 0);
1183 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1184 PS_WAIT_FOR_CAB |
1185 PS_WAIT_FOR_PSPOLL_DATA |
1186 PS_WAIT_FOR_TX_ACK);
1187 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1188 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001189 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301190 }
1191 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301192 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301193}
1194
Simon Wunderliche93d0832013-01-08 14:48:58 +01001195void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1196{
1197 struct ath_softc *sc = hw->priv;
1198 struct ath_hw *ah = sc->sc_ah;
1199 struct ath_common *common = ath9k_hw_common(ah);
1200 u32 rxfilter;
1201
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001202 if (config_enabled(CONFIG_ATH9K_TX99))
1203 return;
1204
Simon Wunderliche93d0832013-01-08 14:48:58 +01001205 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1206 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1207 return;
1208 }
1209
1210 ath9k_ps_wakeup(sc);
1211 rxfilter = ath9k_hw_getrxfilter(ah);
1212 ath9k_hw_setrxfilter(ah, rxfilter |
1213 ATH9K_RX_FILTER_PHYRADAR |
1214 ATH9K_RX_FILTER_PHYERR);
1215
1216 /* TODO: usually this should not be neccesary, but for some reason
1217 * (or in some mode?) the trigger must be called after the
1218 * configuration, otherwise the register will have its values reset
1219 * (on my ar9220 to value 0x01002310)
1220 */
1221 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1222 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1223 ath9k_ps_restore(sc);
1224}
1225
1226int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1227 enum spectral_mode spectral_mode)
1228{
1229 struct ath_softc *sc = hw->priv;
1230 struct ath_hw *ah = sc->sc_ah;
1231 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001232
1233 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1234 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1235 return -1;
1236 }
1237
Simon Wunderliche93d0832013-01-08 14:48:58 +01001238 switch (spectral_mode) {
1239 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001240 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001241 break;
1242 case SPECTRAL_BACKGROUND:
1243 /* send endless samples.
1244 * TODO: is this really useful for "background"?
1245 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001246 sc->spec_config.endless = 1;
1247 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001248 break;
1249 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001250 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001251 sc->spec_config.endless = 0;
1252 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001253 break;
1254 default:
1255 return -1;
1256 }
1257
1258 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001259 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001260 ath9k_ps_restore(sc);
1261
1262 sc->spectral_mode = spectral_mode;
1263
1264 return 0;
1265}
1266
Johannes Berge8975582008-10-09 12:18:51 +02001267static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001268{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001269 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001270 struct ath_hw *ah = sc->sc_ah;
1271 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001272 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301273 struct ath_chanctx *ctx = sc->cur_chan;
Felix Fietkau75600ab2012-04-12 20:36:31 +02001274 bool reset_channel = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001275
Felix Fietkauc0c11742011-11-16 13:08:41 +01001276 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301277 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301278
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001279 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001280 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301281 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001282 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301283 ath9k_stop_btcoex(sc);
1284 } else {
1285 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001286 /*
1287 * The chip needs a reset to properly wake up from
1288 * full sleep
1289 */
1290 reset_channel = ah->chip_fullsleep;
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301291 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001292 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001293
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001294 /*
1295 * We just prepare to enable PS. We have to wait until our AP has
1296 * ACK'd our null data frame to disable RX otherwise we'll ignore
1297 * those ACKs and end up retransmitting the same null data frames.
1298 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1299 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301300 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001301 unsigned long flags;
1302 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301303 if (conf->flags & IEEE80211_CONF_PS)
1304 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301305 else
1306 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001307 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301308 }
1309
Sujith199afd92010-01-08 10:36:13 +05301310 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1311 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001312 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301313 sc->sc_ah->is_monitoring = true;
1314 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001315 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301316 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301317 }
1318 }
1319
Felix Fietkau75600ab2012-04-12 20:36:31 +02001320 if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) || reset_channel) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301321 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301322 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301323 }
Sujith86b89ee2008-08-07 10:54:57 +05301324
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001325 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001326 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301327 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301328 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301329 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001330 }
1331
Sujithaa33de02008-12-18 11:40:16 +05301332 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001333 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301334
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001335 return 0;
1336}
1337
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338#define SUPPORTED_FILTERS \
1339 (FIF_PROMISC_IN_BSS | \
1340 FIF_ALLMULTI | \
1341 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001342 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343 FIF_OTHER_BSS | \
1344 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001345 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 FIF_FCSFAIL)
1347
Sujith7dcfdcd2008-08-11 14:03:13 +05301348/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001349static void ath9k_configure_filter(struct ieee80211_hw *hw,
1350 unsigned int changed_flags,
1351 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001352 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001354 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301355 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356
1357 changed_flags &= SUPPORTED_FILTERS;
1358 *total_flags &= SUPPORTED_FILTERS;
1359
Sujithb77f4832008-12-07 21:44:03 +05301360 sc->rx.rxfilter = *total_flags;
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001361 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301362 rfilt = ath_calcrxfilter(sc);
1363 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001364 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301365
Joe Perchesd2182b62011-12-15 14:55:53 -08001366 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1367 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001368}
1369
Johannes Berg4ca77862010-02-19 19:06:56 +01001370static int ath9k_sta_add(struct ieee80211_hw *hw,
1371 struct ieee80211_vif *vif,
1372 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001373{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001374 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001375 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1376 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1377 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001378 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001379
Ben Greear7e1e3862011-11-03 11:33:13 -07001380 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001381
1382 if (vif->type != NL80211_IFTYPE_AP &&
1383 vif->type != NL80211_IFTYPE_AP_VLAN)
1384 return 0;
1385
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001386 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301387 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001388 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301389 an->key_idx[0] = key;
1390 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001391
1392 return 0;
1393}
1394
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001395static void ath9k_del_ps_key(struct ath_softc *sc,
1396 struct ieee80211_vif *vif,
1397 struct ieee80211_sta *sta)
1398{
1399 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1400 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1401 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1402
1403 if (!an->ps_key)
1404 return;
1405
1406 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001407 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301408 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001409}
1410
Johannes Berg4ca77862010-02-19 19:06:56 +01001411static int ath9k_sta_remove(struct ieee80211_hw *hw,
1412 struct ieee80211_vif *vif,
1413 struct ieee80211_sta *sta)
1414{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001415 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001416
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001417 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001418 ath_node_detach(sc, sta);
1419
1420 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421}
1422
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301423static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1424 struct ath_node *an,
1425 bool set)
1426{
1427 int i;
1428
1429 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1430 if (!an->key_idx[i])
1431 continue;
1432 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1433 }
1434}
1435
Felix Fietkau55195412011-04-17 23:28:09 +02001436static void ath9k_sta_notify(struct ieee80211_hw *hw,
1437 struct ieee80211_vif *vif,
1438 enum sta_notify_cmd cmd,
1439 struct ieee80211_sta *sta)
1440{
1441 struct ath_softc *sc = hw->priv;
1442 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1443
1444 switch (cmd) {
1445 case STA_NOTIFY_SLEEP:
1446 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001447 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301448 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001449 break;
1450 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301451 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001452 an->sleeping = false;
1453 ath_tx_aggr_wakeup(sc, an);
1454 break;
1455 }
1456}
1457
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001458static int ath9k_conf_tx(struct ieee80211_hw *hw,
1459 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001460 const struct ieee80211_tx_queue_params *params)
1461{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001462 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001463 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001464 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301465 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001466 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001467
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301468 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469 return 0;
1470
Felix Fietkau066dae92010-11-07 14:59:39 +01001471 txq = sc->tx.txq_map[queue];
1472
Felix Fietkau96f372c2011-04-07 19:07:17 +02001473 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301474 mutex_lock(&sc->mutex);
1475
Sujith1ffb0612009-03-30 15:28:46 +05301476 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1477
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001478 qi.tqi_aifs = params->aifs;
1479 qi.tqi_cwmin = params->cw_min;
1480 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001481 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482
Joe Perchesd2182b62011-12-15 14:55:53 -08001483 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001484 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1485 queue, txq->axq_qnum, params->aifs, params->cw_min,
1486 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001487
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001488 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001489 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001491 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492
Sujith141b38b2009-02-04 08:10:07 +05301493 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001494 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301495
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001496 return ret;
1497}
1498
1499static int ath9k_set_key(struct ieee80211_hw *hw,
1500 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001501 struct ieee80211_vif *vif,
1502 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001503 struct ieee80211_key_conf *key)
1504{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001505 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001506 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301507 struct ath_node *an = NULL;
1508 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509
John W. Linville3e6109c2011-01-05 09:39:17 -05001510 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001511 return -ENOSPC;
1512
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001513 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1514 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001515 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1516 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1517 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1518 /*
1519 * For now, disable hw crypto for the RSN IBSS group keys. This
1520 * could be optimized in the future to use a modified key cache
1521 * design to support per-STA RX GTK, but until that gets
1522 * implemented, use of software crypto for group addressed
1523 * frames is a acceptable to allow RSN IBSS to be used.
1524 */
1525 return -EOPNOTSUPP;
1526 }
1527
Sujith141b38b2009-02-04 08:10:07 +05301528 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301529 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301530 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1531 if (sta)
1532 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001533
1534 switch (cmd) {
1535 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001536 if (sta)
1537 ath9k_del_ps_key(sc, vif, sta);
1538
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301539 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001540 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001541 if (ret >= 0) {
1542 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543 /* push IV and Michael MIC generation to stack */
1544 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001545 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301546 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001547 if (sc->sc_ah->sw_mgmt_crypto &&
1548 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001549 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001550 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001551 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301552 if (an && key->hw_key_idx) {
1553 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1554 if (an->key_idx[i])
1555 continue;
1556 an->key_idx[i] = key->hw_key_idx;
1557 break;
1558 }
1559 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1560 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001561 break;
1562 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001563 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301564 if (an) {
1565 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1566 if (an->key_idx[i] != key->hw_key_idx)
1567 continue;
1568 an->key_idx[i] = 0;
1569 break;
1570 }
1571 }
1572 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001573 break;
1574 default:
1575 ret = -EINVAL;
1576 }
1577
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301578 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301579 mutex_unlock(&sc->mutex);
1580
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001581 return ret;
1582}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301583
1584static void ath9k_set_assoc_state(struct ath_softc *sc,
1585 struct ieee80211_vif *vif)
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301586{
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301587 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301588 struct ath_vif *avp = (void *)vif->drv_priv;
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301589 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Sujith Manoharan07c15a32012-06-04 20:24:07 +05301590 unsigned long flags;
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301591
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001592 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301593 avp->primary_sta_vif = true;
1594
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301595 /*
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301596 * Set the AID, BSSID and do beacon-sync only when
1597 * the HW opmode is STATION.
1598 *
1599 * But the primary bit is set above in any case.
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301600 */
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301601 if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
1602 return;
1603
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301604 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1605 common->curaid = bss_conf->aid;
1606 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301607
Oleksij Rempel32efb0c2014-02-04 10:27:39 +01001608 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301609 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301610
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301611 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1612 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1613 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1614
Rajkumar Manoharan50072eb2012-10-12 14:07:22 +05301615 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1616 ath9k_mci_update_wlan_channels(sc, false);
1617
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301618 ath_dbg(common, CONFIG,
1619 "Primary Station interface: %pM, BSSID: %pM\n",
1620 vif->addr, common->curbssid);
1621}
1622
1623static void ath9k_bss_assoc_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
1624{
1625 struct ath_softc *sc = data;
1626 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001627 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301628
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001629 if (test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags))
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301630 return;
1631
1632 if (bss_conf->assoc)
1633 ath9k_set_assoc_state(sc, vif);
Rajkumar Manoharan4f5ef75b2011-04-04 22:56:18 +05301634}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001635
Felix Fietkaud463af42014-04-06 00:37:03 +02001636void ath9k_p2p_ps_timer(void *priv)
1637{
1638 struct ath_softc *sc = priv;
1639 struct ath_vif *avp = sc->p2p_ps_vif;
1640 struct ieee80211_vif *vif;
1641 struct ieee80211_sta *sta;
1642 struct ath_node *an;
1643 u32 tsf;
1644
1645 if (!avp)
1646 return;
1647
1648 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1649 if (!avp->noa.absent)
1650 tsf += ATH_P2P_PS_STOP_TIME;
1651
1652 if (!avp->noa.has_next_tsf ||
1653 avp->noa.next_tsf - tsf > BIT(31))
1654 ieee80211_update_p2p_noa(&avp->noa, tsf);
1655
1656 ath9k_update_p2p_ps_timer(sc, avp);
1657
1658 rcu_read_lock();
1659
1660 vif = avp->vif;
1661 sta = ieee80211_find_sta(vif, vif->bss_conf.bssid);
1662 if (!sta)
1663 goto out;
1664
1665 an = (void *) sta->drv_priv;
1666 if (an->sleeping == !!avp->noa.absent)
1667 goto out;
1668
1669 an->sleeping = avp->noa.absent;
1670 if (an->sleeping)
1671 ath_tx_aggr_sleep(sta, sc, an);
1672 else
1673 ath_tx_aggr_wakeup(sc, an);
1674
1675out:
1676 rcu_read_unlock();
1677}
1678
1679void ath9k_update_p2p_ps(struct ath_softc *sc, struct ieee80211_vif *vif)
1680{
1681 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkaud463af42014-04-06 00:37:03 +02001682 u32 tsf;
1683
1684 if (!sc->p2p_ps_timer)
1685 return;
1686
1687 if (vif->type != NL80211_IFTYPE_STATION || !vif->p2p)
1688 return;
1689
1690 sc->p2p_ps_vif = avp;
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301691 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1692 ieee80211_parse_p2p_noa(&vif->bss_conf.p2p_noa_attr, &avp->noa, tsf);
1693 ath9k_update_p2p_ps_timer(sc, avp);
Felix Fietkaud463af42014-04-06 00:37:03 +02001694}
1695
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001696static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1697 struct ieee80211_vif *vif,
1698 struct ieee80211_bss_conf *bss_conf,
1699 u32 changed)
1700{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301701#define CHECK_ANI \
1702 (BSS_CHANGED_ASSOC | \
1703 BSS_CHANGED_IBSS | \
1704 BSS_CHANGED_BEACON_ENABLED)
1705
Felix Fietkau9ac586152011-01-24 19:23:18 +01001706 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001707 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001708 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001709 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301710 unsigned long flags;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001711 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001712
Felix Fietkau96f372c2011-04-07 19:07:17 +02001713 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301714 mutex_lock(&sc->mutex);
1715
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301716 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301717 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1718 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301719
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301720 if (avp->primary_sta_vif && !bss_conf->assoc) {
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001721 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301722 avp->primary_sta_vif = false;
1723
1724 if (ah->opmode == NL80211_IFTYPE_STATION)
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001725 clear_bit(ATH_OP_BEACONS, &common->op_flags);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301726 }
1727
Johannes Berg8b2c9822012-11-06 20:23:30 +01001728 ieee80211_iterate_active_interfaces_atomic(
1729 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1730 ath9k_bss_assoc_iter, sc);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301731
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001732 if (!test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags) &&
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301733 ah->opmode == NL80211_IFTYPE_STATION) {
1734 memset(common->curbssid, 0, ETH_ALEN);
1735 common->curaid = 0;
1736 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan50072eb2012-10-12 14:07:22 +05301737 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1738 ath9k_mci_update_wlan_channels(sc, true);
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301739 }
Felix Fietkauc083ce92014-06-11 16:17:54 +05301740
1741 ath_chanctx_check_active(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001742 }
1743
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301744 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301745 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1746 common->curaid = bss_conf->aid;
1747 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301748 }
1749
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301750 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Felix Fietkauc32e4e52013-12-19 18:01:49 +01001751 (changed & BSS_CHANGED_BEACON_INT))
1752 ath9k_beacon_config(sc, vif, changed);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001753
Felix Fietkau0005baf2010-01-15 02:33:40 +01001754 if (changed & BSS_CHANGED_ERP_SLOT) {
1755 if (bss_conf->use_short_slot)
1756 slottime = 9;
1757 else
1758 slottime = 20;
1759 if (vif->type == NL80211_IFTYPE_AP) {
1760 /*
1761 * Defer update, so that connected stations can adjust
1762 * their settings at the same time.
1763 * See beacon.c for more details
1764 */
1765 sc->beacon.slottime = slottime;
1766 sc->beacon.updateslot = UPDATE;
1767 } else {
1768 ah->slottime = slottime;
1769 ath9k_hw_init_global_settings(ah);
1770 }
1771 }
1772
Felix Fietkaud463af42014-04-06 00:37:03 +02001773 if (changed & BSS_CHANGED_P2P_PS) {
1774 spin_lock_bh(&sc->sc_pcu_lock);
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301775 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1776 if (!(sc->ps_flags & PS_BEACON_SYNC))
1777 ath9k_update_p2p_ps(sc, vif);
1778 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Felix Fietkaud463af42014-04-06 00:37:03 +02001779 spin_unlock_bh(&sc->sc_pcu_lock);
1780 }
1781
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301782 if (changed & CHECK_ANI)
1783 ath_check_ani(sc);
1784
Sujith141b38b2009-02-04 08:10:07 +05301785 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001786 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301787
1788#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001789}
1790
Eliad Peller37a41b42011-09-21 14:06:11 +03001791static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001793 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001794 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001795
Sujith141b38b2009-02-04 08:10:07 +05301796 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301797 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301798 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301799 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301800 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801
1802 return tsf;
1803}
1804
Eliad Peller37a41b42011-09-21 14:06:11 +03001805static void ath9k_set_tsf(struct ieee80211_hw *hw,
1806 struct ieee80211_vif *vif,
1807 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001808{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001809 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001810
Sujith141b38b2009-02-04 08:10:07 +05301811 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301812 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301813 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301814 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301815 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001816}
1817
Eliad Peller37a41b42011-09-21 14:06:11 +03001818static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001819{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001820 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001821
Sujith141b38b2009-02-04 08:10:07 +05301822 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001823
1824 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301825 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001826 ath9k_ps_restore(sc);
1827
Sujith141b38b2009-02-04 08:10:07 +05301828 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829}
1830
1831static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001832 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301833 enum ieee80211_ampdu_mlme_action action,
1834 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001835 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001836{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001837 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001838 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839 int ret = 0;
1840
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301841 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001842
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001843 switch (action) {
1844 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845 break;
1846 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001847 break;
1848 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001849 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001850 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1851 if (!ret)
1852 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001853 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001854 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001855 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1856 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001857 flush = true;
1858 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001859 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301860 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001861 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001862 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001863 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001865 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001866 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301867 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001868 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301869 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001870 default:
Joe Perches38002762010-12-02 19:12:36 -08001871 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872 }
1873
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301874 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001875
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876 return ret;
1877}
1878
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001879static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1880 struct survey_info *survey)
1881{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001882 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001883 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001884 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001885 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001886 int pos;
1887
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001888 if (config_enabled(CONFIG_ATH9K_TX99))
1889 return -EOPNOTSUPP;
1890
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301891 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001892 if (idx == 0)
1893 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001894
Felix Fietkau39162db2010-09-29 19:12:06 +02001895 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1896 if (sband && idx >= sband->n_channels) {
1897 idx -= sband->n_channels;
1898 sband = NULL;
1899 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001900
Felix Fietkau39162db2010-09-29 19:12:06 +02001901 if (!sband)
1902 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1903
Felix Fietkau34300982010-10-10 18:21:52 +02001904 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301905 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001906 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001907 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001908
Felix Fietkau34300982010-10-10 18:21:52 +02001909 chan = &sband->channels[idx];
1910 pos = chan->hw_value;
1911 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1912 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301913 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001914
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001915 return 0;
1916}
1917
Felix Fietkaue239d852010-01-15 02:34:58 +01001918static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
1919{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001920 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001921 struct ath_hw *ah = sc->sc_ah;
1922
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001923 if (config_enabled(CONFIG_ATH9K_TX99))
1924 return;
1925
Felix Fietkaue239d852010-01-15 02:34:58 +01001926 mutex_lock(&sc->mutex);
1927 ah->coverage_class = coverage_class;
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301928
1929 ath9k_ps_wakeup(sc);
Felix Fietkaue239d852010-01-15 02:34:58 +01001930 ath9k_hw_init_global_settings(ah);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301931 ath9k_ps_restore(sc);
1932
Felix Fietkaue239d852010-01-15 02:34:58 +01001933 mutex_unlock(&sc->mutex);
1934}
1935
Felix Fietkau10e23182013-11-11 22:23:35 +01001936static bool ath9k_has_tx_pending(struct ath_softc *sc)
1937{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001938 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001939
1940 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1941 if (!ATH_TXQ_SETUP(sc, i))
1942 continue;
1943
1944 if (!sc->tx.txq[i].axq_depth)
1945 continue;
1946
1947 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
1948 if (npend)
1949 break;
1950 }
1951
1952 return !!npend;
1953}
1954
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02001955static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1956 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001957{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001958 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05301959
1960 mutex_lock(&sc->mutex);
1961 __ath9k_flush(hw, queues, drop);
1962 mutex_unlock(&sc->mutex);
1963}
1964
1965void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
1966{
1967 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301968 struct ath_hw *ah = sc->sc_ah;
1969 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau10e23182013-11-11 22:23:35 +01001970 int timeout = HZ / 5; /* 200 ms */
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05301971 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001972
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001973 cancel_delayed_work_sync(&sc->tx_complete_work);
1974
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301975 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001976 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301977 return;
1978 }
1979
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001980 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001981 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301982 return;
1983 }
1984
Felix Fietkau10e23182013-11-11 22:23:35 +01001985 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
1986 timeout) > 0)
1987 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001988
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001989 if (drop) {
1990 ath9k_ps_wakeup(sc);
1991 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01001992 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001993 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001994
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001995 if (!drain_txq)
Felix Fietkau13815592013-01-20 18:51:53 +01001996 ath_reset(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001997
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001998 ath9k_ps_restore(sc);
1999 ieee80211_wake_queues(hw);
2000 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302001
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002002 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002003}
2004
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302005static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2006{
2007 struct ath_softc *sc = hw->priv;
2008 int i;
2009
2010 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2011 if (!ATH_TXQ_SETUP(sc, i))
2012 continue;
2013
2014 if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
2015 return true;
2016 }
2017 return false;
2018}
2019
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302020static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002021{
2022 struct ath_softc *sc = hw->priv;
2023 struct ath_hw *ah = sc->sc_ah;
2024 struct ieee80211_vif *vif;
2025 struct ath_vif *avp;
2026 struct ath_buf *bf;
2027 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002028 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002029 int status;
2030
2031 vif = sc->beacon.bslot[0];
2032 if (!vif)
2033 return 0;
2034
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302035 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002036 return 0;
2037
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302038 avp = (void *)vif->drv_priv;
2039
Felix Fietkau4286df62012-02-27 19:58:40 +01002040 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002041 tasklet_disable(&sc->bcon_tasklet);
2042
2043 bf = avp->av_bcbuf;
2044 if (!bf || !bf->bf_mpdu)
2045 goto skip;
2046
2047 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2048 if (status == -EINPROGRESS)
2049 goto skip;
2050
2051 sc->beacon.tx_processed = true;
2052 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2053
2054skip:
2055 tasklet_enable(&sc->bcon_tasklet);
2056 }
2057
2058 return sc->beacon.tx_last;
2059}
2060
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302061static int ath9k_get_stats(struct ieee80211_hw *hw,
2062 struct ieee80211_low_level_stats *stats)
2063{
2064 struct ath_softc *sc = hw->priv;
2065 struct ath_hw *ah = sc->sc_ah;
2066 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2067
2068 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2069 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2070 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2071 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2072 return 0;
2073}
2074
Felix Fietkau43c35282011-09-03 01:40:27 +02002075static u32 fill_chainmask(u32 cap, u32 new)
2076{
2077 u32 filled = 0;
2078 int i;
2079
2080 for (i = 0; cap && new; i++, cap >>= 1) {
2081 if (!(cap & BIT(0)))
2082 continue;
2083
2084 if (new & BIT(0))
2085 filled |= BIT(i);
2086
2087 new >>= 1;
2088 }
2089
2090 return filled;
2091}
2092
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002093static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2094{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002095 if (AR_SREV_9300_20_OR_LATER(ah))
2096 return true;
2097
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002098 switch (val & 0x7) {
2099 case 0x1:
2100 case 0x3:
2101 case 0x7:
2102 return true;
2103 case 0x2:
2104 return (ah->caps.rx_chainmask == 1);
2105 default:
2106 return false;
2107 }
2108}
2109
Felix Fietkau43c35282011-09-03 01:40:27 +02002110static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2111{
2112 struct ath_softc *sc = hw->priv;
2113 struct ath_hw *ah = sc->sc_ah;
2114
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002115 if (ah->caps.rx_chainmask != 1)
2116 rx_ant |= tx_ant;
2117
2118 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002119 return -EINVAL;
2120
2121 sc->ant_rx = rx_ant;
2122 sc->ant_tx = tx_ant;
2123
2124 if (ah->caps.rx_chainmask == 1)
2125 return 0;
2126
2127 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2128 if (AR_SREV_9100(ah))
2129 ah->rxchainmask = 0x7;
2130 else
2131 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2132
2133 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002134 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002135
2136 return 0;
2137}
2138
2139static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2140{
2141 struct ath_softc *sc = hw->priv;
2142
2143 *tx_ant = sc->ant_tx;
2144 *rx_ant = sc->ant_rx;
2145 return 0;
2146}
2147
Simon Wunderliche93d0832013-01-08 14:48:58 +01002148static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2149{
2150 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002151 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2152 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002153}
2154
2155static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2156{
2157 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002158 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2159 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002160}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302161
Felix Fietkau78b21942014-06-11 16:17:55 +05302162static void
2163ath_scan_next_channel(struct ath_softc *sc)
2164{
2165 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2166 struct ieee80211_channel *chan;
2167
2168 if (sc->offchannel.scan_idx >= req->n_channels) {
2169 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
2170 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc), NULL);
2171 return;
2172 }
2173
2174 chan = req->channels[sc->offchannel.scan_idx++];
2175 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_SEND;
2176 ath_chanctx_offchan_switch(sc, chan);
2177}
2178
Felix Fietkau405393c2014-06-11 16:17:56 +05302179static void ath_offchannel_next(struct ath_softc *sc)
2180{
2181 struct ieee80211_vif *vif;
2182
2183 if (sc->offchannel.scan_req) {
2184 vif = sc->offchannel.scan_vif;
2185 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
2186 ath_scan_next_channel(sc);
2187 } else if (sc->offchannel.roc_vif) {
2188 vif = sc->offchannel.roc_vif;
2189 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
2190 sc->offchannel.state = ATH_OFFCHANNEL_ROC_START;
2191 ath_chanctx_offchan_switch(sc, sc->offchannel.roc_chan);
2192 } else {
2193 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc), NULL);
2194 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
2195 if (sc->ps_idle)
2196 ath_cancel_work(sc);
2197 }
2198}
2199
2200static void ath_roc_complete(struct ath_softc *sc, bool abort)
2201{
2202 sc->offchannel.roc_vif = NULL;
2203 sc->offchannel.roc_chan = NULL;
2204 if (!abort)
2205 ieee80211_remain_on_channel_expired(sc->hw);
2206 ath_offchannel_next(sc);
2207 ath9k_ps_restore(sc);
2208}
2209
Felix Fietkau78b21942014-06-11 16:17:55 +05302210static void ath_scan_complete(struct ath_softc *sc, bool abort)
2211{
2212 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2213
Felix Fietkau78b21942014-06-11 16:17:55 +05302214 sc->offchannel.scan_req = NULL;
2215 sc->offchannel.scan_vif = NULL;
2216 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
2217 ieee80211_scan_completed(sc->hw, abort);
2218 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Felix Fietkau405393c2014-06-11 16:17:56 +05302219 ath_offchannel_next(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302220 ath9k_ps_restore(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302221}
2222
2223static void ath_scan_send_probe(struct ath_softc *sc,
2224 struct cfg80211_ssid *ssid)
2225{
2226 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2227 struct ieee80211_vif *vif = sc->offchannel.scan_vif;
2228 struct ath_tx_control txctl = {};
2229 struct sk_buff *skb;
2230 struct ieee80211_tx_info *info;
2231 int band = sc->offchannel.chan.chandef.chan->band;
2232
2233 skb = ieee80211_probereq_get(sc->hw, vif,
2234 ssid->ssid, ssid->ssid_len, req->ie_len);
2235 if (!skb)
2236 return;
2237
2238 info = IEEE80211_SKB_CB(skb);
2239 if (req->no_cck)
2240 info->flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
2241
2242 if (req->ie_len)
2243 memcpy(skb_put(skb, req->ie_len), req->ie, req->ie_len);
2244
2245 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
2246
2247 if (!ieee80211_tx_prepare_skb(sc->hw, vif, skb, band, NULL))
2248 goto error;
2249
2250 txctl.txq = sc->tx.txq_map[IEEE80211_AC_VO];
2251 txctl.force_channel = true;
2252 if (ath_tx_start(sc->hw, skb, &txctl))
2253 goto error;
2254
2255 return;
2256
2257error:
2258 ieee80211_free_txskb(sc->hw, skb);
2259}
2260
2261static void ath_scan_channel_start(struct ath_softc *sc)
2262{
2263 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2264 int i, dwell;
2265
2266 if ((sc->cur_chan->chandef.chan->flags & IEEE80211_CHAN_NO_IR) ||
2267 !req->n_ssids) {
2268 dwell = HZ / 9; /* ~110 ms */
2269 } else {
2270 dwell = HZ / 16; /* ~60 ms */
2271
2272 for (i = 0; i < req->n_ssids; i++)
2273 ath_scan_send_probe(sc, &req->ssids[i]);
2274 }
2275
2276 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_WAIT;
2277 mod_timer(&sc->offchannel.timer, jiffies + dwell);
2278}
2279
2280void ath_offchannel_channel_change(struct ath_softc *sc)
2281{
Felix Fietkau78b21942014-06-11 16:17:55 +05302282 switch (sc->offchannel.state) {
2283 case ATH_OFFCHANNEL_PROBE_SEND:
Felix Fietkau405393c2014-06-11 16:17:56 +05302284 if (!sc->offchannel.scan_req)
2285 return;
2286
Felix Fietkau78b21942014-06-11 16:17:55 +05302287 if (sc->cur_chan->chandef.chan !=
2288 sc->offchannel.chan.chandef.chan)
2289 return;
2290
2291 ath_scan_channel_start(sc);
2292 break;
2293 case ATH_OFFCHANNEL_IDLE:
Felix Fietkau405393c2014-06-11 16:17:56 +05302294 if (!sc->offchannel.scan_req)
2295 return;
2296
Felix Fietkau78b21942014-06-11 16:17:55 +05302297 ath_scan_complete(sc, false);
2298 break;
Felix Fietkau405393c2014-06-11 16:17:56 +05302299 case ATH_OFFCHANNEL_ROC_START:
2300 if (sc->cur_chan != &sc->offchannel.chan)
2301 break;
2302
2303 sc->offchannel.state = ATH_OFFCHANNEL_ROC_WAIT;
2304 mod_timer(&sc->offchannel.timer, jiffies +
2305 msecs_to_jiffies(sc->offchannel.roc_duration));
2306 ieee80211_ready_on_channel(sc->hw);
2307 break;
2308 case ATH_OFFCHANNEL_ROC_DONE:
2309 ath_roc_complete(sc, false);
2310 break;
Felix Fietkau78b21942014-06-11 16:17:55 +05302311 default:
2312 break;
2313 }
2314}
2315
2316void ath_offchannel_timer(unsigned long data)
2317{
2318 struct ath_softc *sc = (struct ath_softc *)data;
2319 struct ath_chanctx *ctx = ath_chanctx_get_oper_chan(sc);
2320
Felix Fietkau78b21942014-06-11 16:17:55 +05302321 switch (sc->offchannel.state) {
2322 case ATH_OFFCHANNEL_PROBE_WAIT:
Felix Fietkau405393c2014-06-11 16:17:56 +05302323 if (!sc->offchannel.scan_req)
2324 return;
2325
Felix Fietkau78b21942014-06-11 16:17:55 +05302326 if (ctx->active) {
2327 sc->offchannel.state = ATH_OFFCHANNEL_SUSPEND;
2328 ath_chanctx_switch(sc, ctx, NULL);
2329 mod_timer(&sc->offchannel.timer, jiffies + HZ / 10);
2330 break;
2331 }
2332 /* fall through */
2333 case ATH_OFFCHANNEL_SUSPEND:
Felix Fietkau405393c2014-06-11 16:17:56 +05302334 if (!sc->offchannel.scan_req)
2335 return;
2336
Felix Fietkau78b21942014-06-11 16:17:55 +05302337 ath_scan_next_channel(sc);
2338 break;
Felix Fietkau405393c2014-06-11 16:17:56 +05302339 case ATH_OFFCHANNEL_ROC_START:
2340 case ATH_OFFCHANNEL_ROC_WAIT:
2341 sc->offchannel.state = ATH_OFFCHANNEL_ROC_DONE;
2342 ath_chanctx_switch(sc, ctx, NULL);
2343 break;
Felix Fietkau78b21942014-06-11 16:17:55 +05302344 default:
2345 break;
2346 }
2347}
2348
2349static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2350 struct cfg80211_scan_request *req)
2351{
2352 struct ath_softc *sc = hw->priv;
2353 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2354 int ret = 0;
2355
2356 mutex_lock(&sc->mutex);
2357
2358 if (WARN_ON(sc->offchannel.scan_req)) {
2359 ret = -EBUSY;
2360 goto out;
2361 }
2362
2363 ath9k_ps_wakeup(sc);
2364 set_bit(ATH_OP_SCANNING, &common->op_flags);
2365 sc->offchannel.scan_vif = vif;
2366 sc->offchannel.scan_req = req;
2367 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302368
Felix Fietkau405393c2014-06-11 16:17:56 +05302369 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE)
2370 ath_offchannel_next(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302371
2372out:
2373 mutex_unlock(&sc->mutex);
2374
2375 return ret;
2376}
2377
2378static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2379 struct ieee80211_vif *vif)
2380{
2381 struct ath_softc *sc = hw->priv;
2382
2383 mutex_lock(&sc->mutex);
2384 del_timer_sync(&sc->offchannel.timer);
2385 ath_scan_complete(sc, true);
2386 mutex_unlock(&sc->mutex);
2387}
2388
Felix Fietkau405393c2014-06-11 16:17:56 +05302389static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2390 struct ieee80211_vif *vif,
2391 struct ieee80211_channel *chan, int duration,
2392 enum ieee80211_roc_type type)
2393{
2394 struct ath_softc *sc = hw->priv;
2395 int ret = 0;
2396
2397 mutex_lock(&sc->mutex);
2398
2399 if (WARN_ON(sc->offchannel.roc_vif)) {
2400 ret = -EBUSY;
2401 goto out;
2402 }
2403
2404 ath9k_ps_wakeup(sc);
2405 sc->offchannel.roc_vif = vif;
2406 sc->offchannel.roc_chan = chan;
2407 sc->offchannel.roc_duration = duration;
2408
2409 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE)
2410 ath_offchannel_next(sc);
2411
2412out:
2413 mutex_unlock(&sc->mutex);
2414
2415 return ret;
2416}
2417
2418static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2419{
2420 struct ath_softc *sc = hw->priv;
2421
2422 mutex_lock(&sc->mutex);
2423
2424 del_timer_sync(&sc->offchannel.timer);
2425
2426 if (sc->offchannel.roc_vif) {
2427 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2428 ath_roc_complete(sc, true);
2429 }
2430
2431 mutex_unlock(&sc->mutex);
2432
2433 return 0;
2434}
2435
Felix Fietkau78b21942014-06-11 16:17:55 +05302436void ath9k_fill_chanctx_ops(void)
2437{
2438 if (!ath9k_use_chanctx)
2439 return;
2440
2441 ath9k_ops.hw_scan = ath9k_hw_scan;
2442 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
Felix Fietkau405393c2014-06-11 16:17:56 +05302443 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
2444 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Felix Fietkau78b21942014-06-11 16:17:55 +05302445}
2446
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002447struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002448 .tx = ath9k_tx,
2449 .start = ath9k_start,
2450 .stop = ath9k_stop,
2451 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302452 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453 .remove_interface = ath9k_remove_interface,
2454 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002455 .configure_filter = ath9k_configure_filter,
Johannes Berg4ca77862010-02-19 19:06:56 +01002456 .sta_add = ath9k_sta_add,
2457 .sta_remove = ath9k_sta_remove,
Felix Fietkau55195412011-04-17 23:28:09 +02002458 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002459 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002461 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002462 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002463 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002464 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002465 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002466 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302467 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002468 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002469 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302470 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302471 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002472 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302473 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002474 .set_antenna = ath9k_set_antenna,
2475 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002476
Sujith Manoharane60001e2013-10-28 12:22:04 +05302477#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302478 .suspend = ath9k_suspend,
2479 .resume = ath9k_resume,
2480 .set_wakeup = ath9k_set_wakeup,
2481#endif
2482
Ben Greearb90bd9d2012-05-15 15:33:25 -07002483#ifdef CONFIG_ATH9K_DEBUGFS
2484 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302485 .get_et_stats = ath9k_get_et_stats,
2486 .get_et_strings = ath9k_get_et_strings,
2487#endif
2488
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302489#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302490 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002491#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002492 .sw_scan_start = ath9k_sw_scan_start,
2493 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002494};