blob: 5d54f39a61a80814d8a84e3f77ac6386dbc8b65f [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
Sujith Manoharanb7367282014-10-02 06:33:13 +053063 if (txq->axq_depth) {
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080064 pending = true;
Sujith Manoharanb7367282014-10-02 06:33:13 +053065 goto out;
66 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080067
Felix Fietkau04535312014-06-11 16:17:51 +053068 if (txq->mac80211_qnum >= 0) {
69 struct list_head *list;
70
71 list = &sc->cur_chan->acq[txq->mac80211_qnum];
72 if (!list_empty(list))
73 pending = true;
74 }
Sujith Manoharanb7367282014-10-02 06:33:13 +053075out:
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080076 spin_unlock_bh(&txq->axq_lock);
77 return pending;
78}
79
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053080static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070081{
82 unsigned long flags;
83 bool ret;
84
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070085 spin_lock_irqsave(&sc->sc_pm_lock, flags);
86 ret = ath9k_hw_setpower(sc->sc_ah, mode);
87 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070088
89 return ret;
90}
91
Felix Fietkaubf3dac52013-11-11 22:23:33 +010092void ath_ps_full_sleep(unsigned long data)
93{
94 struct ath_softc *sc = (struct ath_softc *) data;
95 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
96 bool reset;
97
98 spin_lock(&common->cc_lock);
99 ath_hw_cycle_counters_update(common);
100 spin_unlock(&common->cc_lock);
101
102 ath9k_hw_setrxabort(sc->sc_ah, 1);
103 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
104
105 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
106}
107
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700108void ath9k_ps_wakeup(struct ath_softc *sc)
109{
Felix Fietkau898c9142010-10-12 14:02:53 +0200110 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700111 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100112 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700113
114 spin_lock_irqsave(&sc->sc_pm_lock, flags);
115 if (++sc->ps_usecount != 1)
116 goto unlock;
117
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100118 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100119 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700120 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700121
Felix Fietkau898c9142010-10-12 14:02:53 +0200122 /*
123 * While the hardware is asleep, the cycle counters contain no
124 * useful data. Better clear them now so that they don't mess up
125 * survey data results.
126 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100127 if (power_mode != ATH9K_PM_AWAKE) {
128 spin_lock(&common->cc_lock);
129 ath_hw_cycle_counters_update(common);
130 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530131 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100132 spin_unlock(&common->cc_lock);
133 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200134
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700135 unlock:
136 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
137}
138
139void ath9k_ps_restore(struct ath_softc *sc)
140{
Felix Fietkau898c9142010-10-12 14:02:53 +0200141 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200142 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700143 unsigned long flags;
144
145 spin_lock_irqsave(&sc->sc_pm_lock, flags);
146 if (--sc->ps_usecount != 0)
147 goto unlock;
148
Sujith Manoharanad128862012-04-24 10:23:20 +0530149 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100150 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
151 goto unlock;
152 }
153
154 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530155 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
156 PS_WAIT_FOR_CAB |
157 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530158 PS_WAIT_FOR_TX_ACK |
159 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200160 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530161 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
162 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530163 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200164 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530165 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200166
167 spin_lock(&common->cc_lock);
168 ath_hw_cycle_counters_update(common);
169 spin_unlock(&common->cc_lock);
170
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600171 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700172
173 unlock:
174 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
175}
176
Felix Fietkau9adcf442011-09-03 01:40:26 +0200177static void __ath_cancel_work(struct ath_softc *sc)
178{
179 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200180 cancel_delayed_work_sync(&sc->tx_complete_work);
181 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530182
Sujith Manoharanbf525922012-06-27 14:15:59 +0530183#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530184 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
185 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530186#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200187}
188
Sujith Manoharane60001e2013-10-28 12:22:04 +0530189void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200190{
191 __ath_cancel_work(sc);
192 cancel_work_sync(&sc->hw_reset_work);
193}
194
Sujith Manoharane60001e2013-10-28 12:22:04 +0530195void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530196{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530197 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
198
Sujith Manoharan19c36162013-08-20 10:05:59 +0530199 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530200 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
201 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
202
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530203 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530204}
205
John W. Linville9ebea382013-01-28 13:54:03 -0500206static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200207{
208 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200209 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200210
211 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530212 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200213 ath9k_hw_disable_interrupts(ah);
214
Felix Fietkau13815592013-01-20 18:51:53 +0100215 if (!ath_drain_all_txq(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200216 ret = false;
217
Felix Fietkau0a62acb2013-01-20 18:51:52 +0100218 if (!ath_stoprecv(sc))
Felix Fietkauceea2a52012-05-24 14:32:19 +0200219 ret = false;
220
Felix Fietkau9adcf442011-09-03 01:40:26 +0200221 return ret;
222}
223
224static bool ath_complete_reset(struct ath_softc *sc, bool start)
225{
226 struct ath_hw *ah = sc->sc_ah;
227 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530228 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200229
Sujith Manoharan9019f642014-09-05 08:03:15 +0530230 ath9k_calculate_summary_state(sc, sc->cur_chan);
Sujith Manoharan19ec4772014-09-05 08:03:16 +0530231 ath_startrecv(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200232 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +0530233 sc->cur_chan->txpower, &sc->curtxpow);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100234 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200235
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530236 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530237 /* restore per chanctx TSF timer */
238 if (sc->cur_chan->tsf_val) {
239 u32 offset;
240
241 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
242 NULL);
243 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
244 }
245
246
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100247 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530248 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200249
Sujith Manoharan196fb862012-06-04 20:24:13 +0530250 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100251 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530252 spin_lock_irqsave(&sc->sc_pm_lock, flags);
253 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
254 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530255 } else {
256 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530257 }
258 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530259 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530260 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200261 }
262
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530263 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530264
265 ath9k_hw_set_interrupts(ah);
266 ath9k_hw_enable_interrupts(ah);
Sujith Manoharan5ba8d9d2014-10-02 06:33:19 +0530267 ieee80211_wake_queues(sc->hw);
Felix Fietkaud463af42014-04-06 00:37:03 +0200268 ath9k_p2p_ps_timer(sc);
269
Felix Fietkau9adcf442011-09-03 01:40:26 +0200270 return true;
271}
272
Sujith Manoharan5555c952014-10-17 07:40:11 +0530273static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200274{
275 struct ath_hw *ah = sc->sc_ah;
276 struct ath_common *common = ath9k_hw_common(ah);
277 struct ath9k_hw_cal_data *caldata = NULL;
278 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200279 int r;
280
281 __ath_cancel_work(sc);
282
Felix Fietkau4668cce2013-01-14 16:56:46 +0100283 tasklet_disable(&sc->intr_tq);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530284 tasklet_disable(&sc->bcon_tasklet);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200285 spin_lock_bh(&sc->sc_pcu_lock);
286
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530287 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200288 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530289 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200290 }
291
292 if (!hchan) {
293 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200294 hchan = ah->curchan;
295 }
296
John W. Linville9ebea382013-01-28 13:54:03 -0500297 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200298 fastcc = false;
299
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530300 if (ath9k_is_chanctx_enabled())
301 fastcc = false;
302
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530303 spin_lock_bh(&sc->chan_lock);
304 sc->cur_chandef = sc->cur_chan->chandef;
305 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530306
Joe Perchesd2182b62011-12-15 14:55:53 -0800307 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530308 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200309
310 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
311 if (r) {
312 ath_err(common,
313 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400314
315 ath9k_hw_enable_interrupts(ah);
316 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
317
Felix Fietkau9adcf442011-09-03 01:40:26 +0200318 goto out;
319 }
320
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530321 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530322 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530323 ath9k_mci_set_txpower(sc, true, false);
324
Felix Fietkau9adcf442011-09-03 01:40:26 +0200325 if (!ath_complete_reset(sc, true))
326 r = -EIO;
327
328out:
329 spin_unlock_bh(&sc->sc_pcu_lock);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530330 tasklet_enable(&sc->bcon_tasklet);
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);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200348
349 ath_dynack_node_init(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530350}
351
352static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
353{
354 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530355 ath_tx_node_cleanup(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200356
357 ath_dynack_node_deinit(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530358}
359
Sujith55624202010-01-08 10:36:02 +0530360void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530361{
362 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700363 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700364 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530365 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530366 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530367 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400368 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530369
Felix Fietkaue3927002011-09-14 21:23:01 +0200370 ath9k_ps_wakeup(sc);
371 spin_lock(&sc->sc_pcu_lock);
372
Sujith Manoharan6549a862013-12-24 10:44:24 +0530373 if (status & ATH9K_INT_FATAL) {
374 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530375 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530376
377 /*
378 * Increment the ref. counter here so that
379 * interrupts are enabled in the reset routine.
380 */
381 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100382 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200383 goto out;
Sujithff37e332008-11-24 12:07:55 +0530384 }
385
Sujith Manoharan6549a862013-12-24 10:44:24 +0530386 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
387 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530388 spin_lock(&common->cc_lock);
389 ath_hw_cycle_counters_update(common);
390 ar9003_hw_bb_watchdog_dbg_info(ah);
391 spin_unlock(&common->cc_lock);
392
Sujith Manoharan6549a862013-12-24 10:44:24 +0530393 if (ar9003_hw_bb_watchdog_check(ah)) {
394 type = RESET_TYPE_BB_WATCHDOG;
395 ath9k_queue_reset(sc, type);
396
397 /*
398 * Increment the ref. counter here so that
399 * interrupts are enabled in the reset routine.
400 */
401 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100402 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530403 "BB_WATCHDOG: Skipping interrupts\n");
404 goto out;
405 }
406 }
407
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530408 if (status & ATH9K_INT_GTT) {
409 sc->gtt_cnt++;
410
411 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
412 type = RESET_TYPE_TX_GTT;
413 ath9k_queue_reset(sc, type);
414 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100415 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530416 "GTT: Skipping interrupts\n");
417 goto out;
418 }
419 }
420
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530421 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530422 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
423 /*
424 * TSF sync does not look correct; remain awake to sync with
425 * the next Beacon.
426 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800427 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530428 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530429 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530430 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530431
Felix Fietkaub5c804752010-04-15 17:38:48 -0400432 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
433 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
434 ATH9K_INT_RXORN);
435 else
436 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
437
438 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400439 /* Check for high priority Rx first */
440 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
441 (status & ATH9K_INT_RXHP))
442 ath_rx_tasklet(sc, 0, true);
443
444 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530445 }
446
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400447 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530448 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
449 /*
450 * For EDMA chips, TX completion is enabled for the
451 * beacon queue, so if a beacon has been transmitted
452 * successfully after a GTT interrupt, the GTT counter
453 * gets reset to zero here.
454 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530455 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530456
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400457 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530458 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400459 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530460 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100461
462 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400463 }
Sujith063d8be2009-03-30 15:28:49 +0530464
Felix Fietkauc67ce332013-12-14 18:03:38 +0100465 if (status & ATH9K_INT_GENTIMER)
466 ath_gen_timer_isr(sc->sc_ah);
467
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530468 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530469
Sujithff37e332008-11-24 12:07:55 +0530470 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100471 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530472out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530473 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400474 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530475}
476
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100477irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530478{
Sujith063d8be2009-03-30 15:28:49 +0530479#define SCHED_INTR ( \
480 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530481 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530482 ATH9K_INT_RXORN | \
483 ATH9K_INT_RXEOL | \
484 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400485 ATH9K_INT_RXLP | \
486 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530487 ATH9K_INT_TX | \
488 ATH9K_INT_BMISS | \
489 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530490 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530491 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530492 ATH9K_INT_GENTIMER | \
493 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530494
Sujithff37e332008-11-24 12:07:55 +0530495 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530496 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100497 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530498 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530499 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530500 bool sched = false;
501
Sujith063d8be2009-03-30 15:28:49 +0530502 /*
503 * The hardware is not ready/present, don't
504 * touch anything. Note this can happen early
505 * on if the IRQ is shared.
506 */
Wojciech Dubowik2ba7d142014-09-18 08:30:41 +0200507 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530508 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530509
Sujith063d8be2009-03-30 15:28:49 +0530510 /* shared irq, not for us */
Sujithff37e332008-11-24 12:07:55 +0530511
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400512 if (!ath9k_hw_intrpend(ah))
Sujith063d8be2009-03-30 15:28:49 +0530513 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530514
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100515 if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) {
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200516 ath9k_hw_kill_interrupts(ah);
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530517 return IRQ_HANDLED;
Felix Fietkauf41a9b32012-08-08 16:25:03 +0200518 }
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530519
Sujith063d8be2009-03-30 15:28:49 +0530520 /*
521 * Figure out the reason(s) for the interrupt. Note
522 * that the hal returns a pseudo-ISR that may include
523 * bits we haven't explicitly enabled so we mask the
524 * value to insure we only process bits we requested.
525 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100526 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
527 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400528 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530529
530 /*
531 * If there are no status bits set, then this interrupt was not
532 * for me (should have been caught above).
533 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400534 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530535 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530536
537 /* Cache the status */
538 sc->intrstatus = status;
539
540 if (status & SCHED_INTR)
541 sched = true;
542
543 /*
544 * If a FATAL or RXORN interrupt is received, we have to reset the
545 * chip immediately.
546 */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400547 if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
548 !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
Sujith063d8be2009-03-30 15:28:49 +0530549 goto chip_reset;
550
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530551 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530552 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400553 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530554
555#ifdef CONFIG_ATH9K_WOW
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530556 if (status & ATH9K_INT_BMISS) {
557 if (atomic_read(&sc->wow_sleep_proc_intr) == 0) {
Rajkumar Manoharanca90ef42012-11-20 18:29:59 +0530558 atomic_inc(&sc->wow_got_bmiss_intr);
559 atomic_dec(&sc->wow_sleep_proc_intr);
560 }
561 }
562#endif
Sujith Manoharane60001e2013-10-28 12:22:04 +0530563
Sujith063d8be2009-03-30 15:28:49 +0530564 if (status & ATH9K_INT_SWBA)
565 tasklet_schedule(&sc->bcon_tasklet);
566
567 if (status & ATH9K_INT_TXURN)
568 ath9k_hw_updatetxtriglevel(ah, true);
569
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530570 if (status & ATH9K_INT_RXEOL) {
571 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200572 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400573 }
574
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400575 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
576 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800577 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
578 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530579 /* Clear RxAbort bit so that we can
580 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700581 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530582 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400583 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530584 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530585 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530586 }
Sujith063d8be2009-03-30 15:28:49 +0530587
588chip_reset:
589
Sujith817e11d2008-12-07 21:42:44 +0530590 ath_debug_stat_interrupt(sc, status);
591
Sujithff37e332008-11-24 12:07:55 +0530592 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100593 /* turn off every interrupt */
594 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530595 tasklet_schedule(&sc->intr_tq);
596 }
597
598 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530599
600#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530601}
602
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530603/*
604 * This function is called when a HW reset cannot be deferred
605 * and has to be immediate.
606 */
Sujith Manoharan5555c952014-10-17 07:40:11 +0530607int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530608{
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530609 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauec303262013-10-05 14:09:30 +0200610 int r;
Sujithff37e332008-11-24 12:07:55 +0530611
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530612 set_bit(ATH_OP_HW_RESET, &common->op_flags);
613
Felix Fietkau783cd012011-01-21 18:52:38 +0100614 ath9k_ps_wakeup(sc);
Sujith Manoharan5555c952014-10-17 07:40:11 +0530615 r = ath_reset_internal(sc, hchan);
Felix Fietkau783cd012011-01-21 18:52:38 +0100616 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530617
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800618 return r;
Sujithff37e332008-11-24 12:07:55 +0530619}
620
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530621/*
622 * When a HW reset can be deferred, it is added to the
623 * hw_reset_work workqueue, but we set ATH_OP_HW_RESET before
624 * queueing.
625 */
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530626void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
627{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100628 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530629#ifdef CONFIG_ATH9K_DEBUGFS
630 RESET_STAT_INC(sc, type);
631#endif
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100632 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530633 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
634}
635
Felix Fietkau236de512011-09-03 01:40:25 +0200636void ath_reset_work(struct work_struct *work)
637{
638 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
639
Sujith Manoharan5555c952014-10-17 07:40:11 +0530640 ath9k_ps_wakeup(sc);
641 ath_reset_internal(sc, NULL);
642 ath9k_ps_restore(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200643}
644
Sujithff37e332008-11-24 12:07:55 +0530645/**********************/
646/* mac80211 callbacks */
647/**********************/
648
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649static int ath9k_start(struct ieee80211_hw *hw)
650{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100651 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700652 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700653 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530654 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530655 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530656 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530657 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658
Joe Perchesd2182b62011-12-15 14:55:53 -0800659 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800660 "Starting driver with initial channel: %d MHz\n",
661 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662
Felix Fietkauf62d8162011-03-25 17:43:41 +0100663 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530664 mutex_lock(&sc->mutex);
665
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530666 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530667 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668
Sujithff37e332008-11-24 12:07:55 +0530669 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200670 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530671
672 /*
673 * The basic interface to setting the hardware in a good
674 * state is ``reset''. On return the hardware is known to
675 * be powered up and with interrupts disabled. This must
676 * be followed by initialization of the appropriate bits
677 * and then setup of the interrupt mask.
678 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700679 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100680
681 atomic_set(&ah->intr_ref_cnt, -1);
682
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200683 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800684 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800685 ath_err(common,
686 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
687 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200688 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700689 }
Sujithff37e332008-11-24 12:07:55 +0530690
Sujithff37e332008-11-24 12:07:55 +0530691 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400692 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
693 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
694 ATH9K_INT_GLOBAL;
695
696 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400697 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530698 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400699 else
700 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530701
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530702 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
703 ah->imask |= ATH9K_INT_BB_WATCHDOG;
704
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530705 /*
706 * Enable GTT interrupts only for AR9003/AR9004 chips
707 * for now.
708 */
709 if (AR_SREV_9300_20_OR_LATER(ah))
710 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530711
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700712 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400713 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530714
Sujith Manoharane270e772012-06-04 16:27:19 +0530715 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530716
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100717 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530718 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530719
Felix Fietkauceb26a62012-10-03 21:07:51 +0200720 if (!ath_complete_reset(sc, false))
721 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722
Felix Fietkauc0c11742011-11-16 13:08:41 +0100723 if (ah->led_pin >= 0) {
724 ath9k_hw_cfg_output(ah, ah->led_pin,
725 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
726 ath9k_hw_set_gpio(ah, ah->led_pin, 0);
727 }
728
729 /*
730 * Reset key cache to sane defaults (all entries cleared) instead of
731 * semi-random values after suspend/resume.
732 */
733 ath9k_cmn_init_crypto(sc->sc_ah);
734
Felix Fietkaua35051c2013-12-14 18:03:45 +0100735 ath9k_hw_reset_tsf(ah);
736
Felix Fietkau9adcf442011-09-03 01:40:26 +0200737 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400738
Sujith141b38b2009-02-04 08:10:07 +0530739 mutex_unlock(&sc->mutex);
740
Felix Fietkauf62d8162011-03-25 17:43:41 +0100741 ath9k_ps_restore(sc);
742
Felix Fietkauceb26a62012-10-03 21:07:51 +0200743 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744}
745
Thomas Huehn36323f82012-07-23 21:33:42 +0200746static void ath9k_tx(struct ieee80211_hw *hw,
747 struct ieee80211_tx_control *control,
748 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100750 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700751 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530752 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100753 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530754 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530755
Gabor Juhos96148322009-07-24 17:27:21 +0200756 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300757 /*
758 * mac80211 does not set PM field for normal data frames, so we
759 * need to update that based on the current PS mode.
760 */
761 if (ieee80211_is_data(hdr->frame_control) &&
762 !ieee80211_is_nullfunc(hdr->frame_control) &&
763 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800764 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800765 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300766 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
767 }
768 }
769
Sujith Manoharanad128862012-04-24 10:23:20 +0530770 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300771 /*
772 * We are using PS-Poll and mac80211 can request TX while in
773 * power save mode. Need to wake up hardware for the TX to be
774 * completed and if needed, also for RX of buffered frames.
775 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300776 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530777 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700778 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
779 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300780 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800781 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800782 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530783 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300784 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800785 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530786 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300787 }
788 /*
789 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530790 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300791 * the ps_usecount here.
792 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530793 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300794 ath9k_ps_restore(sc);
795 }
796
Sujith Manoharanad128862012-04-24 10:23:20 +0530797 /*
798 * Cannot tx while the hardware is in full sleep, it first needs a full
799 * chip reset to recover from that
800 */
801 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
802 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
803 goto exit;
804 }
805
Sujith528f0c62008-10-29 10:14:26 +0530806 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100807 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200808 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530809
Joe Perchesd2182b62011-12-15 14:55:53 -0800810 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200812 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800813 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700814 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530815 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816 }
817
Johannes Berg7bb45682011-02-24 14:42:06 +0100818 return;
Sujith528f0c62008-10-29 10:14:26 +0530819exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200820 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700821}
822
823static void ath9k_stop(struct ieee80211_hw *hw)
824{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100825 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700826 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700827 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100828 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530829
Sujith Manoharanea22df22014-08-23 13:29:07 +0530830 ath9k_deinit_channel_context(sc);
831
Sujith4c483812009-08-18 10:51:52 +0530832 mutex_lock(&sc->mutex);
833
Felix Fietkau9adcf442011-09-03 01:40:26 +0200834 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700835
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100836 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800837 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530838 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530839 return;
840 }
841
Sujith3867cf62009-12-23 20:03:27 -0500842 /* Ensure HW is awake when we try to shut it down. */
843 ath9k_ps_wakeup(sc);
844
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700845 spin_lock_bh(&sc->sc_pcu_lock);
846
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100847 /* prevent tasklets to enable interrupts once we disable them */
848 ah->imask &= ~ATH9K_INT_GLOBAL;
849
Sujithff37e332008-11-24 12:07:55 +0530850 /* make sure h/w will not generate any interrupt
851 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100852 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530853
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700854 spin_unlock_bh(&sc->sc_pcu_lock);
855
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100856 /* we can now sync irq and kill any running tasklets, since we already
857 * disabled interrupts and not holding a spin lock */
858 synchronize_irq(sc->irq);
859 tasklet_kill(&sc->intr_tq);
860 tasklet_kill(&sc->bcon_tasklet);
861
Felix Fietkauc0c11742011-11-16 13:08:41 +0100862 prev_idle = sc->ps_idle;
863 sc->ps_idle = true;
864
865 spin_lock_bh(&sc->sc_pcu_lock);
866
867 if (ah->led_pin >= 0) {
868 ath9k_hw_set_gpio(ah, ah->led_pin, 1);
869 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
870 }
871
John W. Linville9ebea382013-01-28 13:54:03 -0500872 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100873
874 if (sc->rx.frag) {
875 dev_kfree_skb_any(sc->rx.frag);
876 sc->rx.frag = NULL;
877 }
878
879 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530880 ah->curchan = ath9k_cmn_get_channel(hw, ah,
881 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100882
883 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
884 ath9k_hw_phy_disable(ah);
885
886 ath9k_hw_configpcipowersave(ah, true);
887
888 spin_unlock_bh(&sc->sc_pcu_lock);
889
Sujith3867cf62009-12-23 20:03:27 -0500890 ath9k_ps_restore(sc);
891
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100892 set_bit(ATH_OP_INVALID, &common->op_flags);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100893 sc->ps_idle = prev_idle;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700894
Sujith141b38b2009-02-04 08:10:07 +0530895 mutex_unlock(&sc->mutex);
896
Joe Perchesd2182b62011-12-15 14:55:53 -0800897 ath_dbg(common, CONFIG, "Driver halt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700898}
899
Felix Fietkauc648ecb2013-10-11 23:31:00 +0200900static bool ath9k_uses_beacons(int type)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700901{
Ben Greear48014162011-01-15 19:13:48 +0000902 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200903 case NL80211_IFTYPE_AP:
Ben Greear48014162011-01-15 19:13:48 +0000904 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400905 case NL80211_IFTYPE_MESH_POINT:
Ben Greear48014162011-01-15 19:13:48 +0000906 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700907 default:
Ben Greear48014162011-01-15 19:13:48 +0000908 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700909 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700910}
911
Sujith Manoharan4b93fd22014-08-23 13:29:22 +0530912static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data,
913 u8 *mac, struct ieee80211_vif *vif)
Ben Greear48014162011-01-15 19:13:48 +0000914{
Sujith Manoharancb355822014-09-17 14:45:56 +0530915 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Ben Greear48014162011-01-15 19:13:48 +0000916 int i;
917
Felix Fietkauab11bb22013-04-16 12:51:57 +0200918 if (iter_data->has_hw_macaddr) {
Ben Greear48014162011-01-15 19:13:48 +0000919 for (i = 0; i < ETH_ALEN; i++)
920 iter_data->mask[i] &=
921 ~(iter_data->hw_macaddr[i] ^ mac[i]);
Felix Fietkauab11bb22013-04-16 12:51:57 +0200922 } else {
923 memcpy(iter_data->hw_macaddr, mac, ETH_ALEN);
924 iter_data->has_hw_macaddr = true;
925 }
Ben Greear48014162011-01-15 19:13:48 +0000926
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530927 if (!vif->bss_conf.use_short_slot)
928 iter_data->slottime = ATH9K_SLOT_TIME_20;
929
Ben Greear48014162011-01-15 19:13:48 +0000930 switch (vif->type) {
931 case NL80211_IFTYPE_AP:
932 iter_data->naps++;
933 break;
934 case NL80211_IFTYPE_STATION:
935 iter_data->nstations++;
Sujith Manoharancb355822014-09-17 14:45:56 +0530936 if (avp->assoc && !iter_data->primary_sta)
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530937 iter_data->primary_sta = vif;
Ben Greear48014162011-01-15 19:13:48 +0000938 break;
939 case NL80211_IFTYPE_ADHOC:
940 iter_data->nadhocs++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530941 if (vif->bss_conf.enable_beacon)
942 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000943 break;
944 case NL80211_IFTYPE_MESH_POINT:
945 iter_data->nmeshes++;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530946 if (vif->bss_conf.enable_beacon)
947 iter_data->beacons = true;
Ben Greear48014162011-01-15 19:13:48 +0000948 break;
949 case NL80211_IFTYPE_WDS:
950 iter_data->nwds++;
951 break;
952 default:
Ben Greear48014162011-01-15 19:13:48 +0000953 break;
954 }
955}
956
Sujith Manoharan2ce73c02014-09-19 13:00:42 +0530957static void ath9k_update_bssid_mask(struct ath_softc *sc,
958 struct ath_chanctx *ctx,
959 struct ath9k_vif_iter_data *iter_data)
960{
961 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
962 struct ath_vif *avp;
963 int i;
964
965 if (!ath9k_is_chanctx_enabled())
966 return;
967
968 list_for_each_entry(avp, &ctx->vifs, list) {
969 if (ctx->nvifs_assigned != 1)
970 continue;
971
972 if (!avp->vif->p2p || !iter_data->has_hw_macaddr)
973 continue;
974
975 ether_addr_copy(common->curbssid, avp->bssid);
976
977 /* perm_addr will be used as the p2p device address. */
978 for (i = 0; i < ETH_ALEN; i++)
979 iter_data->mask[i] &=
980 ~(iter_data->hw_macaddr[i] ^
981 sc->hw->wiphy->perm_addr[i]);
982 }
983}
984
Ben Greear48014162011-01-15 19:13:48 +0000985/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530986void ath9k_calculate_iter_data(struct ath_softc *sc,
987 struct ath_chanctx *ctx,
Ben Greear48014162011-01-15 19:13:48 +0000988 struct ath9k_vif_iter_data *iter_data)
989{
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530990 struct ath_vif *avp;
Ben Greear48014162011-01-15 19:13:48 +0000991
992 /*
Mathy Vanhoef657eb172013-11-28 12:21:45 +0100993 * Pick the MAC address of the first interface as the new hardware
994 * MAC address. The hardware will use it together with the BSSID mask
995 * when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000996 */
997 memset(iter_data, 0, sizeof(*iter_data));
Ben Greear48014162011-01-15 19:13:48 +0000998 memset(&iter_data->mask, 0xff, ETH_ALEN);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530999 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +00001000
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301001 list_for_each_entry(avp, &ctx->vifs, list)
1002 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301003
1004 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301005}
1006
1007static void ath9k_set_assoc_state(struct ath_softc *sc,
1008 struct ieee80211_vif *vif, bool changed)
1009{
1010 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharancb355822014-09-17 14:45:56 +05301011 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301012 unsigned long flags;
1013
1014 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301015
Sujith Manoharancb355822014-09-17 14:45:56 +05301016 ether_addr_copy(common->curbssid, avp->bssid);
1017 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301018 ath9k_hw_write_associd(sc->sc_ah);
1019
1020 if (changed) {
1021 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1022 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1023
1024 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1025 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1026 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1027 }
1028
1029 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1030 ath9k_mci_update_wlan_channels(sc, false);
1031
1032 ath_dbg(common, CONFIG,
1033 "Primary Station interface: %pM, BSSID: %pM\n",
1034 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001035}
1036
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301037#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1038static void ath9k_set_offchannel_state(struct ath_softc *sc)
1039{
1040 struct ath_hw *ah = sc->sc_ah;
1041 struct ath_common *common = ath9k_hw_common(ah);
1042 struct ieee80211_vif *vif = NULL;
1043
1044 ath9k_ps_wakeup(sc);
1045
1046 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1047 vif = sc->offchannel.scan_vif;
1048 else
1049 vif = sc->offchannel.roc_vif;
1050
1051 if (WARN_ON(!vif))
1052 goto exit;
1053
1054 eth_zero_addr(common->curbssid);
1055 eth_broadcast_addr(common->bssidmask);
1056 ether_addr_copy(common->macaddr, vif->addr);
1057 common->curaid = 0;
1058 ah->opmode = vif->type;
1059 ah->imask &= ~ATH9K_INT_SWBA;
1060 ah->imask &= ~ATH9K_INT_TSFOOR;
1061 ah->slottime = ATH9K_SLOT_TIME_9;
1062
1063 ath_hw_setbssidmask(common);
1064 ath9k_hw_setopmode(ah);
1065 ath9k_hw_write_associd(sc->sc_ah);
1066 ath9k_hw_set_interrupts(ah);
1067 ath9k_hw_init_global_settings(ah);
1068
1069exit:
1070 ath9k_ps_restore(sc);
1071}
1072#endif
1073
Ben Greear48014162011-01-15 19:13:48 +00001074/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301075void ath9k_calculate_summary_state(struct ath_softc *sc,
1076 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001077{
Ben Greear48014162011-01-15 19:13:48 +00001078 struct ath_hw *ah = sc->sc_ah;
1079 struct ath_common *common = ath9k_hw_common(ah);
1080 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301081 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001082
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301083 ath_chanctx_check_active(sc, ctx);
1084
1085 if (ctx != sc->cur_chan)
1086 return;
1087
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301088#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1089 if (ctx == &sc->offchannel.chan)
1090 return ath9k_set_offchannel_state(sc);
1091#endif
1092
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301093 ath9k_ps_wakeup(sc);
1094 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1095
1096 if (iter_data.has_hw_macaddr)
1097 ether_addr_copy(common->macaddr, iter_data.hw_macaddr);
Ben Greear48014162011-01-15 19:13:48 +00001098
Ben Greear48014162011-01-15 19:13:48 +00001099 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1100 ath_hw_setbssidmask(common);
1101
Ben Greear48014162011-01-15 19:13:48 +00001102 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301103 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301104 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001105 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301106 if (cur_conf->enable_beacon)
1107 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001108 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301109 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001110
Javier Cardonafd5999c2011-05-03 16:57:19 -07001111 if (iter_data.nmeshes)
1112 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1113 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001114 ah->opmode = NL80211_IFTYPE_AP;
1115 else if (iter_data.nadhocs)
1116 ah->opmode = NL80211_IFTYPE_ADHOC;
1117 else
1118 ah->opmode = NL80211_IFTYPE_STATION;
1119 }
1120
Sujith Manoharandf35d292012-07-17 17:15:43 +05301121 ath9k_hw_setopmode(ah);
1122
Felix Fietkau748299f2014-06-11 16:18:04 +05301123 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001124 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001125 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301126 else {
Ben Greear48014162011-01-15 19:13:48 +00001127 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301128 if (iter_data.naps == 1 && iter_data.beacons)
1129 ctx->switch_after_beacon = true;
1130 }
Ben Greear48014162011-01-15 19:13:48 +00001131
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301132 ah->imask &= ~ATH9K_INT_SWBA;
1133 if (ah->opmode == NL80211_IFTYPE_STATION) {
1134 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1135
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301136 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301137 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301138 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1139 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301140 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301141 } else {
1142 ctx->primary_sta = NULL;
1143 memset(common->curbssid, 0, ETH_ALEN);
1144 common->curaid = 0;
1145 ath9k_hw_write_associd(sc->sc_ah);
1146 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1147 ath9k_mci_update_wlan_channels(sc, true);
1148 }
1149 } else if (iter_data.beacons) {
1150 ah->imask |= ATH9K_INT_SWBA;
1151 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001152 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301153
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301154 if (iter_data.beacons)
1155 set_bit(ATH_OP_BEACONS, &common->op_flags);
1156 else
1157 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1158
1159 if (ah->slottime != iter_data.slottime) {
1160 ah->slottime = iter_data.slottime;
1161 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301162 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301163
1164 if (iter_data.primary_sta)
1165 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1166 else
1167 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1168
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301169 ath_dbg(common, CONFIG,
1170 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1171 common->macaddr, common->curbssid, common->bssidmask);
1172
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301173 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001174}
1175
Sujith Manoharana4027642014-09-05 09:50:55 +05301176static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1177 struct ieee80211_vif *vif)
1178{
1179 int i;
1180
1181 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1182 vif->hw_queue[i] = i;
1183
1184 if (vif->type == NL80211_IFTYPE_AP)
1185 vif->cab_queue = hw->queues - 2;
1186 else
1187 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1188}
1189
Ben Greear48014162011-01-15 19:13:48 +00001190static int ath9k_add_interface(struct ieee80211_hw *hw,
1191 struct ieee80211_vif *vif)
1192{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001193 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001194 struct ath_hw *ah = sc->sc_ah;
1195 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001196 struct ath_vif *avp = (void *)vif->drv_priv;
1197 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001198
1199 mutex_lock(&sc->mutex);
1200
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001201 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301202 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001203 mutex_unlock(&sc->mutex);
1204 return -EOPNOTSUPP;
1205 }
1206 sc->tx99_vif = vif;
1207 }
1208
Joe Perchesd2182b62011-12-15 14:55:53 -08001209 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301210 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001211
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301212 if (ath9k_uses_beacons(vif->type))
1213 ath9k_beacon_assign_slot(sc, vif);
1214
Felix Fietkaud463af42014-04-06 00:37:03 +02001215 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301216 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301217 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301218 list_add_tail(&avp->list, &avp->chanctx->vifs);
1219 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301220
1221 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301222
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001223 an->sc = sc;
1224 an->sta = NULL;
1225 an->vif = vif;
1226 an->no_ps_filter = true;
1227 ath_tx_node_init(sc, an);
1228
Ben Greear48014162011-01-15 19:13:48 +00001229 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301230 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001231}
1232
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301233static int ath9k_change_interface(struct ieee80211_hw *hw,
1234 struct ieee80211_vif *vif,
1235 enum nl80211_iftype new_type,
1236 bool p2p)
1237{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001238 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301239 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301240 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301241
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301242 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001243
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001244 if (config_enabled(CONFIG_ATH9K_TX99)) {
1245 mutex_unlock(&sc->mutex);
1246 return -EOPNOTSUPP;
1247 }
1248
1249 ath_dbg(common, CONFIG, "Change Interface\n");
1250
Ben Greear48014162011-01-15 19:13:48 +00001251 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301252 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001253
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301254 vif->type = new_type;
1255 vif->p2p = p2p;
1256
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301257 if (ath9k_uses_beacons(vif->type))
1258 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301259
Sujith Manoharana4027642014-09-05 09:50:55 +05301260 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301261 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301262
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301263 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301264 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301265}
1266
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001267static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001268 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001269{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001270 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001271 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001272 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001273
Joe Perchesd2182b62011-12-15 14:55:53 -08001274 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001275
Sujith141b38b2009-02-04 08:10:07 +05301276 mutex_lock(&sc->mutex);
1277
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301278 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001279
Sujith Manoharanca529c92014-09-05 08:03:19 +05301280 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001281 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301282 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301283 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001284
Ben Greear48014162011-01-15 19:13:48 +00001285 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301286 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001287
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001288 ath_tx_node_cleanup(sc, &avp->mcast_node);
1289
Sujith141b38b2009-02-04 08:10:07 +05301290 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001291}
1292
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301293static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301294{
Pavel Roskin30691682010-03-31 18:05:31 -04001295 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301296 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001297
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001298 if (config_enabled(CONFIG_ATH9K_TX99))
1299 return;
1300
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301301 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001302 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1303 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1304 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001305 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301306 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001307 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301308 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301309 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301310}
1311
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301312static void ath9k_disable_ps(struct ath_softc *sc)
1313{
1314 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301315 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301316
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001317 if (config_enabled(CONFIG_ATH9K_TX99))
1318 return;
1319
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301320 sc->ps_enabled = false;
1321 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1322 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1323 ath9k_hw_setrxabort(ah, 0);
1324 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1325 PS_WAIT_FOR_CAB |
1326 PS_WAIT_FOR_PSPOLL_DATA |
1327 PS_WAIT_FOR_TX_ACK);
1328 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1329 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001330 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301331 }
1332 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301333 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301334}
1335
Simon Wunderliche93d0832013-01-08 14:48:58 +01001336void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw)
1337{
1338 struct ath_softc *sc = hw->priv;
1339 struct ath_hw *ah = sc->sc_ah;
1340 struct ath_common *common = ath9k_hw_common(ah);
1341 u32 rxfilter;
1342
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001343 if (config_enabled(CONFIG_ATH9K_TX99))
1344 return;
1345
Simon Wunderliche93d0832013-01-08 14:48:58 +01001346 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1347 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1348 return;
1349 }
1350
1351 ath9k_ps_wakeup(sc);
1352 rxfilter = ath9k_hw_getrxfilter(ah);
1353 ath9k_hw_setrxfilter(ah, rxfilter |
1354 ATH9K_RX_FILTER_PHYRADAR |
1355 ATH9K_RX_FILTER_PHYERR);
1356
1357 /* TODO: usually this should not be neccesary, but for some reason
1358 * (or in some mode?) the trigger must be called after the
1359 * configuration, otherwise the register will have its values reset
1360 * (on my ar9220 to value 0x01002310)
1361 */
1362 ath9k_spectral_scan_config(hw, sc->spectral_mode);
1363 ath9k_hw_ops(ah)->spectral_scan_trigger(ah);
1364 ath9k_ps_restore(sc);
1365}
1366
1367int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
1368 enum spectral_mode spectral_mode)
1369{
1370 struct ath_softc *sc = hw->priv;
1371 struct ath_hw *ah = sc->sc_ah;
1372 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001373
1374 if (!ath9k_hw_ops(ah)->spectral_scan_trigger) {
1375 ath_err(common, "spectrum analyzer not implemented on this hardware\n");
1376 return -1;
1377 }
1378
Simon Wunderliche93d0832013-01-08 14:48:58 +01001379 switch (spectral_mode) {
1380 case SPECTRAL_DISABLED:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001381 sc->spec_config.enabled = 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001382 break;
1383 case SPECTRAL_BACKGROUND:
1384 /* send endless samples.
1385 * TODO: is this really useful for "background"?
1386 */
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001387 sc->spec_config.endless = 1;
1388 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001389 break;
1390 case SPECTRAL_CHANSCAN:
Simon Wunderliche93d0832013-01-08 14:48:58 +01001391 case SPECTRAL_MANUAL:
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001392 sc->spec_config.endless = 0;
1393 sc->spec_config.enabled = 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001394 break;
1395 default:
1396 return -1;
1397 }
1398
1399 ath9k_ps_wakeup(sc);
Simon Wunderlich04ccd4a2013-01-23 17:38:04 +01001400 ath9k_hw_ops(ah)->spectral_scan_config(ah, &sc->spec_config);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001401 ath9k_ps_restore(sc);
1402
1403 sc->spectral_mode = spectral_mode;
1404
1405 return 0;
1406}
1407
Johannes Berge8975582008-10-09 12:18:51 +02001408static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001409{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001410 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001411 struct ath_hw *ah = sc->sc_ah;
1412 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001413 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301414 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001415
Felix Fietkauc0c11742011-11-16 13:08:41 +01001416 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301417 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301418
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001419 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001420 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301421 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001422 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301423 ath9k_stop_btcoex(sc);
1424 } else {
1425 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001426 /*
1427 * The chip needs a reset to properly wake up from
1428 * full sleep
1429 */
Felix Fietkau39305632014-06-11 16:17:57 +05301430 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301431 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001432 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001433
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001434 /*
1435 * We just prepare to enable PS. We have to wait until our AP has
1436 * ACK'd our null data frame to disable RX otherwise we'll ignore
1437 * those ACKs and end up retransmitting the same null data frames.
1438 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1439 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301440 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001441 unsigned long flags;
1442 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301443 if (conf->flags & IEEE80211_CONF_PS)
1444 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301445 else
1446 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001447 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301448 }
1449
Sujith199afd92010-01-08 10:36:13 +05301450 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1451 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001452 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301453 sc->sc_ah->is_monitoring = true;
1454 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001455 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301456 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301457 }
1458 }
1459
Sujith Manoharan499afac2014-08-22 20:39:31 +05301460 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301461 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301462 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301463 }
Sujith86b89ee2008-08-07 10:54:57 +05301464
Luis R. Rodriguezc9f6a652010-01-19 14:04:19 -05001465 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001466 ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level);
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301467 sc->cur_chan->txpower = 2 * conf->power_level;
Rajkumar Manoharan5048e8c2011-01-31 23:47:44 +05301468 ath9k_cmn_update_txpow(ah, sc->curtxpow,
Felix Fietkaubc7e1be2014-06-11 16:17:50 +05301469 sc->cur_chan->txpower, &sc->curtxpow);
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001470 }
1471
Sujithaa33de02008-12-18 11:40:16 +05301472 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001473 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301474
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001475 return 0;
1476}
1477
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001478#define SUPPORTED_FILTERS \
1479 (FIF_PROMISC_IN_BSS | \
1480 FIF_ALLMULTI | \
1481 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001482 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001483 FIF_OTHER_BSS | \
1484 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001485 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001486 FIF_FCSFAIL)
1487
Sujith7dcfdcd2008-08-11 14:03:13 +05301488/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001489static void ath9k_configure_filter(struct ieee80211_hw *hw,
1490 unsigned int changed_flags,
1491 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001492 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001493{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001494 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301495 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001496
1497 changed_flags &= SUPPORTED_FILTERS;
1498 *total_flags &= SUPPORTED_FILTERS;
1499
Sujith Manoharanfce34432014-09-05 08:03:18 +05301500 spin_lock_bh(&sc->chan_lock);
1501 sc->cur_chan->rxfilter = *total_flags;
1502 spin_unlock_bh(&sc->chan_lock);
1503
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001504 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301505 rfilt = ath_calcrxfilter(sc);
1506 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001507 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301508
Joe Perchesd2182b62011-12-15 14:55:53 -08001509 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1510 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001511}
1512
Johannes Berg4ca77862010-02-19 19:06:56 +01001513static int ath9k_sta_add(struct ieee80211_hw *hw,
1514 struct ieee80211_vif *vif,
1515 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001516{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001517 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001518 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1519 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1520 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001521 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001522
Ben Greear7e1e3862011-11-03 11:33:13 -07001523 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001524
1525 if (vif->type != NL80211_IFTYPE_AP &&
1526 vif->type != NL80211_IFTYPE_AP_VLAN)
1527 return 0;
1528
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001529 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301530 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001531 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301532 an->key_idx[0] = key;
1533 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001534
1535 return 0;
1536}
1537
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001538static void ath9k_del_ps_key(struct ath_softc *sc,
1539 struct ieee80211_vif *vif,
1540 struct ieee80211_sta *sta)
1541{
1542 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1543 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1544 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1545
1546 if (!an->ps_key)
1547 return;
1548
1549 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001550 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301551 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001552}
1553
Johannes Berg4ca77862010-02-19 19:06:56 +01001554static int ath9k_sta_remove(struct ieee80211_hw *hw,
1555 struct ieee80211_vif *vif,
1556 struct ieee80211_sta *sta)
1557{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001558 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001559
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001560 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001561 ath_node_detach(sc, sta);
1562
1563 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001564}
1565
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301566static int ath9k_sta_state(struct ieee80211_hw *hw,
1567 struct ieee80211_vif *vif,
1568 struct ieee80211_sta *sta,
1569 enum ieee80211_sta_state old_state,
1570 enum ieee80211_sta_state new_state)
1571{
1572 struct ath_softc *sc = hw->priv;
1573 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1574 int ret = 0;
1575
1576 if (old_state == IEEE80211_STA_AUTH &&
1577 new_state == IEEE80211_STA_ASSOC) {
1578 ret = ath9k_sta_add(hw, vif, sta);
1579 ath_dbg(common, CONFIG,
1580 "Add station: %pM\n", sta->addr);
1581 } else if (old_state == IEEE80211_STA_ASSOC &&
1582 new_state == IEEE80211_STA_AUTH) {
1583 ret = ath9k_sta_remove(hw, vif, sta);
1584 ath_dbg(common, CONFIG,
1585 "Remove station: %pM\n", sta->addr);
1586 }
1587
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301588 if (ath9k_is_chanctx_enabled()) {
1589 if (old_state == IEEE80211_STA_ASSOC &&
1590 new_state == IEEE80211_STA_AUTHORIZED)
1591 ath_chanctx_event(sc, vif,
1592 ATH_CHANCTX_EVENT_AUTHORIZED);
1593 }
1594
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301595 return ret;
1596}
1597
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301598static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1599 struct ath_node *an,
1600 bool set)
1601{
1602 int i;
1603
1604 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1605 if (!an->key_idx[i])
1606 continue;
1607 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1608 }
1609}
1610
Felix Fietkau55195412011-04-17 23:28:09 +02001611static void ath9k_sta_notify(struct ieee80211_hw *hw,
1612 struct ieee80211_vif *vif,
1613 enum sta_notify_cmd cmd,
1614 struct ieee80211_sta *sta)
1615{
1616 struct ath_softc *sc = hw->priv;
1617 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1618
1619 switch (cmd) {
1620 case STA_NOTIFY_SLEEP:
1621 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001622 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301623 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001624 break;
1625 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301626 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001627 an->sleeping = false;
1628 ath_tx_aggr_wakeup(sc, an);
1629 break;
1630 }
1631}
1632
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001633static int ath9k_conf_tx(struct ieee80211_hw *hw,
1634 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001635 const struct ieee80211_tx_queue_params *params)
1636{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001637 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001638 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001639 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301640 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001641 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001642
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301643 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001644 return 0;
1645
Felix Fietkau066dae92010-11-07 14:59:39 +01001646 txq = sc->tx.txq_map[queue];
1647
Felix Fietkau96f372c2011-04-07 19:07:17 +02001648 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301649 mutex_lock(&sc->mutex);
1650
Sujith1ffb0612009-03-30 15:28:46 +05301651 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1652
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001653 qi.tqi_aifs = params->aifs;
1654 qi.tqi_cwmin = params->cw_min;
1655 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001656 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001657
Joe Perchesd2182b62011-12-15 14:55:53 -08001658 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001659 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1660 queue, txq->axq_qnum, params->aifs, params->cw_min,
1661 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001662
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001663 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001664 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001665 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001666 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001667
Sujith141b38b2009-02-04 08:10:07 +05301668 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001669 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301670
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001671 return ret;
1672}
1673
1674static int ath9k_set_key(struct ieee80211_hw *hw,
1675 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001676 struct ieee80211_vif *vif,
1677 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001678 struct ieee80211_key_conf *key)
1679{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001680 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001681 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301682 struct ath_node *an = NULL;
1683 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001684
John W. Linville3e6109c2011-01-05 09:39:17 -05001685 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001686 return -ENOSPC;
1687
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001688 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1689 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001690 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1691 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1692 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1693 /*
1694 * For now, disable hw crypto for the RSN IBSS group keys. This
1695 * could be optimized in the future to use a modified key cache
1696 * design to support per-STA RX GTK, but until that gets
1697 * implemented, use of software crypto for group addressed
1698 * frames is a acceptable to allow RSN IBSS to be used.
1699 */
1700 return -EOPNOTSUPP;
1701 }
1702
Sujith141b38b2009-02-04 08:10:07 +05301703 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301704 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301705 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1706 if (sta)
1707 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001708
1709 switch (cmd) {
1710 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001711 if (sta)
1712 ath9k_del_ps_key(sc, vif, sta);
1713
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301714 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001715 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001716 if (ret >= 0) {
1717 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001718 /* push IV and Michael MIC generation to stack */
1719 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001720 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301721 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Johannes Berg97359d12010-08-10 09:46:38 +02001722 if (sc->sc_ah->sw_mgmt_crypto &&
1723 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001724 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001725 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301727 if (an && key->hw_key_idx) {
1728 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1729 if (an->key_idx[i])
1730 continue;
1731 an->key_idx[i] = key->hw_key_idx;
1732 break;
1733 }
1734 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1735 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001736 break;
1737 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001738 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301739 if (an) {
1740 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1741 if (an->key_idx[i] != key->hw_key_idx)
1742 continue;
1743 an->key_idx[i] = 0;
1744 break;
1745 }
1746 }
1747 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001748 break;
1749 default:
1750 ret = -EINVAL;
1751 }
1752
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301753 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301754 mutex_unlock(&sc->mutex);
1755
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756 return ret;
1757}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301758
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001759static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1760 struct ieee80211_vif *vif,
1761 struct ieee80211_bss_conf *bss_conf,
1762 u32 changed)
1763{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301764#define CHECK_ANI \
1765 (BSS_CHANGED_ASSOC | \
1766 BSS_CHANGED_IBSS | \
1767 BSS_CHANGED_BEACON_ENABLED)
1768
Felix Fietkau9ac586152011-01-24 19:23:18 +01001769 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001770 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001771 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001772 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001773 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774
Felix Fietkau96f372c2011-04-07 19:07:17 +02001775 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301776 mutex_lock(&sc->mutex);
1777
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301778 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301779 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1780 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301781
Sujith Manoharancb355822014-09-17 14:45:56 +05301782 ether_addr_copy(avp->bssid, bss_conf->bssid);
1783 avp->aid = bss_conf->aid;
1784 avp->assoc = bss_conf->assoc;
1785
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301786 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001787 }
1788
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301789 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301790 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1791 common->curaid = bss_conf->aid;
1792 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301793 }
1794
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301795 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301796 (changed & BSS_CHANGED_BEACON_INT) ||
1797 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301798 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301799 if (changed & BSS_CHANGED_BEACON_ENABLED)
1800 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301801 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001802
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301803 if ((avp->chanctx == sc->cur_chan) &&
1804 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001805 if (bss_conf->use_short_slot)
1806 slottime = 9;
1807 else
1808 slottime = 20;
1809 if (vif->type == NL80211_IFTYPE_AP) {
1810 /*
1811 * Defer update, so that connected stations can adjust
1812 * their settings at the same time.
1813 * See beacon.c for more details
1814 */
1815 sc->beacon.slottime = slottime;
1816 sc->beacon.updateslot = UPDATE;
1817 } else {
1818 ah->slottime = slottime;
1819 ath9k_hw_init_global_settings(ah);
1820 }
1821 }
1822
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301823 if (changed & BSS_CHANGED_P2P_PS)
1824 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001825
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301826 if (changed & CHECK_ANI)
1827 ath_check_ani(sc);
1828
Sujith141b38b2009-02-04 08:10:07 +05301829 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001830 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301831
1832#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833}
1834
Eliad Peller37a41b42011-09-21 14:06:11 +03001835static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001836{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001837 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001838 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839
Sujith141b38b2009-02-04 08:10:07 +05301840 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301841 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301842 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301843 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301844 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845
1846 return tsf;
1847}
1848
Eliad Peller37a41b42011-09-21 14:06:11 +03001849static void ath9k_set_tsf(struct ieee80211_hw *hw,
1850 struct ieee80211_vif *vif,
1851 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001852{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001853 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001854
Sujith141b38b2009-02-04 08:10:07 +05301855 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301856 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301857 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301858 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301859 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001860}
1861
Eliad Peller37a41b42011-09-21 14:06:11 +03001862static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001864 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865
Sujith141b38b2009-02-04 08:10:07 +05301866 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001867
1868 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301869 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001870 ath9k_ps_restore(sc);
1871
Sujith141b38b2009-02-04 08:10:07 +05301872 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873}
1874
1875static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001876 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301877 enum ieee80211_ampdu_mlme_action action,
1878 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001879 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001880{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001881 struct ath_softc *sc = hw->priv;
Felix Fietkau16e23422013-05-17 12:58:24 +02001882 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001883 int ret = 0;
1884
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301885 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001886
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001887 switch (action) {
1888 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889 break;
1890 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001891 break;
1892 case IEEE80211_AMPDU_TX_START:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001893 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001894 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1895 if (!ret)
1896 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001897 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001898 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001899 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1900 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001901 flush = true;
1902 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001903 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301904 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001905 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001906 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001907 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001908 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001909 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001910 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301911 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001912 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301913 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001914 default:
Joe Perches38002762010-12-02 19:12:36 -08001915 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001916 }
1917
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301918 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001919
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001920 return ret;
1921}
1922
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001923static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1924 struct survey_info *survey)
1925{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001926 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001927 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001928 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001929 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001930 int pos;
1931
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001932 if (config_enabled(CONFIG_ATH9K_TX99))
1933 return -EOPNOTSUPP;
1934
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301935 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001936 if (idx == 0)
1937 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001938
Felix Fietkau39162db2010-09-29 19:12:06 +02001939 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1940 if (sband && idx >= sband->n_channels) {
1941 idx -= sband->n_channels;
1942 sband = NULL;
1943 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001944
Felix Fietkau39162db2010-09-29 19:12:06 +02001945 if (!sband)
1946 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1947
Felix Fietkau34300982010-10-10 18:21:52 +02001948 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301949 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001950 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001951 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001952
Felix Fietkau34300982010-10-10 18:21:52 +02001953 chan = &sband->channels[idx];
1954 pos = chan->hw_value;
1955 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1956 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301957 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001958
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001959 return 0;
1960}
1961
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001962static void ath9k_enable_dynack(struct ath_softc *sc)
1963{
1964#ifdef CONFIG_ATH9K_DYNACK
1965 u32 rfilt;
1966 struct ath_hw *ah = sc->sc_ah;
1967
1968 ath_dynack_reset(ah);
1969
1970 ah->dynack.enabled = true;
1971 rfilt = ath_calcrxfilter(sc);
1972 ath9k_hw_setrxfilter(ah, rfilt);
1973#endif
1974}
1975
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001976static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1977 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001978{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001979 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001980 struct ath_hw *ah = sc->sc_ah;
1981
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001982 if (config_enabled(CONFIG_ATH9K_TX99))
1983 return;
1984
Felix Fietkaue239d852010-01-15 02:34:58 +01001985 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301986
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001987 if (coverage_class >= 0) {
1988 ah->coverage_class = coverage_class;
1989 if (ah->dynack.enabled) {
1990 u32 rfilt;
1991
1992 ah->dynack.enabled = false;
1993 rfilt = ath_calcrxfilter(sc);
1994 ath9k_hw_setrxfilter(ah, rfilt);
1995 }
1996 ath9k_ps_wakeup(sc);
1997 ath9k_hw_init_global_settings(ah);
1998 ath9k_ps_restore(sc);
1999 } else if (!ah->dynack.enabled) {
2000 ath9k_enable_dynack(sc);
2001 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05302002
Felix Fietkaue239d852010-01-15 02:34:58 +01002003 mutex_unlock(&sc->mutex);
2004}
2005
Felix Fietkau10e23182013-11-11 22:23:35 +01002006static bool ath9k_has_tx_pending(struct ath_softc *sc)
2007{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01002008 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01002009
2010 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2011 if (!ATH_TXQ_SETUP(sc, i))
2012 continue;
2013
Felix Fietkau10e23182013-11-11 22:23:35 +01002014 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
2015 if (npend)
2016 break;
2017 }
2018
2019 return !!npend;
2020}
2021
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002022static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2023 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002024{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002025 struct ath_softc *sc = hw->priv;
Felix Fietkaubff11762014-06-11 16:17:52 +05302026
2027 mutex_lock(&sc->mutex);
2028 __ath9k_flush(hw, queues, drop);
2029 mutex_unlock(&sc->mutex);
2030}
2031
2032void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
2033{
2034 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302035 struct ath_hw *ah = sc->sc_ah;
2036 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau10e23182013-11-11 22:23:35 +01002037 int timeout = HZ / 5; /* 200 ms */
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302038 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002039
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002040 cancel_delayed_work_sync(&sc->tx_complete_work);
2041
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302042 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002043 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302044 return;
2045 }
2046
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002047 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002048 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302049 return;
2050 }
2051
Felix Fietkau10e23182013-11-11 22:23:35 +01002052 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc),
2053 timeout) > 0)
2054 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002055
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002056 if (drop) {
2057 ath9k_ps_wakeup(sc);
2058 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002059 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002060 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002061
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002062 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302063 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002064
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002065 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002066 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302067
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002068 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002069}
2070
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302071static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2072{
2073 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302074
Sujith Manoharan60913f42014-10-02 06:33:15 +05302075 return ath9k_has_tx_pending(sc);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302076}
2077
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302078static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002079{
2080 struct ath_softc *sc = hw->priv;
2081 struct ath_hw *ah = sc->sc_ah;
2082 struct ieee80211_vif *vif;
2083 struct ath_vif *avp;
2084 struct ath_buf *bf;
2085 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002086 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002087 int status;
2088
2089 vif = sc->beacon.bslot[0];
2090 if (!vif)
2091 return 0;
2092
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302093 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002094 return 0;
2095
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302096 avp = (void *)vif->drv_priv;
2097
Felix Fietkau4286df62012-02-27 19:58:40 +01002098 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002099 tasklet_disable(&sc->bcon_tasklet);
2100
2101 bf = avp->av_bcbuf;
2102 if (!bf || !bf->bf_mpdu)
2103 goto skip;
2104
2105 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2106 if (status == -EINPROGRESS)
2107 goto skip;
2108
2109 sc->beacon.tx_processed = true;
2110 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2111
2112skip:
2113 tasklet_enable(&sc->bcon_tasklet);
2114 }
2115
2116 return sc->beacon.tx_last;
2117}
2118
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302119static int ath9k_get_stats(struct ieee80211_hw *hw,
2120 struct ieee80211_low_level_stats *stats)
2121{
2122 struct ath_softc *sc = hw->priv;
2123 struct ath_hw *ah = sc->sc_ah;
2124 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2125
2126 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2127 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2128 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2129 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2130 return 0;
2131}
2132
Felix Fietkau43c35282011-09-03 01:40:27 +02002133static u32 fill_chainmask(u32 cap, u32 new)
2134{
2135 u32 filled = 0;
2136 int i;
2137
2138 for (i = 0; cap && new; i++, cap >>= 1) {
2139 if (!(cap & BIT(0)))
2140 continue;
2141
2142 if (new & BIT(0))
2143 filled |= BIT(i);
2144
2145 new >>= 1;
2146 }
2147
2148 return filled;
2149}
2150
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002151static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2152{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002153 if (AR_SREV_9300_20_OR_LATER(ah))
2154 return true;
2155
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002156 switch (val & 0x7) {
2157 case 0x1:
2158 case 0x3:
2159 case 0x7:
2160 return true;
2161 case 0x2:
2162 return (ah->caps.rx_chainmask == 1);
2163 default:
2164 return false;
2165 }
2166}
2167
Felix Fietkau43c35282011-09-03 01:40:27 +02002168static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2169{
2170 struct ath_softc *sc = hw->priv;
2171 struct ath_hw *ah = sc->sc_ah;
2172
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002173 if (ah->caps.rx_chainmask != 1)
2174 rx_ant |= tx_ant;
2175
2176 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002177 return -EINVAL;
2178
2179 sc->ant_rx = rx_ant;
2180 sc->ant_tx = tx_ant;
2181
2182 if (ah->caps.rx_chainmask == 1)
2183 return 0;
2184
2185 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2186 if (AR_SREV_9100(ah))
2187 ah->rxchainmask = 0x7;
2188 else
2189 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2190
2191 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002192 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002193
2194 return 0;
2195}
2196
2197static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2198{
2199 struct ath_softc *sc = hw->priv;
2200
2201 *tx_ant = sc->ant_tx;
2202 *rx_ant = sc->ant_rx;
2203 return 0;
2204}
2205
Simon Wunderliche93d0832013-01-08 14:48:58 +01002206static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
2207{
2208 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002209 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2210 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002211}
2212
2213static void ath9k_sw_scan_complete(struct ieee80211_hw *hw)
2214{
2215 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002216 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2217 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002218}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302219
Sujith Manoharan499afac2014-08-22 20:39:31 +05302220#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2221
Felix Fietkau78b21942014-06-11 16:17:55 +05302222static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002223 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302224{
John W. Linville855df362014-06-25 15:15:14 -04002225 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302226 struct ath_softc *sc = hw->priv;
2227 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2228 int ret = 0;
2229
2230 mutex_lock(&sc->mutex);
2231
2232 if (WARN_ON(sc->offchannel.scan_req)) {
2233 ret = -EBUSY;
2234 goto out;
2235 }
2236
2237 ath9k_ps_wakeup(sc);
2238 set_bit(ATH_OP_SCANNING, &common->op_flags);
2239 sc->offchannel.scan_vif = vif;
2240 sc->offchannel.scan_req = req;
2241 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302242
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302243 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2244 vif->addr);
2245
2246 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2247 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302248 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302249 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302250
2251out:
2252 mutex_unlock(&sc->mutex);
2253
2254 return ret;
2255}
2256
2257static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2258 struct ieee80211_vif *vif)
2259{
2260 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302261 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2262
2263 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302264
2265 mutex_lock(&sc->mutex);
2266 del_timer_sync(&sc->offchannel.timer);
2267 ath_scan_complete(sc, true);
2268 mutex_unlock(&sc->mutex);
2269}
2270
Felix Fietkau405393c2014-06-11 16:17:56 +05302271static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2272 struct ieee80211_vif *vif,
2273 struct ieee80211_channel *chan, int duration,
2274 enum ieee80211_roc_type type)
2275{
2276 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302277 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302278 int ret = 0;
2279
2280 mutex_lock(&sc->mutex);
2281
2282 if (WARN_ON(sc->offchannel.roc_vif)) {
2283 ret = -EBUSY;
2284 goto out;
2285 }
2286
2287 ath9k_ps_wakeup(sc);
2288 sc->offchannel.roc_vif = vif;
2289 sc->offchannel.roc_chan = chan;
2290 sc->offchannel.roc_duration = duration;
2291
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302292 ath_dbg(common, CHAN_CTX,
2293 "RoC request on vif: %pM, type: %d duration: %d\n",
2294 vif->addr, type, duration);
2295
2296 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2297 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302298 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302299 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302300
2301out:
2302 mutex_unlock(&sc->mutex);
2303
2304 return ret;
2305}
2306
2307static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2308{
2309 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302310 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302311
2312 mutex_lock(&sc->mutex);
2313
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302314 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302315 del_timer_sync(&sc->offchannel.timer);
2316
2317 if (sc->offchannel.roc_vif) {
2318 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2319 ath_roc_complete(sc, true);
2320 }
2321
2322 mutex_unlock(&sc->mutex);
2323
2324 return 0;
2325}
2326
Felix Fietkau39305632014-06-11 16:17:57 +05302327static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2328 struct ieee80211_chanctx_conf *conf)
2329{
2330 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302331 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302332 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302333 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302334
2335 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302336
2337 ath_for_each_chanctx(sc, ctx) {
2338 if (ctx->assigned)
2339 continue;
2340
2341 ptr = (void *) conf->drv_priv;
2342 *ptr = ctx;
2343 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302344 pos = ctx - &sc->chanctx[0];
2345 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302346
2347 ath_dbg(common, CHAN_CTX,
2348 "Add channel context: %d MHz\n",
2349 conf->def.chan->center_freq);
2350
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302351 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302352 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_ASSIGN);
2353
Felix Fietkau39305632014-06-11 16:17:57 +05302354 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302355 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302356 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302357
Felix Fietkau39305632014-06-11 16:17:57 +05302358 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302359 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302360}
2361
2362
2363static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
2364 struct ieee80211_chanctx_conf *conf)
2365{
2366 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302367 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302368 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2369
2370 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302371
2372 ath_dbg(common, CHAN_CTX,
2373 "Remove channel context: %d MHz\n",
2374 conf->def.chan->center_freq);
2375
Felix Fietkau39305632014-06-11 16:17:57 +05302376 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302377 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302378 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302379
Felix Fietkau39305632014-06-11 16:17:57 +05302380 mutex_unlock(&sc->mutex);
2381}
2382
2383static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2384 struct ieee80211_chanctx_conf *conf,
2385 u32 changed)
2386{
2387 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302388 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302389 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2390
2391 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302392 ath_dbg(common, CHAN_CTX,
2393 "Change channel context: %d MHz\n",
2394 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302395 ath_chanctx_set_channel(sc, ctx, &conf->def);
2396 mutex_unlock(&sc->mutex);
2397}
2398
2399static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2400 struct ieee80211_vif *vif,
2401 struct ieee80211_chanctx_conf *conf)
2402{
2403 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302404 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302405 struct ath_vif *avp = (void *)vif->drv_priv;
2406 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302407 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302408
2409 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302410
2411 ath_dbg(common, CHAN_CTX,
2412 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2413 vif->addr, vif->type, vif->p2p,
2414 conf->def.chan->center_freq);
2415
Felix Fietkau39305632014-06-11 16:17:57 +05302416 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302417 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302418 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302419 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302420 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2421 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302422
Felix Fietkau39305632014-06-11 16:17:57 +05302423 mutex_unlock(&sc->mutex);
2424
2425 return 0;
2426}
2427
2428static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2429 struct ieee80211_vif *vif,
2430 struct ieee80211_chanctx_conf *conf)
2431{
2432 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302433 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302434 struct ath_vif *avp = (void *)vif->drv_priv;
2435 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302436 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302437
2438 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302439
2440 ath_dbg(common, CHAN_CTX,
2441 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2442 vif->addr, vif->type, vif->p2p,
2443 conf->def.chan->center_freq);
2444
Felix Fietkau39305632014-06-11 16:17:57 +05302445 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302446 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302447 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302448 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302449 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2450 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302451
Felix Fietkau39305632014-06-11 16:17:57 +05302452 mutex_unlock(&sc->mutex);
2453}
2454
Sujith Manoharane20a8542014-08-23 13:29:09 +05302455static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2456 struct ieee80211_vif *vif)
2457{
2458 struct ath_softc *sc = hw->priv;
2459 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2460 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
2461 bool changed = false;
2462
2463 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2464 return;
2465
2466 if (!avp->chanctx)
2467 return;
2468
2469 mutex_lock(&sc->mutex);
2470
2471 spin_lock_bh(&sc->chan_lock);
2472 if (sc->next_chan || (sc->cur_chan != avp->chanctx)) {
2473 sc->next_chan = avp->chanctx;
2474 changed = true;
2475 }
Sujith Manoharan878066e2014-08-27 12:07:24 +05302476 ath_dbg(common, CHAN_CTX,
2477 "%s: Set chanctx state to FORCE_ACTIVE, changed: %d\n",
2478 __func__, changed);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302479 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2480 spin_unlock_bh(&sc->chan_lock);
2481
2482 if (changed)
2483 ath_chanctx_set_next(sc, true);
2484
2485 mutex_unlock(&sc->mutex);
2486}
2487
Felix Fietkau78b21942014-06-11 16:17:55 +05302488void ath9k_fill_chanctx_ops(void)
2489{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302490 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302491 return;
2492
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302493 ath9k_ops.hw_scan = ath9k_hw_scan;
2494 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2495 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302496 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302497 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2498 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2499 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2500 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2501 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302502 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302503}
2504
Sujith Manoharan499afac2014-08-22 20:39:31 +05302505#endif
2506
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002507struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002508 .tx = ath9k_tx,
2509 .start = ath9k_start,
2510 .stop = ath9k_stop,
2511 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302512 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 .remove_interface = ath9k_remove_interface,
2514 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002515 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302516 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002517 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002518 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002519 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002520 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002521 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002522 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002523 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002524 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002525 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302526 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002527 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002528 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302529 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302530 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002531 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302532 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002533 .set_antenna = ath9k_set_antenna,
2534 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002535
Sujith Manoharane60001e2013-10-28 12:22:04 +05302536#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302537 .suspend = ath9k_suspend,
2538 .resume = ath9k_resume,
2539 .set_wakeup = ath9k_set_wakeup,
2540#endif
2541
Ben Greearb90bd9d2012-05-15 15:33:25 -07002542#ifdef CONFIG_ATH9K_DEBUGFS
2543 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302544 .get_et_stats = ath9k_get_et_stats,
2545 .get_et_strings = ath9k_get_et_strings,
2546#endif
2547
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302548#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302549 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002550#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002551 .sw_scan_start = ath9k_sw_scan_start,
2552 .sw_scan_complete = ath9k_sw_scan_complete,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002553};