blob: 5d9f4d738d7417563e473c372e6a62132bc1f182 [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
Sujith Manoharan9019f642014-09-05 08:03:15 +0530227 ath9k_calculate_summary_state(sc, sc->cur_chan);
228
Felix Fietkau9adcf442011-09-03 01:40:26 +0200229 if (ath_startrecv(sc) != 0) {
230 ath_err(common, "Unable to restart recv logic\n");
231 return false;
232 }
233
234 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530235 sc->cur_chan->txpower, &sc->curtxpow);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530236
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100237 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200238
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530239 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530240 /* restore per chanctx TSF timer */
241 if (sc->cur_chan->tsf_val) {
242 u32 offset;
243
244 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
245 NULL);
246 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
247 }
248
249
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100250 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530251 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200252
Sujith Manoharan196fb862012-06-04 20:24:13 +0530253 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100254 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530255 spin_lock_irqsave(&sc->sc_pm_lock, flags);
256 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
257 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530258 } else {
259 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530260 }
261 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530262 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530263 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200264 }
265
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530266 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530267
268 ath9k_hw_set_interrupts(ah);
269 ath9k_hw_enable_interrupts(ah);
270
Sujith Manoharan499afac2014-08-22 20:39:31 +0530271 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +0530272 ieee80211_wake_queues(sc->hw);
Sujith Manoharan0e08b5f2014-08-23 13:29:19 +0530273 else
274 ath9k_chanctx_wake_queues(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200275
Felix Fietkaud463af42014-04-06 00:37:03 +0200276 ath9k_p2p_ps_timer(sc);
277
Felix Fietkau9adcf442011-09-03 01:40:26 +0200278 return true;
279}
280
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530281int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200282{
283 struct ath_hw *ah = sc->sc_ah;
284 struct ath_common *common = ath9k_hw_common(ah);
285 struct ath9k_hw_cal_data *caldata = NULL;
286 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200287 int r;
288
289 __ath_cancel_work(sc);
290
Felix Fietkau4668cce2013-01-14 16:56:46 +0100291 tasklet_disable(&sc->intr_tq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200292 spin_lock_bh(&sc->sc_pcu_lock);
293
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530294 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200295 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530296 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200297 }
298
299 if (!hchan) {
300 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200301 hchan = ah->curchan;
302 }
303
John W. Linville9ebea382013-01-28 13:54:03 -0500304 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200305 fastcc = false;
306
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530307 if (ath9k_is_chanctx_enabled())
308 fastcc = false;
309
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530310 spin_lock_bh(&sc->chan_lock);
311 sc->cur_chandef = sc->cur_chan->chandef;
312 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530313
Joe Perchesd2182b62011-12-15 14:55:53 -0800314 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530315 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200316
317 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
318 if (r) {
319 ath_err(common,
320 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400321
322 ath9k_hw_enable_interrupts(ah);
323 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
324
Felix Fietkau9adcf442011-09-03 01:40:26 +0200325 goto out;
326 }
327
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530328 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530329 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530330 ath9k_mci_set_txpower(sc, true, false);
331
Felix Fietkau9adcf442011-09-03 01:40:26 +0200332 if (!ath_complete_reset(sc, true))
333 r = -EIO;
334
335out:
336 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100337 tasklet_enable(&sc->intr_tq);
338
Felix Fietkau9adcf442011-09-03 01:40:26 +0200339 return r;
340}
341
Ben Greear7e1e3862011-11-03 11:33:13 -0700342static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
343 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530344{
345 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530346 an = (struct ath_node *)sta->drv_priv;
347
Sujith Manoharana145daf2012-11-28 15:08:54 +0530348 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800349 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700350 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530351 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530352
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530353 ath_tx_node_init(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530354}
355
356static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
357{
358 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530359 ath_tx_node_cleanup(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530360}
361
Sujith55624202010-01-08 10:36:02 +0530362void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530363{
364 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700365 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700366 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530367 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530368 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530369 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400370 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530371
Felix Fietkaue3927002011-09-14 21:23:01 +0200372 ath9k_ps_wakeup(sc);
373 spin_lock(&sc->sc_pcu_lock);
374
Sujith Manoharan6549a862013-12-24 10:44:24 +0530375 if (status & ATH9K_INT_FATAL) {
376 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530377 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530378
379 /*
380 * Increment the ref. counter here so that
381 * interrupts are enabled in the reset routine.
382 */
383 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100384 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200385 goto out;
Sujithff37e332008-11-24 12:07:55 +0530386 }
387
Sujith Manoharan6549a862013-12-24 10:44:24 +0530388 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
389 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530390 spin_lock(&common->cc_lock);
391 ath_hw_cycle_counters_update(common);
392 ar9003_hw_bb_watchdog_dbg_info(ah);
393 spin_unlock(&common->cc_lock);
394
Sujith Manoharan6549a862013-12-24 10:44:24 +0530395 if (ar9003_hw_bb_watchdog_check(ah)) {
396 type = RESET_TYPE_BB_WATCHDOG;
397 ath9k_queue_reset(sc, type);
398
399 /*
400 * Increment the ref. counter here so that
401 * interrupts are enabled in the reset routine.
402 */
403 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100404 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530405 "BB_WATCHDOG: Skipping interrupts\n");
406 goto out;
407 }
408 }
409
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530410 if (status & ATH9K_INT_GTT) {
411 sc->gtt_cnt++;
412
413 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
414 type = RESET_TYPE_TX_GTT;
415 ath9k_queue_reset(sc, type);
416 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100417 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530418 "GTT: Skipping interrupts\n");
419 goto out;
420 }
421 }
422
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530423 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530424 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
425 /*
426 * TSF sync does not look correct; remain awake to sync with
427 * the next Beacon.
428 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800429 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530430 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530431 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530432 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530433
Felix Fietkaub5c804752010-04-15 17:38:48 -0400434 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
435 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
436 ATH9K_INT_RXORN);
437 else
438 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
439
440 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400441 /* Check for high priority Rx first */
442 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
443 (status & ATH9K_INT_RXHP))
444 ath_rx_tasklet(sc, 0, true);
445
446 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530447 }
448
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400449 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530450 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
451 /*
452 * For EDMA chips, TX completion is enabled for the
453 * beacon queue, so if a beacon has been transmitted
454 * successfully after a GTT interrupt, the GTT counter
455 * gets reset to zero here.
456 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530457 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530458
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400459 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530460 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400461 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530462 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100463
464 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400465 }
Sujith063d8be2009-03-30 15:28:49 +0530466
Felix Fietkauc67ce332013-12-14 18:03:38 +0100467 if (status & ATH9K_INT_GENTIMER)
468 ath_gen_timer_isr(sc->sc_ah);
469
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530470 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530471
Sujithff37e332008-11-24 12:07:55 +0530472 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100473 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530474out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530475 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400476 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530477}
478
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100479irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530480{
Sujith063d8be2009-03-30 15:28:49 +0530481#define SCHED_INTR ( \
482 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530483 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530484 ATH9K_INT_RXORN | \
485 ATH9K_INT_RXEOL | \
486 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400487 ATH9K_INT_RXLP | \
488 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530489 ATH9K_INT_TX | \
490 ATH9K_INT_BMISS | \
491 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530492 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530493 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530494 ATH9K_INT_GENTIMER | \
495 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530496
Sujithff37e332008-11-24 12:07:55 +0530497 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530498 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100499 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530500 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530501 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530502 bool sched = false;
503
Sujith063d8be2009-03-30 15:28:49 +0530504 /*
505 * The hardware is not ready/present, don't
506 * touch anything. Note this can happen early
507 * on if the IRQ is shared.
508 */
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100509 if (test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530510 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530511
Sujith063d8be2009-03-30 15:28:49 +0530512 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530513
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400514 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530515 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530516
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100517 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200518 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530519 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200520 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530521
Sujith063d8be2009-03-30 15:28:49 +0530522 /*
523 * Figure out the reason(s) for the interrupt. Note
524 * that the hal returns a pseudo-ISR that may include
525 * bits we haven't explicitly enabled so we mask the
526 * value to insure we only process bits we requested.
527 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100528 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
529 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400530 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530531
532 /*
533 * If there are no status bits set, then this interrupt was not
534 * for me (should have been caught above).
535 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400536 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530537 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530538
539 /* Cache the status */
540 sc->intrstatus = status;
541
542 if (status & SCHED_INTR)
543 sched = true;
544
545 /*
546 * If a FATAL or RXORN interrupt is received, we have to reset the
547 * chip immediately.
548 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400549 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
550 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
Sujith063d8be2009-03-30 15:28:49 +0530551 goto chip_reset;
552
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530553 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530554 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400555 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530556
557#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530558 if (status & ATH9K_INT_BMISS) {
559 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530560 atomic_inc(&sc->wow_got_bmiss_intr);
561 atomic_dec(&sc->wow_sleep_proc_intr);
562 }
563 }
564#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530565
Sujith063d8be2009-03-30 15:28:49 +0530566 if (status & ATH9K_INT_SWBA)
567 tasklet_schedule(&sc->bcon_tasklet);
568
569 if (status & ATH9K_INT_TXURN)
570 ath9k_hw_updatetxtriglevel(ah, true);
571
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530572 if (status & ATH9K_INT_RXEOL) {
573 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200574 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400575 }
576
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400577 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
578 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800579 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
580 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530581 /* Clear RxAbort bit so that we can
582 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700583 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530584 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400585 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530586 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530587 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530588 }
Sujith063d8be2009-03-30 15:28:49 +0530589
590chip_reset:
591
Sujith817e11d2008-12-07 21:42:44 +0530592 ath_debug_stat_interrupt(sc, status);
593
Sujithff37e332008-11-24 12:07:55 +0530594 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100595 /* turn off every interrupt */
596 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530597 tasklet_schedule(&sc->intr_tq);
598 }
599
600 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530601
602#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530603}
604
Sujith Manoharanef6b19e2013-10-24 12:04:39 +0530605int ath_reset(struct ath_softc *sc)
Sujithff37e332008-11-24 12:07:55 +0530606{
Felix Fietkauec303262013-10-05 14:09:30 +0200607 int r;
Sujithff37e332008-11-24 12:07:55 +0530608
Felix Fietkau783cd012011-01-21 18:52:38 +0100609 ath9k_ps_wakeup(sc);
Felix Fietkau13815592013-01-20 18:51:53 +0100610 r = ath_reset_internal(sc, NULL);
Felix Fietkau783cd012011-01-21 18:52:38 +0100611 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530612
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800613 return r;
Sujithff37e332008-11-24 12:07:55 +0530614}
615
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530616void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
617{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100618 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530619#ifdef CONFIG_ATH9K_DEBUGFS
620 RESET_STAT_INC(sc, type);
621#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100622 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530623 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
624}
625
Felix Fietkau236de512011-09-03 01:40:25 +0200626void ath_reset_work(struct work_struct *work)
627{
628 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
629
Felix Fietkau13815592013-01-20 18:51:53 +0100630 ath_reset(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200631}
632
Sujithff37e332008-11-24 12:07:55 +0530633/**********************/
634/* mac80211 callbacks */
635/**********************/
636
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637static int ath9k_start(struct ieee80211_hw *hw)
638{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100639 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700640 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700641 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530642 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530643 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530644 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530645 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646
Joe Perchesd2182b62011-12-15 14:55:53 -0800647 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800648 "Starting driver with initial channel: %d MHz\n",
649 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650
Felix Fietkauf62d8162011-03-25 17:43:41 +0100651 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530652 mutex_lock(&sc->mutex);
653
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530654 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530655 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656
Sujithff37e332008-11-24 12:07:55 +0530657 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200658 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530659
660 /*
661 * The basic interface to setting the hardware in a good
662 * state is ``reset''. On return the hardware is known to
663 * be powered up and with interrupts disabled. This must
664 * be followed by initialization of the appropriate bits
665 * and then setup of the interrupt mask.
666 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700667 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100668
669 atomic_set(&ah->intr_ref_cnt, -1);
670
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200671 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800672 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800673 ath_err(common,
674 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
675 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200676 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700677 }
Sujithff37e332008-11-24 12:07:55 +0530678
Sujithff37e332008-11-24 12:07:55 +0530679 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400680 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
681 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
682 ATH9K_INT_GLOBAL;
683
684 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400685 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530686 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400687 else
688 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530689
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530690 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
691 ah->imask |= ATH9K_INT_BB_WATCHDOG;
692
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530693 /*
694 * Enable GTT interrupts only for AR9003/AR9004 chips
695 * for now.
696 */
697 if (AR_SREV_9300_20_OR_LATER(ah))
698 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530699
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700700 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400701 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530702
Sujith Manoharane270e772012-06-04 16:27:19 +0530703 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530704
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100705 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530706 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530707
Felix Fietkauceb26a62012-10-03 21:07:51 +0200708 if (!ath_complete_reset(sc, false))
709 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700710
Felix Fietkauc0c11742011-11-16 13:08:41 +0100711 if (ah->led_pin >= 0) {
712 ath9k_hw_cfg_output(ah, ah->led_pin,
713 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
714 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
715 }
716
717 /*
718 * Reset key cache to sane defaults (all entries cleared) instead of
719 * semi-random values after suspend/resume.
720 */
721 ath9k_cmn_init_crypto(sc->sc_ah);
722
Felix Fietkaua35051c2013-12-14 18:03:45 +0100723 ath9k_hw_reset_tsf(ah);
724
Felix Fietkau9adcf442011-09-03 01:40:26 +0200725 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400726
Sujith141b38b2009-02-04 08:10:07 +0530727 mutex_unlock(&sc->mutex);
728
Felix Fietkauf62d8162011-03-25 17:43:41 +0100729 ath9k_ps_restore(sc);
730
Felix Fietkauceb26a62012-10-03 21:07:51 +0200731 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732}
733
Thomas Huehn36323f82012-07-23 21:33:42 +0200734static void ath9k_tx(struct ieee80211_hw *hw,
735 struct ieee80211_tx_control *control,
736 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100738 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700739 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530740 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100741 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530742 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530743
Gabor Juhos96148322009-07-24 17:27:21 +0200744 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300745 /*
746 * mac80211 does not set PM field for normal data frames, so we
747 * need to update that based on the current PS mode.
748 */
749 if (ieee80211_is_data(hdr->frame_control) &&
750 !ieee80211_is_nullfunc(hdr->frame_control) &&
751 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800752 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800753 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300754 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
755 }
756 }
757
Sujith Manoharanad128862012-04-24 10:23:20 +0530758 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300759 /*
760 * We are using PS-Poll and mac80211 can request TX while in
761 * power save mode. Need to wake up hardware for the TX to be
762 * completed and if needed, also for RX of buffered frames.
763 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300764 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530765 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700766 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
767 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300768 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800769 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800770 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530771 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300772 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800773 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530774 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300775 }
776 /*
777 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530778 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300779 * the ps_usecount here.
780 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530781 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300782 ath9k_ps_restore(sc);
783 }
784
Sujith Manoharanad128862012-04-24 10:23:20 +0530785 /*
786 * Cannot tx while the hardware is in full sleep, it first needs a full
787 * chip reset to recover from that
788 */
789 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
790 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
791 goto exit;
792 }
793
Sujith528f0c62008-10-29 10:14:26 +0530794 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100795 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200796 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530797
Joe Perchesd2182b62011-12-15 14:55:53 -0800798 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200800 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800801 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700802 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530803 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 }
805
Johannes Berg7bb45682011-02-24 14:42:06 +0100806 return;
Sujith528f0c62008-10-29 10:14:26 +0530807exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200808 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809}
810
811static void ath9k_stop(struct ieee80211_hw *hw)
812{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100813 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700814 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700815 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100816 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530817
Sujith Manoharanea22df22014-08-23 13:29:07 +0530818 ath9k_deinit_channel_context(sc);
819
Sujith4c483812009-08-18 10:51:52 +0530820 mutex_lock(&sc->mutex);
821
Felix Fietkau9adcf442011-09-03 01:40:26 +0200822 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700823
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100824 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800825 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530826 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530827 return;
828 }
829
Sujith3867cf62009-12-23 20:03:27 -0500830 /* Ensure HW is awake when we try to shut it down. */
831 ath9k_ps_wakeup(sc);
832
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700833 spin_lock_bh(&sc->sc_pcu_lock);
834
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100835 /* prevent tasklets to enable interrupts once we disable them */
836 ah->imask &= ~ATH9K_INT_GLOBAL;
837
Sujithff37e332008-11-24 12:07:55 +0530838 /* make sure h/w will not generate any interrupt
839 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100840 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530841
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700842 spin_unlock_bh(&sc->sc_pcu_lock);
843
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100844 /* we can now sync irq and kill any running tasklets, since we already
845 * disabled interrupts and not holding a spin lock */
846 synchronize_irq(sc->irq);
847 tasklet_kill(&sc->intr_tq);
848 tasklet_kill(&sc->bcon_tasklet);
849
Felix Fietkauc0c11742011-11-16 13:08:41 +0100850 prev_idle = sc->ps_idle;
851 sc->ps_idle = true;
852
853 spin_lock_bh(&sc->sc_pcu_lock);
854
855 if (ah->led_pin >= 0) {
856 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
857 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
858 }
859
John W. Linville9ebea382013-01-28 13:54:03 -0500860 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100861
862 if (sc->rx.frag) {
863 dev_kfree_skb_any(sc->rx.frag);
864 sc->rx.frag = NULL;
865 }
866
867 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530868 ah->curchan = ath9k_cmn_get_channel(hw, ah,
869 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100870
871 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
872 ath9k_hw_phy_disable(ah);
873
874 ath9k_hw_configpcipowersave(ah, true);
875
876 spin_unlock_bh(&sc->sc_pcu_lock);
877
Sujith3867cf62009-12-23 20:03:27 -0500878 ath9k_ps_restore(sc);
879
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100880 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100881 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700882
Sujith141b38b2009-02-04 08:10:07 +0530883 mutex_unlock(&sc->mutex);
884
Joe Perchesd2182b62011-12-15 14:55:53 -0800885 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700886}
887
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200888static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889{
Ben Greear48014162011-01-15 19:13:48 +0000890 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200891 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000892 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400893 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000894 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700895 default:
Ben Greear48014162011-01-15 19:13:48 +0000896 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700897 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700898}
899
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530900static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
901 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000902{
Ben Greear48014162011-01-15 19:13:48 +0000903 int i;
904
Felix Fietkauab11bb22013-04-16 12:51:57 +0200905 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000906 for (i = 0; i < ETH_ALEN; i++)
907 iter_data->mask[i] &=
908 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200909 } else {
910 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
911 iter_data->has_hw_macaddr = true;
912 }
Ben Greear48014162011-01-15 19:13:48 +0000913
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530914 if (!vif->bss_conf.use_short_slot)
915 iter_data->slottime = ATH9K_SLOT_TIME_20;
916
Ben Greear48014162011-01-15 19:13:48 +0000917 switch (vif->type) {
918 case NL80211_IFTYPE_AP:
919 iter_data->naps++;
920 break;
921 case NL80211_IFTYPE_STATION:
922 iter_data->nstations++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530923 if (vif->bss_conf.assoc && !iter_data->primary_sta)
924 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000925 break;
926 case NL80211_IFTYPE_ADHOC:
927 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530928 if (vif->bss_conf.enable_beacon)
929 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000930 break;
931 case NL80211_IFTYPE_MESH_POINT:
932 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530933 if (vif->bss_conf.enable_beacon)
934 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000935 break;
936 case NL80211_IFTYPE_WDS:
937 iter_data->nwds++;
938 break;
939 default:
Ben Greear48014162011-01-15 19:13:48 +0000940 break;
941 }
942}
943
944/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530945void ath9k_calculate_iter_data(struct ath_softc *sc,
946 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000947 struct ath9k_vif_iter_data *iter_data)
948{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530949 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000950
951 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100952 * Pick the MAC address of the first interface as the new hardware
953 * MAC address. The hardware will use it together with the BSSID mask
954 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000955 */
956 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +0000957 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530958 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +0000959
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530960 list_for_each_entry(avp, &ctx->vifs, list)
961 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Ben Greear48014162011-01-15 19:13:48 +0000962
Sujith Manoharan77843162014-08-23 13:29:23 +0530963#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530964 if (ctx == &sc->offchannel.chan) {
965 struct ieee80211_vif *vif;
Felix Fietkauab11bb22013-04-16 12:51:57 +0200966
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530967 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
968 vif = sc->offchannel.scan_vif;
969 else
970 vif = sc->offchannel.roc_vif;
971
972 if (vif)
973 ath9k_vif_iter(iter_data, vif->addr, vif);
974 iter_data->beacons = false;
975 }
Sujith Manoharan77843162014-08-23 13:29:23 +0530976#endif
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530977}
978
979static void ath9k_set_assoc_state(struct ath_softc *sc,
980 struct ieee80211_vif *vif, bool changed)
981{
982 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
983 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
984 unsigned long flags;
985
986 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
987 /* Set the AID, BSSID and do beacon-sync only when
988 * the HW opmode is STATION.
989 *
990 * But the primary bit is set above in any case.
991 */
992 if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
993 return;
994
995 ether_addr_copy(common->curbssid, bss_conf->bssid);
996 common->curaid = bss_conf->aid;
997 ath9k_hw_write_associd(sc->sc_ah);
998
999 if (changed) {
1000 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1001 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1002
1003 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1004 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1005 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1006 }
1007
1008 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1009 ath9k_mci_update_wlan_channels(sc, false);
1010
1011 ath_dbg(common, CONFIG,
1012 "Primary Station interface: %pM, BSSID: %pM\n",
1013 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001014}
1015
1016/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301017void ath9k_calculate_summary_state(struct ath_softc *sc,
1018 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001019{
Ben Greear48014162011-01-15 19:13:48 +00001020 struct ath_hw *ah = sc->sc_ah;
1021 struct ath_common *common = ath9k_hw_common(ah);
1022 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301023 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001024
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301025 ath_chanctx_check_active(sc, ctx);
1026
1027 if (ctx != sc->cur_chan)
1028 return;
1029
1030 ath9k_ps_wakeup(sc);
1031 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1032
1033 if (iter_data.has_hw_macaddr)
1034 ether_addr_copy(common->macaddr, iter_data.hw_macaddr);
Ben Greear48014162011-01-15 19:13:48 +00001035
Ben Greear48014162011-01-15 19:13:48 +00001036 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1037 ath_hw_setbssidmask(common);
1038
Ben Greear48014162011-01-15 19:13:48 +00001039 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301040 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301041 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001042 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301043 if (cur_conf->enable_beacon)
1044 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001045 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301046 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001047
Javier Cardonafd5999c2011-05-03 16:57:19 -07001048 if (iter_data.nmeshes)
1049 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1050 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001051 ah->opmode = NL80211_IFTYPE_AP;
1052 else if (iter_data.nadhocs)
1053 ah->opmode = NL80211_IFTYPE_ADHOC;
1054 else
1055 ah->opmode = NL80211_IFTYPE_STATION;
1056 }
1057
Sujith Manoharandf35d292012-07-17 17:15:43 +05301058 ath9k_hw_setopmode(ah);
1059
Felix Fietkau748299f2014-06-11 16:18:04 +05301060 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001061 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001062 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301063 else {
Ben Greear48014162011-01-15 19:13:48 +00001064 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301065 if (iter_data.naps == 1 && iter_data.beacons)
1066 ctx->switch_after_beacon = true;
1067 }
Ben Greear48014162011-01-15 19:13:48 +00001068
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301069 ah->imask &= ~ATH9K_INT_SWBA;
1070 if (ah->opmode == NL80211_IFTYPE_STATION) {
1071 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1072
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301073 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301074 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301075 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1076 changed);
1077 if (!ctx->primary_sta ||
1078 !ctx->primary_sta->bss_conf.assoc)
1079 ctx->primary_sta = iter_data.primary_sta;
1080 } else {
1081 ctx->primary_sta = NULL;
1082 memset(common->curbssid, 0, ETH_ALEN);
1083 common->curaid = 0;
1084 ath9k_hw_write_associd(sc->sc_ah);
1085 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1086 ath9k_mci_update_wlan_channels(sc, true);
1087 }
1088 } else if (iter_data.beacons) {
1089 ah->imask |= ATH9K_INT_SWBA;
1090 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001091 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301092
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301093 if (iter_data.beacons)
1094 set_bit(ATH_OP_BEACONS, &common->op_flags);
1095 else
1096 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1097
1098 if (ah->slottime != iter_data.slottime) {
1099 ah->slottime = iter_data.slottime;
1100 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301101 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301102
1103 if (iter_data.primary_sta)
1104 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1105 else
1106 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1107
1108 ctx->primary_sta = iter_data.primary_sta;
1109
1110 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001111}
1112
Ben Greear48014162011-01-15 19:13:48 +00001113static int ath9k_add_interface(struct ieee80211_hw *hw,
1114 struct ieee80211_vif *vif)
1115{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001116 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001117 struct ath_hw *ah = sc->sc_ah;
1118 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001119 struct ath_vif *avp = (void *)vif->drv_priv;
1120 struct ath_node *an = &avp->mcast_node;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301121 int i;
Ben Greear48014162011-01-15 19:13:48 +00001122
1123 mutex_lock(&sc->mutex);
1124
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001125 if (config_enabled(CONFIG_ATH9K_TX99)) {
1126 if (sc->nvifs >= 1) {
1127 mutex_unlock(&sc->mutex);
1128 return -EOPNOTSUPP;
1129 }
1130 sc->tx99_vif = vif;
1131 }
1132
Joe Perchesd2182b62011-12-15 14:55:53 -08001133 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Ben Greear48014162011-01-15 19:13:48 +00001134 sc->nvifs++;
1135
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301136 if (ath9k_uses_beacons(vif->type))
1137 ath9k_beacon_assign_slot(sc, vif);
1138
Felix Fietkaud463af42014-04-06 00:37:03 +02001139 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301140 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301141 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301142 list_add_tail(&avp->list, &avp->chanctx->vifs);
1143 }
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301144 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1145 vif->hw_queue[i] = i;
1146 if (vif->type == NL80211_IFTYPE_AP)
1147 vif->cab_queue = hw->queues - 2;
1148 else
1149 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
Felix Fietkau04535312014-06-11 16:17:51 +05301150
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001151 an->sc = sc;
1152 an->sta = NULL;
1153 an->vif = vif;
1154 an->no_ps_filter = true;
1155 ath_tx_node_init(sc, an);
1156
Ben Greear48014162011-01-15 19:13:48 +00001157 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301158 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001159}
1160
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301161static int ath9k_change_interface(struct ieee80211_hw *hw,
1162 struct ieee80211_vif *vif,
1163 enum nl80211_iftype new_type,
1164 bool p2p)
1165{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001166 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301167 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301168 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301169 int i;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301170
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301171 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001172
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001173 if (config_enabled(CONFIG_ATH9K_TX99)) {
1174 mutex_unlock(&sc->mutex);
1175 return -EOPNOTSUPP;
1176 }
1177
1178 ath_dbg(common, CONFIG, "Change Interface\n");
1179
Ben Greear48014162011-01-15 19:13:48 +00001180 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301181 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001182
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301183 vif->type = new_type;
1184 vif->p2p = p2p;
1185
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301186 if (ath9k_uses_beacons(vif->type))
1187 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301188
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301189 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1190 vif->hw_queue[i] = i;
1191
1192 if (vif->type == NL80211_IFTYPE_AP)
1193 vif->cab_queue = hw->queues - 2;
1194 else
1195 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1196
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301197 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301198
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301199 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301200 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301201}
1202
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001204 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001205{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001206 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001207 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001208 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001209
Joe Perchesd2182b62011-12-15 14:55:53 -08001210 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001211
Sujith141b38b2009-02-04 08:10:07 +05301212 mutex_lock(&sc->mutex);
1213
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301214 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001215
Ben Greear48014162011-01-15 19:13:48 +00001216 sc->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001217 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301218 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301219 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001220
Ben Greear48014162011-01-15 19:13:48 +00001221 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301222 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001223
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001224 ath_tx_node_cleanup(sc, &avp->mcast_node);
1225
Sujith141b38b2009-02-04 08:10:07 +05301226 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001227}
1228
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301229static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301230{
Pavel Roskin30691682010-03-31 18:05:31 -04001231 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301232 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001233
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001234 if (config_enabled(CONFIG_ATH9K_TX99))
1235 return;
1236
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301237 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001238 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1239 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1240 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001241 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301242 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001243 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301244 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301245 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301246}
1247
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301248static void ath9k_disable_ps(struct ath_softc *sc)
1249{
1250 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301251 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301252
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001253 if (config_enabled(CONFIG_ATH9K_TX99))
1254 return;
1255
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301256 sc->ps_enabled = false;
1257 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1258 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1259 ath9k_hw_setrxabort(ah, 0);
1260 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1261 PS_WAIT_FOR_CAB |
1262 PS_WAIT_FOR_PSPOLL_DATA |
1263 PS_WAIT_FOR_TX_ACK);
1264 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1265 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001266 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301267 }
1268 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301269 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301270}
1271
Simon Wunderliche93d0832013-01-08 14:48:58 +01001272void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1273{
1274 struct ath_softc *sc = hw->priv;
1275 struct ath_hw *ah = sc->sc_ah;
1276 struct ath_common *common = ath9k_hw_common(ah);
1277 u32 rxfilter;
1278
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001279 if (config_enabled(CONFIG_ATH9K_TX99))
1280 return;
1281
Simon Wunderliche93d0832013-01-08 14:48:58 +01001282 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1283 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1284 return;
1285 }
1286
1287 ath9k_ps_wakeup(sc);
1288 rxfilter = ath9k_hw_getrxfilter(ah);
1289 ath9k_hw_setrxfilter(ah, rxfilter |
1290 ATH9K_RX_FILTER_PHYRADAR |
1291 ATH9K_RX_FILTER_PHYERR);
1292
1293 /* TODO: usually this should not be neccesary, but for some reason
1294 * (or in some mode?) the trigger must be called after the
1295 * configuration, otherwise the register will have its values reset
1296 * (on my ar9220 to value 0x01002310)
1297 */
1298 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1299 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1300 ath9k_ps_restore(sc);
1301}
1302
1303int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1304 enum spectral_mode spectral_mode)
1305{
1306 struct ath_softc *sc = hw->priv;
1307 struct ath_hw *ah = sc->sc_ah;
1308 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001309
1310 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1311 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1312 return -1;
1313 }
1314
Simon Wunderliche93d0832013-01-08 14:48:58 +01001315 switch (spectral_mode) {
1316 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001317 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001318 break;
1319 case SPECTRAL_BACKGROUND:
1320 /* send endless samples.
1321 * TODO: is this really useful for "background"?
1322 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001323 sc->spec_config.endless = 1;
1324 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001325 break;
1326 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001327 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001328 sc->spec_config.endless = 0;
1329 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001330 break;
1331 default:
1332 return -1;
1333 }
1334
1335 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001336 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001337 ath9k_ps_restore(sc);
1338
1339 sc->spectral_mode = spectral_mode;
1340
1341 return 0;
1342}
1343
Johannes Berge8975582008-10-09 12:18:51 +02001344static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001346 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001347 struct ath_hw *ah = sc->sc_ah;
1348 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001349 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301350 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351
Felix Fietkauc0c11742011-11-16 13:08:41 +01001352 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301353 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301354
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001355 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001356 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301357 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001358 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301359 ath9k_stop_btcoex(sc);
1360 } else {
1361 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001362 /*
1363 * The chip needs a reset to properly wake up from
1364 * full sleep
1365 */
Felix Fietkau39305632014-06-11 16:17:57 +05301366 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301367 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001368 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001369
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001370 /*
1371 * We just prepare to enable PS. We have to wait until our AP has
1372 * ACK'd our null data frame to disable RX otherwise we'll ignore
1373 * those ACKs and end up retransmitting the same null data frames.
1374 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1375 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301376 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001377 unsigned long flags;
1378 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301379 if (conf->flags & IEEE80211_CONF_PS)
1380 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301381 else
1382 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001383 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301384 }
1385
Sujith199afd92010-01-08 10:36:13 +05301386 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1387 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001388 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301389 sc->sc_ah->is_monitoring = true;
1390 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001391 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301392 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301393 }
1394 }
1395
Sujith Manoharan499afac2014-08-22 20:39:31 +05301396 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301397 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301398 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301399 }
Sujith86b89ee2008-08-07 10:54:57 +05301400
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001401 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001402 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301403 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301404 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301405 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001406 }
1407
Sujithaa33de02008-12-18 11:40:16 +05301408 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001409 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301410
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001411 return 0;
1412}
1413
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414#define SUPPORTED_FILTERS \
1415 (FIF_PROMISC_IN_BSS | \
1416 FIF_ALLMULTI | \
1417 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001418 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419 FIF_OTHER_BSS | \
1420 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001421 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 FIF_FCSFAIL)
1423
Sujith7dcfdcd2008-08-11 14:03:13 +05301424/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001425static void ath9k_configure_filter(struct ieee80211_hw *hw,
1426 unsigned int changed_flags,
1427 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001428 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001429{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001430 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301431 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001432
1433 changed_flags &= SUPPORTED_FILTERS;
1434 *total_flags &= SUPPORTED_FILTERS;
1435
Sujithb77f4832008-12-07 21:44:03 +05301436 sc->rx.rxfilter = *total_flags;
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001437 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301438 rfilt = ath_calcrxfilter(sc);
1439 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001440 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301441
Joe Perchesd2182b62011-12-15 14:55:53 -08001442 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1443 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001444}
1445
Johannes Berg4ca77862010-02-19 19:06:56 +01001446static int ath9k_sta_add(struct ieee80211_hw *hw,
1447 struct ieee80211_vif *vif,
1448 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001449{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001450 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001451 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1452 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1453 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001454 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455
Ben Greear7e1e3862011-11-03 11:33:13 -07001456 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001457
1458 if (vif->type != NL80211_IFTYPE_AP &&
1459 vif->type != NL80211_IFTYPE_AP_VLAN)
1460 return 0;
1461
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001462 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301463 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001464 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301465 an->key_idx[0] = key;
1466 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001467
1468 return 0;
1469}
1470
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001471static void ath9k_del_ps_key(struct ath_softc *sc,
1472 struct ieee80211_vif *vif,
1473 struct ieee80211_sta *sta)
1474{
1475 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1476 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1477 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1478
1479 if (!an->ps_key)
1480 return;
1481
1482 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001483 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301484 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001485}
1486
Johannes Berg4ca77862010-02-19 19:06:56 +01001487static int ath9k_sta_remove(struct ieee80211_hw *hw,
1488 struct ieee80211_vif *vif,
1489 struct ieee80211_sta *sta)
1490{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001491 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001492
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001493 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001494 ath_node_detach(sc, sta);
1495
1496 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497}
1498
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301499static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1500 struct ath_node *an,
1501 bool set)
1502{
1503 int i;
1504
1505 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1506 if (!an->key_idx[i])
1507 continue;
1508 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1509 }
1510}
1511
Felix Fietkau55195412011-04-17 23:28:09 +02001512static void ath9k_sta_notify(struct ieee80211_hw *hw,
1513 struct ieee80211_vif *vif,
1514 enum sta_notify_cmd cmd,
1515 struct ieee80211_sta *sta)
1516{
1517 struct ath_softc *sc = hw->priv;
1518 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1519
1520 switch (cmd) {
1521 case STA_NOTIFY_SLEEP:
1522 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001523 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301524 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001525 break;
1526 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301527 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001528 an->sleeping = false;
1529 ath_tx_aggr_wakeup(sc, an);
1530 break;
1531 }
1532}
1533
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001534static int ath9k_conf_tx(struct ieee80211_hw *hw,
1535 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001536 const struct ieee80211_tx_queue_params *params)
1537{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001538 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001539 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001540 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301541 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001542 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301544 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001545 return 0;
1546
Felix Fietkau066dae92010-11-07 14:59:39 +01001547 txq = sc->tx.txq_map[queue];
1548
Felix Fietkau96f372c2011-04-07 19:07:17 +02001549 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301550 mutex_lock(&sc->mutex);
1551
Sujith1ffb0612009-03-30 15:28:46 +05301552 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1553
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554 qi.tqi_aifs = params->aifs;
1555 qi.tqi_cwmin = params->cw_min;
1556 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001557 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001558
Joe Perchesd2182b62011-12-15 14:55:53 -08001559 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001560 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1561 queue, txq->axq_qnum, params->aifs, params->cw_min,
1562 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001563
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001564 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001565 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001566 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001567 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001568
Sujith141b38b2009-02-04 08:10:07 +05301569 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001570 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301571
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001572 return ret;
1573}
1574
1575static int ath9k_set_key(struct ieee80211_hw *hw,
1576 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001577 struct ieee80211_vif *vif,
1578 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001579 struct ieee80211_key_conf *key)
1580{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001581 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001582 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301583 struct ath_node *an = NULL;
1584 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001585
John W. Linville3e6109c2011-01-05 09:39:17 -05001586 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001587 return -ENOSPC;
1588
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001589 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1590 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001591 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1592 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1593 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1594 /*
1595 * For now, disable hw crypto for the RSN IBSS group keys. This
1596 * could be optimized in the future to use a modified key cache
1597 * design to support per-STA RX GTK, but until that gets
1598 * implemented, use of software crypto for group addressed
1599 * frames is a acceptable to allow RSN IBSS to be used.
1600 */
1601 return -EOPNOTSUPP;
1602 }
1603
Sujith141b38b2009-02-04 08:10:07 +05301604 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301605 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301606 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1607 if (sta)
1608 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609
1610 switch (cmd) {
1611 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001612 if (sta)
1613 ath9k_del_ps_key(sc, vif, sta);
1614
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301615 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001616 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001617 if (ret >= 0) {
1618 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001619 /* push IV and Michael MIC generation to stack */
1620 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001621 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301622 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001623 if (sc->sc_ah->sw_mgmt_crypto &&
1624 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001625 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001626 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001627 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301628 if (an && key->hw_key_idx) {
1629 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1630 if (an->key_idx[i])
1631 continue;
1632 an->key_idx[i] = key->hw_key_idx;
1633 break;
1634 }
1635 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1636 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001637 break;
1638 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001639 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301640 if (an) {
1641 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1642 if (an->key_idx[i] != key->hw_key_idx)
1643 continue;
1644 an->key_idx[i] = 0;
1645 break;
1646 }
1647 }
1648 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649 break;
1650 default:
1651 ret = -EINVAL;
1652 }
1653
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301654 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301655 mutex_unlock(&sc->mutex);
1656
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001657 return ret;
1658}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301659
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001660static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1661 struct ieee80211_vif *vif,
1662 struct ieee80211_bss_conf *bss_conf,
1663 u32 changed)
1664{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301665#define CHECK_ANI \
1666 (BSS_CHANGED_ASSOC | \
1667 BSS_CHANGED_IBSS | \
1668 BSS_CHANGED_BEACON_ENABLED)
1669
Felix Fietkau9ac586152011-01-24 19:23:18 +01001670 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001671 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001672 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001673 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001674 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001675
Felix Fietkau96f372c2011-04-07 19:07:17 +02001676 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301677 mutex_lock(&sc->mutex);
1678
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301679 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301680 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1681 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301682
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301683 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan27babf92014-08-23 13:29:16 +05301684
1685 if (ath9k_is_chanctx_enabled()) {
1686 if (bss_conf->assoc)
1687 ath_chanctx_event(sc, vif,
1688 ATH_CHANCTX_EVENT_ASSOC);
1689 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001690 }
1691
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301692 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301693 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1694 common->curaid = bss_conf->aid;
1695 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301696 }
1697
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301698 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301699 (changed & BSS_CHANGED_BEACON_INT) ||
1700 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301701 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301702 if (changed & BSS_CHANGED_BEACON_ENABLED)
1703 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301704 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001705
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301706 if ((avp->chanctx == sc->cur_chan) &&
1707 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001708 if (bss_conf->use_short_slot)
1709 slottime = 9;
1710 else
1711 slottime = 20;
1712 if (vif->type == NL80211_IFTYPE_AP) {
1713 /*
1714 * Defer update, so that connected stations can adjust
1715 * their settings at the same time.
1716 * See beacon.c for more details
1717 */
1718 sc->beacon.slottime = slottime;
1719 sc->beacon.updateslot = UPDATE;
1720 } else {
1721 ah->slottime = slottime;
1722 ath9k_hw_init_global_settings(ah);
1723 }
1724 }
1725
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301726 if (changed & BSS_CHANGED_P2P_PS)
1727 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001728
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301729 if (changed & CHECK_ANI)
1730 ath_check_ani(sc);
1731
Sujith141b38b2009-02-04 08:10:07 +05301732 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001733 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301734
1735#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001736}
1737
Eliad Peller37a41b42011-09-21 14:06:11 +03001738static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001739{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001740 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001741 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742
Sujith141b38b2009-02-04 08:10:07 +05301743 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301744 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301745 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301746 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301747 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001748
1749 return tsf;
1750}
1751
Eliad Peller37a41b42011-09-21 14:06:11 +03001752static void ath9k_set_tsf(struct ieee80211_hw *hw,
1753 struct ieee80211_vif *vif,
1754 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001755{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001756 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001757
Sujith141b38b2009-02-04 08:10:07 +05301758 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301759 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301760 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301761 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301762 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001763}
1764
Eliad Peller37a41b42011-09-21 14:06:11 +03001765static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001767 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001768
Sujith141b38b2009-02-04 08:10:07 +05301769 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001770
1771 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301772 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001773 ath9k_ps_restore(sc);
1774
Sujith141b38b2009-02-04 08:10:07 +05301775 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001776}
1777
1778static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001779 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301780 enum ieee80211_ampdu_mlme_action action,
1781 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001782 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001784 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001785 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001786 int ret = 0;
1787
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301788 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001789
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001790 switch (action) {
1791 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792 break;
1793 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001794 break;
1795 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001796 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001797 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1798 if (!ret)
1799 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001800 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001802 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1803 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001804 flush = true;
1805 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001806 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301807 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001808 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001809 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001810 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001811 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001812 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001813 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301814 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001815 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301816 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817 default:
Joe Perches38002762010-12-02 19:12:36 -08001818 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001819 }
1820
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301821 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001822
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001823 return ret;
1824}
1825
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001826static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1827 struct survey_info *survey)
1828{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001829 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001830 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001831 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001832 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001833 int pos;
1834
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001835 if (config_enabled(CONFIG_ATH9K_TX99))
1836 return -EOPNOTSUPP;
1837
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301838 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001839 if (idx == 0)
1840 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001841
Felix Fietkau39162db2010-09-29 19:12:06 +02001842 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1843 if (sband && idx >= sband->n_channels) {
1844 idx -= sband->n_channels;
1845 sband = NULL;
1846 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001847
Felix Fietkau39162db2010-09-29 19:12:06 +02001848 if (!sband)
1849 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1850
Felix Fietkau34300982010-10-10 18:21:52 +02001851 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301852 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001853 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001854 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001855
Felix Fietkau34300982010-10-10 18:21:52 +02001856 chan = &sband->channels[idx];
1857 pos = chan->hw_value;
1858 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1859 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301860 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001861
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001862 return 0;
1863}
1864
Felix Fietkaue239d852010-01-15 02:34:58 +01001865static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
1866{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001867 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001868 struct ath_hw *ah = sc->sc_ah;
1869
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001870 if (config_enabled(CONFIG_ATH9K_TX99))
1871 return;
1872
Felix Fietkaue239d852010-01-15 02:34:58 +01001873 mutex_lock(&sc->mutex);
1874 ah->coverage_class = coverage_class;
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301875
1876 ath9k_ps_wakeup(sc);
Felix Fietkaue239d852010-01-15 02:34:58 +01001877 ath9k_hw_init_global_settings(ah);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301878 ath9k_ps_restore(sc);
1879
Felix Fietkaue239d852010-01-15 02:34:58 +01001880 mutex_unlock(&sc->mutex);
1881}
1882
Felix Fietkau10e23182013-11-11 22:23:35 +01001883static bool ath9k_has_tx_pending(struct ath_softc *sc)
1884{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001885 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001886
1887 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1888 if (!ATH_TXQ_SETUP(sc, i))
1889 continue;
1890
1891 if (!sc->tx.txq[i].axq_depth)
1892 continue;
1893
1894 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
1895 if (npend)
1896 break;
1897 }
1898
1899 return !!npend;
1900}
1901
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02001902static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1903 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001904{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001905 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05301906
1907 mutex_lock(&sc->mutex);
1908 __ath9k_flush(hw, queues, drop);
1909 mutex_unlock(&sc->mutex);
1910}
1911
1912void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
1913{
1914 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301915 struct ath_hw *ah = sc->sc_ah;
1916 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau10e23182013-11-11 22:23:35 +01001917 int timeout = HZ / 5; /* 200 ms */
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05301918 bool drain_txq;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301919 int i;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001920
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001921 cancel_delayed_work_sync(&sc->tx_complete_work);
1922
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301923 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001924 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301925 return;
1926 }
1927
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001928 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001929 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301930 return;
1931 }
1932
Felix Fietkau10e23182013-11-11 22:23:35 +01001933 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
1934 timeout) > 0)
1935 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001936
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001937 if (drop) {
1938 ath9k_ps_wakeup(sc);
1939 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01001940 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001941 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001942
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001943 if (!drain_txq)
Felix Fietkau13815592013-01-20 18:51:53 +01001944 ath_reset(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001945
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001946 ath9k_ps_restore(sc);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301947 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
1948 ieee80211_wake_queue(sc->hw,
1949 sc->cur_chan->hw_queue_base + i);
1950 }
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001951 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05301952
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001953 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001954}
1955
Vivek Natarajan15b91e82011-04-06 11:41:11 +05301956static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
1957{
1958 struct ath_softc *sc = hw->priv;
1959 int i;
1960
1961 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1962 if (!ATH_TXQ_SETUP(sc, i))
1963 continue;
1964
1965 if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
1966 return true;
1967 }
1968 return false;
1969}
1970
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05301971static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02001972{
1973 struct ath_softc *sc = hw->priv;
1974 struct ath_hw *ah = sc->sc_ah;
1975 struct ieee80211_vif *vif;
1976 struct ath_vif *avp;
1977 struct ath_buf *bf;
1978 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01001979 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02001980 int status;
1981
1982 vif = sc->beacon.bslot[0];
1983 if (!vif)
1984 return 0;
1985
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05301986 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02001987 return 0;
1988
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05301989 avp = (void *)vif->drv_priv;
1990
Felix Fietkau4286df62012-02-27 19:58:40 +01001991 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02001992 tasklet_disable(&sc->bcon_tasklet);
1993
1994 bf = avp->av_bcbuf;
1995 if (!bf || !bf->bf_mpdu)
1996 goto skip;
1997
1998 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
1999 if (status == -EINPROGRESS)
2000 goto skip;
2001
2002 sc->beacon.tx_processed = true;
2003 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2004
2005skip:
2006 tasklet_enable(&sc->bcon_tasklet);
2007 }
2008
2009 return sc->beacon.tx_last;
2010}
2011
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302012static int ath9k_get_stats(struct ieee80211_hw *hw,
2013 struct ieee80211_low_level_stats *stats)
2014{
2015 struct ath_softc *sc = hw->priv;
2016 struct ath_hw *ah = sc->sc_ah;
2017 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2018
2019 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2020 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2021 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2022 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2023 return 0;
2024}
2025
Felix Fietkau43c35282011-09-03 01:40:27 +02002026static u32 fill_chainmask(u32 cap, u32 new)
2027{
2028 u32 filled = 0;
2029 int i;
2030
2031 for (i = 0; cap && new; i++, cap >>= 1) {
2032 if (!(cap & BIT(0)))
2033 continue;
2034
2035 if (new & BIT(0))
2036 filled |= BIT(i);
2037
2038 new >>= 1;
2039 }
2040
2041 return filled;
2042}
2043
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002044static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2045{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002046 if (AR_SREV_9300_20_OR_LATER(ah))
2047 return true;
2048
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002049 switch (val & 0x7) {
2050 case 0x1:
2051 case 0x3:
2052 case 0x7:
2053 return true;
2054 case 0x2:
2055 return (ah->caps.rx_chainmask == 1);
2056 default:
2057 return false;
2058 }
2059}
2060
Felix Fietkau43c35282011-09-03 01:40:27 +02002061static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2062{
2063 struct ath_softc *sc = hw->priv;
2064 struct ath_hw *ah = sc->sc_ah;
2065
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002066 if (ah->caps.rx_chainmask != 1)
2067 rx_ant |= tx_ant;
2068
2069 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002070 return -EINVAL;
2071
2072 sc->ant_rx = rx_ant;
2073 sc->ant_tx = tx_ant;
2074
2075 if (ah->caps.rx_chainmask == 1)
2076 return 0;
2077
2078 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2079 if (AR_SREV_9100(ah))
2080 ah->rxchainmask = 0x7;
2081 else
2082 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2083
2084 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002085 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002086
2087 return 0;
2088}
2089
2090static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2091{
2092 struct ath_softc *sc = hw->priv;
2093
2094 *tx_ant = sc->ant_tx;
2095 *rx_ant = sc->ant_rx;
2096 return 0;
2097}
2098
Simon Wunderliche93d0832013-01-08 14:48:58 +01002099static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2100{
2101 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002102 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2103 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002104}
2105
2106static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2107{
2108 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002109 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2110 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002111}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302112
Sujith Manoharan499afac2014-08-22 20:39:31 +05302113#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2114
Felix Fietkau78b21942014-06-11 16:17:55 +05302115static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002116 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302117{
John W. Linville855df362014-06-25 15:15:14 -04002118 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302119 struct ath_softc *sc = hw->priv;
2120 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2121 int ret = 0;
2122
2123 mutex_lock(&sc->mutex);
2124
2125 if (WARN_ON(sc->offchannel.scan_req)) {
2126 ret = -EBUSY;
2127 goto out;
2128 }
2129
2130 ath9k_ps_wakeup(sc);
2131 set_bit(ATH_OP_SCANNING, &common->op_flags);
2132 sc->offchannel.scan_vif = vif;
2133 sc->offchannel.scan_req = req;
2134 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302135
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302136 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2137 vif->addr);
2138
2139 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2140 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302141 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302142 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302143
2144out:
2145 mutex_unlock(&sc->mutex);
2146
2147 return ret;
2148}
2149
2150static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2151 struct ieee80211_vif *vif)
2152{
2153 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302154 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2155
2156 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302157
2158 mutex_lock(&sc->mutex);
2159 del_timer_sync(&sc->offchannel.timer);
2160 ath_scan_complete(sc, true);
2161 mutex_unlock(&sc->mutex);
2162}
2163
Felix Fietkau405393c2014-06-11 16:17:56 +05302164static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2165 struct ieee80211_vif *vif,
2166 struct ieee80211_channel *chan, int duration,
2167 enum ieee80211_roc_type type)
2168{
2169 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302170 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302171 int ret = 0;
2172
2173 mutex_lock(&sc->mutex);
2174
2175 if (WARN_ON(sc->offchannel.roc_vif)) {
2176 ret = -EBUSY;
2177 goto out;
2178 }
2179
2180 ath9k_ps_wakeup(sc);
2181 sc->offchannel.roc_vif = vif;
2182 sc->offchannel.roc_chan = chan;
2183 sc->offchannel.roc_duration = duration;
2184
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302185 ath_dbg(common, CHAN_CTX,
2186 "RoC request on vif: %pM, type: %d duration: %d\n",
2187 vif->addr, type, duration);
2188
2189 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2190 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302191 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302192 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302193
2194out:
2195 mutex_unlock(&sc->mutex);
2196
2197 return ret;
2198}
2199
2200static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2201{
2202 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302203 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302204
2205 mutex_lock(&sc->mutex);
2206
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302207 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302208 del_timer_sync(&sc->offchannel.timer);
2209
2210 if (sc->offchannel.roc_vif) {
2211 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2212 ath_roc_complete(sc, true);
2213 }
2214
2215 mutex_unlock(&sc->mutex);
2216
2217 return 0;
2218}
2219
Felix Fietkau39305632014-06-11 16:17:57 +05302220static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2221 struct ieee80211_chanctx_conf *conf)
2222{
2223 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302224 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302225 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302226 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302227
2228 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302229
2230 ath_for_each_chanctx(sc, ctx) {
2231 if (ctx->assigned)
2232 continue;
2233
2234 ptr = (void *) conf->drv_priv;
2235 *ptr = ctx;
2236 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302237 pos = ctx - &sc->chanctx[0];
2238 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302239
2240 ath_dbg(common, CHAN_CTX,
2241 "Add channel context: %d MHz\n",
2242 conf->def.chan->center_freq);
2243
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302244 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302245 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_ASSIGN);
2246
Felix Fietkau39305632014-06-11 16:17:57 +05302247 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302248 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302249 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302250
Felix Fietkau39305632014-06-11 16:17:57 +05302251 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302252 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302253}
2254
2255
2256static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2257 struct ieee80211_chanctx_conf *conf)
2258{
2259 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302260 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302261 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2262
2263 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302264
2265 ath_dbg(common, CHAN_CTX,
2266 "Remove channel context: %d MHz\n",
2267 conf->def.chan->center_freq);
2268
Felix Fietkau39305632014-06-11 16:17:57 +05302269 ctx->assigned = false;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302270 ctx->hw_queue_base = -1;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302271 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302272
Felix Fietkau39305632014-06-11 16:17:57 +05302273 mutex_unlock(&sc->mutex);
2274}
2275
2276static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2277 struct ieee80211_chanctx_conf *conf,
2278 u32 changed)
2279{
2280 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302281 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302282 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2283
2284 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302285 ath_dbg(common, CHAN_CTX,
2286 "Change channel context: %d MHz\n",
2287 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302288 ath_chanctx_set_channel(sc, ctx, &conf->def);
2289 mutex_unlock(&sc->mutex);
2290}
2291
2292static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2293 struct ieee80211_vif *vif,
2294 struct ieee80211_chanctx_conf *conf)
2295{
2296 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302297 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302298 struct ath_vif *avp = (void *)vif->drv_priv;
2299 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302300 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302301
2302 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302303
2304 ath_dbg(common, CHAN_CTX,
2305 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2306 vif->addr, vif->type, vif->p2p,
2307 conf->def.chan->center_freq);
2308
Felix Fietkau39305632014-06-11 16:17:57 +05302309 avp->chanctx = ctx;
2310 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302311 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302312 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2313 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302314
Felix Fietkau39305632014-06-11 16:17:57 +05302315 mutex_unlock(&sc->mutex);
2316
2317 return 0;
2318}
2319
2320static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2321 struct ieee80211_vif *vif,
2322 struct ieee80211_chanctx_conf *conf)
2323{
2324 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302325 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302326 struct ath_vif *avp = (void *)vif->drv_priv;
2327 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302328 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302329
2330 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302331
2332 ath_dbg(common, CHAN_CTX,
2333 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2334 vif->addr, vif->type, vif->p2p,
2335 conf->def.chan->center_freq);
2336
Felix Fietkau39305632014-06-11 16:17:57 +05302337 avp->chanctx = NULL;
2338 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302339 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302340 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2341 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302342
Felix Fietkau39305632014-06-11 16:17:57 +05302343 mutex_unlock(&sc->mutex);
2344}
2345
Sujith Manoharane20a8542014-08-23 13:29:09 +05302346static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2347 struct ieee80211_vif *vif)
2348{
2349 struct ath_softc *sc = hw->priv;
2350 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2351 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
2352 bool changed = false;
2353
2354 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2355 return;
2356
2357 if (!avp->chanctx)
2358 return;
2359
2360 mutex_lock(&sc->mutex);
2361
2362 spin_lock_bh(&sc->chan_lock);
2363 if (sc->next_chan || (sc->cur_chan != avp->chanctx)) {
2364 sc->next_chan = avp->chanctx;
2365 changed = true;
2366 }
Sujith Manoharan878066e2014-08-27 12:07:24 +05302367 ath_dbg(common, CHAN_CTX,
2368 "%s: Set chanctx state to FORCE_ACTIVE, changed: %d\n",
2369 __func__, changed);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302370 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2371 spin_unlock_bh(&sc->chan_lock);
2372
2373 if (changed)
2374 ath_chanctx_set_next(sc, true);
2375
2376 mutex_unlock(&sc->mutex);
2377}
2378
Felix Fietkau78b21942014-06-11 16:17:55 +05302379void ath9k_fill_chanctx_ops(void)
2380{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302381 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302382 return;
2383
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302384 ath9k_ops.hw_scan = ath9k_hw_scan;
2385 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2386 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302387 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302388 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2389 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2390 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2391 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2392 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302393 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302394}
2395
Sujith Manoharan499afac2014-08-22 20:39:31 +05302396#endif
2397
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002398struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002399 .tx = ath9k_tx,
2400 .start = ath9k_start,
2401 .stop = ath9k_stop,
2402 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302403 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002404 .remove_interface = ath9k_remove_interface,
2405 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 .configure_filter = ath9k_configure_filter,
Johannes Berg4ca77862010-02-19 19:06:56 +01002407 .sta_add = ath9k_sta_add,
2408 .sta_remove = ath9k_sta_remove,
Felix Fietkau55195412011-04-17 23:28:09 +02002409 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002412 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002414 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002415 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002416 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002417 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302418 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002419 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002420 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302421 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302422 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002423 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302424 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002425 .set_antenna = ath9k_set_antenna,
2426 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002427
Sujith Manoharane60001e2013-10-28 12:22:04 +05302428#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302429 .suspend = ath9k_suspend,
2430 .resume = ath9k_resume,
2431 .set_wakeup = ath9k_set_wakeup,
2432#endif
2433
Ben Greearb90bd9d2012-05-15 15:33:25 -07002434#ifdef CONFIG_ATH9K_DEBUGFS
2435 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302436 .get_et_stats = ath9k_get_et_stats,
2437 .get_et_strings = ath9k_get_et_strings,
2438#endif
2439
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302440#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302441 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002442#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002443 .sw_scan_start = ath9k_sw_scan_start,
2444 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445};