blob: b0badef71ce793e5bc85358e0166208edbb9688b [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
Sujith Manoharane2d389b2014-10-17 07:40:18 +053057static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq,
58 bool sw_pending)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080059{
60 bool pending = false;
61
62 spin_lock_bh(&txq->axq_lock);
63
Sujith Manoharanb7367282014-10-02 06:33:13 +053064 if (txq->axq_depth) {
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080065 pending = true;
Sujith Manoharanb7367282014-10-02 06:33:13 +053066 goto out;
67 }
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080068
Sujith Manoharane2d389b2014-10-17 07:40:18 +053069 if (!sw_pending)
70 goto out;
71
Felix Fietkau04535312014-06-11 16:17:51 +053072 if (txq->mac80211_qnum >= 0) {
73 struct list_head *list;
74
75 list = &sc->cur_chan->acq[txq->mac80211_qnum];
76 if (!list_empty(list))
77 pending = true;
78 }
Sujith Manoharanb7367282014-10-02 06:33:13 +053079out:
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -080080 spin_unlock_bh(&txq->axq_lock);
81 return pending;
82}
83
Mohammed Shafi Shajakhan6d79cb42011-05-19 17:40:46 +053084static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070085{
86 unsigned long flags;
87 bool ret;
88
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -070089 spin_lock_irqsave(&sc->sc_pm_lock, flags);
90 ret = ath9k_hw_setpower(sc->sc_ah, mode);
91 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Luis R. Rodriguez8c77a562009-09-09 21:02:34 -070092
93 return ret;
94}
95
Felix Fietkaubf3dac52013-11-11 22:23:33 +010096void ath_ps_full_sleep(unsigned long data)
97{
98 struct ath_softc *sc = (struct ath_softc *) data;
99 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
100 bool reset;
101
102 spin_lock(&common->cc_lock);
103 ath_hw_cycle_counters_update(common);
104 spin_unlock(&common->cc_lock);
105
106 ath9k_hw_setrxabort(sc->sc_ah, 1);
107 ath9k_hw_stopdmarecv(sc->sc_ah, &reset);
108
109 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
110}
111
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700112void ath9k_ps_wakeup(struct ath_softc *sc)
113{
Felix Fietkau898c9142010-10-12 14:02:53 +0200114 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700115 unsigned long flags;
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100116 enum ath9k_power_mode power_mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700117
118 spin_lock_irqsave(&sc->sc_pm_lock, flags);
119 if (++sc->ps_usecount != 1)
120 goto unlock;
121
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100122 del_timer_sync(&sc->sleep_timer);
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100123 power_mode = sc->sc_ah->power_mode;
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700124 ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700125
Felix Fietkau898c9142010-10-12 14:02:53 +0200126 /*
127 * While the hardware is asleep, the cycle counters contain no
128 * useful data. Better clear them now so that they don't mess up
129 * survey data results.
130 */
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100131 if (power_mode != ATH9K_PM_AWAKE) {
132 spin_lock(&common->cc_lock);
133 ath_hw_cycle_counters_update(common);
134 memset(&common->cc_survey, 0, sizeof(common->cc_survey));
Rajkumar Manoharanc9ae6ab2012-06-04 16:28:41 +0530135 memset(&common->cc_ani, 0, sizeof(common->cc_ani));
Felix Fietkaufbb078f2010-11-03 01:36:51 +0100136 spin_unlock(&common->cc_lock);
137 }
Felix Fietkau898c9142010-10-12 14:02:53 +0200138
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700139 unlock:
140 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
141}
142
143void ath9k_ps_restore(struct ath_softc *sc)
144{
Felix Fietkau898c9142010-10-12 14:02:53 +0200145 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200146 enum ath9k_power_mode mode;
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700147 unsigned long flags;
148
149 spin_lock_irqsave(&sc->sc_pm_lock, flags);
150 if (--sc->ps_usecount != 0)
151 goto unlock;
152
Sujith Manoharanad128862012-04-24 10:23:20 +0530153 if (sc->ps_idle) {
Felix Fietkaubf3dac52013-11-11 22:23:33 +0100154 mod_timer(&sc->sleep_timer, jiffies + HZ / 10);
155 goto unlock;
156 }
157
158 if (sc->ps_enabled &&
Sujith Manoharanad128862012-04-24 10:23:20 +0530159 !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
160 PS_WAIT_FOR_CAB |
161 PS_WAIT_FOR_PSPOLL_DATA |
Rajkumar Manoharan424749c2012-10-10 23:03:02 +0530162 PS_WAIT_FOR_TX_ACK |
163 PS_WAIT_FOR_ANI))) {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200164 mode = ATH9K_PM_NETWORK_SLEEP;
Rajkumar Manoharan08d4df42012-07-01 19:53:54 +0530165 if (ath9k_hw_btcoex_is_enabled(sc->sc_ah))
166 ath9k_btcoex_stop_gen_timer(sc);
Sujith Manoharanad128862012-04-24 10:23:20 +0530167 } else {
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200168 goto unlock;
Sujith Manoharanad128862012-04-24 10:23:20 +0530169 }
Felix Fietkauc6c539f2011-09-14 21:24:24 +0200170
171 spin_lock(&common->cc_lock);
172 ath_hw_cycle_counters_update(common);
173 spin_unlock(&common->cc_lock);
174
Felix Fietkau1a8f0d392011-09-22 08:04:32 -0600175 ath9k_hw_setpower(sc->sc_ah, mode);
Luis R. Rodrigueza91d75ae2009-09-09 20:29:18 -0700176
177 unlock:
178 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
179}
180
Felix Fietkau9adcf442011-09-03 01:40:26 +0200181static void __ath_cancel_work(struct ath_softc *sc)
182{
183 cancel_work_sync(&sc->paprd_work);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200184 cancel_delayed_work_sync(&sc->tx_complete_work);
185 cancel_delayed_work_sync(&sc->hw_pll_work);
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530186
Sujith Manoharanbf525922012-06-27 14:15:59 +0530187#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
Sujith Manoharanfad29cd2012-06-25 13:54:22 +0530188 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
189 cancel_work_sync(&sc->mci_work);
Sujith Manoharanbf525922012-06-27 14:15:59 +0530190#endif
Felix Fietkau9adcf442011-09-03 01:40:26 +0200191}
192
Sujith Manoharane60001e2013-10-28 12:22:04 +0530193void ath_cancel_work(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200194{
195 __ath_cancel_work(sc);
196 cancel_work_sync(&sc->hw_reset_work);
197}
198
Sujith Manoharane60001e2013-10-28 12:22:04 +0530199void ath_restart_work(struct ath_softc *sc)
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530200{
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530201 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
202
Sujith Manoharan19c36162013-08-20 10:05:59 +0530203 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah))
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530204 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
205 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
206
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530207 ath_start_ani(sc);
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530208}
209
John W. Linville9ebea382013-01-28 13:54:03 -0500210static bool ath_prepare_reset(struct ath_softc *sc)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200211{
212 struct ath_hw *ah = sc->sc_ah;
Felix Fietkauceea2a52012-05-24 14:32:19 +0200213 bool ret = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200214
215 ieee80211_stop_queues(sc->hw);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +0530216 ath_stop_ani(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200217 ath9k_hw_disable_interrupts(ah);
218
Felix Fietkau13815592013-01-20 18:51:53 +0100219 if (!ath_drain_all_txq(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200220 ret = false;
221
Felix Fietkau0a62acb2013-01-20 18:51:52 +0100222 if (!ath_stoprecv(sc))
Felix Fietkauceea2a52012-05-24 14:32:19 +0200223 ret = false;
224
Felix Fietkau9adcf442011-09-03 01:40:26 +0200225 return ret;
226}
227
228static bool ath_complete_reset(struct ath_softc *sc, bool start)
229{
230 struct ath_hw *ah = sc->sc_ah;
231 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530232 unsigned long flags;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200233
Sujith Manoharan9019f642014-09-05 08:03:15 +0530234 ath9k_calculate_summary_state(sc, sc->cur_chan);
Sujith Manoharan19ec4772014-09-05 08:03:16 +0530235 ath_startrecv(sc);
Felix Fietkaud385c5c2014-11-04 16:56:57 +0100236 ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower,
237 sc->cur_chan->txpower,
238 &sc->cur_chan->cur_txpower);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100239 clear_bit(ATH_OP_HW_RESET, &common->op_flags);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200240
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530241 if (!sc->cur_chan->offchannel && start) {
Felix Fietkau8d7e09d2014-06-11 16:18:01 +0530242 /* restore per chanctx TSF timer */
243 if (sc->cur_chan->tsf_val) {
244 u32 offset;
245
246 offset = ath9k_hw_get_tsf_offset(&sc->cur_chan->tsf_ts,
247 NULL);
248 ath9k_hw_settsf64(ah, sc->cur_chan->tsf_val + offset);
249 }
250
251
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100252 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
Sujith Manoharan196fb862012-06-04 20:24:13 +0530253 goto work;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200254
Sujith Manoharan196fb862012-06-04 20:24:13 +0530255 if (ah->opmode == NL80211_IFTYPE_STATION &&
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100256 test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) {
Sujith Manoharan196fb862012-06-04 20:24:13 +0530257 spin_lock_irqsave(&sc->sc_pm_lock, flags);
258 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
259 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Sujith Manoharana6768282013-05-06 10:09:03 +0530260 } else {
261 ath9k_set_beacon(sc);
Sujith Manoharan196fb862012-06-04 20:24:13 +0530262 }
263 work:
Sujith Manoharanaf68aba2012-06-04 20:23:43 +0530264 ath_restart_work(sc);
Felix Fietkau04535312014-06-11 16:17:51 +0530265 ath_txq_schedule_all(sc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200266 }
267
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530268 sc->gtt_cnt = 0;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530269
270 ath9k_hw_set_interrupts(ah);
271 ath9k_hw_enable_interrupts(ah);
Sujith Manoharan5ba8d9d2014-10-02 06:33:19 +0530272 ieee80211_wake_queues(sc->hw);
Felix Fietkaud463af42014-04-06 00:37:03 +0200273 ath9k_p2p_ps_timer(sc);
274
Felix Fietkau9adcf442011-09-03 01:40:26 +0200275 return true;
276}
277
Sujith Manoharan5555c952014-10-17 07:40:11 +0530278static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan)
Felix Fietkau9adcf442011-09-03 01:40:26 +0200279{
280 struct ath_hw *ah = sc->sc_ah;
281 struct ath_common *common = ath9k_hw_common(ah);
282 struct ath9k_hw_cal_data *caldata = NULL;
283 bool fastcc = true;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200284 int r;
285
286 __ath_cancel_work(sc);
287
Felix Fietkaue3f31172015-01-14 14:17:36 +0100288 disable_irq(sc->irq);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100289 tasklet_disable(&sc->intr_tq);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530290 tasklet_disable(&sc->bcon_tasklet);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200291 spin_lock_bh(&sc->sc_pcu_lock);
292
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530293 if (!sc->cur_chan->offchannel) {
Felix Fietkau9adcf442011-09-03 01:40:26 +0200294 fastcc = false;
Felix Fietkaub01459e2014-06-11 16:17:59 +0530295 caldata = &sc->cur_chan->caldata;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200296 }
297
298 if (!hchan) {
299 fastcc = false;
Felix Fietkau9adcf442011-09-03 01:40:26 +0200300 hchan = ah->curchan;
301 }
302
John W. Linville9ebea382013-01-28 13:54:03 -0500303 if (!ath_prepare_reset(sc))
Felix Fietkau9adcf442011-09-03 01:40:26 +0200304 fastcc = false;
305
Sujith Manoharan9ea35982014-08-27 12:07:23 +0530306 if (ath9k_is_chanctx_enabled())
307 fastcc = false;
308
Rajkumar Manoharand6067f02014-06-20 22:47:49 +0530309 spin_lock_bh(&sc->chan_lock);
310 sc->cur_chandef = sc->cur_chan->chandef;
311 spin_unlock_bh(&sc->chan_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530312
Joe Perchesd2182b62011-12-15 14:55:53 -0800313 ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
Sujith Manoharanfeced202012-01-30 14:21:42 +0530314 hchan->channel, IS_CHAN_HT40(hchan), fastcc);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200315
316 r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
317 if (r) {
318 ath_err(common,
319 "Unable to reset channel, reset status %d\n", r);
Robert Shadef50b1cd2013-04-02 19:52:45 -0400320
321 ath9k_hw_enable_interrupts(ah);
322 ath9k_queue_reset(sc, RESET_TYPE_BB_HANG);
323
Felix Fietkau9adcf442011-09-03 01:40:26 +0200324 goto out;
325 }
326
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530327 if (ath9k_hw_mci_is_enabled(sc->sc_ah) &&
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530328 sc->cur_chan->offchannel)
Rajkumar Manoharane82cb032012-10-12 14:07:25 +0530329 ath9k_mci_set_txpower(sc, true, false);
330
Felix Fietkau9adcf442011-09-03 01:40:26 +0200331 if (!ath_complete_reset(sc, true))
332 r = -EIO;
333
334out:
Felix Fietkaue3f31172015-01-14 14:17:36 +0100335 enable_irq(sc->irq);
Felix Fietkau9adcf442011-09-03 01:40:26 +0200336 spin_unlock_bh(&sc->sc_pcu_lock);
Sujith Manoharaneaf04a62014-10-17 07:40:13 +0530337 tasklet_enable(&sc->bcon_tasklet);
Felix Fietkau4668cce2013-01-14 16:56:46 +0100338 tasklet_enable(&sc->intr_tq);
339
Felix Fietkau9adcf442011-09-03 01:40:26 +0200340 return r;
341}
342
Ben Greear7e1e3862011-11-03 11:33:13 -0700343static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
344 struct ieee80211_vif *vif)
Sujithff37e332008-11-24 12:07:55 +0530345{
346 struct ath_node *an;
Sujithff37e332008-11-24 12:07:55 +0530347 an = (struct ath_node *)sta->drv_priv;
348
Sujith Manoharana145daf2012-11-28 15:08:54 +0530349 an->sc = sc;
Ben Greear7f010c92011-01-09 23:11:49 -0800350 an->sta = sta;
Ben Greear7e1e3862011-11-03 11:33:13 -0700351 an->vif = vif;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +0530352 memset(&an->key_idx, 0, sizeof(an->key_idx));
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +0530353
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530354 ath_tx_node_init(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200355
356 ath_dynack_node_init(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530357}
358
359static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
360{
361 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Sujith Manoharandd5ee592013-02-04 15:38:23 +0530362 ath_tx_node_cleanup(sc, an);
Lorenzo Bianconi44b47a72014-09-16 02:13:16 +0200363
364 ath_dynack_node_deinit(sc->sc_ah, an);
Sujithff37e332008-11-24 12:07:55 +0530365}
366
Sujith55624202010-01-08 10:36:02 +0530367void ath9k_tasklet(unsigned long data)
Sujithff37e332008-11-24 12:07:55 +0530368{
369 struct ath_softc *sc = (struct ath_softc *)data;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700370 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700371 struct ath_common *common = ath9k_hw_common(ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530372 enum ath_reset_type type;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530373 unsigned long flags;
Sujith17d79042009-02-09 13:27:03 +0530374 u32 status = sc->intrstatus;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400375 u32 rxmask;
Sujithff37e332008-11-24 12:07:55 +0530376
Felix Fietkaue3927002011-09-14 21:23:01 +0200377 ath9k_ps_wakeup(sc);
378 spin_lock(&sc->sc_pcu_lock);
379
Sujith Manoharan6549a862013-12-24 10:44:24 +0530380 if (status & ATH9K_INT_FATAL) {
381 type = RESET_TYPE_FATAL_INT;
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530382 ath9k_queue_reset(sc, type);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530383
384 /*
385 * Increment the ref. counter here so that
386 * interrupts are enabled in the reset routine.
387 */
388 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100389 ath_dbg(common, RESET, "FATAL: Skipping interrupts\n");
Felix Fietkaue3927002011-09-14 21:23:01 +0200390 goto out;
Sujithff37e332008-11-24 12:07:55 +0530391 }
392
Sujith Manoharan6549a862013-12-24 10:44:24 +0530393 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
394 (status & ATH9K_INT_BB_WATCHDOG)) {
Sujith Manoharan0c759972013-12-24 10:44:26 +0530395 spin_lock(&common->cc_lock);
396 ath_hw_cycle_counters_update(common);
397 ar9003_hw_bb_watchdog_dbg_info(ah);
398 spin_unlock(&common->cc_lock);
399
Sujith Manoharan6549a862013-12-24 10:44:24 +0530400 if (ar9003_hw_bb_watchdog_check(ah)) {
401 type = RESET_TYPE_BB_WATCHDOG;
402 ath9k_queue_reset(sc, type);
403
404 /*
405 * Increment the ref. counter here so that
406 * interrupts are enabled in the reset routine.
407 */
408 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100409 ath_dbg(common, RESET,
Sujith Manoharan6549a862013-12-24 10:44:24 +0530410 "BB_WATCHDOG: Skipping interrupts\n");
411 goto out;
412 }
413 }
414
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530415 if (status & ATH9K_INT_GTT) {
416 sc->gtt_cnt++;
417
418 if ((sc->gtt_cnt >= MAX_GTT_CNT) && !ath9k_hw_check_alive(ah)) {
419 type = RESET_TYPE_TX_GTT;
420 ath9k_queue_reset(sc, type);
421 atomic_inc(&ah->intr_ref_cnt);
Felix Fietkauaffad452014-02-22 14:52:49 +0100422 ath_dbg(common, RESET,
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530423 "GTT: Skipping interrupts\n");
424 goto out;
425 }
426 }
427
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530428 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530429 if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
430 /*
431 * TSF sync does not look correct; remain awake to sync with
432 * the next Beacon.
433 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800434 ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n");
Rajkumar Manoharane8fe7332011-08-05 18:59:41 +0530435 sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530436 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530437 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Rajkumar Manoharan4105f802011-05-06 18:27:47 +0530438
Felix Fietkaub5c804752010-04-15 17:38:48 -0400439 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
440 rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
441 ATH9K_INT_RXORN);
442 else
443 rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
444
445 if (status & rxmask) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400446 /* Check for high priority Rx first */
447 if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
448 (status & ATH9K_INT_RXHP))
449 ath_rx_tasklet(sc, 0, true);
450
451 ath_rx_tasklet(sc, 0, false);
Sujith063d8be2009-03-30 15:28:49 +0530452 }
453
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400454 if (status & ATH9K_INT_TX) {
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530455 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
456 /*
457 * For EDMA chips, TX completion is enabled for the
458 * beacon queue, so if a beacon has been transmitted
459 * successfully after a GTT interrupt, the GTT counter
460 * gets reset to zero here.
461 */
Sujith Manoharan3b745c72014-01-20 13:25:28 +0530462 sc->gtt_cnt = 0;
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530463
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400464 ath_tx_edma_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530465 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400466 ath_tx_tasklet(sc);
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530467 }
Felix Fietkau10e23182013-11-11 22:23:35 +0100468
469 wake_up(&sc->tx_wait);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -0400470 }
Sujith063d8be2009-03-30 15:28:49 +0530471
Felix Fietkauc67ce332013-12-14 18:03:38 +0100472 if (status & ATH9K_INT_GENTIMER)
473 ath_gen_timer_isr(sc->sc_ah);
474
Sujith Manoharan56ca0db2012-02-22 12:40:32 +0530475 ath9k_btcoex_handle_interrupt(sc, status);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530476
Sujithff37e332008-11-24 12:07:55 +0530477 /* re-enable hardware interrupt */
Felix Fietkau4df30712010-11-08 20:54:47 +0100478 ath9k_hw_enable_interrupts(ah);
Sujith Manoharanc6cc47b2013-09-16 10:37:00 +0530479out:
Senthil Balasubramanian52671e42010-12-23 21:06:57 +0530480 spin_unlock(&sc->sc_pcu_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400481 ath9k_ps_restore(sc);
Sujithff37e332008-11-24 12:07:55 +0530482}
483
Gabor Juhos6baff7f2009-01-14 20:17:06 +0100484irqreturn_t ath_isr(int irq, void *dev)
Sujithff37e332008-11-24 12:07:55 +0530485{
Sujith063d8be2009-03-30 15:28:49 +0530486#define SCHED_INTR ( \
487 ATH9K_INT_FATAL | \
Rajkumar Manoharana4d86d92011-05-20 17:52:10 +0530488 ATH9K_INT_BB_WATCHDOG | \
Sujith063d8be2009-03-30 15:28:49 +0530489 ATH9K_INT_RXORN | \
490 ATH9K_INT_RXEOL | \
491 ATH9K_INT_RX | \
Felix Fietkaub5c804752010-04-15 17:38:48 -0400492 ATH9K_INT_RXLP | \
493 ATH9K_INT_RXHP | \
Sujith063d8be2009-03-30 15:28:49 +0530494 ATH9K_INT_TX | \
495 ATH9K_INT_BMISS | \
496 ATH9K_INT_CST | \
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530497 ATH9K_INT_GTT | \
Vasanthakumar Thiagarajanebb8e1d2009-09-01 17:46:32 +0530498 ATH9K_INT_TSFOOR | \
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530499 ATH9K_INT_GENTIMER | \
500 ATH9K_INT_MCI)
Sujith063d8be2009-03-30 15:28:49 +0530501
Sujithff37e332008-11-24 12:07:55 +0530502 struct ath_softc *sc = dev;
Sujithcbe61d82009-02-09 13:27:12 +0530503 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100504 struct ath_common *common = ath9k_hw_common(ah);
Sujithff37e332008-11-24 12:07:55 +0530505 enum ath9k_int status;
Sujith Manoharan78c8a952013-12-28 09:47:15 +0530506 u32 sync_cause = 0;
Sujithff37e332008-11-24 12:07:55 +0530507 bool sched = false;
508
Sujith063d8be2009-03-30 15:28:49 +0530509 /*
510 * The hardware is not ready/present, don't
511 * touch anything. Note this can happen early
512 * on if the IRQ is shared.
513 */
Wojciech Dubowik2ba7d142014-09-18 08:30:41 +0200514 if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags))
Sujith063d8be2009-03-30 15:28:49 +0530515 return IRQ_NONE;
Sujithff37e332008-11-24 12:07:55 +0530516
Felix Fietkau872b5d82014-11-30 21:58:32 +0100517 /* shared irq, not for us */
518 if (!ath9k_hw_intrpend(ah))
519 return IRQ_NONE;
Sujith Manoharanb74713d2012-06-04 20:24:01 +0530520
Sujith063d8be2009-03-30 15:28:49 +0530521 /*
522 * Figure out the reason(s) for the interrupt. Note
523 * that the hal returns a pseudo-ISR that may include
524 * bits we haven't explicitly enabled so we mask the
525 * value to insure we only process bits we requested.
526 */
Felix Fietkau6a4d05d2013-12-19 18:01:48 +0100527 ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */
528 ath9k_debug_sync_cause(sc, sync_cause);
Pavel Roskin30691682010-03-31 18:05:31 -0400529 status &= ah->imask; /* discard unasked-for bits */
Sujith063d8be2009-03-30 15:28:49 +0530530
Felix Fietkaue3f31172015-01-14 14:17:36 +0100531 if (test_bit(ATH_OP_HW_RESET, &common->op_flags))
Felix Fietkau872b5d82014-11-30 21:58:32 +0100532 return IRQ_HANDLED;
533
Sujith063d8be2009-03-30 15:28:49 +0530534 /*
535 * If there are no status bits set, then this interrupt was not
536 * for me (should have been caught above).
537 */
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400538 if (!status)
Sujith063d8be2009-03-30 15:28:49 +0530539 return IRQ_NONE;
Sujith063d8be2009-03-30 15:28:49 +0530540
541 /* Cache the status */
542 sc->intrstatus = status;
543
544 if (status & SCHED_INTR)
545 sched = true;
546
547 /*
Felix Fietkau3b5801442014-10-25 17:19:28 +0200548 * If a FATAL interrupt is received, we have to reset the chip
549 * immediately.
Sujith063d8be2009-03-30 15:28:49 +0530550 */
Felix Fietkau3b5801442014-10-25 17:19:28 +0200551 if (status & ATH9K_INT_FATAL)
Sujith063d8be2009-03-30 15:28:49 +0530552 goto chip_reset;
553
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530554 if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
Sujith Manoharan0c759972013-12-24 10:44:26 +0530555 (status & ATH9K_INT_BB_WATCHDOG))
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400556 goto chip_reset;
Sujith Manoharane60001e2013-10-28 12:22:04 +0530557
Sujith063d8be2009-03-30 15:28:49 +0530558 if (status & ATH9K_INT_SWBA)
559 tasklet_schedule(&sc->bcon_tasklet);
560
561 if (status & ATH9K_INT_TXURN)
562 ath9k_hw_updatetxtriglevel(ah, true);
563
Rajkumar Manoharan0682c9b2011-08-13 10:28:09 +0530564 if (status & ATH9K_INT_RXEOL) {
565 ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +0200566 ath9k_hw_set_interrupts(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400567 }
568
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400569 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
570 if (status & ATH9K_INT_TIM_TIMER) {
Luis R. Rodriguezff9f0b62010-12-07 15:13:22 -0800571 if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
572 goto chip_reset;
Sujith063d8be2009-03-30 15:28:49 +0530573 /* Clear RxAbort bit so that we can
574 * receive frames */
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700575 ath9k_setpower(sc, ATH9K_PM_AWAKE);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530576 spin_lock(&sc->sc_pm_lock);
Vasanthakumar Thiagarajan153e0802009-05-15 02:47:16 -0400577 ath9k_hw_setrxabort(sc->sc_ah, 0);
Sujith1b04b932010-01-08 10:36:05 +0530578 sc->ps_flags |= PS_WAIT_FOR_BEACON;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530579 spin_unlock(&sc->sc_pm_lock);
Sujith063d8be2009-03-30 15:28:49 +0530580 }
Sujith063d8be2009-03-30 15:28:49 +0530581
582chip_reset:
583
Sujith817e11d2008-12-07 21:42:44 +0530584 ath_debug_stat_interrupt(sc, status);
585
Sujithff37e332008-11-24 12:07:55 +0530586 if (sched) {
Felix Fietkau4df30712010-11-08 20:54:47 +0100587 /* turn off every interrupt */
588 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530589 tasklet_schedule(&sc->intr_tq);
590 }
591
592 return IRQ_HANDLED;
Sujith063d8be2009-03-30 15:28:49 +0530593
594#undef SCHED_INTR
Sujithff37e332008-11-24 12:07:55 +0530595}
596
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530597/*
598 * This function is called when a HW reset cannot be deferred
599 * and has to be immediate.
600 */
Sujith Manoharan5555c952014-10-17 07:40:11 +0530601int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan)
Sujithff37e332008-11-24 12:07:55 +0530602{
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530603 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauec303262013-10-05 14:09:30 +0200604 int r;
Sujithff37e332008-11-24 12:07:55 +0530605
Felix Fietkau872b5d82014-11-30 21:58:32 +0100606 ath9k_hw_kill_interrupts(sc->sc_ah);
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530607 set_bit(ATH_OP_HW_RESET, &common->op_flags);
608
Felix Fietkau783cd012011-01-21 18:52:38 +0100609 ath9k_ps_wakeup(sc);
Sujith Manoharan5555c952014-10-17 07:40:11 +0530610 r = ath_reset_internal(sc, hchan);
Felix Fietkau783cd012011-01-21 18:52:38 +0100611 ath9k_ps_restore(sc);
Sujith2ab81d42009-12-14 16:34:56 +0530612
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800613 return r;
Sujithff37e332008-11-24 12:07:55 +0530614}
615
Sujith Manoharanae2ff232014-10-17 07:40:12 +0530616/*
617 * When a HW reset can be deferred, it is added to the
618 * hw_reset_work workqueue, but we set ATH_OP_HW_RESET before
619 * queueing.
620 */
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530621void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type)
622{
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100623 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530624#ifdef CONFIG_ATH9K_DEBUGFS
625 RESET_STAT_INC(sc, type);
626#endif
Felix Fietkau872b5d82014-11-30 21:58:32 +0100627 ath9k_hw_kill_interrupts(sc->sc_ah);
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100628 set_bit(ATH_OP_HW_RESET, &common->op_flags);
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530629 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
630}
631
Felix Fietkau236de512011-09-03 01:40:25 +0200632void ath_reset_work(struct work_struct *work)
633{
634 struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work);
635
Sujith Manoharan5555c952014-10-17 07:40:11 +0530636 ath9k_ps_wakeup(sc);
637 ath_reset_internal(sc, NULL);
638 ath9k_ps_restore(sc);
Felix Fietkau236de512011-09-03 01:40:25 +0200639}
640
Sujithff37e332008-11-24 12:07:55 +0530641/**********************/
642/* mac80211 callbacks */
643/**********************/
644
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645static int ath9k_start(struct ieee80211_hw *hw)
646{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100647 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700648 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700649 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau39305632014-06-11 16:17:57 +0530650 struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan;
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530651 struct ath_chanctx *ctx = sc->cur_chan;
Sujithff37e332008-11-24 12:07:55 +0530652 struct ath9k_channel *init_channel;
Vasanthakumar Thiagarajan82880a72009-06-13 14:50:24 +0530653 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654
Joe Perchesd2182b62011-12-15 14:55:53 -0800655 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -0800656 "Starting driver with initial channel: %d MHz\n",
657 curchan->center_freq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658
Felix Fietkauf62d8162011-03-25 17:43:41 +0100659 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +0530660 mutex_lock(&sc->mutex);
661
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530662 init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef);
Felix Fietkaubff11762014-06-11 16:17:52 +0530663 sc->cur_chandef = hw->conf.chandef;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664
Sujithff37e332008-11-24 12:07:55 +0530665 /* Reset SERDES registers */
Stanislaw Gruszka84c87dc2011-08-05 13:10:32 +0200666 ath9k_hw_configpcipowersave(ah, false);
Sujithff37e332008-11-24 12:07:55 +0530667
668 /*
669 * The basic interface to setting the hardware in a good
670 * state is ``reset''. On return the hardware is known to
671 * be powered up and with interrupts disabled. This must
672 * be followed by initialization of the appropriate bits
673 * and then setup of the interrupt mask.
674 */
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700675 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100676
677 atomic_set(&ah->intr_ref_cnt, -1);
678
Felix Fietkau20bd2a02010-07-31 00:12:00 +0200679 r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -0800680 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800681 ath_err(common,
682 "Unable to reset hardware; reset status %d (freq %u MHz)\n",
683 r, curchan->center_freq);
Felix Fietkauceb26a62012-10-03 21:07:51 +0200684 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700685 }
Sujithff37e332008-11-24 12:07:55 +0530686
Sujithff37e332008-11-24 12:07:55 +0530687 /* Setup our intr mask. */
Felix Fietkaub5c804752010-04-15 17:38:48 -0400688 ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
689 ATH9K_INT_RXORN | ATH9K_INT_FATAL |
690 ATH9K_INT_GLOBAL;
691
692 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400693 ah->imask |= ATH9K_INT_RXHP |
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530694 ATH9K_INT_RXLP;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400695 else
696 ah->imask |= ATH9K_INT_RX;
Sujithff37e332008-11-24 12:07:55 +0530697
Sujith Manoharana6bb8602013-12-24 10:44:22 +0530698 if (ah->config.hw_hang_checks & HW_BB_WATCHDOG)
699 ah->imask |= ATH9K_INT_BB_WATCHDOG;
700
Sujith Manoharan071aa9a2014-01-13 13:55:11 +0530701 /*
702 * Enable GTT interrupts only for AR9003/AR9004 chips
703 * for now.
704 */
705 if (AR_SREV_9300_20_OR_LATER(ah))
706 ah->imask |= ATH9K_INT_GTT;
Sujithff37e332008-11-24 12:07:55 +0530707
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700708 if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Pavel Roskin30691682010-03-31 18:05:31 -0400709 ah->imask |= ATH9K_INT_CST;
Sujithff37e332008-11-24 12:07:55 +0530710
Sujith Manoharane270e772012-06-04 16:27:19 +0530711 ath_mci_enable(sc);
Mohammed Shafi Shajakhan40dc5392011-11-30 10:41:18 +0530712
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100713 clear_bit(ATH_OP_INVALID, &common->op_flags);
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530714 sc->sc_ah->is_monitoring = false;
Sujithff37e332008-11-24 12:07:55 +0530715
Felix Fietkauceb26a62012-10-03 21:07:51 +0200716 if (!ath_complete_reset(sc, false))
717 ah->reset_power_on = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700718
Felix Fietkauc0c11742011-11-16 13:08:41 +0100719 if (ah->led_pin >= 0) {
720 ath9k_hw_cfg_output(ah, ah->led_pin,
721 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530722 ath9k_hw_set_gpio(ah, ah->led_pin,
723 (ah->config.led_active_high) ? 1 : 0);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100724 }
725
726 /*
727 * Reset key cache to sane defaults (all entries cleared) instead of
728 * semi-random values after suspend/resume.
729 */
730 ath9k_cmn_init_crypto(sc->sc_ah);
731
Felix Fietkaua35051c2013-12-14 18:03:45 +0100732 ath9k_hw_reset_tsf(ah);
733
Felix Fietkau9adcf442011-09-03 01:40:26 +0200734 spin_unlock_bh(&sc->sc_pcu_lock);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400735
Sujith141b38b2009-02-04 08:10:07 +0530736 mutex_unlock(&sc->mutex);
737
Felix Fietkauf62d8162011-03-25 17:43:41 +0100738 ath9k_ps_restore(sc);
739
Felix Fietkauceb26a62012-10-03 21:07:51 +0200740 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700741}
742
Thomas Huehn36323f82012-07-23 21:33:42 +0200743static void ath9k_tx(struct ieee80211_hw *hw,
744 struct ieee80211_tx_control *control,
745 struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100747 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700748 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith528f0c62008-10-29 10:14:26 +0530749 struct ath_tx_control txctl;
Benoit Papillault1bc14882009-11-24 15:49:18 +0100750 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530751 unsigned long flags;
Sujith528f0c62008-10-29 10:14:26 +0530752
Gabor Juhos96148322009-07-24 17:27:21 +0200753 if (sc->ps_enabled) {
Jouni Malinendc8c4582009-05-19 17:01:42 +0300754 /*
755 * mac80211 does not set PM field for normal data frames, so we
756 * need to update that based on the current PS mode.
757 */
758 if (ieee80211_is_data(hdr->frame_control) &&
759 !ieee80211_is_nullfunc(hdr->frame_control) &&
760 !ieee80211_has_pm(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800761 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800762 "Add PM=1 for a TX frame while in PS mode\n");
Jouni Malinendc8c4582009-05-19 17:01:42 +0300763 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
764 }
765 }
766
Sujith Manoharanad128862012-04-24 10:23:20 +0530767 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) {
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300768 /*
769 * We are using PS-Poll and mac80211 can request TX while in
770 * power save mode. Need to wake up hardware for the TX to be
771 * completed and if needed, also for RX of buffered frames.
772 */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300773 ath9k_ps_wakeup(sc);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530774 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -0700775 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
776 ath9k_hw_setrxabort(sc->sc_ah, 0);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300777 if (ieee80211_is_pspoll(hdr->frame_control)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800778 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800779 "Sending PS-Poll to pick a buffered frame\n");
Sujith1b04b932010-01-08 10:36:05 +0530780 sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300781 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -0800782 ath_dbg(common, PS, "Wake up to complete TX\n");
Sujith1b04b932010-01-08 10:36:05 +0530783 sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300784 }
785 /*
786 * The actual restore operation will happen only after
Sujith Manoharanad128862012-04-24 10:23:20 +0530787 * the ps_flags bit is cleared. We are just dropping
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300788 * the ps_usecount here.
789 */
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530790 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300791 ath9k_ps_restore(sc);
792 }
793
Sujith Manoharanad128862012-04-24 10:23:20 +0530794 /*
795 * Cannot tx while the hardware is in full sleep, it first needs a full
796 * chip reset to recover from that
797 */
798 if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_FULL_SLEEP)) {
799 ath_err(common, "TX while HW is in FULL_SLEEP mode\n");
800 goto exit;
801 }
802
Sujith528f0c62008-10-29 10:14:26 +0530803 memset(&txctl, 0, sizeof(struct ath_tx_control));
Felix Fietkau066dae92010-11-07 14:59:39 +0100804 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
Thomas Huehn36323f82012-07-23 21:33:42 +0200805 txctl.sta = control->sta;
Sujith528f0c62008-10-29 10:14:26 +0530806
Joe Perchesd2182b62011-12-15 14:55:53 -0800807 ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808
Jouni Malinenc52f33d2009-03-03 19:23:29 +0200809 if (ath_tx_start(hw, skb, &txctl) != 0) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800810 ath_dbg(common, XMIT, "TX failed\n");
Ben Greeara5a0bca2012-04-03 09:16:55 -0700811 TX_STAT_INC(txctl.txq->axq_qnum, txfailed);
Sujith528f0c62008-10-29 10:14:26 +0530812 goto exit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813 }
814
Johannes Berg7bb45682011-02-24 14:42:06 +0100815 return;
Sujith528f0c62008-10-29 10:14:26 +0530816exit:
Felix Fietkau249ee722012-10-03 21:07:52 +0200817 ieee80211_free_txskb(hw, skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700818}
819
820static void ath9k_stop(struct ieee80211_hw *hw)
821{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100822 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -0700823 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700824 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100825 bool prev_idle;
Sujith9c84b792008-10-29 10:17:13 +0530826
Sujith Manoharanea22df22014-08-23 13:29:07 +0530827 ath9k_deinit_channel_context(sc);
828
Sujith4c483812009-08-18 10:51:52 +0530829 mutex_lock(&sc->mutex);
830
Felix Fietkau9adcf442011-09-03 01:40:26 +0200831 ath_cancel_work(sc);
Luis R. Rodriguezc94dbff2009-07-27 11:53:04 -0700832
Oleksij Rempeleefa01d2014-02-27 11:40:46 +0100833 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800834 ath_dbg(common, ANY, "Device not present\n");
Sujith4c483812009-08-18 10:51:52 +0530835 mutex_unlock(&sc->mutex);
Sujith9c84b792008-10-29 10:17:13 +0530836 return;
837 }
838
Sujith3867cf62009-12-23 20:03:27 -0500839 /* Ensure HW is awake when we try to shut it down. */
840 ath9k_ps_wakeup(sc);
841
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700842 spin_lock_bh(&sc->sc_pcu_lock);
843
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100844 /* prevent tasklets to enable interrupts once we disable them */
845 ah->imask &= ~ATH9K_INT_GLOBAL;
846
Sujithff37e332008-11-24 12:07:55 +0530847 /* make sure h/w will not generate any interrupt
848 * before setting the invalid flag. */
Felix Fietkau4df30712010-11-08 20:54:47 +0100849 ath9k_hw_disable_interrupts(ah);
Sujithff37e332008-11-24 12:07:55 +0530850
Luis R. Rodriguez6a6733f2010-10-26 15:27:25 -0700851 spin_unlock_bh(&sc->sc_pcu_lock);
852
Stanislaw Gruszka203043f2011-01-25 14:08:40 +0100853 /* we can now sync irq and kill any running tasklets, since we already
854 * disabled interrupts and not holding a spin lock */
855 synchronize_irq(sc->irq);
856 tasklet_kill(&sc->intr_tq);
857 tasklet_kill(&sc->bcon_tasklet);
858
Felix Fietkauc0c11742011-11-16 13:08:41 +0100859 prev_idle = sc->ps_idle;
860 sc->ps_idle = true;
861
862 spin_lock_bh(&sc->sc_pcu_lock);
863
864 if (ah->led_pin >= 0) {
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530865 ath9k_hw_set_gpio(ah, ah->led_pin,
866 (ah->config.led_active_high) ? 0 : 1);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100867 ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
868 }
869
John W. Linville9ebea382013-01-28 13:54:03 -0500870 ath_prepare_reset(sc);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100871
872 if (sc->rx.frag) {
873 dev_kfree_skb_any(sc->rx.frag);
874 sc->rx.frag = NULL;
875 }
876
877 if (!ah->curchan)
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530878 ah->curchan = ath9k_cmn_get_channel(hw, ah,
879 &sc->cur_chan->chandef);
Felix Fietkauc0c11742011-11-16 13:08:41 +0100880
881 ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
Felix Fietkauef739ab2014-11-30 21:58:31 +0100882
883 set_bit(ATH_OP_INVALID, &common->op_flags);
884
Felix Fietkauc0c11742011-11-16 13:08:41 +0100885 ath9k_hw_phy_disable(ah);
886
887 ath9k_hw_configpcipowersave(ah, true);
888
889 spin_unlock_bh(&sc->sc_pcu_lock);
890
Sujith3867cf62009-12-23 20:03:27 -0500891 ath9k_ps_restore(sc);
892
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 /*
Ben Greeardaad1662014-11-04 15:22:50 -0800993 * The hardware will use primary station addr together with the
994 * BSSID mask when matching addresses.
Ben Greear48014162011-01-15 19:13:48 +0000995 */
996 memset(iter_data, 0, sizeof(*iter_data));
Joe Perches93803b32015-03-02 19:54:49 -0800997 eth_broadcast_addr(iter_data->mask);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +0530998 iter_data->slottime = ATH9K_SLOT_TIME_9;
Ben Greear48014162011-01-15 19:13:48 +0000999
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301000 list_for_each_entry(avp, &ctx->vifs, list)
1001 ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif);
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301002
1003 ath9k_update_bssid_mask(sc, ctx, iter_data);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301004}
1005
1006static void ath9k_set_assoc_state(struct ath_softc *sc,
1007 struct ieee80211_vif *vif, bool changed)
1008{
1009 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith Manoharancb355822014-09-17 14:45:56 +05301010 struct ath_vif *avp = (struct ath_vif *)vif->drv_priv;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301011 unsigned long flags;
1012
1013 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301014
Sujith Manoharancb355822014-09-17 14:45:56 +05301015 ether_addr_copy(common->curbssid, avp->bssid);
1016 common->curaid = avp->aid;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301017 ath9k_hw_write_associd(sc->sc_ah);
1018
1019 if (changed) {
1020 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
1021 sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
1022
1023 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1024 sc->ps_flags |= PS_BEACON_SYNC | PS_WAIT_FOR_BEACON;
1025 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1026 }
1027
1028 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1029 ath9k_mci_update_wlan_channels(sc, false);
1030
1031 ath_dbg(common, CONFIG,
1032 "Primary Station interface: %pM, BSSID: %pM\n",
1033 vif->addr, common->curbssid);
Ben Greear48014162011-01-15 19:13:48 +00001034}
1035
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301036#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1037static void ath9k_set_offchannel_state(struct ath_softc *sc)
1038{
1039 struct ath_hw *ah = sc->sc_ah;
1040 struct ath_common *common = ath9k_hw_common(ah);
1041 struct ieee80211_vif *vif = NULL;
1042
1043 ath9k_ps_wakeup(sc);
1044
1045 if (sc->offchannel.state < ATH_OFFCHANNEL_ROC_START)
1046 vif = sc->offchannel.scan_vif;
1047 else
1048 vif = sc->offchannel.roc_vif;
1049
1050 if (WARN_ON(!vif))
1051 goto exit;
1052
1053 eth_zero_addr(common->curbssid);
1054 eth_broadcast_addr(common->bssidmask);
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301055 memcpy(common->macaddr, vif->addr, ETH_ALEN);
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301056 common->curaid = 0;
1057 ah->opmode = vif->type;
1058 ah->imask &= ~ATH9K_INT_SWBA;
1059 ah->imask &= ~ATH9K_INT_TSFOOR;
1060 ah->slottime = ATH9K_SLOT_TIME_9;
1061
1062 ath_hw_setbssidmask(common);
1063 ath9k_hw_setopmode(ah);
1064 ath9k_hw_write_associd(sc->sc_ah);
1065 ath9k_hw_set_interrupts(ah);
1066 ath9k_hw_init_global_settings(ah);
1067
1068exit:
1069 ath9k_ps_restore(sc);
1070}
1071#endif
1072
Ben Greear48014162011-01-15 19:13:48 +00001073/* Called with sc->mutex held. */
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301074void ath9k_calculate_summary_state(struct ath_softc *sc,
1075 struct ath_chanctx *ctx)
Ben Greear48014162011-01-15 19:13:48 +00001076{
Ben Greear48014162011-01-15 19:13:48 +00001077 struct ath_hw *ah = sc->sc_ah;
1078 struct ath_common *common = ath9k_hw_common(ah);
1079 struct ath9k_vif_iter_data iter_data;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301080 struct ath_beacon_config *cur_conf;
Ben Greear48014162011-01-15 19:13:48 +00001081
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301082 ath_chanctx_check_active(sc, ctx);
1083
1084 if (ctx != sc->cur_chan)
1085 return;
1086
Sujith Manoharan4ee26de2014-09-15 11:25:52 +05301087#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1088 if (ctx == &sc->offchannel.chan)
1089 return ath9k_set_offchannel_state(sc);
1090#endif
1091
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301092 ath9k_ps_wakeup(sc);
1093 ath9k_calculate_iter_data(sc, ctx, &iter_data);
1094
1095 if (iter_data.has_hw_macaddr)
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301096 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN);
Ben Greear48014162011-01-15 19:13:48 +00001097
Ben Greear48014162011-01-15 19:13:48 +00001098 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
1099 ath_hw_setbssidmask(common);
1100
Ben Greear48014162011-01-15 19:13:48 +00001101 if (iter_data.naps > 0) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301102 cur_conf = &ctx->beacon;
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301103 ath9k_hw_set_tsfadjust(ah, true);
Ben Greear48014162011-01-15 19:13:48 +00001104 ah->opmode = NL80211_IFTYPE_AP;
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301105 if (cur_conf->enable_beacon)
1106 iter_data.beacons = true;
Ben Greear48014162011-01-15 19:13:48 +00001107 } else {
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05301108 ath9k_hw_set_tsfadjust(ah, false);
Ben Greear48014162011-01-15 19:13:48 +00001109
Javier Cardonafd5999c2011-05-03 16:57:19 -07001110 if (iter_data.nmeshes)
1111 ah->opmode = NL80211_IFTYPE_MESH_POINT;
1112 else if (iter_data.nwds)
Ben Greear48014162011-01-15 19:13:48 +00001113 ah->opmode = NL80211_IFTYPE_AP;
1114 else if (iter_data.nadhocs)
1115 ah->opmode = NL80211_IFTYPE_ADHOC;
1116 else
1117 ah->opmode = NL80211_IFTYPE_STATION;
1118 }
1119
Sujith Manoharandf35d292012-07-17 17:15:43 +05301120 ath9k_hw_setopmode(ah);
1121
Felix Fietkau748299f2014-06-11 16:18:04 +05301122 ctx->switch_after_beacon = false;
Felix Fietkau198823f2012-06-15 15:25:25 +02001123 if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0)
Ben Greear48014162011-01-15 19:13:48 +00001124 ah->imask |= ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301125 else {
Ben Greear48014162011-01-15 19:13:48 +00001126 ah->imask &= ~ATH9K_INT_TSFOOR;
Felix Fietkau748299f2014-06-11 16:18:04 +05301127 if (iter_data.naps == 1 && iter_data.beacons)
1128 ctx->switch_after_beacon = true;
1129 }
Ben Greear48014162011-01-15 19:13:48 +00001130
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301131 ah->imask &= ~ATH9K_INT_SWBA;
1132 if (ah->opmode == NL80211_IFTYPE_STATION) {
1133 bool changed = (iter_data.primary_sta != ctx->primary_sta);
1134
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301135 if (iter_data.primary_sta) {
Sujith Manoharan602607b2014-09-05 08:03:10 +05301136 iter_data.beacons = true;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301137 ath9k_set_assoc_state(sc, iter_data.primary_sta,
1138 changed);
Sujith Manoharan1030f9f2014-09-15 11:25:54 +05301139 ctx->primary_sta = iter_data.primary_sta;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301140 } else {
1141 ctx->primary_sta = NULL;
Joe Perches93803b32015-03-02 19:54:49 -08001142 eth_zero_addr(common->curbssid);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301143 common->curaid = 0;
1144 ath9k_hw_write_associd(sc->sc_ah);
1145 if (ath9k_hw_mci_is_enabled(sc->sc_ah))
1146 ath9k_mci_update_wlan_channels(sc, true);
1147 }
1148 } else if (iter_data.beacons) {
1149 ah->imask |= ATH9K_INT_SWBA;
1150 }
Felix Fietkau72d874c2011-10-08 20:06:19 +02001151 ath9k_hw_set_interrupts(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301152
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301153 if (iter_data.beacons)
1154 set_bit(ATH_OP_BEACONS, &common->op_flags);
1155 else
1156 clear_bit(ATH_OP_BEACONS, &common->op_flags);
1157
1158 if (ah->slottime != iter_data.slottime) {
1159 ah->slottime = iter_data.slottime;
1160 ath9k_hw_init_global_settings(ah);
Sujith Manoharan6dcc3442012-07-17 17:16:36 +05301161 }
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301162
1163 if (iter_data.primary_sta)
1164 set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1165 else
1166 clear_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags);
1167
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05301168 ath_dbg(common, CONFIG,
1169 "macaddr: %pM, bssid: %pM, bssidmask: %pM\n",
1170 common->macaddr, common->curbssid, common->bssidmask);
1171
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301172 ath9k_ps_restore(sc);
Ben Greear48014162011-01-15 19:13:48 +00001173}
1174
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001175static void ath9k_tpc_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
1176{
1177 int *power = (int *)data;
1178
1179 if (*power < vif->bss_conf.txpower)
1180 *power = vif->bss_conf.txpower;
1181}
1182
1183/* Called with sc->mutex held. */
1184void ath9k_set_txpower(struct ath_softc *sc, struct ieee80211_vif *vif)
1185{
1186 int power;
1187 struct ath_hw *ah = sc->sc_ah;
1188 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
1189
1190 ath9k_ps_wakeup(sc);
1191 if (ah->tpc_enabled) {
1192 power = (vif) ? vif->bss_conf.txpower : -1;
1193 ieee80211_iterate_active_interfaces_atomic(
1194 sc->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1195 ath9k_tpc_vif_iter, &power);
1196 if (power == -1)
1197 power = sc->hw->conf.power_level;
1198 } else {
1199 power = sc->hw->conf.power_level;
1200 }
1201 sc->cur_chan->txpower = 2 * power;
1202 ath9k_hw_set_txpowerlimit(ah, sc->cur_chan->txpower, false);
1203 sc->cur_chan->cur_txpower = reg->max_power_level;
1204 ath9k_ps_restore(sc);
1205}
1206
Sujith Manoharana4027642014-09-05 09:50:55 +05301207static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
1208 struct ieee80211_vif *vif)
1209{
1210 int i;
1211
Sujith Manoharan868caae2014-10-21 19:23:02 +05301212 if (!ath9k_is_chanctx_enabled())
1213 return;
1214
Sujith Manoharana4027642014-09-05 09:50:55 +05301215 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1216 vif->hw_queue[i] = i;
1217
Chun-Yeow Yeoh4b870c22014-11-12 16:40:19 +08001218 if (vif->type == NL80211_IFTYPE_AP ||
1219 vif->type == NL80211_IFTYPE_MESH_POINT)
Sujith Manoharana4027642014-09-05 09:50:55 +05301220 vif->cab_queue = hw->queues - 2;
1221 else
1222 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1223}
1224
Ben Greear48014162011-01-15 19:13:48 +00001225static int ath9k_add_interface(struct ieee80211_hw *hw,
1226 struct ieee80211_vif *vif)
1227{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001228 struct ath_softc *sc = hw->priv;
Ben Greear48014162011-01-15 19:13:48 +00001229 struct ath_hw *ah = sc->sc_ah;
1230 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001231 struct ath_vif *avp = (void *)vif->drv_priv;
1232 struct ath_node *an = &avp->mcast_node;
Ben Greear48014162011-01-15 19:13:48 +00001233
1234 mutex_lock(&sc->mutex);
1235
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001236 if (config_enabled(CONFIG_ATH9K_TX99)) {
Sujith Manoharanca529c92014-09-05 08:03:19 +05301237 if (sc->cur_chan->nvifs >= 1) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001238 mutex_unlock(&sc->mutex);
1239 return -EOPNOTSUPP;
1240 }
1241 sc->tx99_vif = vif;
1242 }
1243
Joe Perchesd2182b62011-12-15 14:55:53 -08001244 ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
Sujith Manoharanca529c92014-09-05 08:03:19 +05301245 sc->cur_chan->nvifs++;
Ben Greear48014162011-01-15 19:13:48 +00001246
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301247 if (ath9k_uses_beacons(vif->type))
1248 ath9k_beacon_assign_slot(sc, vif);
1249
Felix Fietkaud463af42014-04-06 00:37:03 +02001250 avp->vif = vif;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301251 if (!ath9k_is_chanctx_enabled()) {
Felix Fietkau39305632014-06-11 16:17:57 +05301252 avp->chanctx = sc->cur_chan;
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301253 list_add_tail(&avp->list, &avp->chanctx->vifs);
1254 }
Sujith Manoharana4027642014-09-05 09:50:55 +05301255
Ben Greeardaad1662014-11-04 15:22:50 -08001256 ath9k_calculate_summary_state(sc, avp->chanctx);
1257
Sujith Manoharana4027642014-09-05 09:50:55 +05301258 ath9k_assign_hw_queues(hw, vif);
Felix Fietkau04535312014-06-11 16:17:51 +05301259
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001260 ath9k_set_txpower(sc, vif);
1261
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001262 an->sc = sc;
1263 an->sta = NULL;
1264 an->vif = vif;
1265 an->no_ps_filter = true;
1266 ath_tx_node_init(sc, an);
1267
Ben Greear48014162011-01-15 19:13:48 +00001268 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301269 return 0;
Ben Greear48014162011-01-15 19:13:48 +00001270}
1271
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301272static int ath9k_change_interface(struct ieee80211_hw *hw,
1273 struct ieee80211_vif *vif,
1274 enum nl80211_iftype new_type,
1275 bool p2p)
1276{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001277 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301278 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauc083ce92014-06-11 16:17:54 +05301279 struct ath_vif *avp = (void *)vif->drv_priv;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301280
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301281 mutex_lock(&sc->mutex);
Ben Greear48014162011-01-15 19:13:48 +00001282
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001283 if (config_enabled(CONFIG_ATH9K_TX99)) {
1284 mutex_unlock(&sc->mutex);
1285 return -EOPNOTSUPP;
1286 }
1287
1288 ath_dbg(common, CONFIG, "Change Interface\n");
1289
Ben Greear48014162011-01-15 19:13:48 +00001290 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301291 ath9k_beacon_remove_slot(sc, vif);
Ben Greear48014162011-01-15 19:13:48 +00001292
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301293 vif->type = new_type;
1294 vif->p2p = p2p;
1295
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301296 if (ath9k_uses_beacons(vif->type))
1297 ath9k_beacon_assign_slot(sc, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301298
Sujith Manoharana4027642014-09-05 09:50:55 +05301299 ath9k_assign_hw_queues(hw, vif);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301300 ath9k_calculate_summary_state(sc, avp->chanctx);
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301301
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001302 ath9k_set_txpower(sc, vif);
1303
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301304 mutex_unlock(&sc->mutex);
Mohammed Shafi Shajakhan327967c2012-09-04 19:33:36 +05301305 return 0;
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05301306}
1307
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308static void ath9k_remove_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001309 struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001310{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001311 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001312 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001313 struct ath_vif *avp = (void *)vif->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314
Joe Perchesd2182b62011-12-15 14:55:53 -08001315 ath_dbg(common, CONFIG, "Detach Interface\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316
Sujith141b38b2009-02-04 08:10:07 +05301317 mutex_lock(&sc->mutex);
1318
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301319 ath9k_p2p_remove_vif(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001320
Sujith Manoharanca529c92014-09-05 08:03:19 +05301321 sc->cur_chan->nvifs--;
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001322 sc->tx99_vif = NULL;
Sujith Manoharan499afac2014-08-22 20:39:31 +05301323 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301324 list_del(&avp->list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001325
Ben Greear48014162011-01-15 19:13:48 +00001326 if (ath9k_uses_beacons(vif->type))
Sujith Manoharan130ef6e2012-07-17 17:15:30 +05301327 ath9k_beacon_remove_slot(sc, vif);
Jouni Malinen2c3db3d2009-03-03 19:23:26 +02001328
Felix Fietkauf89d1bc2013-08-06 14:18:13 +02001329 ath_tx_node_cleanup(sc, &avp->mcast_node);
1330
Ben Greeardaad1662014-11-04 15:22:50 -08001331 ath9k_calculate_summary_state(sc, avp->chanctx);
1332
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001333 ath9k_set_txpower(sc, NULL);
1334
Sujith141b38b2009-02-04 08:10:07 +05301335 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336}
1337
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301338static void ath9k_enable_ps(struct ath_softc *sc)
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301339{
Pavel Roskin30691682010-03-31 18:05:31 -04001340 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301341 struct ath_common *common = ath9k_hw_common(ah);
Pavel Roskin30691682010-03-31 18:05:31 -04001342
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001343 if (config_enabled(CONFIG_ATH9K_TX99))
1344 return;
1345
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301346 sc->ps_enabled = true;
Pavel Roskin30691682010-03-31 18:05:31 -04001347 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1348 if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
1349 ah->imask |= ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001350 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301351 }
Vasanthakumar Thiagarajanfdf76622010-05-17 18:57:55 -07001352 ath9k_hw_setrxabort(ah, 1);
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301353 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301354 ath_dbg(common, PS, "PowerSave enabled\n");
Senthil Balasubramanian3f7c5c12010-02-03 22:51:13 +05301355}
1356
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301357static void ath9k_disable_ps(struct ath_softc *sc)
1358{
1359 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharanad128862012-04-24 10:23:20 +05301360 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301361
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001362 if (config_enabled(CONFIG_ATH9K_TX99))
1363 return;
1364
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301365 sc->ps_enabled = false;
1366 ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
1367 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1368 ath9k_hw_setrxabort(ah, 0);
1369 sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
1370 PS_WAIT_FOR_CAB |
1371 PS_WAIT_FOR_PSPOLL_DATA |
1372 PS_WAIT_FOR_TX_ACK);
1373 if (ah->imask & ATH9K_INT_TIM_TIMER) {
1374 ah->imask &= ~ATH9K_INT_TIM_TIMER;
Felix Fietkau72d874c2011-10-08 20:06:19 +02001375 ath9k_hw_set_interrupts(ah);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301376 }
1377 }
Sujith Manoharanad128862012-04-24 10:23:20 +05301378 ath_dbg(common, PS, "PowerSave disabled\n");
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301379}
1380
Johannes Berge8975582008-10-09 12:18:51 +02001381static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001382{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001383 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001384 struct ath_hw *ah = sc->sc_ah;
1385 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berge8975582008-10-09 12:18:51 +02001386 struct ieee80211_conf *conf = &hw->conf;
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301387 struct ath_chanctx *ctx = sc->cur_chan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388
Felix Fietkauc0c11742011-11-16 13:08:41 +01001389 ath9k_ps_wakeup(sc);
Sujithaa33de02008-12-18 11:40:16 +05301390 mutex_lock(&sc->mutex);
Sujith141b38b2009-02-04 08:10:07 +05301391
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001392 if (changed & IEEE80211_CONF_CHANGE_IDLE) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01001393 sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301394 if (sc->ps_idle) {
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001395 ath_cancel_work(sc);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301396 ath9k_stop_btcoex(sc);
1397 } else {
1398 ath9k_start_btcoex(sc);
Felix Fietkau75600ab2012-04-12 20:36:31 +02001399 /*
1400 * The chip needs a reset to properly wake up from
1401 * full sleep
1402 */
Felix Fietkau39305632014-06-11 16:17:57 +05301403 ath_chanctx_set_channel(sc, ctx, &ctx->chandef);
Rajkumar Manoharanb73f3e72012-07-01 19:53:53 +05301404 }
Felix Fietkaudaa1b6e2011-11-16 13:08:43 +01001405 }
Luis R. Rodriguez64839172009-07-14 20:22:53 -04001406
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -05001407 /*
1408 * We just prepare to enable PS. We have to wait until our AP has
1409 * ACK'd our null data frame to disable RX otherwise we'll ignore
1410 * those ACKs and end up retransmitting the same null data frames.
1411 * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
1412 */
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301413 if (changed & IEEE80211_CONF_CHANGE_PS) {
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001414 unsigned long flags;
1415 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Senthil Balasubramanianfbab7392010-10-05 20:36:40 +05301416 if (conf->flags & IEEE80211_CONF_PS)
1417 ath9k_enable_ps(sc);
Senthil Balasubramanian845d7082010-10-05 20:36:41 +05301418 else
1419 ath9k_disable_ps(sc);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001420 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301421 }
1422
Sujith199afd92010-01-08 10:36:13 +05301423 if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
1424 if (conf->flags & IEEE80211_CONF_MONITOR) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001425 ath_dbg(common, CONFIG, "Monitor mode is enabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301426 sc->sc_ah->is_monitoring = true;
1427 } else {
Joe Perchesd2182b62011-12-15 14:55:53 -08001428 ath_dbg(common, CONFIG, "Monitor mode is disabled\n");
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301429 sc->sc_ah->is_monitoring = false;
Sujith199afd92010-01-08 10:36:13 +05301430 }
1431 }
1432
Sujith Manoharan499afac2014-08-22 20:39:31 +05301433 if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Felix Fietkaufbbcd142014-06-11 16:17:49 +05301434 ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL);
Felix Fietkaubff11762014-06-11 16:17:52 +05301435 ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef);
Sujith094d05d2008-12-12 11:57:43 +05301436 }
Sujith86b89ee2008-08-07 10:54:57 +05301437
Sujithaa33de02008-12-18 11:40:16 +05301438 mutex_unlock(&sc->mutex);
Felix Fietkauc0c11742011-11-16 13:08:41 +01001439 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301440
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001441 return 0;
1442}
1443
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001444#define SUPPORTED_FILTERS \
1445 (FIF_PROMISC_IN_BSS | \
1446 FIF_ALLMULTI | \
1447 FIF_CONTROL | \
Luis R. Rodriguezaf6a3fc2009-08-08 21:55:16 -04001448 FIF_PSPOLL | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001449 FIF_OTHER_BSS | \
1450 FIF_BCN_PRBRESP_PROMISC | \
Jouni Malinen9c1d8e42010-10-13 17:29:31 +03001451 FIF_PROBE_REQ | \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001452 FIF_FCSFAIL)
1453
Sujith7dcfdcd2008-08-11 14:03:13 +05301454/* FIXME: sc->sc_full_reset ? */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455static void ath9k_configure_filter(struct ieee80211_hw *hw,
1456 unsigned int changed_flags,
1457 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001458 u64 multicast)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001460 struct ath_softc *sc = hw->priv;
Sujith7dcfdcd2008-08-11 14:03:13 +05301461 u32 rfilt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001462
1463 changed_flags &= SUPPORTED_FILTERS;
1464 *total_flags &= SUPPORTED_FILTERS;
1465
Sujith Manoharanfce34432014-09-05 08:03:18 +05301466 spin_lock_bh(&sc->chan_lock);
1467 sc->cur_chan->rxfilter = *total_flags;
1468 spin_unlock_bh(&sc->chan_lock);
1469
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001470 ath9k_ps_wakeup(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301471 rfilt = ath_calcrxfilter(sc);
1472 ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
Jouni Malinenaa68aea2009-05-19 17:01:41 +03001473 ath9k_ps_restore(sc);
Sujith7dcfdcd2008-08-11 14:03:13 +05301474
Joe Perchesd2182b62011-12-15 14:55:53 -08001475 ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n",
1476 rfilt);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001477}
1478
Johannes Berg4ca77862010-02-19 19:06:56 +01001479static int ath9k_sta_add(struct ieee80211_hw *hw,
1480 struct ieee80211_vif *vif,
1481 struct ieee80211_sta *sta)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001483 struct ath_softc *sc = hw->priv;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001484 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1485 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1486 struct ieee80211_key_conf ps_key = { };
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001487 int key;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001488
Ben Greear7e1e3862011-11-03 11:33:13 -07001489 ath_node_attach(sc, sta, vif);
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001490
1491 if (vif->type != NL80211_IFTYPE_AP &&
1492 vif->type != NL80211_IFTYPE_AP_VLAN)
1493 return 0;
1494
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001495 key = ath_key_config(common, vif, sta, &ps_key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301496 if (key > 0) {
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001497 an->ps_key = key;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301498 an->key_idx[0] = key;
1499 }
Johannes Berg4ca77862010-02-19 19:06:56 +01001500
1501 return 0;
1502}
1503
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001504static void ath9k_del_ps_key(struct ath_softc *sc,
1505 struct ieee80211_vif *vif,
1506 struct ieee80211_sta *sta)
1507{
1508 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1509 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1510 struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
1511
1512 if (!an->ps_key)
1513 return;
1514
1515 ath_key_delete(common, &ps_key);
Felix Fietkau4ef69d02013-04-27 11:47:01 +02001516 an->ps_key = 0;
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301517 an->key_idx[0] = 0;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001518}
1519
Johannes Berg4ca77862010-02-19 19:06:56 +01001520static int ath9k_sta_remove(struct ieee80211_hw *hw,
1521 struct ieee80211_vif *vif,
1522 struct ieee80211_sta *sta)
1523{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001524 struct ath_softc *sc = hw->priv;
Johannes Berg4ca77862010-02-19 19:06:56 +01001525
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001526 ath9k_del_ps_key(sc, vif, sta);
Johannes Berg4ca77862010-02-19 19:06:56 +01001527 ath_node_detach(sc, sta);
1528
1529 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001530}
1531
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301532static int ath9k_sta_state(struct ieee80211_hw *hw,
1533 struct ieee80211_vif *vif,
1534 struct ieee80211_sta *sta,
1535 enum ieee80211_sta_state old_state,
1536 enum ieee80211_sta_state new_state)
1537{
1538 struct ath_softc *sc = hw->priv;
1539 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1540 int ret = 0;
1541
1542 if (old_state == IEEE80211_STA_AUTH &&
1543 new_state == IEEE80211_STA_ASSOC) {
1544 ret = ath9k_sta_add(hw, vif, sta);
1545 ath_dbg(common, CONFIG,
1546 "Add station: %pM\n", sta->addr);
1547 } else if (old_state == IEEE80211_STA_ASSOC &&
1548 new_state == IEEE80211_STA_AUTH) {
1549 ret = ath9k_sta_remove(hw, vif, sta);
1550 ath_dbg(common, CONFIG,
1551 "Remove station: %pM\n", sta->addr);
1552 }
1553
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301554 if (ath9k_is_chanctx_enabled()) {
Sujith Manoharan91e6ceb2014-10-17 07:40:19 +05301555 if (vif->type == NL80211_IFTYPE_STATION) {
1556 if (old_state == IEEE80211_STA_ASSOC &&
1557 new_state == IEEE80211_STA_AUTHORIZED)
1558 ath_chanctx_event(sc, vif,
1559 ATH_CHANCTX_EVENT_AUTHORIZED);
1560 }
Sujith Manoharanb8f92792014-10-17 07:40:09 +05301561 }
1562
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05301563 return ret;
1564}
1565
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301566static void ath9k_sta_set_tx_filter(struct ath_hw *ah,
1567 struct ath_node *an,
1568 bool set)
1569{
1570 int i;
1571
1572 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1573 if (!an->key_idx[i])
1574 continue;
1575 ath9k_hw_set_tx_filter(ah, an->key_idx[i], set);
1576 }
1577}
1578
Felix Fietkau55195412011-04-17 23:28:09 +02001579static void ath9k_sta_notify(struct ieee80211_hw *hw,
1580 struct ieee80211_vif *vif,
1581 enum sta_notify_cmd cmd,
1582 struct ieee80211_sta *sta)
1583{
1584 struct ath_softc *sc = hw->priv;
1585 struct ath_node *an = (struct ath_node *) sta->drv_priv;
1586
1587 switch (cmd) {
1588 case STA_NOTIFY_SLEEP:
1589 an->sleeping = true;
Johannes Berg042ec452011-09-29 16:04:26 +02001590 ath_tx_aggr_sleep(sta, sc, an);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301591 ath9k_sta_set_tx_filter(sc->sc_ah, an, true);
Felix Fietkau55195412011-04-17 23:28:09 +02001592 break;
1593 case STA_NOTIFY_AWAKE:
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301594 ath9k_sta_set_tx_filter(sc->sc_ah, an, false);
Felix Fietkau55195412011-04-17 23:28:09 +02001595 an->sleeping = false;
1596 ath_tx_aggr_wakeup(sc, an);
1597 break;
1598 }
1599}
1600
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001601static int ath9k_conf_tx(struct ieee80211_hw *hw,
1602 struct ieee80211_vif *vif, u16 queue,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001603 const struct ieee80211_tx_queue_params *params)
1604{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001605 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001606 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau066dae92010-11-07 14:59:39 +01001607 struct ath_txq *txq;
Sujithea9880f2008-08-07 10:53:10 +05301608 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001609 int ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001610
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301611 if (queue >= IEEE80211_NUM_ACS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001612 return 0;
1613
Felix Fietkau066dae92010-11-07 14:59:39 +01001614 txq = sc->tx.txq_map[queue];
1615
Felix Fietkau96f372c2011-04-07 19:07:17 +02001616 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301617 mutex_lock(&sc->mutex);
1618
Sujith1ffb0612009-03-30 15:28:46 +05301619 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
1620
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001621 qi.tqi_aifs = params->aifs;
1622 qi.tqi_cwmin = params->cw_min;
1623 qi.tqi_cwmax = params->cw_max;
Felix Fietkau531bd072012-07-15 19:53:34 +02001624 qi.tqi_burstTime = params->txop * 32;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001625
Joe Perchesd2182b62011-12-15 14:55:53 -08001626 ath_dbg(common, CONFIG,
Joe Perches226afe62010-12-02 19:12:37 -08001627 "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
1628 queue, txq->axq_qnum, params->aifs, params->cw_min,
1629 params->cw_max, params->txop);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001630
Felix Fietkauaa5955c2012-07-15 19:53:36 +02001631 ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime);
Felix Fietkau066dae92010-11-07 14:59:39 +01001632 ret = ath_txq_update(sc, txq->axq_qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001633 if (ret)
Joe Perches38002762010-12-02 19:12:36 -08001634 ath_err(common, "TXQ Update failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001635
Sujith141b38b2009-02-04 08:10:07 +05301636 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001637 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301638
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639 return ret;
1640}
1641
1642static int ath9k_set_key(struct ieee80211_hw *hw,
1643 enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01001644 struct ieee80211_vif *vif,
1645 struct ieee80211_sta *sta,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001646 struct ieee80211_key_conf *key)
1647{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001648 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001649 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301650 struct ath_node *an = NULL;
1651 int ret = 0, i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001652
John W. Linville3e6109c2011-01-05 09:39:17 -05001653 if (ath9k_modparam_nohwcrypt)
Jouni Malinenb3bd89c2009-02-24 13:42:01 +02001654 return -ENOSPC;
1655
Chun-Yeow Yeoh5bd5e9a2011-12-07 12:45:46 -08001656 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1657 vif->type == NL80211_IFTYPE_MESH_POINT) &&
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001658 (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
1659 key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
1660 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
1661 /*
1662 * For now, disable hw crypto for the RSN IBSS group keys. This
1663 * could be optimized in the future to use a modified key cache
1664 * design to support per-STA RX GTK, but until that gets
1665 * implemented, use of software crypto for group addressed
1666 * frames is a acceptable to allow RSN IBSS to be used.
1667 */
1668 return -EOPNOTSUPP;
1669 }
1670
Sujith141b38b2009-02-04 08:10:07 +05301671 mutex_lock(&sc->mutex);
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301672 ath9k_ps_wakeup(sc);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301673 ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd);
1674 if (sta)
1675 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001676
1677 switch (cmd) {
1678 case SET_KEY:
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001679 if (sta)
1680 ath9k_del_ps_key(sc, vif, sta);
1681
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301682 key->hw_key_idx = 0;
Bruno Randolf040e5392010-09-08 16:05:04 +09001683 ret = ath_key_config(common, vif, sta, key);
Jouni Malinen6ace2892008-12-17 13:32:17 +02001684 if (ret >= 0) {
1685 key->hw_key_idx = ret;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686 /* push IV and Michael MIC generation to stack */
1687 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Johannes Berg97359d12010-08-10 09:46:38 +02001688 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
Senthil Balasubramanian1b961752008-09-01 19:45:21 +05301689 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001690 if (sc->sc_ah->sw_mgmt_crypto_tx &&
Johannes Berg97359d12010-08-10 09:46:38 +02001691 key->cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Berge548c492012-09-04 17:08:23 +02001692 key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX;
Jouni Malinen6ace2892008-12-17 13:32:17 +02001693 ret = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001694 }
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301695 if (an && key->hw_key_idx) {
1696 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1697 if (an->key_idx[i])
1698 continue;
1699 an->key_idx[i] = key->hw_key_idx;
1700 break;
1701 }
1702 WARN_ON(i == ARRAY_SIZE(an->key_idx));
1703 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001704 break;
1705 case DISABLE_KEY:
Bruno Randolf040e5392010-09-08 16:05:04 +09001706 ath_key_delete(common, key);
Rajkumar Manoharan4bbf4412014-05-22 12:35:49 +05301707 if (an) {
1708 for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) {
1709 if (an->key_idx[i] != key->hw_key_idx)
1710 continue;
1711 an->key_idx[i] = 0;
1712 break;
1713 }
1714 }
1715 key->hw_key_idx = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001716 break;
1717 default:
1718 ret = -EINVAL;
1719 }
1720
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301721 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301722 mutex_unlock(&sc->mutex);
1723
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001724 return ret;
1725}
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301726
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001727static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
1728 struct ieee80211_vif *vif,
1729 struct ieee80211_bss_conf *bss_conf,
1730 u32 changed)
1731{
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301732#define CHECK_ANI \
1733 (BSS_CHANGED_ASSOC | \
1734 BSS_CHANGED_IBSS | \
1735 BSS_CHANGED_BEACON_ENABLED)
1736
Felix Fietkau9ac586152011-01-24 19:23:18 +01001737 struct ath_softc *sc = hw->priv;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001738 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001739 struct ath_common *common = ath9k_hw_common(ah);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001740 struct ath_vif *avp = (void *)vif->drv_priv;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001741 int slottime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742
Felix Fietkau96f372c2011-04-07 19:07:17 +02001743 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301744 mutex_lock(&sc->mutex);
1745
Rajkumar Manoharan9f619032012-03-10 05:06:49 +05301746 if (changed & BSS_CHANGED_ASSOC) {
Sujith Manoharan6c43c0902012-07-17 17:15:50 +05301747 ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n",
1748 bss_conf->bssid, bss_conf->assoc);
Sujithc6089cc2009-11-16 11:40:48 +05301749
Sujith Manoharan62ae1ae2014-10-17 07:40:20 +05301750 memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN);
Sujith Manoharancb355822014-09-17 14:45:56 +05301751 avp->aid = bss_conf->aid;
1752 avp->assoc = bss_conf->assoc;
1753
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301754 ath9k_calculate_summary_state(sc, avp->chanctx);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001755 }
1756
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301757 if (changed & BSS_CHANGED_IBSS) {
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301758 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
1759 common->curaid = bss_conf->aid;
1760 ath9k_hw_write_associd(sc->sc_ah);
Rajkumar Manoharan2e5ef452011-05-20 17:52:12 +05301761 }
1762
Sujith Manoharanef4ad632012-07-17 17:15:56 +05301763 if ((changed & BSS_CHANGED_BEACON_ENABLED) ||
Rajkumar Manoharan9198cf42014-06-26 16:54:40 +05301764 (changed & BSS_CHANGED_BEACON_INT) ||
1765 (changed & BSS_CHANGED_BEACON_INFO)) {
Sujith Manoharan9bf30ff92014-09-05 08:03:11 +05301766 ath9k_beacon_config(sc, vif, changed);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301767 if (changed & BSS_CHANGED_BEACON_ENABLED)
1768 ath9k_calculate_summary_state(sc, avp->chanctx);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301769 }
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001770
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05301771 if ((avp->chanctx == sc->cur_chan) &&
1772 (changed & BSS_CHANGED_ERP_SLOT)) {
Felix Fietkau0005baf2010-01-15 02:33:40 +01001773 if (bss_conf->use_short_slot)
1774 slottime = 9;
1775 else
1776 slottime = 20;
1777 if (vif->type == NL80211_IFTYPE_AP) {
1778 /*
1779 * Defer update, so that connected stations can adjust
1780 * their settings at the same time.
1781 * See beacon.c for more details
1782 */
1783 sc->beacon.slottime = slottime;
1784 sc->beacon.updateslot = UPDATE;
1785 } else {
1786 ah->slottime = slottime;
1787 ath9k_hw_init_global_settings(ah);
1788 }
1789 }
1790
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301791 if (changed & BSS_CHANGED_P2P_PS)
1792 ath9k_p2p_bss_info_changed(sc, vif);
Felix Fietkaud463af42014-04-06 00:37:03 +02001793
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301794 if (changed & CHECK_ANI)
1795 ath_check_ani(sc);
1796
Lorenzo Bianconi283dd112015-02-17 10:12:17 +01001797 if (changed & BSS_CHANGED_TXPOWER) {
1798 ath_dbg(common, CONFIG, "vif %pM power %d dbm power_type %d\n",
1799 vif->addr, bss_conf->txpower, bss_conf->txpower_type);
1800 ath9k_set_txpower(sc, vif);
1801 }
1802
Sujith141b38b2009-02-04 08:10:07 +05301803 mutex_unlock(&sc->mutex);
Felix Fietkau96f372c2011-04-07 19:07:17 +02001804 ath9k_ps_restore(sc);
Sujith Manoharanda0d45f2012-07-17 17:16:29 +05301805
1806#undef CHECK_ANI
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001807}
1808
Eliad Peller37a41b42011-09-21 14:06:11 +03001809static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001810{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001811 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001812 u64 tsf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001813
Sujith141b38b2009-02-04 08:10:07 +05301814 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301815 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301816 tsf = ath9k_hw_gettsf64(sc->sc_ah);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301817 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301818 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001819
1820 return tsf;
1821}
1822
Eliad Peller37a41b42011-09-21 14:06:11 +03001823static void ath9k_set_tsf(struct ieee80211_hw *hw,
1824 struct ieee80211_vif *vif,
1825 u64 tsf)
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001826{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001827 struct ath_softc *sc = hw->priv;
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001828
Sujith141b38b2009-02-04 08:10:07 +05301829 mutex_lock(&sc->mutex);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301830 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301831 ath9k_hw_settsf64(sc->sc_ah, tsf);
Sujith Manoharan9abbfb22010-12-10 11:27:06 +05301832 ath9k_ps_restore(sc);
Sujith141b38b2009-02-04 08:10:07 +05301833 mutex_unlock(&sc->mutex);
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01001834}
1835
Eliad Peller37a41b42011-09-21 14:06:11 +03001836static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001837{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001838 struct ath_softc *sc = hw->priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839
Sujith141b38b2009-02-04 08:10:07 +05301840 mutex_lock(&sc->mutex);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001841
1842 ath9k_ps_wakeup(sc);
Sujith141b38b2009-02-04 08:10:07 +05301843 ath9k_hw_reset_tsf(sc->sc_ah);
Luis R. Rodriguez21526d52009-09-09 20:05:39 -07001844 ath9k_ps_restore(sc);
1845
Sujith141b38b2009-02-04 08:10:07 +05301846 mutex_unlock(&sc->mutex);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001847}
1848
1849static int ath9k_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01001850 struct ieee80211_vif *vif,
Sujith141b38b2009-02-04 08:10:07 +05301851 enum ieee80211_ampdu_mlme_action action,
1852 struct ieee80211_sta *sta,
Johannes Berg0b01f032011-01-18 13:51:05 +01001853 u16 tid, u16 *ssn, u8 buf_size)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001854{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001855 struct ath_softc *sc = hw->priv;
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301856 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau16e23422013-05-17 12:58:24 +02001857 bool flush = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001858 int ret = 0;
1859
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301860 mutex_lock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001861
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001862 switch (action) {
1863 case IEEE80211_AMPDU_RX_START:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864 break;
1865 case IEEE80211_AMPDU_RX_STOP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001866 break;
1867 case IEEE80211_AMPDU_TX_START:
Sujith Manoharan1e929d32014-10-17 07:40:30 +05301868 if (ath9k_is_chanctx_enabled()) {
1869 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
1870 ret = -EBUSY;
1871 break;
1872 }
1873 }
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001874 ath9k_ps_wakeup(sc);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001875 ret = ath_tx_aggr_start(sc, sta, tid, ssn);
1876 if (!ret)
1877 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001878 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001879 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001880 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1881 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Felix Fietkau16e23422013-05-17 12:58:24 +02001882 flush = true;
1883 case IEEE80211_AMPDU_TX_STOP_CONT:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001884 ath9k_ps_wakeup(sc);
Sujithf83da962009-07-23 15:32:37 +05301885 ath_tx_aggr_stop(sc, sta, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001886 if (!flush)
Felix Fietkau16e23422013-05-17 12:58:24 +02001887 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001888 ath9k_ps_restore(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889 break;
Johannes Bergb1720232009-03-23 17:28:39 +01001890 case IEEE80211_AMPDU_TX_OPERATIONAL:
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001891 ath9k_ps_wakeup(sc);
Sujith8469cde2008-10-29 10:19:28 +05301892 ath_tx_aggr_resume(sc, sta, tid);
Luis R. Rodriguez8b685ba2009-12-23 20:03:29 -05001893 ath9k_ps_restore(sc);
Sujith8469cde2008-10-29 10:19:28 +05301894 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001895 default:
Joe Perches38002762010-12-02 19:12:36 -08001896 ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 }
1898
Sujith Manoharan7ca7c772013-05-08 05:03:32 +05301899 mutex_unlock(&sc->mutex);
Johannes Berg85ad1812010-06-10 10:21:49 +02001900
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901 return ret;
1902}
1903
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001904static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
1905 struct survey_info *survey)
1906{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001907 struct ath_softc *sc = hw->priv;
Felix Fietkau34300982010-10-10 18:21:52 +02001908 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39162db2010-09-29 19:12:06 +02001909 struct ieee80211_supported_band *sband;
Felix Fietkau34300982010-10-10 18:21:52 +02001910 struct ieee80211_channel *chan;
Felix Fietkau34300982010-10-10 18:21:52 +02001911 int pos;
1912
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001913 if (config_enabled(CONFIG_ATH9K_TX99))
1914 return -EOPNOTSUPP;
1915
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301916 spin_lock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001917 if (idx == 0)
1918 ath_update_survey_stats(sc);
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001919
Felix Fietkau39162db2010-09-29 19:12:06 +02001920 sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
1921 if (sband && idx >= sband->n_channels) {
1922 idx -= sband->n_channels;
1923 sband = NULL;
1924 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001925
Felix Fietkau39162db2010-09-29 19:12:06 +02001926 if (!sband)
1927 sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
1928
Felix Fietkau34300982010-10-10 18:21:52 +02001929 if (!sband || idx >= sband->n_channels) {
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301930 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001931 return -ENOENT;
Felix Fietkau4f1a5a42010-09-29 17:15:28 +02001932 }
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001933
Felix Fietkau34300982010-10-10 18:21:52 +02001934 chan = &sband->channels[idx];
1935 pos = chan->hw_value;
1936 memcpy(survey, &sc->survey[pos], sizeof(*survey));
1937 survey->channel = chan;
Sujith Manoharanb7cc9b92013-12-26 08:14:40 +05301938 spin_unlock_bh(&common->cc_lock);
Felix Fietkau34300982010-10-10 18:21:52 +02001939
Benoit Papillault62dad5b2010-04-28 00:08:24 +02001940 return 0;
1941}
1942
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001943static void ath9k_enable_dynack(struct ath_softc *sc)
1944{
1945#ifdef CONFIG_ATH9K_DYNACK
1946 u32 rfilt;
1947 struct ath_hw *ah = sc->sc_ah;
1948
1949 ath_dynack_reset(ah);
1950
1951 ah->dynack.enabled = true;
1952 rfilt = ath_calcrxfilter(sc);
1953 ath9k_hw_setrxfilter(ah, rfilt);
1954#endif
1955}
1956
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02001957static void ath9k_set_coverage_class(struct ieee80211_hw *hw,
1958 s16 coverage_class)
Felix Fietkaue239d852010-01-15 02:34:58 +01001959{
Felix Fietkau9ac586152011-01-24 19:23:18 +01001960 struct ath_softc *sc = hw->priv;
Felix Fietkaue239d852010-01-15 02:34:58 +01001961 struct ath_hw *ah = sc->sc_ah;
1962
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001963 if (config_enabled(CONFIG_ATH9K_TX99))
1964 return;
1965
Felix Fietkaue239d852010-01-15 02:34:58 +01001966 mutex_lock(&sc->mutex);
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301967
Lorenzo Bianconi24a19362014-09-16 02:13:15 +02001968 if (coverage_class >= 0) {
1969 ah->coverage_class = coverage_class;
1970 if (ah->dynack.enabled) {
1971 u32 rfilt;
1972
1973 ah->dynack.enabled = false;
1974 rfilt = ath_calcrxfilter(sc);
1975 ath9k_hw_setrxfilter(ah, rfilt);
1976 }
1977 ath9k_ps_wakeup(sc);
1978 ath9k_hw_init_global_settings(ah);
1979 ath9k_ps_restore(sc);
1980 } else if (!ah->dynack.enabled) {
1981 ath9k_enable_dynack(sc);
1982 }
Mohammed Shafi Shajakhan8b2a38272011-08-24 21:38:07 +05301983
Felix Fietkaue239d852010-01-15 02:34:58 +01001984 mutex_unlock(&sc->mutex);
1985}
1986
Sujith Manoharane2d389b2014-10-17 07:40:18 +05301987static bool ath9k_has_tx_pending(struct ath_softc *sc,
1988 bool sw_pending)
Felix Fietkau10e23182013-11-11 22:23:35 +01001989{
Geert Uytterhoevenf7838072014-01-26 11:53:21 +01001990 int i, npend = 0;
Felix Fietkau10e23182013-11-11 22:23:35 +01001991
1992 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1993 if (!ATH_TXQ_SETUP(sc, i))
1994 continue;
1995
Sujith Manoharane2d389b2014-10-17 07:40:18 +05301996 npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i],
1997 sw_pending);
Felix Fietkau10e23182013-11-11 22:23:35 +01001998 if (npend)
1999 break;
2000 }
2001
2002 return !!npend;
2003}
2004
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002005static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2006 u32 queues, bool drop)
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002007{
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002008 struct ath_softc *sc = hw->priv;
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302009 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkaubff11762014-06-11 16:17:52 +05302010
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302011 if (ath9k_is_chanctx_enabled()) {
2012 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2013 goto flush;
2014
2015 /*
2016 * If MCC is active, extend the flush timeout
2017 * and wait for the HW/SW queues to become
2018 * empty. This needs to be done outside the
2019 * sc->mutex lock to allow the channel scheduler
2020 * to switch channel contexts.
2021 *
2022 * The vif queues have been stopped in mac80211,
2023 * so there won't be any incoming frames.
2024 */
2025 __ath9k_flush(hw, queues, drop, true, true);
2026 return;
2027 }
2028flush:
Felix Fietkaubff11762014-06-11 16:17:52 +05302029 mutex_lock(&sc->mutex);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302030 __ath9k_flush(hw, queues, drop, true, false);
Felix Fietkaubff11762014-06-11 16:17:52 +05302031 mutex_unlock(&sc->mutex);
2032}
2033
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302034void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop,
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302035 bool sw_pending, bool timeout_override)
Felix Fietkaubff11762014-06-11 16:17:52 +05302036{
2037 struct ath_softc *sc = hw->priv;
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302038 struct ath_hw *ah = sc->sc_ah;
2039 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302040 int timeout;
Rajkumar Manoharan2f6fc352011-04-28 15:31:57 +05302041 bool drain_txq;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002042
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002043 cancel_delayed_work_sync(&sc->tx_complete_work);
2044
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302045 if (ah->ah_flags & AH_UNPLUGGED) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002046 ath_dbg(common, ANY, "Device has been unplugged!\n");
Mohammed Shafi Shajakhan6a6b3f32011-09-09 10:41:08 +05302047 return;
2048 }
2049
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002050 if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002051 ath_dbg(common, ANY, "Device not present\n");
Mohammed Shafi Shajakhan99aa55b2011-05-06 20:43:11 +05302052 return;
2053 }
2054
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302055 spin_lock_bh(&sc->chan_lock);
Sujith Manoharan25f3bc72014-10-17 07:40:29 +05302056 if (timeout_override)
2057 timeout = HZ / 5;
2058 else
2059 timeout = sc->cur_chan->flush_timeout;
Sujith Manoharan2fae0d92014-10-17 07:40:15 +05302060 spin_unlock_bh(&sc->chan_lock);
2061
2062 ath_dbg(common, CHAN_CTX,
2063 "Flush timeout: %d\n", jiffies_to_msecs(timeout));
2064
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302065 if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending),
Felix Fietkau10e23182013-11-11 22:23:35 +01002066 timeout) > 0)
2067 drop = false;
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002068
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002069 if (drop) {
2070 ath9k_ps_wakeup(sc);
2071 spin_lock_bh(&sc->sc_pcu_lock);
Felix Fietkau13815592013-01-20 18:51:53 +01002072 drain_txq = ath_drain_all_txq(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002073 spin_unlock_bh(&sc->sc_pcu_lock);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002074
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002075 if (!drain_txq)
Sujith Manoharan5555c952014-10-17 07:40:11 +05302076 ath_reset(sc, NULL);
Felix Fietkau9adcf442011-09-03 01:40:26 +02002077
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002078 ath9k_ps_restore(sc);
Felix Fietkau9df0d6a2011-11-16 13:08:42 +01002079 }
Senthil Balasubramaniand78f4b32011-03-23 23:07:22 +05302080
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002081 ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002082}
2083
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302084static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
2085{
2086 struct ath_softc *sc = hw->priv;
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302087
Sujith Manoharane2d389b2014-10-17 07:40:18 +05302088 return ath9k_has_tx_pending(sc, true);
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302089}
2090
Mohammed Shafi Shajakhan5595f112011-05-19 18:08:57 +05302091static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002092{
2093 struct ath_softc *sc = hw->priv;
2094 struct ath_hw *ah = sc->sc_ah;
2095 struct ieee80211_vif *vif;
2096 struct ath_vif *avp;
2097 struct ath_buf *bf;
2098 struct ath_tx_status ts;
Felix Fietkau4286df62012-02-27 19:58:40 +01002099 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Felix Fietkauba4903f2011-05-17 21:09:54 +02002100 int status;
2101
2102 vif = sc->beacon.bslot[0];
2103 if (!vif)
2104 return 0;
2105
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302106 if (!vif->bss_conf.enable_beacon)
Felix Fietkauba4903f2011-05-17 21:09:54 +02002107 return 0;
2108
Sujith Manoharanaa45fe92012-07-17 17:16:03 +05302109 avp = (void *)vif->drv_priv;
2110
Felix Fietkau4286df62012-02-27 19:58:40 +01002111 if (!sc->beacon.tx_processed && !edma) {
Felix Fietkauba4903f2011-05-17 21:09:54 +02002112 tasklet_disable(&sc->bcon_tasklet);
2113
2114 bf = avp->av_bcbuf;
2115 if (!bf || !bf->bf_mpdu)
2116 goto skip;
2117
2118 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
2119 if (status == -EINPROGRESS)
2120 goto skip;
2121
2122 sc->beacon.tx_processed = true;
2123 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2124
2125skip:
2126 tasklet_enable(&sc->bcon_tasklet);
2127 }
2128
2129 return sc->beacon.tx_last;
2130}
2131
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302132static int ath9k_get_stats(struct ieee80211_hw *hw,
2133 struct ieee80211_low_level_stats *stats)
2134{
2135 struct ath_softc *sc = hw->priv;
2136 struct ath_hw *ah = sc->sc_ah;
2137 struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats;
2138
2139 stats->dot11ACKFailureCount = mib_stats->ackrcv_bad;
2140 stats->dot11RTSFailureCount = mib_stats->rts_bad;
2141 stats->dot11FCSErrorCount = mib_stats->fcs_bad;
2142 stats->dot11RTSSuccessCount = mib_stats->rts_good;
2143 return 0;
2144}
2145
Felix Fietkau43c35282011-09-03 01:40:27 +02002146static u32 fill_chainmask(u32 cap, u32 new)
2147{
2148 u32 filled = 0;
2149 int i;
2150
2151 for (i = 0; cap && new; i++, cap >>= 1) {
2152 if (!(cap & BIT(0)))
2153 continue;
2154
2155 if (new & BIT(0))
2156 filled |= BIT(i);
2157
2158 new >>= 1;
2159 }
2160
2161 return filled;
2162}
2163
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002164static bool validate_antenna_mask(struct ath_hw *ah, u32 val)
2165{
Felix Fietkaufea92cb2013-01-20 21:55:22 +01002166 if (AR_SREV_9300_20_OR_LATER(ah))
2167 return true;
2168
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002169 switch (val & 0x7) {
2170 case 0x1:
2171 case 0x3:
2172 case 0x7:
2173 return true;
2174 case 0x2:
2175 return (ah->caps.rx_chainmask == 1);
2176 default:
2177 return false;
2178 }
2179}
2180
Felix Fietkau43c35282011-09-03 01:40:27 +02002181static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
2182{
2183 struct ath_softc *sc = hw->priv;
2184 struct ath_hw *ah = sc->sc_ah;
2185
Felix Fietkau5d9c7e32012-07-15 19:53:30 +02002186 if (ah->caps.rx_chainmask != 1)
2187 rx_ant |= tx_ant;
2188
2189 if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
Felix Fietkau43c35282011-09-03 01:40:27 +02002190 return -EINVAL;
2191
2192 sc->ant_rx = rx_ant;
2193 sc->ant_tx = tx_ant;
2194
2195 if (ah->caps.rx_chainmask == 1)
2196 return 0;
2197
2198 /* AR9100 runs into calibration issues if not all rx chains are enabled */
2199 if (AR_SREV_9100(ah))
2200 ah->rxchainmask = 0x7;
2201 else
2202 ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant);
2203
2204 ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01002205 ath9k_cmn_reload_chainmask(ah);
Felix Fietkau43c35282011-09-03 01:40:27 +02002206
2207 return 0;
2208}
2209
2210static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
2211{
2212 struct ath_softc *sc = hw->priv;
2213
2214 *tx_ant = sc->ant_tx;
2215 *rx_ant = sc->ant_rx;
2216 return 0;
2217}
2218
Johannes Berga344d672014-06-12 22:24:31 +02002219static void ath9k_sw_scan_start(struct ieee80211_hw *hw,
2220 struct ieee80211_vif *vif,
2221 const u8 *mac_addr)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002222{
2223 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002224 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2225 set_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002226}
2227
Johannes Berga344d672014-06-12 22:24:31 +02002228static void ath9k_sw_scan_complete(struct ieee80211_hw *hw,
2229 struct ieee80211_vif *vif)
Simon Wunderliche93d0832013-01-08 14:48:58 +01002230{
2231 struct ath_softc *sc = hw->priv;
Oleksij Rempeleefa01d2014-02-27 11:40:46 +01002232 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2233 clear_bit(ATH_OP_SCANNING, &common->op_flags);
Simon Wunderliche93d0832013-01-08 14:48:58 +01002234}
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302235
Sujith Manoharan499afac2014-08-22 20:39:31 +05302236#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
2237
Sujith Manoharan61856722014-11-16 06:11:07 +05302238static void ath9k_cancel_pending_offchannel(struct ath_softc *sc)
2239{
2240 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2241
2242 if (sc->offchannel.roc_vif) {
2243 ath_dbg(common, CHAN_CTX,
2244 "%s: Aborting RoC\n", __func__);
2245
2246 del_timer_sync(&sc->offchannel.timer);
2247 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2248 ath_roc_complete(sc, true);
2249 }
2250
2251 if (test_bit(ATH_OP_SCANNING, &common->op_flags)) {
2252 ath_dbg(common, CHAN_CTX,
2253 "%s: Aborting HW scan\n", __func__);
2254
2255 del_timer_sync(&sc->offchannel.timer);
2256 ath_scan_complete(sc, true);
2257 }
2258}
2259
Felix Fietkau78b21942014-06-11 16:17:55 +05302260static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
John W. Linville855df362014-06-25 15:15:14 -04002261 struct ieee80211_scan_request *hw_req)
Felix Fietkau78b21942014-06-11 16:17:55 +05302262{
John W. Linville855df362014-06-25 15:15:14 -04002263 struct cfg80211_scan_request *req = &hw_req->req;
Felix Fietkau78b21942014-06-11 16:17:55 +05302264 struct ath_softc *sc = hw->priv;
2265 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2266 int ret = 0;
2267
2268 mutex_lock(&sc->mutex);
2269
2270 if (WARN_ON(sc->offchannel.scan_req)) {
2271 ret = -EBUSY;
2272 goto out;
2273 }
2274
2275 ath9k_ps_wakeup(sc);
2276 set_bit(ATH_OP_SCANNING, &common->op_flags);
2277 sc->offchannel.scan_vif = vif;
2278 sc->offchannel.scan_req = req;
2279 sc->offchannel.scan_idx = 0;
Felix Fietkau78b21942014-06-11 16:17:55 +05302280
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302281 ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n",
2282 vif->addr);
2283
2284 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2285 ath_dbg(common, CHAN_CTX, "Starting HW scan\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302286 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302287 }
Felix Fietkau78b21942014-06-11 16:17:55 +05302288
2289out:
2290 mutex_unlock(&sc->mutex);
2291
2292 return ret;
2293}
2294
2295static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw,
2296 struct ieee80211_vif *vif)
2297{
2298 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302299 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2300
2301 ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr);
Felix Fietkau78b21942014-06-11 16:17:55 +05302302
2303 mutex_lock(&sc->mutex);
2304 del_timer_sync(&sc->offchannel.timer);
2305 ath_scan_complete(sc, true);
2306 mutex_unlock(&sc->mutex);
2307}
2308
Felix Fietkau405393c2014-06-11 16:17:56 +05302309static int ath9k_remain_on_channel(struct ieee80211_hw *hw,
2310 struct ieee80211_vif *vif,
2311 struct ieee80211_channel *chan, int duration,
2312 enum ieee80211_roc_type type)
2313{
2314 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302315 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302316 int ret = 0;
2317
2318 mutex_lock(&sc->mutex);
2319
2320 if (WARN_ON(sc->offchannel.roc_vif)) {
2321 ret = -EBUSY;
2322 goto out;
2323 }
2324
2325 ath9k_ps_wakeup(sc);
2326 sc->offchannel.roc_vif = vif;
2327 sc->offchannel.roc_chan = chan;
2328 sc->offchannel.roc_duration = duration;
2329
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302330 ath_dbg(common, CHAN_CTX,
2331 "RoC request on vif: %pM, type: %d duration: %d\n",
2332 vif->addr, type, duration);
2333
2334 if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) {
2335 ath_dbg(common, CHAN_CTX, "Starting RoC period\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302336 ath_offchannel_next(sc);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302337 }
Felix Fietkau405393c2014-06-11 16:17:56 +05302338
2339out:
2340 mutex_unlock(&sc->mutex);
2341
2342 return ret;
2343}
2344
2345static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw)
2346{
2347 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302348 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau405393c2014-06-11 16:17:56 +05302349
2350 mutex_lock(&sc->mutex);
2351
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302352 ath_dbg(common, CHAN_CTX, "Cancel RoC\n");
Felix Fietkau405393c2014-06-11 16:17:56 +05302353 del_timer_sync(&sc->offchannel.timer);
2354
2355 if (sc->offchannel.roc_vif) {
2356 if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START)
2357 ath_roc_complete(sc, true);
2358 }
2359
2360 mutex_unlock(&sc->mutex);
2361
2362 return 0;
2363}
2364
Felix Fietkau39305632014-06-11 16:17:57 +05302365static int ath9k_add_chanctx(struct ieee80211_hw *hw,
2366 struct ieee80211_chanctx_conf *conf)
2367{
2368 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302369 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302370 struct ath_chanctx *ctx, **ptr;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302371 int pos;
Felix Fietkau39305632014-06-11 16:17:57 +05302372
2373 mutex_lock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302374
2375 ath_for_each_chanctx(sc, ctx) {
2376 if (ctx->assigned)
2377 continue;
2378
2379 ptr = (void *) conf->drv_priv;
2380 *ptr = ctx;
2381 ctx->assigned = true;
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302382 pos = ctx - &sc->chanctx[0];
2383 ctx->hw_queue_base = pos * IEEE80211_NUM_ACS;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302384
2385 ath_dbg(common, CHAN_CTX,
2386 "Add channel context: %d MHz\n",
2387 conf->def.chan->center_freq);
2388
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302389 ath_chanctx_set_channel(sc, ctx, &conf->def);
Sujith Manoharan4c7e9ae2014-08-24 21:16:13 +05302390
Felix Fietkau39305632014-06-11 16:17:57 +05302391 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302392 return 0;
Felix Fietkau39305632014-06-11 16:17:57 +05302393 }
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302394
Felix Fietkau39305632014-06-11 16:17:57 +05302395 mutex_unlock(&sc->mutex);
Rajkumar Manoharanc4dc0d02014-06-11 16:17:58 +05302396 return -ENOSPC;
Felix Fietkau39305632014-06-11 16:17:57 +05302397}
2398
2399
2400static void ath9k_remove_chanctx(struct ieee80211_hw *hw,
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_chanctx *ctx = ath_chanctx_get(conf);
2406
2407 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302408
2409 ath_dbg(common, CHAN_CTX,
2410 "Remove channel context: %d MHz\n",
2411 conf->def.chan->center_freq);
2412
Felix Fietkau39305632014-06-11 16:17:57 +05302413 ctx->assigned = false;
Sujith Manoharanb18111d2014-10-07 10:14:37 +05302414 ctx->hw_queue_base = 0;
Felix Fietkau73fa2f22014-06-11 16:18:10 +05302415 ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302416
Felix Fietkau39305632014-06-11 16:17:57 +05302417 mutex_unlock(&sc->mutex);
2418}
2419
2420static void ath9k_change_chanctx(struct ieee80211_hw *hw,
2421 struct ieee80211_chanctx_conf *conf,
2422 u32 changed)
2423{
2424 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302425 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302426 struct ath_chanctx *ctx = ath_chanctx_get(conf);
2427
2428 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302429 ath_dbg(common, CHAN_CTX,
2430 "Change channel context: %d MHz\n",
2431 conf->def.chan->center_freq);
Felix Fietkau39305632014-06-11 16:17:57 +05302432 ath_chanctx_set_channel(sc, ctx, &conf->def);
2433 mutex_unlock(&sc->mutex);
2434}
2435
2436static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw,
2437 struct ieee80211_vif *vif,
2438 struct ieee80211_chanctx_conf *conf)
2439{
2440 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302441 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302442 struct ath_vif *avp = (void *)vif->drv_priv;
2443 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302444 int i;
Felix Fietkau39305632014-06-11 16:17:57 +05302445
Sujith Manoharan61856722014-11-16 06:11:07 +05302446 ath9k_cancel_pending_offchannel(sc);
2447
Felix Fietkau39305632014-06-11 16:17:57 +05302448 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302449
2450 ath_dbg(common, CHAN_CTX,
2451 "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n",
2452 vif->addr, vif->type, vif->p2p,
2453 conf->def.chan->center_freq);
2454
Felix Fietkau39305632014-06-11 16:17:57 +05302455 avp->chanctx = ctx;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302456 ctx->nvifs_assigned++;
Felix Fietkau39305632014-06-11 16:17:57 +05302457 list_add_tail(&avp->list, &ctx->vifs);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302458 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302459 for (i = 0; i < IEEE80211_NUM_ACS; i++)
2460 vif->hw_queue[i] = ctx->hw_queue_base + i;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302461
Felix Fietkau39305632014-06-11 16:17:57 +05302462 mutex_unlock(&sc->mutex);
2463
2464 return 0;
2465}
2466
2467static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw,
2468 struct ieee80211_vif *vif,
2469 struct ieee80211_chanctx_conf *conf)
2470{
2471 struct ath_softc *sc = hw->priv;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302472 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau39305632014-06-11 16:17:57 +05302473 struct ath_vif *avp = (void *)vif->drv_priv;
2474 struct ath_chanctx *ctx = ath_chanctx_get(conf);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302475 int ac;
Felix Fietkau39305632014-06-11 16:17:57 +05302476
Sujith Manoharan61856722014-11-16 06:11:07 +05302477 ath9k_cancel_pending_offchannel(sc);
2478
Felix Fietkau39305632014-06-11 16:17:57 +05302479 mutex_lock(&sc->mutex);
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302480
2481 ath_dbg(common, CHAN_CTX,
2482 "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n",
2483 vif->addr, vif->type, vif->p2p,
2484 conf->def.chan->center_freq);
2485
Felix Fietkau39305632014-06-11 16:17:57 +05302486 avp->chanctx = NULL;
Sujith Manoharan2ce73c02014-09-19 13:00:42 +05302487 ctx->nvifs_assigned--;
Felix Fietkau39305632014-06-11 16:17:57 +05302488 list_del(&avp->list);
Rajkumar Manoharan9a9c4fb2014-06-11 16:18:03 +05302489 ath9k_calculate_summary_state(sc, ctx);
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +05302490 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2491 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302492
Felix Fietkau39305632014-06-11 16:17:57 +05302493 mutex_unlock(&sc->mutex);
2494}
2495
Sujith Manoharane20a8542014-08-23 13:29:09 +05302496static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw,
2497 struct ieee80211_vif *vif)
2498{
2499 struct ath_softc *sc = hw->priv;
2500 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2501 struct ath_vif *avp = (struct ath_vif *) vif->drv_priv;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302502 struct ath_beacon_config *cur_conf;
2503 struct ath_chanctx *go_ctx;
2504 unsigned long timeout;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302505 bool changed = false;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302506 u32 beacon_int;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302507
2508 if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags))
2509 return;
2510
2511 if (!avp->chanctx)
2512 return;
2513
2514 mutex_lock(&sc->mutex);
2515
2516 spin_lock_bh(&sc->chan_lock);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302517 if (sc->next_chan || (sc->cur_chan != avp->chanctx))
Sujith Manoharane20a8542014-08-23 13:29:09 +05302518 changed = true;
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302519 spin_unlock_bh(&sc->chan_lock);
2520
2521 if (!changed)
2522 goto out;
2523
Sujith Manoharan61856722014-11-16 06:11:07 +05302524 ath9k_cancel_pending_offchannel(sc);
Sujith Manoharan23aab0c2014-10-17 07:40:28 +05302525
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302526 go_ctx = ath_is_go_chanctx_present(sc);
2527
2528 if (go_ctx) {
2529 /*
2530 * Wait till the GO interface gets a chance
2531 * to send out an NoA.
2532 */
2533 spin_lock_bh(&sc->chan_lock);
2534 sc->sched.mgd_prepare_tx = true;
2535 cur_conf = &go_ctx->beacon;
2536 beacon_int = TU_TO_USEC(cur_conf->beacon_interval);
2537 spin_unlock_bh(&sc->chan_lock);
2538
Sujith Manoharan61856722014-11-16 06:11:07 +05302539 timeout = usecs_to_jiffies(beacon_int * 2);
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302540 init_completion(&sc->go_beacon);
2541
Sujith Manoharan61856722014-11-16 06:11:07 +05302542 mutex_unlock(&sc->mutex);
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302543
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302544 if (wait_for_completion_timeout(&sc->go_beacon,
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302545 timeout) == 0) {
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302546 ath_dbg(common, CHAN_CTX,
2547 "Failed to send new NoA\n");
Sujith Manoharan2c3634a2014-11-16 06:11:08 +05302548
2549 spin_lock_bh(&sc->chan_lock);
2550 sc->sched.mgd_prepare_tx = false;
2551 spin_unlock_bh(&sc->chan_lock);
2552 }
2553
Sujith Manoharan61856722014-11-16 06:11:07 +05302554 mutex_lock(&sc->mutex);
Sujith Manoharane20a8542014-08-23 13:29:09 +05302555 }
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302556
Sujith Manoharan878066e2014-08-27 12:07:24 +05302557 ath_dbg(common, CHAN_CTX,
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302558 "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n",
2559 __func__, vif->addr);
2560
2561 spin_lock_bh(&sc->chan_lock);
2562 sc->next_chan = avp->chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302563 sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE;
2564 spin_unlock_bh(&sc->chan_lock);
2565
Sujith Manoharanc6500ea2014-10-17 07:40:22 +05302566 ath_chanctx_set_next(sc, true);
2567out:
Sujith Manoharane20a8542014-08-23 13:29:09 +05302568 mutex_unlock(&sc->mutex);
2569}
2570
Felix Fietkau78b21942014-06-11 16:17:55 +05302571void ath9k_fill_chanctx_ops(void)
2572{
Sujith Manoharan499afac2014-08-22 20:39:31 +05302573 if (!ath9k_is_chanctx_enabled())
Felix Fietkau78b21942014-06-11 16:17:55 +05302574 return;
2575
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302576 ath9k_ops.hw_scan = ath9k_hw_scan;
2577 ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan;
2578 ath9k_ops.remain_on_channel = ath9k_remain_on_channel;
Felix Fietkau405393c2014-06-11 16:17:56 +05302579 ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel;
Sujith Manoharanbc81d432014-08-22 20:39:27 +05302580 ath9k_ops.add_chanctx = ath9k_add_chanctx;
2581 ath9k_ops.remove_chanctx = ath9k_remove_chanctx;
2582 ath9k_ops.change_chanctx = ath9k_change_chanctx;
2583 ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx;
2584 ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx;
Sujith Manoharane20a8542014-08-23 13:29:09 +05302585 ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx;
Felix Fietkau78b21942014-06-11 16:17:55 +05302586}
2587
Sujith Manoharan499afac2014-08-22 20:39:31 +05302588#endif
2589
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002590static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2591 int *dbm)
2592{
2593 struct ath_softc *sc = hw->priv;
2594 struct ath_vif *avp = (void *)vif->drv_priv;
2595
2596 mutex_lock(&sc->mutex);
2597 if (avp->chanctx)
2598 *dbm = avp->chanctx->cur_txpower;
2599 else
2600 *dbm = sc->cur_chan->cur_txpower;
2601 mutex_unlock(&sc->mutex);
2602
2603 *dbm /= 2;
2604
2605 return 0;
2606}
2607
Gabor Juhos6baff7f2009-01-14 20:17:06 +01002608struct ieee80211_ops ath9k_ops = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002609 .tx = ath9k_tx,
2610 .start = ath9k_start,
2611 .stop = ath9k_stop,
2612 .add_interface = ath9k_add_interface,
Rajkumar Manoharan6b3b9912010-12-08 19:38:55 +05302613 .change_interface = ath9k_change_interface,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002614 .remove_interface = ath9k_remove_interface,
2615 .config = ath9k_config,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002616 .configure_filter = ath9k_configure_filter,
Sujith Manoharandf3c6eb2014-10-17 07:40:08 +05302617 .sta_state = ath9k_sta_state,
Felix Fietkau55195412011-04-17 23:28:09 +02002618 .sta_notify = ath9k_sta_notify,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002619 .conf_tx = ath9k_conf_tx,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002620 .bss_info_changed = ath9k_bss_info_changed,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002621 .set_key = ath9k_set_key,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002622 .get_tsf = ath9k_get_tsf,
Alina Friedrichsen3b5d6652009-01-24 07:09:59 +01002623 .set_tsf = ath9k_set_tsf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002624 .reset_tsf = ath9k_reset_tsf,
Johannes Berg4233df62008-10-13 13:35:05 +02002625 .ampdu_action = ath9k_ampdu_action,
Benoit Papillault62dad5b2010-04-28 00:08:24 +02002626 .get_survey = ath9k_get_survey,
Johannes Berg3b319aa2009-06-13 14:50:26 +05302627 .rfkill_poll = ath9k_rfkill_poll_state,
Felix Fietkaue239d852010-01-15 02:34:58 +01002628 .set_coverage_class = ath9k_set_coverage_class,
Vasanthakumar Thiagarajan69081622011-02-19 01:13:42 -08002629 .flush = ath9k_flush,
Vivek Natarajan15b91e82011-04-06 11:41:11 +05302630 .tx_frames_pending = ath9k_tx_frames_pending,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302631 .tx_last_beacon = ath9k_tx_last_beacon,
Felix Fietkau86a22ac2013-06-07 18:12:01 +02002632 .release_buffered_frames = ath9k_release_buffered_frames,
Mohammed Shafi Shajakhan52c94f42011-08-20 17:21:42 +05302633 .get_stats = ath9k_get_stats,
Felix Fietkau43c35282011-09-03 01:40:27 +02002634 .set_antenna = ath9k_set_antenna,
2635 .get_antenna = ath9k_get_antenna,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002636
Sujith Manoharane60001e2013-10-28 12:22:04 +05302637#ifdef CONFIG_ATH9K_WOW
Mohammed Shafi Shajakhanb11e6402012-07-10 14:56:52 +05302638 .suspend = ath9k_suspend,
2639 .resume = ath9k_resume,
2640 .set_wakeup = ath9k_set_wakeup,
2641#endif
2642
Ben Greearb90bd9d2012-05-15 15:33:25 -07002643#ifdef CONFIG_ATH9K_DEBUGFS
2644 .get_et_sset_count = ath9k_get_et_sset_count,
Sujith Manoharana145daf2012-11-28 15:08:54 +05302645 .get_et_stats = ath9k_get_et_stats,
2646 .get_et_strings = ath9k_get_et_strings,
2647#endif
2648
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +05302649#if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS)
Sujith Manoharana145daf2012-11-28 15:08:54 +05302650 .sta_add_debugfs = ath9k_sta_add_debugfs,
Ben Greearb90bd9d2012-05-15 15:33:25 -07002651#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01002652 .sw_scan_start = ath9k_sw_scan_start,
2653 .sw_scan_complete = ath9k_sw_scan_complete,
Felix Fietkaud385c5c2014-11-04 16:56:57 +01002654 .get_txpower = ath9k_get_txpower,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002655};