blob: 2393af058afe143ce1ef513b714b2278262bd5e6 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include <linux/nl80211.h>
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080018#include <linux/delay.h>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "btcoex.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
Sven Eckelmann313eb872012-06-25 07:15:22 +020022u8 ath9k_parse_mpdudensity(u8 mpdudensity)
Sujithff37e332008-11-24 12:07:55 +053023{
24 /*
25 * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
26 * 0 for no restriction
27 * 1 for 1/4 us
28 * 2 for 1/2 us
29 * 3 for 1 us
30 * 4 for 2 us
31 * 5 for 4 us
32 * 6 for 8 us
33 * 7 for 16 us
34 */
35 switch (mpdudensity) {
36 case 0:
37 return 0;
38 case 1:
39 case 2:
40 case 3:
41 /* Our lower layer calculations limit our precision to
42 1 microsecond */
43 return 1;
44 case 4:
45 return 2;
46 case 5:
47 return 4;
48 case 6:
49 return 8;
50 case 7:
51 return 16;
52 default:
53 return 0;
54 }
55}
56
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080057static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq)
58{
59 bool pending = false;
60
61 spin_lock_bh(&txq->axq_lock);
62
Felix Fietkau04535312014-06-11 16:17:51 +053063 if (txq->axq_depth)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080064 pending = true;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080065
Felix Fietkau04535312014-06-11 16:17:51 +053066 if (txq->mac80211_qnum >= 0) {
67 struct list_head *list;
68
69 list = &sc->cur_chan->acq[txq->mac80211_qnum];
70 if (!list_empty(list))
71 pending = true;
72 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080073 spin_unlock_bh(&txq->axq_lock);
74 return pending;
75}
76
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053077static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070078{
79 unsigned long flags;
80 bool ret;
81
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070082 spin_lock_irqsave(&sc->sc_pm_lock, flags);
83 ret = ath9k_hw_setpower(sc->sc_ah, mode);
84 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070085
86 return ret;
87}
88
Felix Fietkaubf3dac52013-11-11 22:23:33 +010089void ath_ps_full_sleep(unsigned long data)
90{
91 struct ath_softc *sc = (struct ath_softc *) data;
92 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
93 bool reset;
94
95 spin_lock(&common->cc_lock);
96 ath_hw_cycle_counters_update(common);
97 spin_unlock(&common->cc_lock);
98
99 ath9k_hw_setrxabort(sc->sc_ah, 1);
100 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
101
102 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
103}
104
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700105void ath9k_ps_wakeup(struct ath_softc *sc)
106{
Felix Fietkau898c9142010-10-12 14:02:53 +0200107 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700108 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100109 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700110
111 spin_lock_irqsave(&sc->sc_pm_lock, flags);
112 if (++sc->ps_usecount != 1)
113 goto unlock;
114
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100115 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100116 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700117 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700118
Felix Fietkau898c9142010-10-12 14:02:53 +0200119 /*
120 * While the hardware is asleep, the cycle counters contain no
121 * useful data. Better clear them now so that they don't mess up
122 * survey data results.
123 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100124 if (power_mode != ATH9K_PM_AWAKE) {
125 spin_lock(&common->cc_lock);
126 ath_hw_cycle_counters_update(common);
127 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530128 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100129 spin_unlock(&common->cc_lock);
130 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200131
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700132 unlock:
133 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
134}
135
136void ath9k_ps_restore(struct ath_softc *sc)
137{
Felix Fietkau898c9142010-10-12 14:02:53 +0200138 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200139 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700140 unsigned long flags;
141
142 spin_lock_irqsave(&sc->sc_pm_lock, flags);
143 if (--sc->ps_usecount != 0)
144 goto unlock;
145
Sujith Manoharanad128862012-04-24 10:23:20 +0530146 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100147 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
148 goto unlock;
149 }
150
151 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530152 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
153 PS_WAIT_FOR_CAB |
154 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530155 PS_WAIT_FOR_TX_ACK |
156 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200157 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530158 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
159 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530160 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200161 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530162 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200163
164 spin_lock(&common->cc_lock);
165 ath_hw_cycle_counters_update(common);
166 spin_unlock(&common->cc_lock);
167
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600168 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700169
170 unlock:
171 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
172}
173
Felix Fietkau9adcf442011-09-03 01:40:26 +0200174static void __ath_cancel_work(struct ath_softc *sc)
175{
176 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200177 cancel_delayed_work_sync(&sc->tx_complete_work);
178 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530179
Sujith Manoharanbf525922012-06-27 14:15:59 +0530180#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530181 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
182 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530183#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200184}
185
Sujith Manoharane60001e2013-10-28 12:22:04 +0530186void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200187{
188 __ath_cancel_work(sc);
189 cancel_work_sync(&sc->hw_reset_work);
190}
191
Sujith Manoharane60001e2013-10-28 12:22:04 +0530192void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530193{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530194 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
195
Sujith Manoharan19c36162013-08-20 10:05:59 +0530196 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530197 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
198 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
199
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530200 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530201}
202
John W. Linville9ebea382013-01-28 13:54:03 -0500203static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200204{
205 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200206 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200207
208 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530209 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200210 ath9k_hw_disable_interrupts(ah);
211
Felix Fietkau13815592013-01-20 18:51:53 +0100212 if (!ath_drain_all_txq(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200213 ret = false;
214
Felix Fietkau0a62acb2013-01-20 18:51:52 +0100215 if (!ath_stoprecv(sc))
Felix Fietkauceea2a52012-05-24 14:32:19 +0200216 ret = false;
217
Felix Fietkau9adcf442011-09-03 01:40:26 +0200218 return ret;
219}
220
221static bool ath_complete_reset(struct ath_softc *sc, bool start)
222{
223 struct ath_hw *ah = sc->sc_ah;
224 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530225 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200226
227 if (ath_startrecv(sc) != 0) {
228 ath_err(common, "Unable to restart recv logic\n");
229 return false;
230 }
231
232 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530233 sc->cur_chan->txpower, &sc->curtxpow);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530234
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100235 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530236 ath9k_calculate_summary_state(sc, sc->cur_chan);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200237
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530238 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530239 /* restore per chanctx TSF timer */
240 if (sc->cur_chan->tsf_val) {
241 u32 offset;
242
243 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
244 NULL);
245 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
246 }
247
248
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100249 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530250 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200251
Sujith Manoharan196fb862012-06-04 20:24:13 +0530252 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100253 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530254 spin_lock_irqsave(&sc->sc_pm_lock, flags);
255 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
256 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530257 } else {
258 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530259 }
260 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530261 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530262 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200263 }
264
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530265 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530266
267 ath9k_hw_set_interrupts(ah);
268 ath9k_hw_enable_interrupts(ah);
269
Felix Fietkau9adcf442011-09-03 01:40:26 +0200270 ieee80211_wake_queues(sc->hw);
271
Felix Fietkaud463af42014-04-06 00:37:03 +0200272 ath9k_p2p_ps_timer(sc);
273
Felix Fietkau9adcf442011-09-03 01:40:26 +0200274 return true;
275}
276
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530277int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200278{
279 struct ath_hw *ah = sc->sc_ah;
280 struct ath_common *common = ath9k_hw_common(ah);
281 struct ath9k_hw_cal_data *caldata = NULL;
282 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200283 int r;
284
285 __ath_cancel_work(sc);
286
Felix Fietkau4668cce2013-01-14 16:56:46 +0100287 tasklet_disable(&sc->intr_tq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200288 spin_lock_bh(&sc->sc_pcu_lock);
289
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530290 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200291 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530292 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200293 }
294
295 if (!hchan) {
296 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200297 hchan = ah->curchan;
298 }
299
John W. Linville9ebea382013-01-28 13:54:03 -0500300 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200301 fastcc = false;
302
Felix Fietkaubff11762014-06-11 16:17:52 +0530303 if (hchan) {
304 spin_lock_bh(&sc->chan_lock);
305 sc->cur_chandef = sc->cur_chan->chandef;
306 spin_unlock_bh(&sc->chan_lock);
307 }
308
Joe Perchesd2182b62011-12-15 14:55:53 -0800309 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530310 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200311
312 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
313 if (r) {
314 ath_err(common,
315 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400316
317 ath9k_hw_enable_interrupts(ah);
318 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
319
Felix Fietkau9adcf442011-09-03 01:40:26 +0200320 goto out;
321 }
322
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530323 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530324 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530325 ath9k_mci_set_txpower(sc, true, false);
326
Felix Fietkau9adcf442011-09-03 01:40:26 +0200327 if (!ath_complete_reset(sc, true))
328 r = -EIO;
329
330out:
331 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100332 tasklet_enable(&sc->intr_tq);
333
Felix Fietkau9adcf442011-09-03 01:40:26 +0200334 return r;
335}
336
Ben Greear7e1e3862011-11-03 11:33:13 -0700337static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
338 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530339{
340 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530341 an = (struct ath_node *)sta->drv_priv;
342
Sujith Manoharana145daf2012-11-28 15:08:54 +0530343 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800344 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700345 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530346 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530347
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530348 ath_tx_node_init(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530349}
350
351static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
352{
353 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530354 ath_tx_node_cleanup(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530355}
356
Sujith55624202010-01-08 10:36:02 +0530357void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530358{
359 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700360 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700361 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530362 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530363 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530364 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400365 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530366
Felix Fietkaue3927002011-09-14 21:23:01 +0200367 ath9k_ps_wakeup(sc);
368 spin_lock(&sc->sc_pcu_lock);
369
Sujith Manoharan6549a862013-12-24 10:44:24 +0530370 if (status & ATH9K_INT_FATAL) {
371 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530372 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530373
374 /*
375 * Increment the ref. counter here so that
376 * interrupts are enabled in the reset routine.
377 */
378 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100379 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200380 goto out;
Sujithff37e332008-11-24 12:07:55 +0530381 }
382
Sujith Manoharan6549a862013-12-24 10:44:24 +0530383 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
384 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530385 spin_lock(&common->cc_lock);
386 ath_hw_cycle_counters_update(common);
387 ar9003_hw_bb_watchdog_dbg_info(ah);
388 spin_unlock(&common->cc_lock);
389
Sujith Manoharan6549a862013-12-24 10:44:24 +0530390 if (ar9003_hw_bb_watchdog_check(ah)) {
391 type = RESET_TYPE_BB_WATCHDOG;
392 ath9k_queue_reset(sc, type);
393
394 /*
395 * Increment the ref. counter here so that
396 * interrupts are enabled in the reset routine.
397 */
398 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100399 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530400 "BB_WATCHDOG: Skipping interrupts\n");
401 goto out;
402 }
403 }
404
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530405 if (status & ATH9K_INT_GTT) {
406 sc->gtt_cnt++;
407
408 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
409 type = RESET_TYPE_TX_GTT;
410 ath9k_queue_reset(sc, type);
411 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100412 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530413 "GTT: Skipping interrupts\n");
414 goto out;
415 }
416 }
417
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530418 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530419 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
420 /*
421 * TSF sync does not look correct; remain awake to sync with
422 * the next Beacon.
423 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800424 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530425 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530426 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530427 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530428
Felix Fietkaub5c804752010-04-15 17:38:48 -0400429 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
430 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
431 ATH9K_INT_RXORN);
432 else
433 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
434
435 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400436 /* Check for high priority Rx first */
437 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
438 (status & ATH9K_INT_RXHP))
439 ath_rx_tasklet(sc, 0, true);
440
441 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530442 }
443
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400444 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530445 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
446 /*
447 * For EDMA chips, TX completion is enabled for the
448 * beacon queue, so if a beacon has been transmitted
449 * successfully after a GTT interrupt, the GTT counter
450 * gets reset to zero here.
451 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530452 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530453
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400454 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530455 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400456 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530457 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100458
459 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400460 }
Sujith063d8be2009-03-30 15:28:49 +0530461
Felix Fietkauc67ce332013-12-14 18:03:38 +0100462 if (status & ATH9K_INT_GENTIMER)
463 ath_gen_timer_isr(sc->sc_ah);
464
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530465 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530466
Sujithff37e332008-11-24 12:07:55 +0530467 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100468 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530469out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530470 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400471 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530472}
473
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100474irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530475{
Sujith063d8be2009-03-30 15:28:49 +0530476#define SCHED_INTR ( \
477 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530478 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530479 ATH9K_INT_RXORN | \
480 ATH9K_INT_RXEOL | \
481 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400482 ATH9K_INT_RXLP | \
483 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530484 ATH9K_INT_TX | \
485 ATH9K_INT_BMISS | \
486 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530487 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530488 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530489 ATH9K_INT_GENTIMER | \
490 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530491
Sujithff37e332008-11-24 12:07:55 +0530492 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530493 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100494 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530495 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530496 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530497 bool sched = false;
498
Sujith063d8be2009-03-30 15:28:49 +0530499 /*
500 * The hardware is not ready/present, don't
501 * touch anything. Note this can happen early
502 * on if the IRQ is shared.
503 */
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100504 if (test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530505 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530506
Sujith063d8be2009-03-30 15:28:49 +0530507 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530508
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400509 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530510 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530511
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100512 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200513 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530514 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200515 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530516
Sujith063d8be2009-03-30 15:28:49 +0530517 /*
518 * Figure out the reason(s) for the interrupt. Note
519 * that the hal returns a pseudo-ISR that may include
520 * bits we haven't explicitly enabled so we mask the
521 * value to insure we only process bits we requested.
522 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100523 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
524 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400525 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530526
527 /*
528 * If there are no status bits set, then this interrupt was not
529 * for me (should have been caught above).
530 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400531 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530532 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530533
534 /* Cache the status */
535 sc->intrstatus = status;
536
537 if (status & SCHED_INTR)
538 sched = true;
539
540 /*
541 * If a FATAL or RXORN interrupt is received, we have to reset the
542 * chip immediately.
543 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400544 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
545 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
Sujith063d8be2009-03-30 15:28:49 +0530546 goto chip_reset;
547
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530548 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530549 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400550 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530551
552#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530553 if (status & ATH9K_INT_BMISS) {
554 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530555 atomic_inc(&sc->wow_got_bmiss_intr);
556 atomic_dec(&sc->wow_sleep_proc_intr);
557 }
558 }
559#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530560
Sujith063d8be2009-03-30 15:28:49 +0530561 if (status & ATH9K_INT_SWBA)
562 tasklet_schedule(&sc->bcon_tasklet);
563
564 if (status & ATH9K_INT_TXURN)
565 ath9k_hw_updatetxtriglevel(ah, true);
566
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530567 if (status & ATH9K_INT_RXEOL) {
568 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200569 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400570 }
571
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400572 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
573 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800574 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
575 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530576 /* Clear RxAbort bit so that we can
577 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700578 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530579 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400580 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530581 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530582 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530583 }
Sujith063d8be2009-03-30 15:28:49 +0530584
585chip_reset:
586
Sujith817e11d2008-12-07 21:42:44 +0530587 ath_debug_stat_interrupt(sc, status);
588
Sujithff37e332008-11-24 12:07:55 +0530589 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100590 /* turn off every interrupt */
591 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530592 tasklet_schedule(&sc->intr_tq);
593 }
594
595 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530596
597#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530598}
599
Sujith Manoharanef6b19e2013-10-24 12:04:39 +0530600int ath_reset(struct ath_softc *sc)
Sujithff37e332008-11-24 12:07:55 +0530601{
Felix Fietkauec303262013-10-05 14:09:30 +0200602 int r;
Sujithff37e332008-11-24 12:07:55 +0530603
Felix Fietkau783cd012011-01-21 18:52:38 +0100604 ath9k_ps_wakeup(sc);
Felix Fietkau13815592013-01-20 18:51:53 +0100605 r = ath_reset_internal(sc, NULL);
Felix Fietkau783cd012011-01-21 18:52:38 +0100606 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530607
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800608 return r;
Sujithff37e332008-11-24 12:07:55 +0530609}
610
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530611void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
612{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100613 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530614#ifdef CONFIG_ATH9K_DEBUGFS
615 RESET_STAT_INC(sc, type);
616#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100617 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530618 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
619}
620
Felix Fietkau236de512011-09-03 01:40:25 +0200621void ath_reset_work(struct work_struct *work)
622{
623 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
624
Felix Fietkau13815592013-01-20 18:51:53 +0100625 ath_reset(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200626}
627
Sujithff37e332008-11-24 12:07:55 +0530628/**********************/
629/* mac80211 callbacks */
630/**********************/
631
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700632static int ath9k_start(struct ieee80211_hw *hw)
633{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100634 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700635 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700636 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530637 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530638 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530639 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530640 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641
Joe Perchesd2182b62011-12-15 14:55:53 -0800642 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800643 "Starting driver with initial channel: %d MHz\n",
644 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645
Felix Fietkauf62d8162011-03-25 17:43:41 +0100646 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530647 mutex_lock(&sc->mutex);
648
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530649 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530650 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700651
Sujithff37e332008-11-24 12:07:55 +0530652 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200653 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530654
655 /*
656 * The basic interface to setting the hardware in a good
657 * state is ``reset''. On return the hardware is known to
658 * be powered up and with interrupts disabled. This must
659 * be followed by initialization of the appropriate bits
660 * and then setup of the interrupt mask.
661 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700662 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100663
664 atomic_set(&ah->intr_ref_cnt, -1);
665
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200666 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800667 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800668 ath_err(common,
669 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
670 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200671 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672 }
Sujithff37e332008-11-24 12:07:55 +0530673
Sujithff37e332008-11-24 12:07:55 +0530674 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400675 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
676 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
677 ATH9K_INT_GLOBAL;
678
679 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400680 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530681 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400682 else
683 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530684
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530685 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
686 ah->imask |= ATH9K_INT_BB_WATCHDOG;
687
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530688 /*
689 * Enable GTT interrupts only for AR9003/AR9004 chips
690 * for now.
691 */
692 if (AR_SREV_9300_20_OR_LATER(ah))
693 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530694
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700695 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400696 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530697
Sujith Manoharane270e772012-06-04 16:27:19 +0530698 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530699
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100700 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530701 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530702
Felix Fietkauceb26a62012-10-03 21:07:51 +0200703 if (!ath_complete_reset(sc, false))
704 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700705
Felix Fietkauc0c11742011-11-16 13:08:41 +0100706 if (ah->led_pin >= 0) {
707 ath9k_hw_cfg_output(ah, ah->led_pin,
708 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
709 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
710 }
711
712 /*
713 * Reset key cache to sane defaults (all entries cleared) instead of
714 * semi-random values after suspend/resume.
715 */
716 ath9k_cmn_init_crypto(sc->sc_ah);
717
Felix Fietkaua35051c2013-12-14 18:03:45 +0100718 ath9k_hw_reset_tsf(ah);
719
Felix Fietkau9adcf442011-09-03 01:40:26 +0200720 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400721
Sujith141b38b2009-02-04 08:10:07 +0530722 mutex_unlock(&sc->mutex);
723
Felix Fietkauf62d8162011-03-25 17:43:41 +0100724 ath9k_ps_restore(sc);
725
Felix Fietkauceb26a62012-10-03 21:07:51 +0200726 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727}
728
Thomas Huehn36323f82012-07-23 21:33:42 +0200729static void ath9k_tx(struct ieee80211_hw *hw,
730 struct ieee80211_tx_control *control,
731 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100733 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700734 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530735 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100736 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530737 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530738
Gabor Juhos96148322009-07-24 17:27:21 +0200739 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300740 /*
741 * mac80211 does not set PM field for normal data frames, so we
742 * need to update that based on the current PS mode.
743 */
744 if (ieee80211_is_data(hdr->frame_control) &&
745 !ieee80211_is_nullfunc(hdr->frame_control) &&
746 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800747 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800748 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300749 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
750 }
751 }
752
Sujith Manoharanad128862012-04-24 10:23:20 +0530753 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300754 /*
755 * We are using PS-Poll and mac80211 can request TX while in
756 * power save mode. Need to wake up hardware for the TX to be
757 * completed and if needed, also for RX of buffered frames.
758 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300759 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530760 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700761 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
762 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300763 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800764 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800765 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530766 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300767 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800768 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530769 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300770 }
771 /*
772 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530773 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300774 * the ps_usecount here.
775 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530776 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300777 ath9k_ps_restore(sc);
778 }
779
Sujith Manoharanad128862012-04-24 10:23:20 +0530780 /*
781 * Cannot tx while the hardware is in full sleep, it first needs a full
782 * chip reset to recover from that
783 */
784 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
785 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
786 goto exit;
787 }
788
Sujith528f0c62008-10-29 10:14:26 +0530789 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100790 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200791 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530792
Joe Perchesd2182b62011-12-15 14:55:53 -0800793 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200795 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800796 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700797 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530798 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 }
800
Johannes Berg7bb45682011-02-24 14:42:06 +0100801 return;
Sujith528f0c62008-10-29 10:14:26 +0530802exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200803 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804}
805
806static void ath9k_stop(struct ieee80211_hw *hw)
807{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100808 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700809 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700810 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100811 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530812
Felix Fietkaubff11762014-06-11 16:17:52 +0530813 cancel_work_sync(&sc->chanctx_work);
Sujith4c483812009-08-18 10:51:52 +0530814 mutex_lock(&sc->mutex);
815
Felix Fietkau9adcf442011-09-03 01:40:26 +0200816 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700817
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100818 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800819 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530820 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530821 return;
822 }
823
Sujith3867cf62009-12-23 20:03:27 -0500824 /* Ensure HW is awake when we try to shut it down. */
825 ath9k_ps_wakeup(sc);
826
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700827 spin_lock_bh(&sc->sc_pcu_lock);
828
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100829 /* prevent tasklets to enable interrupts once we disable them */
830 ah->imask &= ~ATH9K_INT_GLOBAL;
831
Sujithff37e332008-11-24 12:07:55 +0530832 /* make sure h/w will not generate any interrupt
833 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100834 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530835
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700836 spin_unlock_bh(&sc->sc_pcu_lock);
837
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100838 /* we can now sync irq and kill any running tasklets, since we already
839 * disabled interrupts and not holding a spin lock */
840 synchronize_irq(sc->irq);
841 tasklet_kill(&sc->intr_tq);
842 tasklet_kill(&sc->bcon_tasklet);
843
Felix Fietkauc0c11742011-11-16 13:08:41 +0100844 prev_idle = sc->ps_idle;
845 sc->ps_idle = true;
846
847 spin_lock_bh(&sc->sc_pcu_lock);
848
849 if (ah->led_pin >= 0) {
850 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
851 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
852 }
853
John W. Linville9ebea382013-01-28 13:54:03 -0500854 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100855
856 if (sc->rx.frag) {
857 dev_kfree_skb_any(sc->rx.frag);
858 sc->rx.frag = NULL;
859 }
860
861 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530862 ah->curchan = ath9k_cmn_get_channel(hw, ah,
863 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100864
865 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
866 ath9k_hw_phy_disable(ah);
867
868 ath9k_hw_configpcipowersave(ah, true);
869
870 spin_unlock_bh(&sc->sc_pcu_lock);
871
Sujith3867cf62009-12-23 20:03:27 -0500872 ath9k_ps_restore(sc);
873
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100874 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100875 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876
Sujith141b38b2009-02-04 08:10:07 +0530877 mutex_unlock(&sc->mutex);
878
Joe Perchesd2182b62011-12-15 14:55:53 -0800879 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700880}
881
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200882static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700883{
Ben Greear48014162011-01-15 19:13:48 +0000884 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200885 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000886 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400887 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000888 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889 default:
Ben Greear48014162011-01-15 19:13:48 +0000890 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700891 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700892}
893
Ben Greear48014162011-01-15 19:13:48 +0000894static void ath9k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
895{
896 struct ath9k_vif_iter_data *iter_data = data;
897 int i;
898
Felix Fietkauab11bb22013-04-16 12:51:57 +0200899 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000900 for (i = 0; i < ETH_ALEN; i++)
901 iter_data->mask[i] &=
902 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200903 } else {
904 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
905 iter_data->has_hw_macaddr = true;
906 }
Ben Greear48014162011-01-15 19:13:48 +0000907
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530908 if (!vif->bss_conf.use_short_slot)
909 iter_data->slottime = ATH9K_SLOT_TIME_20;
910
Ben Greear48014162011-01-15 19:13:48 +0000911 switch (vif->type) {
912 case NL80211_IFTYPE_AP:
913 iter_data->naps++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530914 if (vif->bss_conf.enable_beacon)
915 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000916 break;
917 case NL80211_IFTYPE_STATION:
918 iter_data->nstations++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530919 if (vif->bss_conf.assoc && !iter_data->primary_sta)
920 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000921 break;
922 case NL80211_IFTYPE_ADHOC:
923 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530924 if (vif->bss_conf.enable_beacon)
925 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000926 break;
927 case NL80211_IFTYPE_MESH_POINT:
928 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530929 if (vif->bss_conf.enable_beacon)
930 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000931 break;
932 case NL80211_IFTYPE_WDS:
933 iter_data->nwds++;
934 break;
935 default:
Ben Greear48014162011-01-15 19:13:48 +0000936 break;
937 }
938}
939
940/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530941void ath9k_calculate_iter_data(struct ath_softc *sc,
942 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000943 struct ath9k_vif_iter_data *iter_data)
944{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530945 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000946
947 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100948 * Pick the MAC address of the first interface as the new hardware
949 * MAC address. The hardware will use it together with the BSSID mask
950 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000951 */
952 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +0000953 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530954 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +0000955
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530956 list_for_each_entry(avp, &ctx->vifs, list)
957 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Ben Greear48014162011-01-15 19:13:48 +0000958
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530959 if (ctx == &sc->offchannel.chan) {
960 struct ieee80211_vif *vif;
Felix Fietkauab11bb22013-04-16 12:51:57 +0200961
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530962 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
963 vif = sc->offchannel.scan_vif;
964 else
965 vif = sc->offchannel.roc_vif;
966
967 if (vif)
968 ath9k_vif_iter(iter_data, vif->addr, vif);
969 iter_data->beacons = false;
970 }
971}
972
973static void ath9k_set_assoc_state(struct ath_softc *sc,
974 struct ieee80211_vif *vif, bool changed)
975{
976 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
977 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
978 unsigned long flags;
979
980 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
981 /* Set the AID, BSSID and do beacon-sync only when
982 * the HW opmode is STATION.
983 *
984 * But the primary bit is set above in any case.
985 */
986 if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
987 return;
988
989 ether_addr_copy(common->curbssid, bss_conf->bssid);
990 common->curaid = bss_conf->aid;
991 ath9k_hw_write_associd(sc->sc_ah);
992
993 if (changed) {
994 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
995 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
996
997 spin_lock_irqsave(&sc->sc_pm_lock, flags);
998 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
999 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1000 }
1001
1002 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1003 ath9k_mci_update_wlan_channels(sc, false);
1004
1005 ath_dbg(common, CONFIG,
1006 "Primary Station interface: %pM, BSSID: %pM\n",
1007 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001008}
1009
1010/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301011void ath9k_calculate_summary_state(struct ath_softc *sc,
1012 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001013{
Ben Greear48014162011-01-15 19:13:48 +00001014 struct ath_hw *ah = sc->sc_ah;
1015 struct ath_common *common = ath9k_hw_common(ah);
1016 struct ath9k_vif_iter_data iter_data;
1017
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301018 ath_chanctx_check_active(sc, ctx);
1019
1020 if (ctx != sc->cur_chan)
1021 return;
1022
1023 ath9k_ps_wakeup(sc);
1024 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1025
1026 if (iter_data.has_hw_macaddr)
1027 ether_addr_copy(common->macaddr, iter_data.hw_macaddr);
Ben Greear48014162011-01-15 19:13:48 +00001028
Ben Greear48014162011-01-15 19:13:48 +00001029 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1030 ath_hw_setbssidmask(common);
1031
Ben Greear48014162011-01-15 19:13:48 +00001032 if (iter_data.naps > 0) {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301033 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001034 ah->opmode = NL80211_IFTYPE_AP;
1035 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301036 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001037
Javier Cardonafd5999c2011-05-03 16:57:19 -07001038 if (iter_data.nmeshes)
1039 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1040 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001041 ah->opmode = NL80211_IFTYPE_AP;
1042 else if (iter_data.nadhocs)
1043 ah->opmode = NL80211_IFTYPE_ADHOC;
1044 else
1045 ah->opmode = NL80211_IFTYPE_STATION;
1046 }
1047
Sujith Manoharandf35d292012-07-17 17:15:43 +05301048 ath9k_hw_setopmode(ah);
1049
Felix Fietkau748299f2014-06-11 16:18:04 +05301050 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001051 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001052 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301053 else {
Ben Greear48014162011-01-15 19:13:48 +00001054 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301055 if (iter_data.naps == 1 && iter_data.beacons)
1056 ctx->switch_after_beacon = true;
1057 }
Ben Greear48014162011-01-15 19:13:48 +00001058
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301059 ah->imask &= ~ATH9K_INT_SWBA;
1060 if (ah->opmode == NL80211_IFTYPE_STATION) {
1061 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1062
1063 iter_data.beacons = true;
1064 if (iter_data.primary_sta) {
1065 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1066 changed);
1067 if (!ctx->primary_sta ||
1068 !ctx->primary_sta->bss_conf.assoc)
1069 ctx->primary_sta = iter_data.primary_sta;
1070 } else {
1071 ctx->primary_sta = NULL;
1072 memset(common->curbssid, 0, ETH_ALEN);
1073 common->curaid = 0;
1074 ath9k_hw_write_associd(sc->sc_ah);
1075 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1076 ath9k_mci_update_wlan_channels(sc, true);
1077 }
1078 } else if (iter_data.beacons) {
1079 ah->imask |= ATH9K_INT_SWBA;
1080 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001081 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301082
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301083 if (iter_data.beacons)
1084 set_bit(ATH_OP_BEACONS, &common->op_flags);
1085 else
1086 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1087
1088 if (ah->slottime != iter_data.slottime) {
1089 ah->slottime = iter_data.slottime;
1090 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301091 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301092
1093 if (iter_data.primary_sta)
1094 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1095 else
1096 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1097
1098 ctx->primary_sta = iter_data.primary_sta;
1099
1100 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001101}
1102
Ben Greear48014162011-01-15 19:13:48 +00001103static int ath9k_add_interface(struct ieee80211_hw *hw,
1104 struct ieee80211_vif *vif)
1105{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001106 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001107 struct ath_hw *ah = sc->sc_ah;
1108 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001109 struct ath_vif *avp = (void *)vif->drv_priv;
1110 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001111
1112 mutex_lock(&sc->mutex);
1113
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001114 if (config_enabled(CONFIG_ATH9K_TX99)) {
1115 if (sc->nvifs >= 1) {
1116 mutex_unlock(&sc->mutex);
1117 return -EOPNOTSUPP;
1118 }
1119 sc->tx99_vif = vif;
1120 }
1121
Joe Perchesd2182b62011-12-15 14:55:53 -08001122 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Ben Greear48014162011-01-15 19:13:48 +00001123 sc->nvifs++;
1124
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301125 if (ath9k_uses_beacons(vif->type))
1126 ath9k_beacon_assign_slot(sc, vif);
1127
Felix Fietkaud463af42014-04-06 00:37:03 +02001128 avp->vif = vif;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301129 if (!ath9k_use_chanctx) {
Felix Fietkau39305632014-06-11 16:17:57 +05301130 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301131 list_add_tail(&avp->list, &avp->chanctx->vifs);
1132 }
Felix Fietkau04535312014-06-11 16:17:51 +05301133
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001134 an->sc = sc;
1135 an->sta = NULL;
1136 an->vif = vif;
1137 an->no_ps_filter = true;
1138 ath_tx_node_init(sc, an);
1139
Ben Greear48014162011-01-15 19:13:48 +00001140 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301141 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001142}
1143
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301144static int ath9k_change_interface(struct ieee80211_hw *hw,
1145 struct ieee80211_vif *vif,
1146 enum nl80211_iftype new_type,
1147 bool p2p)
1148{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001149 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301150 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301151 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301152
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301153 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001154
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001155 if (config_enabled(CONFIG_ATH9K_TX99)) {
1156 mutex_unlock(&sc->mutex);
1157 return -EOPNOTSUPP;
1158 }
1159
1160 ath_dbg(common, CONFIG, "Change Interface\n");
1161
Ben Greear48014162011-01-15 19:13:48 +00001162 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301163 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001164
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301165 vif->type = new_type;
1166 vif->p2p = p2p;
1167
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301168 if (ath9k_uses_beacons(vif->type))
1169 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301170
1171 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301172
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301173 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301174 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301175}
1176
Felix Fietkaud463af42014-04-06 00:37:03 +02001177static void
1178ath9k_update_p2p_ps_timer(struct ath_softc *sc, struct ath_vif *avp)
1179{
1180 struct ath_hw *ah = sc->sc_ah;
1181 s32 tsf, target_tsf;
1182
1183 if (!avp || !avp->noa.has_next_tsf)
1184 return;
1185
1186 ath9k_hw_gen_timer_stop(ah, sc->p2p_ps_timer);
1187
1188 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1189
1190 target_tsf = avp->noa.next_tsf;
1191 if (!avp->noa.absent)
1192 target_tsf -= ATH_P2P_PS_STOP_TIME;
1193
1194 if (target_tsf - tsf < ATH_P2P_PS_STOP_TIME)
1195 target_tsf = tsf + ATH_P2P_PS_STOP_TIME;
1196
1197 ath9k_hw_gen_timer_start(ah, sc->p2p_ps_timer, (u32) target_tsf, 1000000);
1198}
1199
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001201 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001202{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001203 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001204 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001205 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001206
Joe Perchesd2182b62011-12-15 14:55:53 -08001207 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208
Sujith141b38b2009-02-04 08:10:07 +05301209 mutex_lock(&sc->mutex);
1210
Felix Fietkaud463af42014-04-06 00:37:03 +02001211 spin_lock_bh(&sc->sc_pcu_lock);
1212 if (avp == sc->p2p_ps_vif) {
1213 sc->p2p_ps_vif = NULL;
1214 ath9k_update_p2p_ps_timer(sc, NULL);
1215 }
1216 spin_unlock_bh(&sc->sc_pcu_lock);
1217
Ben Greear48014162011-01-15 19:13:48 +00001218 sc->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001219 sc->tx99_vif = NULL;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301220 if (!ath9k_use_chanctx)
1221 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222
Ben Greear48014162011-01-15 19:13:48 +00001223 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301224 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001225
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001226 ath_tx_node_cleanup(sc, &avp->mcast_node);
1227
Sujith141b38b2009-02-04 08:10:07 +05301228 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001229}
1230
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301231static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301232{
Pavel Roskin30691682010-03-31 18:05:31 -04001233 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301234 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001235
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001236 if (config_enabled(CONFIG_ATH9K_TX99))
1237 return;
1238
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301239 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001240 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1241 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1242 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001243 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301244 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001245 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301246 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301247 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301248}
1249
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301250static void ath9k_disable_ps(struct ath_softc *sc)
1251{
1252 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301253 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301254
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001255 if (config_enabled(CONFIG_ATH9K_TX99))
1256 return;
1257
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301258 sc->ps_enabled = false;
1259 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1260 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1261 ath9k_hw_setrxabort(ah, 0);
1262 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1263 PS_WAIT_FOR_CAB |
1264 PS_WAIT_FOR_PSPOLL_DATA |
1265 PS_WAIT_FOR_TX_ACK);
1266 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1267 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001268 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301269 }
1270 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301271 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301272}
1273
Simon Wunderliche93d0832013-01-08 14:48:58 +01001274void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1275{
1276 struct ath_softc *sc = hw->priv;
1277 struct ath_hw *ah = sc->sc_ah;
1278 struct ath_common *common = ath9k_hw_common(ah);
1279 u32 rxfilter;
1280
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001281 if (config_enabled(CONFIG_ATH9K_TX99))
1282 return;
1283
Simon Wunderliche93d0832013-01-08 14:48:58 +01001284 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1285 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1286 return;
1287 }
1288
1289 ath9k_ps_wakeup(sc);
1290 rxfilter = ath9k_hw_getrxfilter(ah);
1291 ath9k_hw_setrxfilter(ah, rxfilter |
1292 ATH9K_RX_FILTER_PHYRADAR |
1293 ATH9K_RX_FILTER_PHYERR);
1294
1295 /* TODO: usually this should not be neccesary, but for some reason
1296 * (or in some mode?) the trigger must be called after the
1297 * configuration, otherwise the register will have its values reset
1298 * (on my ar9220 to value 0x01002310)
1299 */
1300 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1301 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1302 ath9k_ps_restore(sc);
1303}
1304
1305int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1306 enum spectral_mode spectral_mode)
1307{
1308 struct ath_softc *sc = hw->priv;
1309 struct ath_hw *ah = sc->sc_ah;
1310 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001311
1312 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1313 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1314 return -1;
1315 }
1316
Simon Wunderliche93d0832013-01-08 14:48:58 +01001317 switch (spectral_mode) {
1318 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001319 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001320 break;
1321 case SPECTRAL_BACKGROUND:
1322 /* send endless samples.
1323 * TODO: is this really useful for "background"?
1324 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001325 sc->spec_config.endless = 1;
1326 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001327 break;
1328 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001329 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001330 sc->spec_config.endless = 0;
1331 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001332 break;
1333 default:
1334 return -1;
1335 }
1336
1337 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001338 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001339 ath9k_ps_restore(sc);
1340
1341 sc->spectral_mode = spectral_mode;
1342
1343 return 0;
1344}
1345
Johannes Berge8975582008-10-09 12:18:51 +02001346static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001347{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001348 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001349 struct ath_hw *ah = sc->sc_ah;
1350 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001351 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301352 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353
Felix Fietkauc0c11742011-11-16 13:08:41 +01001354 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301355 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301356
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001357 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001358 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301359 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001360 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301361 ath9k_stop_btcoex(sc);
1362 } else {
1363 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001364 /*
1365 * The chip needs a reset to properly wake up from
1366 * full sleep
1367 */
Felix Fietkau39305632014-06-11 16:17:57 +05301368 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301369 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001370 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001371
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001372 /*
1373 * We just prepare to enable PS. We have to wait until our AP has
1374 * ACK'd our null data frame to disable RX otherwise we'll ignore
1375 * those ACKs and end up retransmitting the same null data frames.
1376 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1377 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301378 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001379 unsigned long flags;
1380 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301381 if (conf->flags & IEEE80211_CONF_PS)
1382 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301383 else
1384 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001385 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301386 }
1387
Sujith199afd92010-01-08 10:36:13 +05301388 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1389 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001390 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301391 sc->sc_ah->is_monitoring = true;
1392 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001393 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301394 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301395 }
1396 }
1397
Felix Fietkau39305632014-06-11 16:17:57 +05301398 if (!ath9k_use_chanctx && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301399 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301400 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301401 }
Sujith86b89ee2008-08-07 10:54:57 +05301402
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001403 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001404 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301405 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301406 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301407 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001408 }
1409
Sujithaa33de02008-12-18 11:40:16 +05301410 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001411 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301412
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001413 return 0;
1414}
1415
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001416#define SUPPORTED_FILTERS \
1417 (FIF_PROMISC_IN_BSS | \
1418 FIF_ALLMULTI | \
1419 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001420 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421 FIF_OTHER_BSS | \
1422 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001423 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001424 FIF_FCSFAIL)
1425
Sujith7dcfdcd2008-08-11 14:03:13 +05301426/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001427static void ath9k_configure_filter(struct ieee80211_hw *hw,
1428 unsigned int changed_flags,
1429 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001430 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001431{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001432 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301433 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001434
1435 changed_flags &= SUPPORTED_FILTERS;
1436 *total_flags &= SUPPORTED_FILTERS;
1437
Sujithb77f4832008-12-07 21:44:03 +05301438 sc->rx.rxfilter = *total_flags;
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001439 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301440 rfilt = ath_calcrxfilter(sc);
1441 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001442 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301443
Joe Perchesd2182b62011-12-15 14:55:53 -08001444 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1445 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001446}
1447
Johannes Berg4ca77862010-02-19 19:06:56 +01001448static int ath9k_sta_add(struct ieee80211_hw *hw,
1449 struct ieee80211_vif *vif,
1450 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001451{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001452 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001453 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1454 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1455 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001456 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457
Ben Greear7e1e3862011-11-03 11:33:13 -07001458 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001459
1460 if (vif->type != NL80211_IFTYPE_AP &&
1461 vif->type != NL80211_IFTYPE_AP_VLAN)
1462 return 0;
1463
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001464 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301465 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001466 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301467 an->key_idx[0] = key;
1468 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001469
1470 return 0;
1471}
1472
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001473static void ath9k_del_ps_key(struct ath_softc *sc,
1474 struct ieee80211_vif *vif,
1475 struct ieee80211_sta *sta)
1476{
1477 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1478 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1479 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1480
1481 if (!an->ps_key)
1482 return;
1483
1484 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001485 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301486 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001487}
1488
Johannes Berg4ca77862010-02-19 19:06:56 +01001489static int ath9k_sta_remove(struct ieee80211_hw *hw,
1490 struct ieee80211_vif *vif,
1491 struct ieee80211_sta *sta)
1492{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001493 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001494
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001495 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001496 ath_node_detach(sc, sta);
1497
1498 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001499}
1500
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301501static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1502 struct ath_node *an,
1503 bool set)
1504{
1505 int i;
1506
1507 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1508 if (!an->key_idx[i])
1509 continue;
1510 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1511 }
1512}
1513
Felix Fietkau55195412011-04-17 23:28:09 +02001514static void ath9k_sta_notify(struct ieee80211_hw *hw,
1515 struct ieee80211_vif *vif,
1516 enum sta_notify_cmd cmd,
1517 struct ieee80211_sta *sta)
1518{
1519 struct ath_softc *sc = hw->priv;
1520 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1521
1522 switch (cmd) {
1523 case STA_NOTIFY_SLEEP:
1524 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001525 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301526 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001527 break;
1528 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301529 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001530 an->sleeping = false;
1531 ath_tx_aggr_wakeup(sc, an);
1532 break;
1533 }
1534}
1535
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001536static int ath9k_conf_tx(struct ieee80211_hw *hw,
1537 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001538 const struct ieee80211_tx_queue_params *params)
1539{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001540 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001541 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001542 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301543 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001544 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001545
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301546 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001547 return 0;
1548
Felix Fietkau066dae92010-11-07 14:59:39 +01001549 txq = sc->tx.txq_map[queue];
1550
Felix Fietkau96f372c2011-04-07 19:07:17 +02001551 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301552 mutex_lock(&sc->mutex);
1553
Sujith1ffb0612009-03-30 15:28:46 +05301554 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1555
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001556 qi.tqi_aifs = params->aifs;
1557 qi.tqi_cwmin = params->cw_min;
1558 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001559 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001560
Joe Perchesd2182b62011-12-15 14:55:53 -08001561 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001562 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1563 queue, txq->axq_qnum, params->aifs, params->cw_min,
1564 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001565
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001566 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001567 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001568 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001569 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001570
Sujith141b38b2009-02-04 08:10:07 +05301571 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001572 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301573
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001574 return ret;
1575}
1576
1577static int ath9k_set_key(struct ieee80211_hw *hw,
1578 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001579 struct ieee80211_vif *vif,
1580 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001581 struct ieee80211_key_conf *key)
1582{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001583 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001584 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301585 struct ath_node *an = NULL;
1586 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001587
John W. Linville3e6109c2011-01-05 09:39:17 -05001588 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001589 return -ENOSPC;
1590
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001591 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1592 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001593 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1594 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1595 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1596 /*
1597 * For now, disable hw crypto for the RSN IBSS group keys. This
1598 * could be optimized in the future to use a modified key cache
1599 * design to support per-STA RX GTK, but until that gets
1600 * implemented, use of software crypto for group addressed
1601 * frames is a acceptable to allow RSN IBSS to be used.
1602 */
1603 return -EOPNOTSUPP;
1604 }
1605
Sujith141b38b2009-02-04 08:10:07 +05301606 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301607 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301608 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1609 if (sta)
1610 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001611
1612 switch (cmd) {
1613 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001614 if (sta)
1615 ath9k_del_ps_key(sc, vif, sta);
1616
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301617 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001618 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001619 if (ret >= 0) {
1620 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001621 /* push IV and Michael MIC generation to stack */
1622 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001623 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301624 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001625 if (sc->sc_ah->sw_mgmt_crypto &&
1626 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001627 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001628 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001629 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301630 if (an && key->hw_key_idx) {
1631 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1632 if (an->key_idx[i])
1633 continue;
1634 an->key_idx[i] = key->hw_key_idx;
1635 break;
1636 }
1637 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1638 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639 break;
1640 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001641 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301642 if (an) {
1643 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1644 if (an->key_idx[i] != key->hw_key_idx)
1645 continue;
1646 an->key_idx[i] = 0;
1647 break;
1648 }
1649 }
1650 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651 break;
1652 default:
1653 ret = -EINVAL;
1654 }
1655
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301656 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301657 mutex_unlock(&sc->mutex);
1658
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001659 return ret;
1660}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301661
Felix Fietkaud463af42014-04-06 00:37:03 +02001662void ath9k_p2p_ps_timer(void *priv)
1663{
1664 struct ath_softc *sc = priv;
1665 struct ath_vif *avp = sc->p2p_ps_vif;
1666 struct ieee80211_vif *vif;
1667 struct ieee80211_sta *sta;
1668 struct ath_node *an;
1669 u32 tsf;
1670
Felix Fietkau748299f2014-06-11 16:18:04 +05301671 ath9k_hw_gen_timer_stop(sc->sc_ah, sc->p2p_ps_timer);
1672 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_TSF_TIMER);
1673
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301674 if (!avp || avp->chanctx != sc->cur_chan)
Felix Fietkaud463af42014-04-06 00:37:03 +02001675 return;
1676
1677 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1678 if (!avp->noa.absent)
1679 tsf += ATH_P2P_PS_STOP_TIME;
1680
1681 if (!avp->noa.has_next_tsf ||
1682 avp->noa.next_tsf - tsf > BIT(31))
1683 ieee80211_update_p2p_noa(&avp->noa, tsf);
1684
1685 ath9k_update_p2p_ps_timer(sc, avp);
1686
1687 rcu_read_lock();
1688
1689 vif = avp->vif;
1690 sta = ieee80211_find_sta(vif, vif->bss_conf.bssid);
1691 if (!sta)
1692 goto out;
1693
1694 an = (void *) sta->drv_priv;
1695 if (an->sleeping == !!avp->noa.absent)
1696 goto out;
1697
1698 an->sleeping = avp->noa.absent;
1699 if (an->sleeping)
1700 ath_tx_aggr_sleep(sta, sc, an);
1701 else
1702 ath_tx_aggr_wakeup(sc, an);
1703
1704out:
1705 rcu_read_unlock();
1706}
1707
1708void ath9k_update_p2p_ps(struct ath_softc *sc, struct ieee80211_vif *vif)
1709{
1710 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkaud463af42014-04-06 00:37:03 +02001711 u32 tsf;
1712
1713 if (!sc->p2p_ps_timer)
1714 return;
1715
1716 if (vif->type != NL80211_IFTYPE_STATION || !vif->p2p)
1717 return;
1718
1719 sc->p2p_ps_vif = avp;
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301720 tsf = ath9k_hw_gettsf32(sc->sc_ah);
1721 ieee80211_parse_p2p_noa(&vif->bss_conf.p2p_noa_attr, &avp->noa, tsf);
1722 ath9k_update_p2p_ps_timer(sc, avp);
Felix Fietkaud463af42014-04-06 00:37:03 +02001723}
1724
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001725static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1726 struct ieee80211_vif *vif,
1727 struct ieee80211_bss_conf *bss_conf,
1728 u32 changed)
1729{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301730#define CHECK_ANI \
1731 (BSS_CHANGED_ASSOC | \
1732 BSS_CHANGED_IBSS | \
1733 BSS_CHANGED_BEACON_ENABLED)
1734
Felix Fietkau9ac586152011-01-24 19:23:18 +01001735 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001736 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001737 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001738 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301739 unsigned long flags;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001740 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001741
Felix Fietkau96f372c2011-04-07 19:07:17 +02001742 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301743 mutex_lock(&sc->mutex);
1744
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301745 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301746 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1747 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301748
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301749 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001750 }
1751
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301752 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301753 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1754 common->curaid = bss_conf->aid;
1755 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301756 }
1757
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301758 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301759 (changed & BSS_CHANGED_BEACON_INT)) {
1760 if (changed & BSS_CHANGED_BEACON_ENABLED)
1761 ath9k_calculate_summary_state(sc, avp->chanctx);
Felix Fietkauc32e4e52013-12-19 18:01:49 +01001762 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301763 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001764
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301765 if ((avp->chanctx == sc->cur_chan) &&
1766 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001767 if (bss_conf->use_short_slot)
1768 slottime = 9;
1769 else
1770 slottime = 20;
1771 if (vif->type == NL80211_IFTYPE_AP) {
1772 /*
1773 * Defer update, so that connected stations can adjust
1774 * their settings at the same time.
1775 * See beacon.c for more details
1776 */
1777 sc->beacon.slottime = slottime;
1778 sc->beacon.updateslot = UPDATE;
1779 } else {
1780 ah->slottime = slottime;
1781 ath9k_hw_init_global_settings(ah);
1782 }
1783 }
1784
Felix Fietkaud463af42014-04-06 00:37:03 +02001785 if (changed & BSS_CHANGED_P2P_PS) {
1786 spin_lock_bh(&sc->sc_pcu_lock);
Rajkumar Manoharan60ccc102014-05-27 16:58:02 +05301787 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1788 if (!(sc->ps_flags & PS_BEACON_SYNC))
1789 ath9k_update_p2p_ps(sc, vif);
1790 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Felix Fietkaud463af42014-04-06 00:37:03 +02001791 spin_unlock_bh(&sc->sc_pcu_lock);
1792 }
1793
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301794 if (changed & CHECK_ANI)
1795 ath_check_ani(sc);
1796
Sujith141b38b2009-02-04 08:10:07 +05301797 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001798 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301799
1800#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801}
1802
Eliad Peller37a41b42011-09-21 14:06:11 +03001803static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001804{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001805 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001807
Sujith141b38b2009-02-04 08:10:07 +05301808 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301809 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301810 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301811 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301812 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001813
1814 return tsf;
1815}
1816
Eliad Peller37a41b42011-09-21 14:06:11 +03001817static void ath9k_set_tsf(struct ieee80211_hw *hw,
1818 struct ieee80211_vif *vif,
1819 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001820{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001821 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001822
Sujith141b38b2009-02-04 08:10:07 +05301823 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301824 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301825 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301826 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301827 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001828}
1829
Eliad Peller37a41b42011-09-21 14:06:11 +03001830static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001831{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001832 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833
Sujith141b38b2009-02-04 08:10:07 +05301834 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001835
1836 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301837 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001838 ath9k_ps_restore(sc);
1839
Sujith141b38b2009-02-04 08:10:07 +05301840 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001841}
1842
1843static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001844 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301845 enum ieee80211_ampdu_mlme_action action,
1846 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001847 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001848{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001849 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001850 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001851 int ret = 0;
1852
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301853 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001854
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855 switch (action) {
1856 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001857 break;
1858 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001859 break;
1860 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001861 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001862 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1863 if (!ret)
1864 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001865 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001866 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001867 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1868 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001869 flush = true;
1870 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001871 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301872 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001873 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001874 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001875 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001877 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001878 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301879 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001880 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301881 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882 default:
Joe Perches38002762010-12-02 19:12:36 -08001883 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 }
1885
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301886 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001887
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001888 return ret;
1889}
1890
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001891static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1892 struct survey_info *survey)
1893{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001894 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001895 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001896 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001897 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001898 int pos;
1899
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001900 if (config_enabled(CONFIG_ATH9K_TX99))
1901 return -EOPNOTSUPP;
1902
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301903 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001904 if (idx == 0)
1905 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001906
Felix Fietkau39162db2010-09-29 19:12:06 +02001907 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1908 if (sband && idx >= sband->n_channels) {
1909 idx -= sband->n_channels;
1910 sband = NULL;
1911 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001912
Felix Fietkau39162db2010-09-29 19:12:06 +02001913 if (!sband)
1914 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1915
Felix Fietkau34300982010-10-10 18:21:52 +02001916 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301917 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001918 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001919 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001920
Felix Fietkau34300982010-10-10 18:21:52 +02001921 chan = &sband->channels[idx];
1922 pos = chan->hw_value;
1923 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1924 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301925 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001926
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001927 return 0;
1928}
1929
Felix Fietkaue239d852010-01-15 02:34:58 +01001930static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
1931{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001932 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001933 struct ath_hw *ah = sc->sc_ah;
1934
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001935 if (config_enabled(CONFIG_ATH9K_TX99))
1936 return;
1937
Felix Fietkaue239d852010-01-15 02:34:58 +01001938 mutex_lock(&sc->mutex);
1939 ah->coverage_class = coverage_class;
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301940
1941 ath9k_ps_wakeup(sc);
Felix Fietkaue239d852010-01-15 02:34:58 +01001942 ath9k_hw_init_global_settings(ah);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301943 ath9k_ps_restore(sc);
1944
Felix Fietkaue239d852010-01-15 02:34:58 +01001945 mutex_unlock(&sc->mutex);
1946}
1947
Felix Fietkau10e23182013-11-11 22:23:35 +01001948static bool ath9k_has_tx_pending(struct ath_softc *sc)
1949{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001950 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001951
1952 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1953 if (!ATH_TXQ_SETUP(sc, i))
1954 continue;
1955
1956 if (!sc->tx.txq[i].axq_depth)
1957 continue;
1958
1959 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
1960 if (npend)
1961 break;
1962 }
1963
1964 return !!npend;
1965}
1966
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02001967static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1968 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001969{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001970 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05301971
1972 mutex_lock(&sc->mutex);
1973 __ath9k_flush(hw, queues, drop);
1974 mutex_unlock(&sc->mutex);
1975}
1976
1977void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
1978{
1979 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301980 struct ath_hw *ah = sc->sc_ah;
1981 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau10e23182013-11-11 22:23:35 +01001982 int timeout = HZ / 5; /* 200 ms */
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05301983 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001984
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001985 cancel_delayed_work_sync(&sc->tx_complete_work);
1986
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301987 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001988 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301989 return;
1990 }
1991
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001992 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001993 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301994 return;
1995 }
1996
Felix Fietkau10e23182013-11-11 22:23:35 +01001997 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
1998 timeout) > 0)
1999 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002000
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002001 if (drop) {
2002 ath9k_ps_wakeup(sc);
2003 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002004 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002005 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002006
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002007 if (!drain_txq)
Felix Fietkau13815592013-01-20 18:51:53 +01002008 ath_reset(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002009
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002010 ath9k_ps_restore(sc);
2011 ieee80211_wake_queues(hw);
2012 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302013
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002014 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002015}
2016
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302017static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2018{
2019 struct ath_softc *sc = hw->priv;
2020 int i;
2021
2022 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2023 if (!ATH_TXQ_SETUP(sc, i))
2024 continue;
2025
2026 if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
2027 return true;
2028 }
2029 return false;
2030}
2031
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302032static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002033{
2034 struct ath_softc *sc = hw->priv;
2035 struct ath_hw *ah = sc->sc_ah;
2036 struct ieee80211_vif *vif;
2037 struct ath_vif *avp;
2038 struct ath_buf *bf;
2039 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002040 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002041 int status;
2042
2043 vif = sc->beacon.bslot[0];
2044 if (!vif)
2045 return 0;
2046
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302047 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002048 return 0;
2049
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302050 avp = (void *)vif->drv_priv;
2051
Felix Fietkau4286df62012-02-27 19:58:40 +01002052 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002053 tasklet_disable(&sc->bcon_tasklet);
2054
2055 bf = avp->av_bcbuf;
2056 if (!bf || !bf->bf_mpdu)
2057 goto skip;
2058
2059 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2060 if (status == -EINPROGRESS)
2061 goto skip;
2062
2063 sc->beacon.tx_processed = true;
2064 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2065
2066skip:
2067 tasklet_enable(&sc->bcon_tasklet);
2068 }
2069
2070 return sc->beacon.tx_last;
2071}
2072
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302073static int ath9k_get_stats(struct ieee80211_hw *hw,
2074 struct ieee80211_low_level_stats *stats)
2075{
2076 struct ath_softc *sc = hw->priv;
2077 struct ath_hw *ah = sc->sc_ah;
2078 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2079
2080 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2081 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2082 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2083 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2084 return 0;
2085}
2086
Felix Fietkau43c35282011-09-03 01:40:27 +02002087static u32 fill_chainmask(u32 cap, u32 new)
2088{
2089 u32 filled = 0;
2090 int i;
2091
2092 for (i = 0; cap && new; i++, cap >>= 1) {
2093 if (!(cap & BIT(0)))
2094 continue;
2095
2096 if (new & BIT(0))
2097 filled |= BIT(i);
2098
2099 new >>= 1;
2100 }
2101
2102 return filled;
2103}
2104
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002105static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2106{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002107 if (AR_SREV_9300_20_OR_LATER(ah))
2108 return true;
2109
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002110 switch (val & 0x7) {
2111 case 0x1:
2112 case 0x3:
2113 case 0x7:
2114 return true;
2115 case 0x2:
2116 return (ah->caps.rx_chainmask == 1);
2117 default:
2118 return false;
2119 }
2120}
2121
Felix Fietkau43c35282011-09-03 01:40:27 +02002122static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2123{
2124 struct ath_softc *sc = hw->priv;
2125 struct ath_hw *ah = sc->sc_ah;
2126
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002127 if (ah->caps.rx_chainmask != 1)
2128 rx_ant |= tx_ant;
2129
2130 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002131 return -EINVAL;
2132
2133 sc->ant_rx = rx_ant;
2134 sc->ant_tx = tx_ant;
2135
2136 if (ah->caps.rx_chainmask == 1)
2137 return 0;
2138
2139 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2140 if (AR_SREV_9100(ah))
2141 ah->rxchainmask = 0x7;
2142 else
2143 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2144
2145 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002146 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002147
2148 return 0;
2149}
2150
2151static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2152{
2153 struct ath_softc *sc = hw->priv;
2154
2155 *tx_ant = sc->ant_tx;
2156 *rx_ant = sc->ant_rx;
2157 return 0;
2158}
2159
Simon Wunderliche93d0832013-01-08 14:48:58 +01002160static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2161{
2162 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002163 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2164 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002165}
2166
2167static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2168{
2169 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002170 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2171 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002172}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302173
Felix Fietkau78b21942014-06-11 16:17:55 +05302174static void
2175ath_scan_next_channel(struct ath_softc *sc)
2176{
2177 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2178 struct ieee80211_channel *chan;
2179
2180 if (sc->offchannel.scan_idx >= req->n_channels) {
2181 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302182 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc, false),
2183 NULL);
Felix Fietkau78b21942014-06-11 16:17:55 +05302184 return;
2185 }
2186
2187 chan = req->channels[sc->offchannel.scan_idx++];
2188 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_SEND;
2189 ath_chanctx_offchan_switch(sc, chan);
2190}
2191
Felix Fietkau405393c2014-06-11 16:17:56 +05302192static void ath_offchannel_next(struct ath_softc *sc)
2193{
2194 struct ieee80211_vif *vif;
2195
2196 if (sc->offchannel.scan_req) {
2197 vif = sc->offchannel.scan_vif;
2198 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
2199 ath_scan_next_channel(sc);
2200 } else if (sc->offchannel.roc_vif) {
2201 vif = sc->offchannel.roc_vif;
2202 sc->offchannel.chan.txpower = vif->bss_conf.txpower;
2203 sc->offchannel.state = ATH_OFFCHANNEL_ROC_START;
2204 ath_chanctx_offchan_switch(sc, sc->offchannel.roc_chan);
2205 } else {
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302206 ath_chanctx_switch(sc, ath_chanctx_get_oper_chan(sc, false),
2207 NULL);
Felix Fietkau405393c2014-06-11 16:17:56 +05302208 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
2209 if (sc->ps_idle)
2210 ath_cancel_work(sc);
2211 }
2212}
2213
2214static void ath_roc_complete(struct ath_softc *sc, bool abort)
2215{
2216 sc->offchannel.roc_vif = NULL;
2217 sc->offchannel.roc_chan = NULL;
2218 if (!abort)
2219 ieee80211_remain_on_channel_expired(sc->hw);
2220 ath_offchannel_next(sc);
2221 ath9k_ps_restore(sc);
2222}
2223
Felix Fietkau78b21942014-06-11 16:17:55 +05302224static void ath_scan_complete(struct ath_softc *sc, bool abort)
2225{
2226 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2227
Felix Fietkau78b21942014-06-11 16:17:55 +05302228 sc->offchannel.scan_req = NULL;
2229 sc->offchannel.scan_vif = NULL;
2230 sc->offchannel.state = ATH_OFFCHANNEL_IDLE;
2231 ieee80211_scan_completed(sc->hw, abort);
2232 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Felix Fietkau405393c2014-06-11 16:17:56 +05302233 ath_offchannel_next(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302234 ath9k_ps_restore(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302235}
2236
2237static void ath_scan_send_probe(struct ath_softc *sc,
2238 struct cfg80211_ssid *ssid)
2239{
2240 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2241 struct ieee80211_vif *vif = sc->offchannel.scan_vif;
2242 struct ath_tx_control txctl = {};
2243 struct sk_buff *skb;
2244 struct ieee80211_tx_info *info;
2245 int band = sc->offchannel.chan.chandef.chan->band;
2246
2247 skb = ieee80211_probereq_get(sc->hw, vif,
2248 ssid->ssid, ssid->ssid_len, req->ie_len);
2249 if (!skb)
2250 return;
2251
2252 info = IEEE80211_SKB_CB(skb);
2253 if (req->no_cck)
2254 info->flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
2255
2256 if (req->ie_len)
2257 memcpy(skb_put(skb, req->ie_len), req->ie, req->ie_len);
2258
2259 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
2260
2261 if (!ieee80211_tx_prepare_skb(sc->hw, vif, skb, band, NULL))
2262 goto error;
2263
2264 txctl.txq = sc->tx.txq_map[IEEE80211_AC_VO];
2265 txctl.force_channel = true;
2266 if (ath_tx_start(sc->hw, skb, &txctl))
2267 goto error;
2268
2269 return;
2270
2271error:
2272 ieee80211_free_txskb(sc->hw, skb);
2273}
2274
2275static void ath_scan_channel_start(struct ath_softc *sc)
2276{
2277 struct cfg80211_scan_request *req = sc->offchannel.scan_req;
2278 int i, dwell;
2279
2280 if ((sc->cur_chan->chandef.chan->flags & IEEE80211_CHAN_NO_IR) ||
2281 !req->n_ssids) {
2282 dwell = HZ / 9; /* ~110 ms */
2283 } else {
2284 dwell = HZ / 16; /* ~60 ms */
2285
2286 for (i = 0; i < req->n_ssids; i++)
2287 ath_scan_send_probe(sc, &req->ssids[i]);
2288 }
2289
2290 sc->offchannel.state = ATH_OFFCHANNEL_PROBE_WAIT;
2291 mod_timer(&sc->offchannel.timer, jiffies + dwell);
2292}
2293
2294void ath_offchannel_channel_change(struct ath_softc *sc)
2295{
Felix Fietkau78b21942014-06-11 16:17:55 +05302296 switch (sc->offchannel.state) {
2297 case ATH_OFFCHANNEL_PROBE_SEND:
Felix Fietkau405393c2014-06-11 16:17:56 +05302298 if (!sc->offchannel.scan_req)
2299 return;
2300
Felix Fietkau78b21942014-06-11 16:17:55 +05302301 if (sc->cur_chan->chandef.chan !=
2302 sc->offchannel.chan.chandef.chan)
2303 return;
2304
2305 ath_scan_channel_start(sc);
2306 break;
2307 case ATH_OFFCHANNEL_IDLE:
Felix Fietkau405393c2014-06-11 16:17:56 +05302308 if (!sc->offchannel.scan_req)
2309 return;
2310
Felix Fietkau78b21942014-06-11 16:17:55 +05302311 ath_scan_complete(sc, false);
2312 break;
Felix Fietkau405393c2014-06-11 16:17:56 +05302313 case ATH_OFFCHANNEL_ROC_START:
2314 if (sc->cur_chan != &sc->offchannel.chan)
2315 break;
2316
2317 sc->offchannel.state = ATH_OFFCHANNEL_ROC_WAIT;
2318 mod_timer(&sc->offchannel.timer, jiffies +
2319 msecs_to_jiffies(sc->offchannel.roc_duration));
2320 ieee80211_ready_on_channel(sc->hw);
2321 break;
2322 case ATH_OFFCHANNEL_ROC_DONE:
2323 ath_roc_complete(sc, false);
2324 break;
Felix Fietkau78b21942014-06-11 16:17:55 +05302325 default:
2326 break;
2327 }
2328}
2329
2330void ath_offchannel_timer(unsigned long data)
2331{
2332 struct ath_softc *sc = (struct ath_softc *)data;
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302333 struct ath_chanctx *ctx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302334
Felix Fietkau78b21942014-06-11 16:17:55 +05302335 switch (sc->offchannel.state) {
2336 case ATH_OFFCHANNEL_PROBE_WAIT:
Felix Fietkau405393c2014-06-11 16:17:56 +05302337 if (!sc->offchannel.scan_req)
2338 return;
2339
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302340 /* get first active channel context */
2341 ctx = ath_chanctx_get_oper_chan(sc, true);
Felix Fietkau78b21942014-06-11 16:17:55 +05302342 if (ctx->active) {
2343 sc->offchannel.state = ATH_OFFCHANNEL_SUSPEND;
2344 ath_chanctx_switch(sc, ctx, NULL);
2345 mod_timer(&sc->offchannel.timer, jiffies + HZ / 10);
2346 break;
2347 }
2348 /* fall through */
2349 case ATH_OFFCHANNEL_SUSPEND:
Felix Fietkau405393c2014-06-11 16:17:56 +05302350 if (!sc->offchannel.scan_req)
2351 return;
2352
Felix Fietkau78b21942014-06-11 16:17:55 +05302353 ath_scan_next_channel(sc);
2354 break;
Felix Fietkau405393c2014-06-11 16:17:56 +05302355 case ATH_OFFCHANNEL_ROC_START:
2356 case ATH_OFFCHANNEL_ROC_WAIT:
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302357 ctx = ath_chanctx_get_oper_chan(sc, false);
Felix Fietkau405393c2014-06-11 16:17:56 +05302358 sc->offchannel.state = ATH_OFFCHANNEL_ROC_DONE;
2359 ath_chanctx_switch(sc, ctx, NULL);
2360 break;
Felix Fietkau78b21942014-06-11 16:17:55 +05302361 default:
2362 break;
2363 }
2364}
2365
2366static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2367 struct cfg80211_scan_request *req)
2368{
2369 struct ath_softc *sc = hw->priv;
2370 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2371 int ret = 0;
2372
2373 mutex_lock(&sc->mutex);
2374
2375 if (WARN_ON(sc->offchannel.scan_req)) {
2376 ret = -EBUSY;
2377 goto out;
2378 }
2379
2380 ath9k_ps_wakeup(sc);
2381 set_bit(ATH_OP_SCANNING, &common->op_flags);
2382 sc->offchannel.scan_vif = vif;
2383 sc->offchannel.scan_req = req;
2384 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302385
Felix Fietkau405393c2014-06-11 16:17:56 +05302386 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE)
2387 ath_offchannel_next(sc);
Felix Fietkau78b21942014-06-11 16:17:55 +05302388
2389out:
2390 mutex_unlock(&sc->mutex);
2391
2392 return ret;
2393}
2394
2395static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2396 struct ieee80211_vif *vif)
2397{
2398 struct ath_softc *sc = hw->priv;
2399
2400 mutex_lock(&sc->mutex);
2401 del_timer_sync(&sc->offchannel.timer);
2402 ath_scan_complete(sc, true);
2403 mutex_unlock(&sc->mutex);
2404}
2405
Felix Fietkau405393c2014-06-11 16:17:56 +05302406static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2407 struct ieee80211_vif *vif,
2408 struct ieee80211_channel *chan, int duration,
2409 enum ieee80211_roc_type type)
2410{
2411 struct ath_softc *sc = hw->priv;
2412 int ret = 0;
2413
2414 mutex_lock(&sc->mutex);
2415
2416 if (WARN_ON(sc->offchannel.roc_vif)) {
2417 ret = -EBUSY;
2418 goto out;
2419 }
2420
2421 ath9k_ps_wakeup(sc);
2422 sc->offchannel.roc_vif = vif;
2423 sc->offchannel.roc_chan = chan;
2424 sc->offchannel.roc_duration = duration;
2425
2426 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE)
2427 ath_offchannel_next(sc);
2428
2429out:
2430 mutex_unlock(&sc->mutex);
2431
2432 return ret;
2433}
2434
2435static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2436{
2437 struct ath_softc *sc = hw->priv;
2438
2439 mutex_lock(&sc->mutex);
2440
2441 del_timer_sync(&sc->offchannel.timer);
2442
2443 if (sc->offchannel.roc_vif) {
2444 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2445 ath_roc_complete(sc, true);
2446 }
2447
2448 mutex_unlock(&sc->mutex);
2449
2450 return 0;
2451}
2452
Felix Fietkau39305632014-06-11 16:17:57 +05302453static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2454 struct ieee80211_chanctx_conf *conf)
2455{
2456 struct ath_softc *sc = hw->priv;
2457 struct ath_chanctx *ctx, **ptr;
Felix Fietkau39305632014-06-11 16:17:57 +05302458
2459 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302460
2461 ath_for_each_chanctx(sc, ctx) {
2462 if (ctx->assigned)
2463 continue;
2464
2465 ptr = (void *) conf->drv_priv;
2466 *ptr = ctx;
2467 ctx->assigned = true;
2468 ath_chanctx_set_channel(sc, ctx, &conf->def);
Felix Fietkau39305632014-06-11 16:17:57 +05302469 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302470 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302471 }
Felix Fietkau39305632014-06-11 16:17:57 +05302472 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302473 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302474}
2475
2476
2477static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2478 struct ieee80211_chanctx_conf *conf)
2479{
2480 struct ath_softc *sc = hw->priv;
2481 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2482
2483 mutex_lock(&sc->mutex);
2484 ctx->assigned = false;
2485 mutex_unlock(&sc->mutex);
2486}
2487
2488static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2489 struct ieee80211_chanctx_conf *conf,
2490 u32 changed)
2491{
2492 struct ath_softc *sc = hw->priv;
2493 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2494
2495 mutex_lock(&sc->mutex);
2496 ath_chanctx_set_channel(sc, ctx, &conf->def);
2497 mutex_unlock(&sc->mutex);
2498}
2499
2500static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2501 struct ieee80211_vif *vif,
2502 struct ieee80211_chanctx_conf *conf)
2503{
2504 struct ath_softc *sc = hw->priv;
2505 struct ath_vif *avp = (void *)vif->drv_priv;
2506 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2507
2508 mutex_lock(&sc->mutex);
2509 avp->chanctx = ctx;
2510 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302511 ath9k_calculate_summary_state(sc, ctx);
Felix Fietkau39305632014-06-11 16:17:57 +05302512 mutex_unlock(&sc->mutex);
2513
2514 return 0;
2515}
2516
2517static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2518 struct ieee80211_vif *vif,
2519 struct ieee80211_chanctx_conf *conf)
2520{
2521 struct ath_softc *sc = hw->priv;
2522 struct ath_vif *avp = (void *)vif->drv_priv;
2523 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2524
2525 mutex_lock(&sc->mutex);
2526 avp->chanctx = NULL;
2527 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302528 ath9k_calculate_summary_state(sc, ctx);
Felix Fietkau39305632014-06-11 16:17:57 +05302529 mutex_unlock(&sc->mutex);
2530}
2531
Felix Fietkau78b21942014-06-11 16:17:55 +05302532void ath9k_fill_chanctx_ops(void)
2533{
2534 if (!ath9k_use_chanctx)
2535 return;
2536
2537 ath9k_ops.hw_scan = ath9k_hw_scan;
2538 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
Felix Fietkau405393c2014-06-11 16:17:56 +05302539 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
2540 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Felix Fietkau39305632014-06-11 16:17:57 +05302541 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2542 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2543 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2544 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2545 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302546}
2547
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002548struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002549 .tx = ath9k_tx,
2550 .start = ath9k_start,
2551 .stop = ath9k_stop,
2552 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302553 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002554 .remove_interface = ath9k_remove_interface,
2555 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002556 .configure_filter = ath9k_configure_filter,
Johannes Berg4ca77862010-02-19 19:06:56 +01002557 .sta_add = ath9k_sta_add,
2558 .sta_remove = ath9k_sta_remove,
Felix Fietkau55195412011-04-17 23:28:09 +02002559 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002561 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002562 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002564 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002565 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002566 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002567 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302568 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002569 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002570 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302571 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302572 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002573 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302574 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002575 .set_antenna = ath9k_set_antenna,
2576 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002577
Sujith Manoharane60001e2013-10-28 12:22:04 +05302578#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302579 .suspend = ath9k_suspend,
2580 .resume = ath9k_resume,
2581 .set_wakeup = ath9k_set_wakeup,
2582#endif
2583
Ben Greearb90bd9d2012-05-15 15:33:25 -07002584#ifdef CONFIG_ATH9K_DEBUGFS
2585 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302586 .get_et_stats = ath9k_get_et_stats,
2587 .get_et_strings = ath9k_get_et_strings,
2588#endif
2589
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302590#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302591 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002592#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002593 .sw_scan_start = ath9k_sw_scan_start,
2594 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002595};