blob: a556c29f888abcb9e379538f8e3d1507c1e03192 [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);
Sujith Manoharan19ec4772014-09-05 08:03:16 +0530228 ath_startrecv(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200229 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530230 sc->cur_chan->txpower, &sc->curtxpow);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100231 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200232
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530233 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530234 /* restore per chanctx TSF timer */
235 if (sc->cur_chan->tsf_val) {
236 u32 offset;
237
238 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
239 NULL);
240 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
241 }
242
243
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100244 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530245 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200246
Sujith Manoharan196fb862012-06-04 20:24:13 +0530247 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100248 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530249 spin_lock_irqsave(&sc->sc_pm_lock, flags);
250 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
251 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530252 } else {
253 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530254 }
255 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530256 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530257 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200258 }
259
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530260 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530261
262 ath9k_hw_set_interrupts(ah);
263 ath9k_hw_enable_interrupts(ah);
264
Sujith Manoharan499afac2014-08-22 20:39:31 +0530265 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +0530266 ieee80211_wake_queues(sc->hw);
Sujith Manoharan0e08b5f2014-08-23 13:29:19 +0530267 else
268 ath9k_chanctx_wake_queues(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200269
Felix Fietkaud463af42014-04-06 00:37:03 +0200270 ath9k_p2p_ps_timer(sc);
271
Felix Fietkau9adcf442011-09-03 01:40:26 +0200272 return true;
273}
274
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530275int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200276{
277 struct ath_hw *ah = sc->sc_ah;
278 struct ath_common *common = ath9k_hw_common(ah);
279 struct ath9k_hw_cal_data *caldata = NULL;
280 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200281 int r;
282
283 __ath_cancel_work(sc);
284
Felix Fietkau4668cce2013-01-14 16:56:46 +0100285 tasklet_disable(&sc->intr_tq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200286 spin_lock_bh(&sc->sc_pcu_lock);
287
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530288 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200289 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530290 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200291 }
292
293 if (!hchan) {
294 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200295 hchan = ah->curchan;
296 }
297
John W. Linville9ebea382013-01-28 13:54:03 -0500298 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200299 fastcc = false;
300
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530301 if (ath9k_is_chanctx_enabled())
302 fastcc = false;
303
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530304 spin_lock_bh(&sc->chan_lock);
305 sc->cur_chandef = sc->cur_chan->chandef;
306 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530307
Joe Perchesd2182b62011-12-15 14:55:53 -0800308 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530309 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200310
311 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
312 if (r) {
313 ath_err(common,
314 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400315
316 ath9k_hw_enable_interrupts(ah);
317 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
318
Felix Fietkau9adcf442011-09-03 01:40:26 +0200319 goto out;
320 }
321
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530322 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530323 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530324 ath9k_mci_set_txpower(sc, true, false);
325
Felix Fietkau9adcf442011-09-03 01:40:26 +0200326 if (!ath_complete_reset(sc, true))
327 r = -EIO;
328
329out:
330 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100331 tasklet_enable(&sc->intr_tq);
332
Felix Fietkau9adcf442011-09-03 01:40:26 +0200333 return r;
334}
335
Ben Greear7e1e3862011-11-03 11:33:13 -0700336static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
337 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530338{
339 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530340 an = (struct ath_node *)sta->drv_priv;
341
Sujith Manoharana145daf2012-11-28 15:08:54 +0530342 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800343 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700344 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530345 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530346
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530347 ath_tx_node_init(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530348}
349
350static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
351{
352 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530353 ath_tx_node_cleanup(sc, an);
Sujithff37e332008-11-24 12:07:55 +0530354}
355
Sujith55624202010-01-08 10:36:02 +0530356void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530357{
358 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700359 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700360 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530361 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530362 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530363 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400364 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530365
Felix Fietkaue3927002011-09-14 21:23:01 +0200366 ath9k_ps_wakeup(sc);
367 spin_lock(&sc->sc_pcu_lock);
368
Sujith Manoharan6549a862013-12-24 10:44:24 +0530369 if (status & ATH9K_INT_FATAL) {
370 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530371 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530372
373 /*
374 * Increment the ref. counter here so that
375 * interrupts are enabled in the reset routine.
376 */
377 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100378 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200379 goto out;
Sujithff37e332008-11-24 12:07:55 +0530380 }
381
Sujith Manoharan6549a862013-12-24 10:44:24 +0530382 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
383 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530384 spin_lock(&common->cc_lock);
385 ath_hw_cycle_counters_update(common);
386 ar9003_hw_bb_watchdog_dbg_info(ah);
387 spin_unlock(&common->cc_lock);
388
Sujith Manoharan6549a862013-12-24 10:44:24 +0530389 if (ar9003_hw_bb_watchdog_check(ah)) {
390 type = RESET_TYPE_BB_WATCHDOG;
391 ath9k_queue_reset(sc, type);
392
393 /*
394 * Increment the ref. counter here so that
395 * interrupts are enabled in the reset routine.
396 */
397 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100398 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530399 "BB_WATCHDOG: Skipping interrupts\n");
400 goto out;
401 }
402 }
403
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530404 if (status & ATH9K_INT_GTT) {
405 sc->gtt_cnt++;
406
407 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
408 type = RESET_TYPE_TX_GTT;
409 ath9k_queue_reset(sc, type);
410 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100411 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530412 "GTT: Skipping interrupts\n");
413 goto out;
414 }
415 }
416
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530417 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530418 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
419 /*
420 * TSF sync does not look correct; remain awake to sync with
421 * the next Beacon.
422 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800423 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530424 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530425 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530426 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530427
Felix Fietkaub5c804752010-04-15 17:38:48 -0400428 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
429 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
430 ATH9K_INT_RXORN);
431 else
432 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
433
434 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400435 /* Check for high priority Rx first */
436 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
437 (status & ATH9K_INT_RXHP))
438 ath_rx_tasklet(sc, 0, true);
439
440 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530441 }
442
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400443 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530444 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
445 /*
446 * For EDMA chips, TX completion is enabled for the
447 * beacon queue, so if a beacon has been transmitted
448 * successfully after a GTT interrupt, the GTT counter
449 * gets reset to zero here.
450 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530451 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530452
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400453 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530454 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400455 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530456 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100457
458 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400459 }
Sujith063d8be2009-03-30 15:28:49 +0530460
Felix Fietkauc67ce332013-12-14 18:03:38 +0100461 if (status & ATH9K_INT_GENTIMER)
462 ath_gen_timer_isr(sc->sc_ah);
463
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530464 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530465
Sujithff37e332008-11-24 12:07:55 +0530466 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100467 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530468out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530469 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400470 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530471}
472
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100473irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530474{
Sujith063d8be2009-03-30 15:28:49 +0530475#define SCHED_INTR ( \
476 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530477 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530478 ATH9K_INT_RXORN | \
479 ATH9K_INT_RXEOL | \
480 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400481 ATH9K_INT_RXLP | \
482 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530483 ATH9K_INT_TX | \
484 ATH9K_INT_BMISS | \
485 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530486 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530487 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530488 ATH9K_INT_GENTIMER | \
489 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530490
Sujithff37e332008-11-24 12:07:55 +0530491 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530492 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100493 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530494 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530495 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530496 bool sched = false;
497
Sujith063d8be2009-03-30 15:28:49 +0530498 /*
499 * The hardware is not ready/present, don't
500 * touch anything. Note this can happen early
501 * on if the IRQ is shared.
502 */
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100503 if (test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530504 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530505
Sujith063d8be2009-03-30 15:28:49 +0530506 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530507
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400508 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530509 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530510
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100511 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200512 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530513 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200514 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530515
Sujith063d8be2009-03-30 15:28:49 +0530516 /*
517 * Figure out the reason(s) for the interrupt. Note
518 * that the hal returns a pseudo-ISR that may include
519 * bits we haven't explicitly enabled so we mask the
520 * value to insure we only process bits we requested.
521 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100522 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
523 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400524 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530525
526 /*
527 * If there are no status bits set, then this interrupt was not
528 * for me (should have been caught above).
529 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400530 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530531 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530532
533 /* Cache the status */
534 sc->intrstatus = status;
535
536 if (status & SCHED_INTR)
537 sched = true;
538
539 /*
540 * If a FATAL or RXORN interrupt is received, we have to reset the
541 * chip immediately.
542 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400543 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
544 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
Sujith063d8be2009-03-30 15:28:49 +0530545 goto chip_reset;
546
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530547 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530548 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400549 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530550
551#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530552 if (status & ATH9K_INT_BMISS) {
553 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530554 atomic_inc(&sc->wow_got_bmiss_intr);
555 atomic_dec(&sc->wow_sleep_proc_intr);
556 }
557 }
558#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530559
Sujith063d8be2009-03-30 15:28:49 +0530560 if (status & ATH9K_INT_SWBA)
561 tasklet_schedule(&sc->bcon_tasklet);
562
563 if (status & ATH9K_INT_TXURN)
564 ath9k_hw_updatetxtriglevel(ah, true);
565
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530566 if (status & ATH9K_INT_RXEOL) {
567 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200568 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400569 }
570
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400571 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
572 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800573 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
574 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530575 /* Clear RxAbort bit so that we can
576 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700577 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530578 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400579 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530580 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530581 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530582 }
Sujith063d8be2009-03-30 15:28:49 +0530583
584chip_reset:
585
Sujith817e11d2008-12-07 21:42:44 +0530586 ath_debug_stat_interrupt(sc, status);
587
Sujithff37e332008-11-24 12:07:55 +0530588 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100589 /* turn off every interrupt */
590 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530591 tasklet_schedule(&sc->intr_tq);
592 }
593
594 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530595
596#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530597}
598
Sujith Manoharanef6b19e2013-10-24 12:04:39 +0530599int ath_reset(struct ath_softc *sc)
Sujithff37e332008-11-24 12:07:55 +0530600{
Felix Fietkauec303262013-10-05 14:09:30 +0200601 int r;
Sujithff37e332008-11-24 12:07:55 +0530602
Felix Fietkau783cd012011-01-21 18:52:38 +0100603 ath9k_ps_wakeup(sc);
Felix Fietkau13815592013-01-20 18:51:53 +0100604 r = ath_reset_internal(sc, NULL);
Felix Fietkau783cd012011-01-21 18:52:38 +0100605 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530606
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800607 return r;
Sujithff37e332008-11-24 12:07:55 +0530608}
609
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530610void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
611{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100612 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530613#ifdef CONFIG_ATH9K_DEBUGFS
614 RESET_STAT_INC(sc, type);
615#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100616 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530617 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
618}
619
Felix Fietkau236de512011-09-03 01:40:25 +0200620void ath_reset_work(struct work_struct *work)
621{
622 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
623
Felix Fietkau13815592013-01-20 18:51:53 +0100624 ath_reset(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200625}
626
Sujithff37e332008-11-24 12:07:55 +0530627/**********************/
628/* mac80211 callbacks */
629/**********************/
630
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631static int ath9k_start(struct ieee80211_hw *hw)
632{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100633 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700634 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700635 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530636 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530637 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530638 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530639 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700640
Joe Perchesd2182b62011-12-15 14:55:53 -0800641 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800642 "Starting driver with initial channel: %d MHz\n",
643 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644
Felix Fietkauf62d8162011-03-25 17:43:41 +0100645 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530646 mutex_lock(&sc->mutex);
647
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530648 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530649 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650
Sujithff37e332008-11-24 12:07:55 +0530651 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200652 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530653
654 /*
655 * The basic interface to setting the hardware in a good
656 * state is ``reset''. On return the hardware is known to
657 * be powered up and with interrupts disabled. This must
658 * be followed by initialization of the appropriate bits
659 * and then setup of the interrupt mask.
660 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700661 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100662
663 atomic_set(&ah->intr_ref_cnt, -1);
664
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200665 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800666 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800667 ath_err(common,
668 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
669 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200670 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700671 }
Sujithff37e332008-11-24 12:07:55 +0530672
Sujithff37e332008-11-24 12:07:55 +0530673 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400674 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
675 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
676 ATH9K_INT_GLOBAL;
677
678 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400679 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530680 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400681 else
682 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530683
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530684 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
685 ah->imask |= ATH9K_INT_BB_WATCHDOG;
686
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530687 /*
688 * Enable GTT interrupts only for AR9003/AR9004 chips
689 * for now.
690 */
691 if (AR_SREV_9300_20_OR_LATER(ah))
692 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530693
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700694 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400695 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530696
Sujith Manoharane270e772012-06-04 16:27:19 +0530697 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530698
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100699 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530700 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530701
Felix Fietkauceb26a62012-10-03 21:07:51 +0200702 if (!ath_complete_reset(sc, false))
703 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700704
Felix Fietkauc0c11742011-11-16 13:08:41 +0100705 if (ah->led_pin >= 0) {
706 ath9k_hw_cfg_output(ah, ah->led_pin,
707 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
708 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
709 }
710
711 /*
712 * Reset key cache to sane defaults (all entries cleared) instead of
713 * semi-random values after suspend/resume.
714 */
715 ath9k_cmn_init_crypto(sc->sc_ah);
716
Felix Fietkaua35051c2013-12-14 18:03:45 +0100717 ath9k_hw_reset_tsf(ah);
718
Felix Fietkau9adcf442011-09-03 01:40:26 +0200719 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400720
Sujith141b38b2009-02-04 08:10:07 +0530721 mutex_unlock(&sc->mutex);
722
Felix Fietkauf62d8162011-03-25 17:43:41 +0100723 ath9k_ps_restore(sc);
724
Felix Fietkauceb26a62012-10-03 21:07:51 +0200725 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726}
727
Thomas Huehn36323f82012-07-23 21:33:42 +0200728static void ath9k_tx(struct ieee80211_hw *hw,
729 struct ieee80211_tx_control *control,
730 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100732 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700733 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530734 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100735 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530736 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530737
Gabor Juhos96148322009-07-24 17:27:21 +0200738 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300739 /*
740 * mac80211 does not set PM field for normal data frames, so we
741 * need to update that based on the current PS mode.
742 */
743 if (ieee80211_is_data(hdr->frame_control) &&
744 !ieee80211_is_nullfunc(hdr->frame_control) &&
745 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800746 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800747 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300748 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
749 }
750 }
751
Sujith Manoharanad128862012-04-24 10:23:20 +0530752 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300753 /*
754 * We are using PS-Poll and mac80211 can request TX while in
755 * power save mode. Need to wake up hardware for the TX to be
756 * completed and if needed, also for RX of buffered frames.
757 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300758 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530759 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700760 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
761 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300762 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800763 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800764 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530765 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300766 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800767 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530768 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300769 }
770 /*
771 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530772 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300773 * the ps_usecount here.
774 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530775 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300776 ath9k_ps_restore(sc);
777 }
778
Sujith Manoharanad128862012-04-24 10:23:20 +0530779 /*
780 * Cannot tx while the hardware is in full sleep, it first needs a full
781 * chip reset to recover from that
782 */
783 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
784 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
785 goto exit;
786 }
787
Sujith528f0c62008-10-29 10:14:26 +0530788 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100789 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200790 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530791
Joe Perchesd2182b62011-12-15 14:55:53 -0800792 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200794 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800795 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700796 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530797 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 }
799
Johannes Berg7bb45682011-02-24 14:42:06 +0100800 return;
Sujith528f0c62008-10-29 10:14:26 +0530801exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200802 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803}
804
805static void ath9k_stop(struct ieee80211_hw *hw)
806{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100807 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700808 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700809 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100810 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530811
Sujith Manoharanea22df22014-08-23 13:29:07 +0530812 ath9k_deinit_channel_context(sc);
813
Sujith4c483812009-08-18 10:51:52 +0530814 mutex_lock(&sc->mutex);
815
Felix Fietkau9adcf442011-09-03 01:40:26 +0200816 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700817
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100818 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800819 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530820 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530821 return;
822 }
823
Sujith3867cf62009-12-23 20:03:27 -0500824 /* Ensure HW is awake when we try to shut it down. */
825 ath9k_ps_wakeup(sc);
826
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700827 spin_lock_bh(&sc->sc_pcu_lock);
828
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100829 /* prevent tasklets to enable interrupts once we disable them */
830 ah->imask &= ~ATH9K_INT_GLOBAL;
831
Sujithff37e332008-11-24 12:07:55 +0530832 /* make sure h/w will not generate any interrupt
833 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100834 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530835
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700836 spin_unlock_bh(&sc->sc_pcu_lock);
837
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100838 /* we can now sync irq and kill any running tasklets, since we already
839 * disabled interrupts and not holding a spin lock */
840 synchronize_irq(sc->irq);
841 tasklet_kill(&sc->intr_tq);
842 tasklet_kill(&sc->bcon_tasklet);
843
Felix Fietkauc0c11742011-11-16 13:08:41 +0100844 prev_idle = sc->ps_idle;
845 sc->ps_idle = true;
846
847 spin_lock_bh(&sc->sc_pcu_lock);
848
849 if (ah->led_pin >= 0) {
850 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
851 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
852 }
853
John W. Linville9ebea382013-01-28 13:54:03 -0500854 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100855
856 if (sc->rx.frag) {
857 dev_kfree_skb_any(sc->rx.frag);
858 sc->rx.frag = NULL;
859 }
860
861 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530862 ah->curchan = ath9k_cmn_get_channel(hw, ah,
863 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100864
865 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
866 ath9k_hw_phy_disable(ah);
867
868 ath9k_hw_configpcipowersave(ah, true);
869
870 spin_unlock_bh(&sc->sc_pcu_lock);
871
Sujith3867cf62009-12-23 20:03:27 -0500872 ath9k_ps_restore(sc);
873
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100874 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100875 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876
Sujith141b38b2009-02-04 08:10:07 +0530877 mutex_unlock(&sc->mutex);
878
Joe Perchesd2182b62011-12-15 14:55:53 -0800879 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700880}
881
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200882static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700883{
Ben Greear48014162011-01-15 19:13:48 +0000884 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200885 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000886 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400887 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000888 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889 default:
Ben Greear48014162011-01-15 19:13:48 +0000890 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700891 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700892}
893
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530894static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
895 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000896{
Ben Greear48014162011-01-15 19:13:48 +0000897 int i;
898
Felix Fietkauab11bb22013-04-16 12:51:57 +0200899 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000900 for (i = 0; i < ETH_ALEN; i++)
901 iter_data->mask[i] &=
902 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200903 } else {
904 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
905 iter_data->has_hw_macaddr = true;
906 }
Ben Greear48014162011-01-15 19:13:48 +0000907
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530908 if (!vif->bss_conf.use_short_slot)
909 iter_data->slottime = ATH9K_SLOT_TIME_20;
910
Ben Greear48014162011-01-15 19:13:48 +0000911 switch (vif->type) {
912 case NL80211_IFTYPE_AP:
913 iter_data->naps++;
914 break;
915 case NL80211_IFTYPE_STATION:
916 iter_data->nstations++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530917 if (vif->bss_conf.assoc && !iter_data->primary_sta)
918 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000919 break;
920 case NL80211_IFTYPE_ADHOC:
921 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530922 if (vif->bss_conf.enable_beacon)
923 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000924 break;
925 case NL80211_IFTYPE_MESH_POINT:
926 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530927 if (vif->bss_conf.enable_beacon)
928 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000929 break;
930 case NL80211_IFTYPE_WDS:
931 iter_data->nwds++;
932 break;
933 default:
Ben Greear48014162011-01-15 19:13:48 +0000934 break;
935 }
936}
937
938/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530939void ath9k_calculate_iter_data(struct ath_softc *sc,
940 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000941 struct ath9k_vif_iter_data *iter_data)
942{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530943 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000944
945 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100946 * Pick the MAC address of the first interface as the new hardware
947 * MAC address. The hardware will use it together with the BSSID mask
948 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000949 */
950 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +0000951 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530952 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +0000953
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530954 list_for_each_entry(avp, &ctx->vifs, list)
955 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Ben Greear48014162011-01-15 19:13:48 +0000956
Sujith Manoharan77843162014-08-23 13:29:23 +0530957#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530958 if (ctx == &sc->offchannel.chan) {
959 struct ieee80211_vif *vif;
Felix Fietkauab11bb22013-04-16 12:51:57 +0200960
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530961 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
962 vif = sc->offchannel.scan_vif;
963 else
964 vif = sc->offchannel.roc_vif;
965
966 if (vif)
967 ath9k_vif_iter(iter_data, vif->addr, vif);
968 iter_data->beacons = false;
969 }
Sujith Manoharan77843162014-08-23 13:29:23 +0530970#endif
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530971}
972
973static void ath9k_set_assoc_state(struct ath_softc *sc,
974 struct ieee80211_vif *vif, bool changed)
975{
976 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
977 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
978 unsigned long flags;
979
980 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
981 /* Set the AID, BSSID and do beacon-sync only when
982 * the HW opmode is STATION.
983 *
984 * But the primary bit is set above in any case.
985 */
986 if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
987 return;
988
989 ether_addr_copy(common->curbssid, bss_conf->bssid);
990 common->curaid = bss_conf->aid;
991 ath9k_hw_write_associd(sc->sc_ah);
992
993 if (changed) {
994 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
995 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
996
997 spin_lock_irqsave(&sc->sc_pm_lock, flags);
998 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
999 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1000 }
1001
1002 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1003 ath9k_mci_update_wlan_channels(sc, false);
1004
1005 ath_dbg(common, CONFIG,
1006 "Primary Station interface: %pM, BSSID: %pM\n",
1007 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001008}
1009
1010/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301011void ath9k_calculate_summary_state(struct ath_softc *sc,
1012 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001013{
Ben Greear48014162011-01-15 19:13:48 +00001014 struct ath_hw *ah = sc->sc_ah;
1015 struct ath_common *common = ath9k_hw_common(ah);
1016 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301017 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001018
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301019 ath_chanctx_check_active(sc, ctx);
1020
1021 if (ctx != sc->cur_chan)
1022 return;
1023
1024 ath9k_ps_wakeup(sc);
1025 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1026
1027 if (iter_data.has_hw_macaddr)
1028 ether_addr_copy(common->macaddr, iter_data.hw_macaddr);
Ben Greear48014162011-01-15 19:13:48 +00001029
Ben Greear48014162011-01-15 19:13:48 +00001030 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1031 ath_hw_setbssidmask(common);
1032
Ben Greear48014162011-01-15 19:13:48 +00001033 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301034 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301035 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001036 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301037 if (cur_conf->enable_beacon)
1038 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001039 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301040 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001041
Javier Cardonafd5999c2011-05-03 16:57:19 -07001042 if (iter_data.nmeshes)
1043 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1044 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001045 ah->opmode = NL80211_IFTYPE_AP;
1046 else if (iter_data.nadhocs)
1047 ah->opmode = NL80211_IFTYPE_ADHOC;
1048 else
1049 ah->opmode = NL80211_IFTYPE_STATION;
1050 }
1051
Sujith Manoharandf35d292012-07-17 17:15:43 +05301052 ath9k_hw_setopmode(ah);
1053
Felix Fietkau748299f2014-06-11 16:18:04 +05301054 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001055 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001056 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301057 else {
Ben Greear48014162011-01-15 19:13:48 +00001058 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301059 if (iter_data.naps == 1 && iter_data.beacons)
1060 ctx->switch_after_beacon = true;
1061 }
Ben Greear48014162011-01-15 19:13:48 +00001062
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301063 ah->imask &= ~ATH9K_INT_SWBA;
1064 if (ah->opmode == NL80211_IFTYPE_STATION) {
1065 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1066
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301067 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301068 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301069 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1070 changed);
1071 if (!ctx->primary_sta ||
1072 !ctx->primary_sta->bss_conf.assoc)
1073 ctx->primary_sta = iter_data.primary_sta;
1074 } else {
1075 ctx->primary_sta = NULL;
1076 memset(common->curbssid, 0, ETH_ALEN);
1077 common->curaid = 0;
1078 ath9k_hw_write_associd(sc->sc_ah);
1079 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1080 ath9k_mci_update_wlan_channels(sc, true);
1081 }
1082 } else if (iter_data.beacons) {
1083 ah->imask |= ATH9K_INT_SWBA;
1084 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001085 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301086
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301087 if (iter_data.beacons)
1088 set_bit(ATH_OP_BEACONS, &common->op_flags);
1089 else
1090 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1091
1092 if (ah->slottime != iter_data.slottime) {
1093 ah->slottime = iter_data.slottime;
1094 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301095 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301096
1097 if (iter_data.primary_sta)
1098 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1099 else
1100 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1101
1102 ctx->primary_sta = iter_data.primary_sta;
1103
1104 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001105}
1106
Sujith Manoharana4027642014-09-05 09:50:55 +05301107static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1108 struct ieee80211_vif *vif)
1109{
1110 int i;
1111
1112 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1113 vif->hw_queue[i] = i;
1114
1115 if (vif->type == NL80211_IFTYPE_AP)
1116 vif->cab_queue = hw->queues - 2;
1117 else
1118 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1119}
1120
Ben Greear48014162011-01-15 19:13:48 +00001121static int ath9k_add_interface(struct ieee80211_hw *hw,
1122 struct ieee80211_vif *vif)
1123{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001124 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001125 struct ath_hw *ah = sc->sc_ah;
1126 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001127 struct ath_vif *avp = (void *)vif->drv_priv;
1128 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001129
1130 mutex_lock(&sc->mutex);
1131
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001132 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301133 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001134 mutex_unlock(&sc->mutex);
1135 return -EOPNOTSUPP;
1136 }
1137 sc->tx99_vif = vif;
1138 }
1139
Joe Perchesd2182b62011-12-15 14:55:53 -08001140 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301141 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001142
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301143 if (ath9k_uses_beacons(vif->type))
1144 ath9k_beacon_assign_slot(sc, vif);
1145
Felix Fietkaud463af42014-04-06 00:37:03 +02001146 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301147 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301148 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301149 list_add_tail(&avp->list, &avp->chanctx->vifs);
1150 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301151
1152 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301153
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001154 an->sc = sc;
1155 an->sta = NULL;
1156 an->vif = vif;
1157 an->no_ps_filter = true;
1158 ath_tx_node_init(sc, an);
1159
Ben Greear48014162011-01-15 19:13:48 +00001160 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301161 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001162}
1163
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301164static int ath9k_change_interface(struct ieee80211_hw *hw,
1165 struct ieee80211_vif *vif,
1166 enum nl80211_iftype new_type,
1167 bool p2p)
1168{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001169 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301170 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301171 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301172
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301173 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001174
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001175 if (config_enabled(CONFIG_ATH9K_TX99)) {
1176 mutex_unlock(&sc->mutex);
1177 return -EOPNOTSUPP;
1178 }
1179
1180 ath_dbg(common, CONFIG, "Change Interface\n");
1181
Ben Greear48014162011-01-15 19:13:48 +00001182 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301183 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001184
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301185 vif->type = new_type;
1186 vif->p2p = p2p;
1187
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301188 if (ath9k_uses_beacons(vif->type))
1189 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301190
Sujith Manoharana4027642014-09-05 09:50:55 +05301191 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301192 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301193
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301194 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301195 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301196}
1197
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001198static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001199 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001201 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001202 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001203 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204
Joe Perchesd2182b62011-12-15 14:55:53 -08001205 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001206
Sujith141b38b2009-02-04 08:10:07 +05301207 mutex_lock(&sc->mutex);
1208
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301209 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001210
Sujith Manoharanca529c92014-09-05 08:03:19 +05301211 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001212 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301213 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301214 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001215
Ben Greear48014162011-01-15 19:13:48 +00001216 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301217 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001218
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001219 ath_tx_node_cleanup(sc, &avp->mcast_node);
1220
Sujith141b38b2009-02-04 08:10:07 +05301221 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222}
1223
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301224static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301225{
Pavel Roskin30691682010-03-31 18:05:31 -04001226 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301227 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001228
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001229 if (config_enabled(CONFIG_ATH9K_TX99))
1230 return;
1231
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301232 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001233 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1234 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1235 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001236 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301237 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001238 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301239 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301240 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301241}
1242
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301243static void ath9k_disable_ps(struct ath_softc *sc)
1244{
1245 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301246 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301247
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001248 if (config_enabled(CONFIG_ATH9K_TX99))
1249 return;
1250
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301251 sc->ps_enabled = false;
1252 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1253 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1254 ath9k_hw_setrxabort(ah, 0);
1255 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1256 PS_WAIT_FOR_CAB |
1257 PS_WAIT_FOR_PSPOLL_DATA |
1258 PS_WAIT_FOR_TX_ACK);
1259 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1260 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001261 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301262 }
1263 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301264 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301265}
1266
Simon Wunderliche93d0832013-01-08 14:48:58 +01001267void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1268{
1269 struct ath_softc *sc = hw->priv;
1270 struct ath_hw *ah = sc->sc_ah;
1271 struct ath_common *common = ath9k_hw_common(ah);
1272 u32 rxfilter;
1273
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001274 if (config_enabled(CONFIG_ATH9K_TX99))
1275 return;
1276
Simon Wunderliche93d0832013-01-08 14:48:58 +01001277 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1278 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1279 return;
1280 }
1281
1282 ath9k_ps_wakeup(sc);
1283 rxfilter = ath9k_hw_getrxfilter(ah);
1284 ath9k_hw_setrxfilter(ah, rxfilter |
1285 ATH9K_RX_FILTER_PHYRADAR |
1286 ATH9K_RX_FILTER_PHYERR);
1287
1288 /* TODO: usually this should not be neccesary, but for some reason
1289 * (or in some mode?) the trigger must be called after the
1290 * configuration, otherwise the register will have its values reset
1291 * (on my ar9220 to value 0x01002310)
1292 */
1293 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1294 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1295 ath9k_ps_restore(sc);
1296}
1297
1298int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1299 enum spectral_mode spectral_mode)
1300{
1301 struct ath_softc *sc = hw->priv;
1302 struct ath_hw *ah = sc->sc_ah;
1303 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001304
1305 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1306 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1307 return -1;
1308 }
1309
Simon Wunderliche93d0832013-01-08 14:48:58 +01001310 switch (spectral_mode) {
1311 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001312 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001313 break;
1314 case SPECTRAL_BACKGROUND:
1315 /* send endless samples.
1316 * TODO: is this really useful for "background"?
1317 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001318 sc->spec_config.endless = 1;
1319 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001320 break;
1321 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001322 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001323 sc->spec_config.endless = 0;
1324 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001325 break;
1326 default:
1327 return -1;
1328 }
1329
1330 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001331 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001332 ath9k_ps_restore(sc);
1333
1334 sc->spectral_mode = spectral_mode;
1335
1336 return 0;
1337}
1338
Johannes Berge8975582008-10-09 12:18:51 +02001339static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001340{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001341 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001342 struct ath_hw *ah = sc->sc_ah;
1343 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001344 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301345 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346
Felix Fietkauc0c11742011-11-16 13:08:41 +01001347 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301348 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301349
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001350 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001351 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301352 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001353 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301354 ath9k_stop_btcoex(sc);
1355 } else {
1356 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001357 /*
1358 * The chip needs a reset to properly wake up from
1359 * full sleep
1360 */
Felix Fietkau39305632014-06-11 16:17:57 +05301361 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301362 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001363 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001364
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001365 /*
1366 * We just prepare to enable PS. We have to wait until our AP has
1367 * ACK'd our null data frame to disable RX otherwise we'll ignore
1368 * those ACKs and end up retransmitting the same null data frames.
1369 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1370 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301371 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001372 unsigned long flags;
1373 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301374 if (conf->flags & IEEE80211_CONF_PS)
1375 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301376 else
1377 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001378 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301379 }
1380
Sujith199afd92010-01-08 10:36:13 +05301381 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1382 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001383 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301384 sc->sc_ah->is_monitoring = true;
1385 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001386 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301387 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301388 }
1389 }
1390
Sujith Manoharan499afac2014-08-22 20:39:31 +05301391 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301392 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301393 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301394 }
Sujith86b89ee2008-08-07 10:54:57 +05301395
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001396 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001397 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301398 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301399 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301400 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001401 }
1402
Sujithaa33de02008-12-18 11:40:16 +05301403 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001404 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301405
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001406 return 0;
1407}
1408
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001409#define SUPPORTED_FILTERS \
1410 (FIF_PROMISC_IN_BSS | \
1411 FIF_ALLMULTI | \
1412 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001413 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414 FIF_OTHER_BSS | \
1415 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001416 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001417 FIF_FCSFAIL)
1418
Sujith7dcfdcd2008-08-11 14:03:13 +05301419/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001420static void ath9k_configure_filter(struct ieee80211_hw *hw,
1421 unsigned int changed_flags,
1422 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001423 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001424{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001425 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301426 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001427
1428 changed_flags &= SUPPORTED_FILTERS;
1429 *total_flags &= SUPPORTED_FILTERS;
1430
Sujith Manoharanfce34432014-09-05 08:03:18 +05301431 spin_lock_bh(&sc->chan_lock);
1432 sc->cur_chan->rxfilter = *total_flags;
1433 spin_unlock_bh(&sc->chan_lock);
1434
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001435 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301436 rfilt = ath_calcrxfilter(sc);
1437 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001438 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301439
Joe Perchesd2182b62011-12-15 14:55:53 -08001440 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1441 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001442}
1443
Johannes Berg4ca77862010-02-19 19:06:56 +01001444static int ath9k_sta_add(struct ieee80211_hw *hw,
1445 struct ieee80211_vif *vif,
1446 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001447{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001448 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001449 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1450 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1451 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001452 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001453
Ben Greear7e1e3862011-11-03 11:33:13 -07001454 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001455
1456 if (vif->type != NL80211_IFTYPE_AP &&
1457 vif->type != NL80211_IFTYPE_AP_VLAN)
1458 return 0;
1459
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001460 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301461 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001462 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301463 an->key_idx[0] = key;
1464 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001465
1466 return 0;
1467}
1468
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001469static void ath9k_del_ps_key(struct ath_softc *sc,
1470 struct ieee80211_vif *vif,
1471 struct ieee80211_sta *sta)
1472{
1473 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1474 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1475 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1476
1477 if (!an->ps_key)
1478 return;
1479
1480 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001481 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301482 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001483}
1484
Johannes Berg4ca77862010-02-19 19:06:56 +01001485static int ath9k_sta_remove(struct ieee80211_hw *hw,
1486 struct ieee80211_vif *vif,
1487 struct ieee80211_sta *sta)
1488{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001489 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001490
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001491 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001492 ath_node_detach(sc, sta);
1493
1494 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001495}
1496
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301497static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1498 struct ath_node *an,
1499 bool set)
1500{
1501 int i;
1502
1503 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1504 if (!an->key_idx[i])
1505 continue;
1506 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1507 }
1508}
1509
Felix Fietkau55195412011-04-17 23:28:09 +02001510static void ath9k_sta_notify(struct ieee80211_hw *hw,
1511 struct ieee80211_vif *vif,
1512 enum sta_notify_cmd cmd,
1513 struct ieee80211_sta *sta)
1514{
1515 struct ath_softc *sc = hw->priv;
1516 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1517
1518 switch (cmd) {
1519 case STA_NOTIFY_SLEEP:
1520 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001521 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301522 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001523 break;
1524 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301525 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001526 an->sleeping = false;
1527 ath_tx_aggr_wakeup(sc, an);
1528 break;
1529 }
1530}
1531
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001532static int ath9k_conf_tx(struct ieee80211_hw *hw,
1533 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001534 const struct ieee80211_tx_queue_params *params)
1535{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001536 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001537 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001538 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301539 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001540 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001541
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301542 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543 return 0;
1544
Felix Fietkau066dae92010-11-07 14:59:39 +01001545 txq = sc->tx.txq_map[queue];
1546
Felix Fietkau96f372c2011-04-07 19:07:17 +02001547 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301548 mutex_lock(&sc->mutex);
1549
Sujith1ffb0612009-03-30 15:28:46 +05301550 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1551
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001552 qi.tqi_aifs = params->aifs;
1553 qi.tqi_cwmin = params->cw_min;
1554 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001555 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001556
Joe Perchesd2182b62011-12-15 14:55:53 -08001557 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001558 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1559 queue, txq->axq_qnum, params->aifs, params->cw_min,
1560 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001561
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001562 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001563 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001564 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001565 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001566
Sujith141b38b2009-02-04 08:10:07 +05301567 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001568 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301569
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001570 return ret;
1571}
1572
1573static int ath9k_set_key(struct ieee80211_hw *hw,
1574 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001575 struct ieee80211_vif *vif,
1576 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001577 struct ieee80211_key_conf *key)
1578{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001579 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001580 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301581 struct ath_node *an = NULL;
1582 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001583
John W. Linville3e6109c2011-01-05 09:39:17 -05001584 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001585 return -ENOSPC;
1586
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001587 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1588 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001589 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1590 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1591 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1592 /*
1593 * For now, disable hw crypto for the RSN IBSS group keys. This
1594 * could be optimized in the future to use a modified key cache
1595 * design to support per-STA RX GTK, but until that gets
1596 * implemented, use of software crypto for group addressed
1597 * frames is a acceptable to allow RSN IBSS to be used.
1598 */
1599 return -EOPNOTSUPP;
1600 }
1601
Sujith141b38b2009-02-04 08:10:07 +05301602 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301603 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301604 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1605 if (sta)
1606 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001607
1608 switch (cmd) {
1609 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001610 if (sta)
1611 ath9k_del_ps_key(sc, vif, sta);
1612
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301613 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001614 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001615 if (ret >= 0) {
1616 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001617 /* push IV and Michael MIC generation to stack */
1618 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001619 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301620 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001621 if (sc->sc_ah->sw_mgmt_crypto &&
1622 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001623 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001624 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001625 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301626 if (an && key->hw_key_idx) {
1627 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1628 if (an->key_idx[i])
1629 continue;
1630 an->key_idx[i] = key->hw_key_idx;
1631 break;
1632 }
1633 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1634 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001635 break;
1636 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001637 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301638 if (an) {
1639 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1640 if (an->key_idx[i] != key->hw_key_idx)
1641 continue;
1642 an->key_idx[i] = 0;
1643 break;
1644 }
1645 }
1646 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001647 break;
1648 default:
1649 ret = -EINVAL;
1650 }
1651
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301652 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301653 mutex_unlock(&sc->mutex);
1654
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001655 return ret;
1656}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301657
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001658static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1659 struct ieee80211_vif *vif,
1660 struct ieee80211_bss_conf *bss_conf,
1661 u32 changed)
1662{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301663#define CHECK_ANI \
1664 (BSS_CHANGED_ASSOC | \
1665 BSS_CHANGED_IBSS | \
1666 BSS_CHANGED_BEACON_ENABLED)
1667
Felix Fietkau9ac586152011-01-24 19:23:18 +01001668 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001669 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001670 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001671 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001672 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001673
Felix Fietkau96f372c2011-04-07 19:07:17 +02001674 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301675 mutex_lock(&sc->mutex);
1676
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301677 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301678 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1679 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301680
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301681 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan27babf92014-08-23 13:29:16 +05301682
1683 if (ath9k_is_chanctx_enabled()) {
1684 if (bss_conf->assoc)
1685 ath_chanctx_event(sc, vif,
1686 ATH_CHANCTX_EVENT_ASSOC);
1687 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001688 }
1689
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301690 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301691 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1692 common->curaid = bss_conf->aid;
1693 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301694 }
1695
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301696 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301697 (changed & BSS_CHANGED_BEACON_INT) ||
1698 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301699 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301700 if (changed & BSS_CHANGED_BEACON_ENABLED)
1701 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301702 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001703
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301704 if ((avp->chanctx == sc->cur_chan) &&
1705 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001706 if (bss_conf->use_short_slot)
1707 slottime = 9;
1708 else
1709 slottime = 20;
1710 if (vif->type == NL80211_IFTYPE_AP) {
1711 /*
1712 * Defer update, so that connected stations can adjust
1713 * their settings at the same time.
1714 * See beacon.c for more details
1715 */
1716 sc->beacon.slottime = slottime;
1717 sc->beacon.updateslot = UPDATE;
1718 } else {
1719 ah->slottime = slottime;
1720 ath9k_hw_init_global_settings(ah);
1721 }
1722 }
1723
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301724 if (changed & BSS_CHANGED_P2P_PS)
1725 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001726
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301727 if (changed & CHECK_ANI)
1728 ath_check_ani(sc);
1729
Sujith141b38b2009-02-04 08:10:07 +05301730 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001731 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301732
1733#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001734}
1735
Eliad Peller37a41b42011-09-21 14:06:11 +03001736static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001737{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001738 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001739 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001740
Sujith141b38b2009-02-04 08:10:07 +05301741 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301742 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301743 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301744 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301745 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001746
1747 return tsf;
1748}
1749
Eliad Peller37a41b42011-09-21 14:06:11 +03001750static void ath9k_set_tsf(struct ieee80211_hw *hw,
1751 struct ieee80211_vif *vif,
1752 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001753{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001754 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001755
Sujith141b38b2009-02-04 08:10:07 +05301756 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301757 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301758 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301759 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301760 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001761}
1762
Eliad Peller37a41b42011-09-21 14:06:11 +03001763static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001765 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766
Sujith141b38b2009-02-04 08:10:07 +05301767 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001768
1769 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301770 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001771 ath9k_ps_restore(sc);
1772
Sujith141b38b2009-02-04 08:10:07 +05301773 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774}
1775
1776static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001777 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301778 enum ieee80211_ampdu_mlme_action action,
1779 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001780 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001781{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001782 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001783 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001784 int ret = 0;
1785
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301786 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001787
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001788 switch (action) {
1789 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001790 break;
1791 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792 break;
1793 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001794 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001795 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1796 if (!ret)
1797 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001798 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001799 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001800 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1801 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001802 flush = true;
1803 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001804 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301805 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001806 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001807 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001808 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001810 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001811 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301812 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001813 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301814 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001815 default:
Joe Perches38002762010-12-02 19:12:36 -08001816 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817 }
1818
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301819 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001820
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001821 return ret;
1822}
1823
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001824static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1825 struct survey_info *survey)
1826{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001827 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001828 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001829 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001830 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001831 int pos;
1832
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001833 if (config_enabled(CONFIG_ATH9K_TX99))
1834 return -EOPNOTSUPP;
1835
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301836 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001837 if (idx == 0)
1838 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001839
Felix Fietkau39162db2010-09-29 19:12:06 +02001840 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1841 if (sband && idx >= sband->n_channels) {
1842 idx -= sband->n_channels;
1843 sband = NULL;
1844 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001845
Felix Fietkau39162db2010-09-29 19:12:06 +02001846 if (!sband)
1847 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1848
Felix Fietkau34300982010-10-10 18:21:52 +02001849 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301850 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001851 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001852 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001853
Felix Fietkau34300982010-10-10 18:21:52 +02001854 chan = &sband->channels[idx];
1855 pos = chan->hw_value;
1856 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1857 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301858 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001859
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001860 return 0;
1861}
1862
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001863static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1864 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001865{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001866 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001867 struct ath_hw *ah = sc->sc_ah;
1868
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001869 if (config_enabled(CONFIG_ATH9K_TX99))
1870 return;
1871
Felix Fietkaue239d852010-01-15 02:34:58 +01001872 mutex_lock(&sc->mutex);
1873 ah->coverage_class = coverage_class;
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301874
1875 ath9k_ps_wakeup(sc);
Felix Fietkaue239d852010-01-15 02:34:58 +01001876 ath9k_hw_init_global_settings(ah);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301877 ath9k_ps_restore(sc);
1878
Felix Fietkaue239d852010-01-15 02:34:58 +01001879 mutex_unlock(&sc->mutex);
1880}
1881
Felix Fietkau10e23182013-11-11 22:23:35 +01001882static bool ath9k_has_tx_pending(struct ath_softc *sc)
1883{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001884 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001885
1886 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1887 if (!ATH_TXQ_SETUP(sc, i))
1888 continue;
1889
1890 if (!sc->tx.txq[i].axq_depth)
1891 continue;
1892
1893 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
1894 if (npend)
1895 break;
1896 }
1897
1898 return !!npend;
1899}
1900
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02001901static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1902 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001903{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001904 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05301905
1906 mutex_lock(&sc->mutex);
1907 __ath9k_flush(hw, queues, drop);
1908 mutex_unlock(&sc->mutex);
1909}
1910
1911void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
1912{
1913 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301914 struct ath_hw *ah = sc->sc_ah;
1915 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau10e23182013-11-11 22:23:35 +01001916 int timeout = HZ / 5; /* 200 ms */
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05301917 bool drain_txq;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301918 int i;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001919
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001920 cancel_delayed_work_sync(&sc->tx_complete_work);
1921
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301922 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001923 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05301924 return;
1925 }
1926
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01001927 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001928 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05301929 return;
1930 }
1931
Felix Fietkau10e23182013-11-11 22:23:35 +01001932 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
1933 timeout) > 0)
1934 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001935
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001936 if (drop) {
1937 ath9k_ps_wakeup(sc);
1938 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01001939 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001940 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001941
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001942 if (!drain_txq)
Felix Fietkau13815592013-01-20 18:51:53 +01001943 ath_reset(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +02001944
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001945 ath9k_ps_restore(sc);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05301946 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
1947 ieee80211_wake_queue(sc->hw,
1948 sc->cur_chan->hw_queue_base + i);
1949 }
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01001950 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05301951
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001952 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08001953}
1954
Vivek Natarajan15b91e82011-04-06 11:41:11 +05301955static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
1956{
1957 struct ath_softc *sc = hw->priv;
1958 int i;
1959
1960 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1961 if (!ATH_TXQ_SETUP(sc, i))
1962 continue;
1963
1964 if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
1965 return true;
1966 }
1967 return false;
1968}
1969
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05301970static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02001971{
1972 struct ath_softc *sc = hw->priv;
1973 struct ath_hw *ah = sc->sc_ah;
1974 struct ieee80211_vif *vif;
1975 struct ath_vif *avp;
1976 struct ath_buf *bf;
1977 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01001978 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02001979 int status;
1980
1981 vif = sc->beacon.bslot[0];
1982 if (!vif)
1983 return 0;
1984
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05301985 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02001986 return 0;
1987
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05301988 avp = (void *)vif->drv_priv;
1989
Felix Fietkau4286df62012-02-27 19:58:40 +01001990 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02001991 tasklet_disable(&sc->bcon_tasklet);
1992
1993 bf = avp->av_bcbuf;
1994 if (!bf || !bf->bf_mpdu)
1995 goto skip;
1996
1997 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
1998 if (status == -EINPROGRESS)
1999 goto skip;
2000
2001 sc->beacon.tx_processed = true;
2002 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2003
2004skip:
2005 tasklet_enable(&sc->bcon_tasklet);
2006 }
2007
2008 return sc->beacon.tx_last;
2009}
2010
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302011static int ath9k_get_stats(struct ieee80211_hw *hw,
2012 struct ieee80211_low_level_stats *stats)
2013{
2014 struct ath_softc *sc = hw->priv;
2015 struct ath_hw *ah = sc->sc_ah;
2016 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2017
2018 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2019 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2020 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2021 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2022 return 0;
2023}
2024
Felix Fietkau43c35282011-09-03 01:40:27 +02002025static u32 fill_chainmask(u32 cap, u32 new)
2026{
2027 u32 filled = 0;
2028 int i;
2029
2030 for (i = 0; cap && new; i++, cap >>= 1) {
2031 if (!(cap & BIT(0)))
2032 continue;
2033
2034 if (new & BIT(0))
2035 filled |= BIT(i);
2036
2037 new >>= 1;
2038 }
2039
2040 return filled;
2041}
2042
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002043static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2044{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002045 if (AR_SREV_9300_20_OR_LATER(ah))
2046 return true;
2047
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002048 switch (val & 0x7) {
2049 case 0x1:
2050 case 0x3:
2051 case 0x7:
2052 return true;
2053 case 0x2:
2054 return (ah->caps.rx_chainmask == 1);
2055 default:
2056 return false;
2057 }
2058}
2059
Felix Fietkau43c35282011-09-03 01:40:27 +02002060static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2061{
2062 struct ath_softc *sc = hw->priv;
2063 struct ath_hw *ah = sc->sc_ah;
2064
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002065 if (ah->caps.rx_chainmask != 1)
2066 rx_ant |= tx_ant;
2067
2068 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002069 return -EINVAL;
2070
2071 sc->ant_rx = rx_ant;
2072 sc->ant_tx = tx_ant;
2073
2074 if (ah->caps.rx_chainmask == 1)
2075 return 0;
2076
2077 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2078 if (AR_SREV_9100(ah))
2079 ah->rxchainmask = 0x7;
2080 else
2081 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2082
2083 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002084 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002085
2086 return 0;
2087}
2088
2089static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2090{
2091 struct ath_softc *sc = hw->priv;
2092
2093 *tx_ant = sc->ant_tx;
2094 *rx_ant = sc->ant_rx;
2095 return 0;
2096}
2097
Simon Wunderliche93d0832013-01-08 14:48:58 +01002098static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2099{
2100 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002101 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2102 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002103}
2104
2105static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2106{
2107 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002108 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2109 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002110}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302111
Sujith Manoharan499afac2014-08-22 20:39:31 +05302112#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2113
Felix Fietkau78b21942014-06-11 16:17:55 +05302114static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002115 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302116{
John W. Linville855df362014-06-25 15:15:14 -04002117 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302118 struct ath_softc *sc = hw->priv;
2119 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2120 int ret = 0;
2121
2122 mutex_lock(&sc->mutex);
2123
2124 if (WARN_ON(sc->offchannel.scan_req)) {
2125 ret = -EBUSY;
2126 goto out;
2127 }
2128
2129 ath9k_ps_wakeup(sc);
2130 set_bit(ATH_OP_SCANNING, &common->op_flags);
2131 sc->offchannel.scan_vif = vif;
2132 sc->offchannel.scan_req = req;
2133 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302134
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302135 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2136 vif->addr);
2137
2138 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2139 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302140 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302141 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302142
2143out:
2144 mutex_unlock(&sc->mutex);
2145
2146 return ret;
2147}
2148
2149static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2150 struct ieee80211_vif *vif)
2151{
2152 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302153 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2154
2155 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302156
2157 mutex_lock(&sc->mutex);
2158 del_timer_sync(&sc->offchannel.timer);
2159 ath_scan_complete(sc, true);
2160 mutex_unlock(&sc->mutex);
2161}
2162
Felix Fietkau405393c2014-06-11 16:17:56 +05302163static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2164 struct ieee80211_vif *vif,
2165 struct ieee80211_channel *chan, int duration,
2166 enum ieee80211_roc_type type)
2167{
2168 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302169 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302170 int ret = 0;
2171
2172 mutex_lock(&sc->mutex);
2173
2174 if (WARN_ON(sc->offchannel.roc_vif)) {
2175 ret = -EBUSY;
2176 goto out;
2177 }
2178
2179 ath9k_ps_wakeup(sc);
2180 sc->offchannel.roc_vif = vif;
2181 sc->offchannel.roc_chan = chan;
2182 sc->offchannel.roc_duration = duration;
2183
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302184 ath_dbg(common, CHAN_CTX,
2185 "RoC request on vif: %pM, type: %d duration: %d\n",
2186 vif->addr, type, duration);
2187
2188 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2189 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302190 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302191 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302192
2193out:
2194 mutex_unlock(&sc->mutex);
2195
2196 return ret;
2197}
2198
2199static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2200{
2201 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302202 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302203
2204 mutex_lock(&sc->mutex);
2205
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302206 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302207 del_timer_sync(&sc->offchannel.timer);
2208
2209 if (sc->offchannel.roc_vif) {
2210 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2211 ath_roc_complete(sc, true);
2212 }
2213
2214 mutex_unlock(&sc->mutex);
2215
2216 return 0;
2217}
2218
Felix Fietkau39305632014-06-11 16:17:57 +05302219static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2220 struct ieee80211_chanctx_conf *conf)
2221{
2222 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302223 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302224 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302225 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302226
2227 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302228
2229 ath_for_each_chanctx(sc, ctx) {
2230 if (ctx->assigned)
2231 continue;
2232
2233 ptr = (void *) conf->drv_priv;
2234 *ptr = ctx;
2235 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302236 pos = ctx - &sc->chanctx[0];
2237 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302238
2239 ath_dbg(common, CHAN_CTX,
2240 "Add channel context: %d MHz\n",
2241 conf->def.chan->center_freq);
2242
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302243 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302244 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_ASSIGN);
2245
Felix Fietkau39305632014-06-11 16:17:57 +05302246 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302247 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302248 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302249
Felix Fietkau39305632014-06-11 16:17:57 +05302250 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302251 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302252}
2253
2254
2255static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2256 struct ieee80211_chanctx_conf *conf)
2257{
2258 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302259 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302260 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2261
2262 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302263
2264 ath_dbg(common, CHAN_CTX,
2265 "Remove channel context: %d MHz\n",
2266 conf->def.chan->center_freq);
2267
Felix Fietkau39305632014-06-11 16:17:57 +05302268 ctx->assigned = false;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302269 ctx->hw_queue_base = -1;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302270 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302271
Felix Fietkau39305632014-06-11 16:17:57 +05302272 mutex_unlock(&sc->mutex);
2273}
2274
2275static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2276 struct ieee80211_chanctx_conf *conf,
2277 u32 changed)
2278{
2279 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302280 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302281 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2282
2283 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302284 ath_dbg(common, CHAN_CTX,
2285 "Change channel context: %d MHz\n",
2286 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302287 ath_chanctx_set_channel(sc, ctx, &conf->def);
2288 mutex_unlock(&sc->mutex);
2289}
2290
2291static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2292 struct ieee80211_vif *vif,
2293 struct ieee80211_chanctx_conf *conf)
2294{
2295 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302296 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302297 struct ath_vif *avp = (void *)vif->drv_priv;
2298 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302299 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302300
2301 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302302
2303 ath_dbg(common, CHAN_CTX,
2304 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2305 vif->addr, vif->type, vif->p2p,
2306 conf->def.chan->center_freq);
2307
Felix Fietkau39305632014-06-11 16:17:57 +05302308 avp->chanctx = ctx;
2309 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302310 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302311 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2312 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302313
Felix Fietkau39305632014-06-11 16:17:57 +05302314 mutex_unlock(&sc->mutex);
2315
2316 return 0;
2317}
2318
2319static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2320 struct ieee80211_vif *vif,
2321 struct ieee80211_chanctx_conf *conf)
2322{
2323 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302324 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302325 struct ath_vif *avp = (void *)vif->drv_priv;
2326 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302327 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302328
2329 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302330
2331 ath_dbg(common, CHAN_CTX,
2332 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2333 vif->addr, vif->type, vif->p2p,
2334 conf->def.chan->center_freq);
2335
Felix Fietkau39305632014-06-11 16:17:57 +05302336 avp->chanctx = NULL;
2337 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302338 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302339 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2340 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302341
Felix Fietkau39305632014-06-11 16:17:57 +05302342 mutex_unlock(&sc->mutex);
2343}
2344
Sujith Manoharane20a8542014-08-23 13:29:09 +05302345static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2346 struct ieee80211_vif *vif)
2347{
2348 struct ath_softc *sc = hw->priv;
2349 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2350 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
2351 bool changed = false;
2352
2353 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2354 return;
2355
2356 if (!avp->chanctx)
2357 return;
2358
2359 mutex_lock(&sc->mutex);
2360
2361 spin_lock_bh(&sc->chan_lock);
2362 if (sc->next_chan || (sc->cur_chan != avp->chanctx)) {
2363 sc->next_chan = avp->chanctx;
2364 changed = true;
2365 }
Sujith Manoharan878066e2014-08-27 12:07:24 +05302366 ath_dbg(common, CHAN_CTX,
2367 "%s: Set chanctx state to FORCE_ACTIVE, changed: %d\n",
2368 __func__, changed);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302369 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2370 spin_unlock_bh(&sc->chan_lock);
2371
2372 if (changed)
2373 ath_chanctx_set_next(sc, true);
2374
2375 mutex_unlock(&sc->mutex);
2376}
2377
Felix Fietkau78b21942014-06-11 16:17:55 +05302378void ath9k_fill_chanctx_ops(void)
2379{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302380 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302381 return;
2382
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302383 ath9k_ops.hw_scan = ath9k_hw_scan;
2384 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2385 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302386 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302387 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2388 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2389 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2390 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2391 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302392 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302393}
2394
Sujith Manoharan499afac2014-08-22 20:39:31 +05302395#endif
2396
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002397struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002398 .tx = ath9k_tx,
2399 .start = ath9k_start,
2400 .stop = ath9k_stop,
2401 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302402 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 .remove_interface = ath9k_remove_interface,
2404 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002405 .configure_filter = ath9k_configure_filter,
Johannes Berg4ca77862010-02-19 19:06:56 +01002406 .sta_add = ath9k_sta_add,
2407 .sta_remove = ath9k_sta_remove,
Felix Fietkau55195412011-04-17 23:28:09 +02002408 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002412 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002413 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002415 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002416 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302417 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002418 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002419 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302420 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302421 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002422 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302423 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002424 .set_antenna = ath9k_set_antenna,
2425 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002426
Sujith Manoharane60001e2013-10-28 12:22:04 +05302427#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302428 .suspend = ath9k_suspend,
2429 .resume = ath9k_resume,
2430 .set_wakeup = ath9k_set_wakeup,
2431#endif
2432
Ben Greearb90bd9d2012-05-15 15:33:25 -07002433#ifdef CONFIG_ATH9K_DEBUGFS
2434 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302435 .get_et_stats = ath9k_get_et_stats,
2436 .get_et_strings = ath9k_get_et_strings,
2437#endif
2438
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302439#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302440 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002441#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002442 .sw_scan_start = ath9k_sw_scan_start,
2443 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002444};