Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2011 Atheros Communications Inc. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3 | * |
| 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. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 17 | #include <linux/nl80211.h> |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 18 | #include <linux/delay.h> |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 19 | #include "ath9k.h" |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 20 | #include "btcoex.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 21 | |
Sven Eckelmann | 313eb87 | 2012-06-25 07:15:22 +0200 | [diff] [blame] | 22 | u8 ath9k_parse_mpdudensity(u8 mpdudensity) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 23 | { |
| 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 Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 57 | static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq, |
| 58 | bool sw_pending) |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 59 | { |
| 60 | bool pending = false; |
| 61 | |
| 62 | spin_lock_bh(&txq->axq_lock); |
| 63 | |
Sujith Manoharan | b736728 | 2014-10-02 06:33:13 +0530 | [diff] [blame] | 64 | if (txq->axq_depth) { |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 65 | pending = true; |
Sujith Manoharan | b736728 | 2014-10-02 06:33:13 +0530 | [diff] [blame] | 66 | goto out; |
| 67 | } |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 68 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 69 | if (!sw_pending) |
| 70 | goto out; |
| 71 | |
Felix Fietkau | 0453531 | 2014-06-11 16:17:51 +0530 | [diff] [blame] | 72 | 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 Manoharan | b736728 | 2014-10-02 06:33:13 +0530 | [diff] [blame] | 79 | out: |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 80 | spin_unlock_bh(&txq->axq_lock); |
| 81 | return pending; |
| 82 | } |
| 83 | |
Mohammed Shafi Shajakhan | 6d79cb4 | 2011-05-19 17:40:46 +0530 | [diff] [blame] | 84 | static bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode) |
Luis R. Rodriguez | 8c77a56 | 2009-09-09 21:02:34 -0700 | [diff] [blame] | 85 | { |
| 86 | unsigned long flags; |
| 87 | bool ret; |
| 88 | |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 89 | 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. Rodriguez | 8c77a56 | 2009-09-09 21:02:34 -0700 | [diff] [blame] | 92 | |
| 93 | return ret; |
| 94 | } |
| 95 | |
Felix Fietkau | bf3dac5 | 2013-11-11 22:23:33 +0100 | [diff] [blame] | 96 | void 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. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 112 | void ath9k_ps_wakeup(struct ath_softc *sc) |
| 113 | { |
Felix Fietkau | 898c914 | 2010-10-12 14:02:53 +0200 | [diff] [blame] | 114 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 115 | unsigned long flags; |
Felix Fietkau | fbb078f | 2010-11-03 01:36:51 +0100 | [diff] [blame] | 116 | enum ath9k_power_mode power_mode; |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 117 | |
| 118 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
| 119 | if (++sc->ps_usecount != 1) |
| 120 | goto unlock; |
| 121 | |
Felix Fietkau | bf3dac5 | 2013-11-11 22:23:33 +0100 | [diff] [blame] | 122 | del_timer_sync(&sc->sleep_timer); |
Felix Fietkau | fbb078f | 2010-11-03 01:36:51 +0100 | [diff] [blame] | 123 | power_mode = sc->sc_ah->power_mode; |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 124 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE); |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 125 | |
Felix Fietkau | 898c914 | 2010-10-12 14:02:53 +0200 | [diff] [blame] | 126 | /* |
| 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 Fietkau | fbb078f | 2010-11-03 01:36:51 +0100 | [diff] [blame] | 131 | 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 Manoharan | c9ae6ab | 2012-06-04 16:28:41 +0530 | [diff] [blame] | 135 | memset(&common->cc_ani, 0, sizeof(common->cc_ani)); |
Felix Fietkau | fbb078f | 2010-11-03 01:36:51 +0100 | [diff] [blame] | 136 | spin_unlock(&common->cc_lock); |
| 137 | } |
Felix Fietkau | 898c914 | 2010-10-12 14:02:53 +0200 | [diff] [blame] | 138 | |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 139 | unlock: |
| 140 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
| 141 | } |
| 142 | |
| 143 | void ath9k_ps_restore(struct ath_softc *sc) |
| 144 | { |
Felix Fietkau | 898c914 | 2010-10-12 14:02:53 +0200 | [diff] [blame] | 145 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | c6c539f | 2011-09-14 21:24:24 +0200 | [diff] [blame] | 146 | enum ath9k_power_mode mode; |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 147 | unsigned long flags; |
| 148 | |
| 149 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
| 150 | if (--sc->ps_usecount != 0) |
| 151 | goto unlock; |
| 152 | |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 153 | if (sc->ps_idle) { |
Felix Fietkau | bf3dac5 | 2013-11-11 22:23:33 +0100 | [diff] [blame] | 154 | mod_timer(&sc->sleep_timer, jiffies + HZ / 10); |
| 155 | goto unlock; |
| 156 | } |
| 157 | |
| 158 | if (sc->ps_enabled && |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 159 | !(sc->ps_flags & (PS_WAIT_FOR_BEACON | |
| 160 | PS_WAIT_FOR_CAB | |
| 161 | PS_WAIT_FOR_PSPOLL_DATA | |
Rajkumar Manoharan | 424749c | 2012-10-10 23:03:02 +0530 | [diff] [blame] | 162 | PS_WAIT_FOR_TX_ACK | |
| 163 | PS_WAIT_FOR_ANI))) { |
Felix Fietkau | c6c539f | 2011-09-14 21:24:24 +0200 | [diff] [blame] | 164 | mode = ATH9K_PM_NETWORK_SLEEP; |
Rajkumar Manoharan | 08d4df4 | 2012-07-01 19:53:54 +0530 | [diff] [blame] | 165 | if (ath9k_hw_btcoex_is_enabled(sc->sc_ah)) |
| 166 | ath9k_btcoex_stop_gen_timer(sc); |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 167 | } else { |
Felix Fietkau | c6c539f | 2011-09-14 21:24:24 +0200 | [diff] [blame] | 168 | goto unlock; |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 169 | } |
Felix Fietkau | c6c539f | 2011-09-14 21:24:24 +0200 | [diff] [blame] | 170 | |
| 171 | spin_lock(&common->cc_lock); |
| 172 | ath_hw_cycle_counters_update(common); |
| 173 | spin_unlock(&common->cc_lock); |
| 174 | |
Felix Fietkau | 1a8f0d39 | 2011-09-22 08:04:32 -0600 | [diff] [blame] | 175 | ath9k_hw_setpower(sc->sc_ah, mode); |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 176 | |
| 177 | unlock: |
| 178 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
| 179 | } |
| 180 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 181 | static void __ath_cancel_work(struct ath_softc *sc) |
| 182 | { |
| 183 | cancel_work_sync(&sc->paprd_work); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 184 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 185 | cancel_delayed_work_sync(&sc->hw_pll_work); |
Sujith Manoharan | fad29cd | 2012-06-25 13:54:22 +0530 | [diff] [blame] | 186 | |
Sujith Manoharan | bf52592 | 2012-06-27 14:15:59 +0530 | [diff] [blame] | 187 | #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT |
Sujith Manoharan | fad29cd | 2012-06-25 13:54:22 +0530 | [diff] [blame] | 188 | if (ath9k_hw_mci_is_enabled(sc->sc_ah)) |
| 189 | cancel_work_sync(&sc->mci_work); |
Sujith Manoharan | bf52592 | 2012-06-27 14:15:59 +0530 | [diff] [blame] | 190 | #endif |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 191 | } |
| 192 | |
Sujith Manoharan | e60001e | 2013-10-28 12:22:04 +0530 | [diff] [blame] | 193 | void ath_cancel_work(struct ath_softc *sc) |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 194 | { |
| 195 | __ath_cancel_work(sc); |
| 196 | cancel_work_sync(&sc->hw_reset_work); |
| 197 | } |
| 198 | |
Sujith Manoharan | e60001e | 2013-10-28 12:22:04 +0530 | [diff] [blame] | 199 | void ath_restart_work(struct ath_softc *sc) |
Sujith Manoharan | af68aba | 2012-06-04 20:23:43 +0530 | [diff] [blame] | 200 | { |
Sujith Manoharan | af68aba | 2012-06-04 20:23:43 +0530 | [diff] [blame] | 201 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0); |
| 202 | |
Sujith Manoharan | 19c3616 | 2013-08-20 10:05:59 +0530 | [diff] [blame] | 203 | if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9330(sc->sc_ah)) |
Sujith Manoharan | af68aba | 2012-06-04 20:23:43 +0530 | [diff] [blame] | 204 | ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work, |
| 205 | msecs_to_jiffies(ATH_PLL_WORK_INTERVAL)); |
| 206 | |
Sujith Manoharan | da0d45f | 2012-07-17 17:16:29 +0530 | [diff] [blame] | 207 | ath_start_ani(sc); |
Sujith Manoharan | af68aba | 2012-06-04 20:23:43 +0530 | [diff] [blame] | 208 | } |
| 209 | |
John W. Linville | 9ebea38 | 2013-01-28 13:54:03 -0500 | [diff] [blame] | 210 | static bool ath_prepare_reset(struct ath_softc *sc) |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 211 | { |
| 212 | struct ath_hw *ah = sc->sc_ah; |
Felix Fietkau | ceea2a5 | 2012-05-24 14:32:19 +0200 | [diff] [blame] | 213 | bool ret = true; |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 214 | |
| 215 | ieee80211_stop_queues(sc->hw); |
Sujith Manoharan | da0d45f | 2012-07-17 17:16:29 +0530 | [diff] [blame] | 216 | ath_stop_ani(sc); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 217 | ath9k_hw_disable_interrupts(ah); |
| 218 | |
Felix Fietkau | 1381559 | 2013-01-20 18:51:53 +0100 | [diff] [blame] | 219 | if (!ath_drain_all_txq(sc)) |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 220 | ret = false; |
| 221 | |
Felix Fietkau | 0a62acb | 2013-01-20 18:51:52 +0100 | [diff] [blame] | 222 | if (!ath_stoprecv(sc)) |
Felix Fietkau | ceea2a5 | 2012-05-24 14:32:19 +0200 | [diff] [blame] | 223 | ret = false; |
| 224 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 225 | return ret; |
| 226 | } |
| 227 | |
| 228 | static 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 Manoharan | 196fb86 | 2012-06-04 20:24:13 +0530 | [diff] [blame] | 232 | unsigned long flags; |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 233 | |
Sujith Manoharan | 9019f64 | 2014-09-05 08:03:15 +0530 | [diff] [blame] | 234 | ath9k_calculate_summary_state(sc, sc->cur_chan); |
Sujith Manoharan | 19ec477 | 2014-09-05 08:03:16 +0530 | [diff] [blame] | 235 | ath_startrecv(sc); |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 236 | ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower, |
| 237 | sc->cur_chan->txpower, |
| 238 | &sc->cur_chan->cur_txpower); |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 239 | clear_bit(ATH_OP_HW_RESET, &common->op_flags); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 240 | |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 241 | if (!sc->cur_chan->offchannel && start) { |
Felix Fietkau | 8d7e09d | 2014-06-11 16:18:01 +0530 | [diff] [blame] | 242 | /* 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 Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 252 | if (!test_bit(ATH_OP_BEACONS, &common->op_flags)) |
Sujith Manoharan | 196fb86 | 2012-06-04 20:24:13 +0530 | [diff] [blame] | 253 | goto work; |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 254 | |
Sujith Manoharan | 196fb86 | 2012-06-04 20:24:13 +0530 | [diff] [blame] | 255 | if (ah->opmode == NL80211_IFTYPE_STATION && |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 256 | test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) { |
Sujith Manoharan | 196fb86 | 2012-06-04 20:24:13 +0530 | [diff] [blame] | 257 | 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 Manoharan | a676828 | 2013-05-06 10:09:03 +0530 | [diff] [blame] | 260 | } else { |
| 261 | ath9k_set_beacon(sc); |
Sujith Manoharan | 196fb86 | 2012-06-04 20:24:13 +0530 | [diff] [blame] | 262 | } |
| 263 | work: |
Sujith Manoharan | af68aba | 2012-06-04 20:23:43 +0530 | [diff] [blame] | 264 | ath_restart_work(sc); |
Felix Fietkau | 0453531 | 2014-06-11 16:17:51 +0530 | [diff] [blame] | 265 | ath_txq_schedule_all(sc); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 266 | } |
| 267 | |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 268 | sc->gtt_cnt = 0; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 269 | |
| 270 | ath9k_hw_set_interrupts(ah); |
| 271 | ath9k_hw_enable_interrupts(ah); |
Sujith Manoharan | 5ba8d9d | 2014-10-02 06:33:19 +0530 | [diff] [blame] | 272 | ieee80211_wake_queues(sc->hw); |
Felix Fietkau | d463af4 | 2014-04-06 00:37:03 +0200 | [diff] [blame] | 273 | ath9k_p2p_ps_timer(sc); |
| 274 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 275 | return true; |
| 276 | } |
| 277 | |
Sujith Manoharan | 5555c95 | 2014-10-17 07:40:11 +0530 | [diff] [blame] | 278 | static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan) |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 279 | { |
| 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 Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 284 | int r; |
| 285 | |
| 286 | __ath_cancel_work(sc); |
| 287 | |
Felix Fietkau | e3f3117 | 2015-01-14 14:17:36 +0100 | [diff] [blame] | 288 | disable_irq(sc->irq); |
Felix Fietkau | 4668cce | 2013-01-14 16:56:46 +0100 | [diff] [blame] | 289 | tasklet_disable(&sc->intr_tq); |
Sujith Manoharan | eaf04a6 | 2014-10-17 07:40:13 +0530 | [diff] [blame] | 290 | tasklet_disable(&sc->bcon_tasklet); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 291 | spin_lock_bh(&sc->sc_pcu_lock); |
| 292 | |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 293 | if (!sc->cur_chan->offchannel) { |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 294 | fastcc = false; |
Felix Fietkau | b01459e | 2014-06-11 16:17:59 +0530 | [diff] [blame] | 295 | caldata = &sc->cur_chan->caldata; |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | if (!hchan) { |
| 299 | fastcc = false; |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 300 | hchan = ah->curchan; |
| 301 | } |
| 302 | |
John W. Linville | 9ebea38 | 2013-01-28 13:54:03 -0500 | [diff] [blame] | 303 | if (!ath_prepare_reset(sc)) |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 304 | fastcc = false; |
| 305 | |
Sujith Manoharan | 9ea3598 | 2014-08-27 12:07:23 +0530 | [diff] [blame] | 306 | if (ath9k_is_chanctx_enabled()) |
| 307 | fastcc = false; |
| 308 | |
Rajkumar Manoharan | d6067f0 | 2014-06-20 22:47:49 +0530 | [diff] [blame] | 309 | spin_lock_bh(&sc->chan_lock); |
| 310 | sc->cur_chandef = sc->cur_chan->chandef; |
| 311 | spin_unlock_bh(&sc->chan_lock); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 312 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 313 | ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n", |
Sujith Manoharan | feced20 | 2012-01-30 14:21:42 +0530 | [diff] [blame] | 314 | hchan->channel, IS_CHAN_HT40(hchan), fastcc); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 315 | |
| 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 Shade | f50b1cd | 2013-04-02 19:52:45 -0400 | [diff] [blame] | 320 | |
| 321 | ath9k_hw_enable_interrupts(ah); |
| 322 | ath9k_queue_reset(sc, RESET_TYPE_BB_HANG); |
| 323 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 324 | goto out; |
| 325 | } |
| 326 | |
Rajkumar Manoharan | e82cb03 | 2012-10-12 14:07:25 +0530 | [diff] [blame] | 327 | if (ath9k_hw_mci_is_enabled(sc->sc_ah) && |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 328 | sc->cur_chan->offchannel) |
Rajkumar Manoharan | e82cb03 | 2012-10-12 14:07:25 +0530 | [diff] [blame] | 329 | ath9k_mci_set_txpower(sc, true, false); |
| 330 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 331 | if (!ath_complete_reset(sc, true)) |
| 332 | r = -EIO; |
| 333 | |
| 334 | out: |
Felix Fietkau | e3f3117 | 2015-01-14 14:17:36 +0100 | [diff] [blame] | 335 | enable_irq(sc->irq); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 336 | spin_unlock_bh(&sc->sc_pcu_lock); |
Sujith Manoharan | eaf04a6 | 2014-10-17 07:40:13 +0530 | [diff] [blame] | 337 | tasklet_enable(&sc->bcon_tasklet); |
Felix Fietkau | 4668cce | 2013-01-14 16:56:46 +0100 | [diff] [blame] | 338 | tasklet_enable(&sc->intr_tq); |
| 339 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 340 | return r; |
| 341 | } |
| 342 | |
Ben Greear | 7e1e386 | 2011-11-03 11:33:13 -0700 | [diff] [blame] | 343 | static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta, |
| 344 | struct ieee80211_vif *vif) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 345 | { |
| 346 | struct ath_node *an; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 347 | an = (struct ath_node *)sta->drv_priv; |
| 348 | |
Sujith Manoharan | a145daf | 2012-11-28 15:08:54 +0530 | [diff] [blame] | 349 | an->sc = sc; |
Ben Greear | 7f010c9 | 2011-01-09 23:11:49 -0800 | [diff] [blame] | 350 | an->sta = sta; |
Ben Greear | 7e1e386 | 2011-11-03 11:33:13 -0700 | [diff] [blame] | 351 | an->vif = vif; |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 352 | memset(&an->key_idx, 0, sizeof(an->key_idx)); |
Sujith Manoharan | 3d4e20f | 2012-03-14 14:40:58 +0530 | [diff] [blame] | 353 | |
Sujith Manoharan | dd5ee59 | 2013-02-04 15:38:23 +0530 | [diff] [blame] | 354 | ath_tx_node_init(sc, an); |
Lorenzo Bianconi | 44b47a7 | 2014-09-16 02:13:16 +0200 | [diff] [blame] | 355 | |
| 356 | ath_dynack_node_init(sc->sc_ah, an); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static 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 Manoharan | dd5ee59 | 2013-02-04 15:38:23 +0530 | [diff] [blame] | 362 | ath_tx_node_cleanup(sc, an); |
Lorenzo Bianconi | 44b47a7 | 2014-09-16 02:13:16 +0200 | [diff] [blame] | 363 | |
| 364 | ath_dynack_node_deinit(sc->sc_ah, an); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 365 | } |
| 366 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 367 | void ath9k_tasklet(unsigned long data) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 368 | { |
| 369 | struct ath_softc *sc = (struct ath_softc *)data; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 370 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 371 | struct ath_common *common = ath9k_hw_common(ah); |
Rajkumar Manoharan | 124b979 | 2012-07-17 17:16:42 +0530 | [diff] [blame] | 372 | enum ath_reset_type type; |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 373 | unsigned long flags; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 374 | u32 status = sc->intrstatus; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 375 | u32 rxmask; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 376 | |
Felix Fietkau | e392700 | 2011-09-14 21:23:01 +0200 | [diff] [blame] | 377 | ath9k_ps_wakeup(sc); |
| 378 | spin_lock(&sc->sc_pcu_lock); |
| 379 | |
Sujith Manoharan | 6549a86 | 2013-12-24 10:44:24 +0530 | [diff] [blame] | 380 | if (status & ATH9K_INT_FATAL) { |
| 381 | type = RESET_TYPE_FATAL_INT; |
Rajkumar Manoharan | 124b979 | 2012-07-17 17:16:42 +0530 | [diff] [blame] | 382 | ath9k_queue_reset(sc, type); |
Sujith Manoharan | c6cc47b | 2013-09-16 10:37:00 +0530 | [diff] [blame] | 383 | |
| 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 Fietkau | affad45 | 2014-02-22 14:52:49 +0100 | [diff] [blame] | 389 | ath_dbg(common, RESET, "FATAL: Skipping interrupts\n"); |
Felix Fietkau | e392700 | 2011-09-14 21:23:01 +0200 | [diff] [blame] | 390 | goto out; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 391 | } |
| 392 | |
Sujith Manoharan | 6549a86 | 2013-12-24 10:44:24 +0530 | [diff] [blame] | 393 | if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) && |
| 394 | (status & ATH9K_INT_BB_WATCHDOG)) { |
Sujith Manoharan | 0c75997 | 2013-12-24 10:44:26 +0530 | [diff] [blame] | 395 | 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 Manoharan | 6549a86 | 2013-12-24 10:44:24 +0530 | [diff] [blame] | 400 | 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 Fietkau | affad45 | 2014-02-22 14:52:49 +0100 | [diff] [blame] | 409 | ath_dbg(common, RESET, |
Sujith Manoharan | 6549a86 | 2013-12-24 10:44:24 +0530 | [diff] [blame] | 410 | "BB_WATCHDOG: Skipping interrupts\n"); |
| 411 | goto out; |
| 412 | } |
| 413 | } |
| 414 | |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 415 | 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 Fietkau | affad45 | 2014-02-22 14:52:49 +0100 | [diff] [blame] | 422 | ath_dbg(common, RESET, |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 423 | "GTT: Skipping interrupts\n"); |
| 424 | goto out; |
| 425 | } |
| 426 | } |
| 427 | |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 428 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
Rajkumar Manoharan | 4105f80 | 2011-05-06 18:27:47 +0530 | [diff] [blame] | 429 | 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 Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 434 | ath_dbg(common, PS, "TSFOOR - Sync with next Beacon\n"); |
Rajkumar Manoharan | e8fe733 | 2011-08-05 18:59:41 +0530 | [diff] [blame] | 435 | sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC; |
Rajkumar Manoharan | 4105f80 | 2011-05-06 18:27:47 +0530 | [diff] [blame] | 436 | } |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 437 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
Rajkumar Manoharan | 4105f80 | 2011-05-06 18:27:47 +0530 | [diff] [blame] | 438 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 439 | 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 Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 446 | /* 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); |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 452 | } |
| 453 | |
Vasanthakumar Thiagarajan | e500324 | 2010-04-15 17:39:36 -0400 | [diff] [blame] | 454 | if (status & ATH9K_INT_TX) { |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 455 | 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 Manoharan | 3b745c7 | 2014-01-20 13:25:28 +0530 | [diff] [blame] | 462 | sc->gtt_cnt = 0; |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 463 | |
Vasanthakumar Thiagarajan | e500324 | 2010-04-15 17:39:36 -0400 | [diff] [blame] | 464 | ath_tx_edma_tasklet(sc); |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 465 | } else { |
Vasanthakumar Thiagarajan | e500324 | 2010-04-15 17:39:36 -0400 | [diff] [blame] | 466 | ath_tx_tasklet(sc); |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 467 | } |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 468 | |
| 469 | wake_up(&sc->tx_wait); |
Vasanthakumar Thiagarajan | e500324 | 2010-04-15 17:39:36 -0400 | [diff] [blame] | 470 | } |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 471 | |
Felix Fietkau | c67ce33 | 2013-12-14 18:03:38 +0100 | [diff] [blame] | 472 | if (status & ATH9K_INT_GENTIMER) |
| 473 | ath_gen_timer_isr(sc->sc_ah); |
| 474 | |
Sujith Manoharan | 56ca0db | 2012-02-22 12:40:32 +0530 | [diff] [blame] | 475 | ath9k_btcoex_handle_interrupt(sc, status); |
Mohammed Shafi Shajakhan | 19686dd | 2011-11-30 10:41:28 +0530 | [diff] [blame] | 476 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 477 | /* re-enable hardware interrupt */ |
Felix Fietkau | 4df3071 | 2010-11-08 20:54:47 +0100 | [diff] [blame] | 478 | ath9k_hw_enable_interrupts(ah); |
Sujith Manoharan | c6cc47b | 2013-09-16 10:37:00 +0530 | [diff] [blame] | 479 | out: |
Senthil Balasubramanian | 52671e4 | 2010-12-23 21:06:57 +0530 | [diff] [blame] | 480 | spin_unlock(&sc->sc_pcu_lock); |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 481 | ath9k_ps_restore(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 482 | } |
| 483 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 484 | irqreturn_t ath_isr(int irq, void *dev) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 485 | { |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 486 | #define SCHED_INTR ( \ |
| 487 | ATH9K_INT_FATAL | \ |
Rajkumar Manoharan | a4d86d9 | 2011-05-20 17:52:10 +0530 | [diff] [blame] | 488 | ATH9K_INT_BB_WATCHDOG | \ |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 489 | ATH9K_INT_RXORN | \ |
| 490 | ATH9K_INT_RXEOL | \ |
| 491 | ATH9K_INT_RX | \ |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 492 | ATH9K_INT_RXLP | \ |
| 493 | ATH9K_INT_RXHP | \ |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 494 | ATH9K_INT_TX | \ |
| 495 | ATH9K_INT_BMISS | \ |
| 496 | ATH9K_INT_CST | \ |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 497 | ATH9K_INT_GTT | \ |
Vasanthakumar Thiagarajan | ebb8e1d | 2009-09-01 17:46:32 +0530 | [diff] [blame] | 498 | ATH9K_INT_TSFOOR | \ |
Mohammed Shafi Shajakhan | 40dc539 | 2011-11-30 10:41:18 +0530 | [diff] [blame] | 499 | ATH9K_INT_GENTIMER | \ |
| 500 | ATH9K_INT_MCI) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 501 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 502 | struct ath_softc *sc = dev; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 503 | struct ath_hw *ah = sc->sc_ah; |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 504 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 505 | enum ath9k_int status; |
Sujith Manoharan | 78c8a95 | 2013-12-28 09:47:15 +0530 | [diff] [blame] | 506 | u32 sync_cause = 0; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 507 | bool sched = false; |
| 508 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 509 | /* |
| 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 Dubowik | 2ba7d14 | 2014-09-18 08:30:41 +0200 | [diff] [blame] | 514 | if (!ah || test_bit(ATH_OP_INVALID, &common->op_flags)) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 515 | return IRQ_NONE; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 516 | |
Felix Fietkau | 872b5d8 | 2014-11-30 21:58:32 +0100 | [diff] [blame] | 517 | /* shared irq, not for us */ |
| 518 | if (!ath9k_hw_intrpend(ah)) |
| 519 | return IRQ_NONE; |
Sujith Manoharan | b74713d | 2012-06-04 20:24:01 +0530 | [diff] [blame] | 520 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 521 | /* |
| 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 Fietkau | 6a4d05d | 2013-12-19 18:01:48 +0100 | [diff] [blame] | 527 | ath9k_hw_getisr(ah, &status, &sync_cause); /* NB: clears ISR too */ |
| 528 | ath9k_debug_sync_cause(sc, sync_cause); |
Pavel Roskin | 3069168 | 2010-03-31 18:05:31 -0400 | [diff] [blame] | 529 | status &= ah->imask; /* discard unasked-for bits */ |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 530 | |
Felix Fietkau | e3f3117 | 2015-01-14 14:17:36 +0100 | [diff] [blame] | 531 | if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) |
Felix Fietkau | 872b5d8 | 2014-11-30 21:58:32 +0100 | [diff] [blame] | 532 | return IRQ_HANDLED; |
| 533 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 534 | /* |
| 535 | * If there are no status bits set, then this interrupt was not |
| 536 | * for me (should have been caught above). |
| 537 | */ |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 538 | if (!status) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 539 | return IRQ_NONE; |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 540 | |
| 541 | /* Cache the status */ |
| 542 | sc->intrstatus = status; |
| 543 | |
| 544 | if (status & SCHED_INTR) |
| 545 | sched = true; |
| 546 | |
| 547 | /* |
Felix Fietkau | 3b580144 | 2014-10-25 17:19:28 +0200 | [diff] [blame] | 548 | * If a FATAL interrupt is received, we have to reset the chip |
| 549 | * immediately. |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 550 | */ |
Felix Fietkau | 3b580144 | 2014-10-25 17:19:28 +0200 | [diff] [blame] | 551 | if (status & ATH9K_INT_FATAL) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 552 | goto chip_reset; |
| 553 | |
Sujith Manoharan | a6bb860 | 2013-12-24 10:44:22 +0530 | [diff] [blame] | 554 | if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) && |
Sujith Manoharan | 0c75997 | 2013-12-24 10:44:26 +0530 | [diff] [blame] | 555 | (status & ATH9K_INT_BB_WATCHDOG)) |
Luis R. Rodriguez | 08578b8 | 2010-05-13 13:33:44 -0400 | [diff] [blame] | 556 | goto chip_reset; |
Sujith Manoharan | e60001e | 2013-10-28 12:22:04 +0530 | [diff] [blame] | 557 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 558 | 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 Manoharan | 0682c9b | 2011-08-13 10:28:09 +0530 | [diff] [blame] | 564 | if (status & ATH9K_INT_RXEOL) { |
| 565 | ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN); |
Felix Fietkau | 72d874c | 2011-10-08 20:06:19 +0200 | [diff] [blame] | 566 | ath9k_hw_set_interrupts(ah); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 567 | } |
| 568 | |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 569 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) |
| 570 | if (status & ATH9K_INT_TIM_TIMER) { |
Luis R. Rodriguez | ff9f0b6 | 2010-12-07 15:13:22 -0800 | [diff] [blame] | 571 | if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle)) |
| 572 | goto chip_reset; |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 573 | /* Clear RxAbort bit so that we can |
| 574 | * receive frames */ |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 575 | ath9k_setpower(sc, ATH9K_PM_AWAKE); |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 576 | spin_lock(&sc->sc_pm_lock); |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 577 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 578 | sc->ps_flags |= PS_WAIT_FOR_BEACON; |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 579 | spin_unlock(&sc->sc_pm_lock); |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 580 | } |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 581 | |
| 582 | chip_reset: |
| 583 | |
Sujith | 817e11d | 2008-12-07 21:42:44 +0530 | [diff] [blame] | 584 | ath_debug_stat_interrupt(sc, status); |
| 585 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 586 | if (sched) { |
Felix Fietkau | 4df3071 | 2010-11-08 20:54:47 +0100 | [diff] [blame] | 587 | /* turn off every interrupt */ |
| 588 | ath9k_hw_disable_interrupts(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 589 | tasklet_schedule(&sc->intr_tq); |
| 590 | } |
| 591 | |
| 592 | return IRQ_HANDLED; |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 593 | |
| 594 | #undef SCHED_INTR |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 595 | } |
| 596 | |
Sujith Manoharan | ae2ff23 | 2014-10-17 07:40:12 +0530 | [diff] [blame] | 597 | /* |
| 598 | * This function is called when a HW reset cannot be deferred |
| 599 | * and has to be immediate. |
| 600 | */ |
Sujith Manoharan | 5555c95 | 2014-10-17 07:40:11 +0530 | [diff] [blame] | 601 | int ath_reset(struct ath_softc *sc, struct ath9k_channel *hchan) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 602 | { |
Sujith Manoharan | ae2ff23 | 2014-10-17 07:40:12 +0530 | [diff] [blame] | 603 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | ec30326 | 2013-10-05 14:09:30 +0200 | [diff] [blame] | 604 | int r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 605 | |
Felix Fietkau | 872b5d8 | 2014-11-30 21:58:32 +0100 | [diff] [blame] | 606 | ath9k_hw_kill_interrupts(sc->sc_ah); |
Sujith Manoharan | ae2ff23 | 2014-10-17 07:40:12 +0530 | [diff] [blame] | 607 | set_bit(ATH_OP_HW_RESET, &common->op_flags); |
| 608 | |
Felix Fietkau | 783cd01 | 2011-01-21 18:52:38 +0100 | [diff] [blame] | 609 | ath9k_ps_wakeup(sc); |
Sujith Manoharan | 5555c95 | 2014-10-17 07:40:11 +0530 | [diff] [blame] | 610 | r = ath_reset_internal(sc, hchan); |
Felix Fietkau | 783cd01 | 2011-01-21 18:52:38 +0100 | [diff] [blame] | 611 | ath9k_ps_restore(sc); |
Sujith | 2ab81d4 | 2009-12-14 16:34:56 +0530 | [diff] [blame] | 612 | |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 613 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 614 | } |
| 615 | |
Sujith Manoharan | ae2ff23 | 2014-10-17 07:40:12 +0530 | [diff] [blame] | 616 | /* |
| 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 Manoharan | 124b979 | 2012-07-17 17:16:42 +0530 | [diff] [blame] | 621 | void ath9k_queue_reset(struct ath_softc *sc, enum ath_reset_type type) |
| 622 | { |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 623 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Rajkumar Manoharan | 124b979 | 2012-07-17 17:16:42 +0530 | [diff] [blame] | 624 | #ifdef CONFIG_ATH9K_DEBUGFS |
| 625 | RESET_STAT_INC(sc, type); |
| 626 | #endif |
Felix Fietkau | 872b5d8 | 2014-11-30 21:58:32 +0100 | [diff] [blame] | 627 | ath9k_hw_kill_interrupts(sc->sc_ah); |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 628 | set_bit(ATH_OP_HW_RESET, &common->op_flags); |
Rajkumar Manoharan | 124b979 | 2012-07-17 17:16:42 +0530 | [diff] [blame] | 629 | ieee80211_queue_work(sc->hw, &sc->hw_reset_work); |
| 630 | } |
| 631 | |
Felix Fietkau | 236de51 | 2011-09-03 01:40:25 +0200 | [diff] [blame] | 632 | void ath_reset_work(struct work_struct *work) |
| 633 | { |
| 634 | struct ath_softc *sc = container_of(work, struct ath_softc, hw_reset_work); |
| 635 | |
Sujith Manoharan | 5555c95 | 2014-10-17 07:40:11 +0530 | [diff] [blame] | 636 | ath9k_ps_wakeup(sc); |
| 637 | ath_reset_internal(sc, NULL); |
| 638 | ath9k_ps_restore(sc); |
Felix Fietkau | 236de51 | 2011-09-03 01:40:25 +0200 | [diff] [blame] | 639 | } |
| 640 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 641 | /**********************/ |
| 642 | /* mac80211 callbacks */ |
| 643 | /**********************/ |
| 644 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 645 | static int ath9k_start(struct ieee80211_hw *hw) |
| 646 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 647 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 648 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 649 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 650 | struct ieee80211_channel *curchan = sc->cur_chan->chandef.chan; |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 651 | struct ath_chanctx *ctx = sc->cur_chan; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 652 | struct ath9k_channel *init_channel; |
Vasanthakumar Thiagarajan | 82880a7 | 2009-06-13 14:50:24 +0530 | [diff] [blame] | 653 | int r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 654 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 655 | ath_dbg(common, CONFIG, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 656 | "Starting driver with initial channel: %d MHz\n", |
| 657 | curchan->center_freq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 658 | |
Felix Fietkau | f62d816 | 2011-03-25 17:43:41 +0100 | [diff] [blame] | 659 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 660 | mutex_lock(&sc->mutex); |
| 661 | |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 662 | init_channel = ath9k_cmn_get_channel(hw, ah, &ctx->chandef); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 663 | sc->cur_chandef = hw->conf.chandef; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 664 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 665 | /* Reset SERDES registers */ |
Stanislaw Gruszka | 84c87dc | 2011-08-05 13:10:32 +0200 | [diff] [blame] | 666 | ath9k_hw_configpcipowersave(ah, false); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 667 | |
| 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. Rodriguez | 4bdd1e9 | 2010-10-26 15:27:24 -0700 | [diff] [blame] | 675 | spin_lock_bh(&sc->sc_pcu_lock); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 676 | |
| 677 | atomic_set(&ah->intr_ref_cnt, -1); |
| 678 | |
Felix Fietkau | 20bd2a0 | 2010-07-31 00:12:00 +0200 | [diff] [blame] | 679 | r = ath9k_hw_reset(ah, init_channel, ah->caldata, false); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 680 | if (r) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 681 | ath_err(common, |
| 682 | "Unable to reset hardware; reset status %d (freq %u MHz)\n", |
| 683 | r, curchan->center_freq); |
Felix Fietkau | ceb26a6 | 2012-10-03 21:07:51 +0200 | [diff] [blame] | 684 | ah->reset_power_on = false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 685 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 686 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 687 | /* Setup our intr mask. */ |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 688 | 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. Rodriguez | 08578b8 | 2010-05-13 13:33:44 -0400 | [diff] [blame] | 693 | ah->imask |= ATH9K_INT_RXHP | |
Sujith Manoharan | a6bb860 | 2013-12-24 10:44:22 +0530 | [diff] [blame] | 694 | ATH9K_INT_RXLP; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 695 | else |
| 696 | ah->imask |= ATH9K_INT_RX; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 697 | |
Sujith Manoharan | a6bb860 | 2013-12-24 10:44:22 +0530 | [diff] [blame] | 698 | if (ah->config.hw_hang_checks & HW_BB_WATCHDOG) |
| 699 | ah->imask |= ATH9K_INT_BB_WATCHDOG; |
| 700 | |
Sujith Manoharan | 071aa9a | 2014-01-13 13:55:11 +0530 | [diff] [blame] | 701 | /* |
| 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; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 707 | |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 708 | if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) |
Pavel Roskin | 3069168 | 2010-03-31 18:05:31 -0400 | [diff] [blame] | 709 | ah->imask |= ATH9K_INT_CST; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 710 | |
Sujith Manoharan | e270e77 | 2012-06-04 16:27:19 +0530 | [diff] [blame] | 711 | ath_mci_enable(sc); |
Mohammed Shafi Shajakhan | 40dc539 | 2011-11-30 10:41:18 +0530 | [diff] [blame] | 712 | |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 713 | clear_bit(ATH_OP_INVALID, &common->op_flags); |
Rajkumar Manoharan | 5f841b4 | 2010-10-27 18:31:15 +0530 | [diff] [blame] | 714 | sc->sc_ah->is_monitoring = false; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 715 | |
Felix Fietkau | ceb26a6 | 2012-10-03 21:07:51 +0200 | [diff] [blame] | 716 | if (!ath_complete_reset(sc, false)) |
| 717 | ah->reset_power_on = false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 718 | |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 719 | if (ah->led_pin >= 0) { |
| 720 | ath9k_hw_cfg_output(ah, ah->led_pin, |
| 721 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
Sujith Manoharan | aeeb206 | 2014-11-16 06:11:02 +0530 | [diff] [blame] | 722 | ath9k_hw_set_gpio(ah, ah->led_pin, |
| 723 | (ah->config.led_active_high) ? 1 : 0); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 724 | } |
| 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 Fietkau | a35051c | 2013-12-14 18:03:45 +0100 | [diff] [blame] | 732 | ath9k_hw_reset_tsf(ah); |
| 733 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 734 | spin_unlock_bh(&sc->sc_pcu_lock); |
Senthil Balasubramanian | 164ace3 | 2009-07-14 20:17:09 -0400 | [diff] [blame] | 735 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 736 | mutex_unlock(&sc->mutex); |
| 737 | |
Felix Fietkau | f62d816 | 2011-03-25 17:43:41 +0100 | [diff] [blame] | 738 | ath9k_ps_restore(sc); |
| 739 | |
Felix Fietkau | ceb26a6 | 2012-10-03 21:07:51 +0200 | [diff] [blame] | 740 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 743 | static void ath9k_tx(struct ieee80211_hw *hw, |
| 744 | struct ieee80211_tx_control *control, |
| 745 | struct sk_buff *skb) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 746 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 747 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 748 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 749 | struct ath_tx_control txctl; |
Benoit Papillault | 1bc1488 | 2009-11-24 15:49:18 +0100 | [diff] [blame] | 750 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 751 | unsigned long flags; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 752 | |
Gabor Juhos | 9614832 | 2009-07-24 17:27:21 +0200 | [diff] [blame] | 753 | if (sc->ps_enabled) { |
Jouni Malinen | dc8c458 | 2009-05-19 17:01:42 +0300 | [diff] [blame] | 754 | /* |
| 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 Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 761 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 762 | "Add PM=1 for a TX frame while in PS mode\n"); |
Jouni Malinen | dc8c458 | 2009-05-19 17:01:42 +0300 | [diff] [blame] | 763 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); |
| 764 | } |
| 765 | } |
| 766 | |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 767 | if (unlikely(sc->sc_ah->power_mode == ATH9K_PM_NETWORK_SLEEP)) { |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 768 | /* |
| 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 Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 773 | ath9k_ps_wakeup(sc); |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 774 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
Vasanthakumar Thiagarajan | fdf7662 | 2010-05-17 18:57:55 -0700 | [diff] [blame] | 775 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) |
| 776 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 777 | if (ieee80211_is_pspoll(hdr->frame_control)) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 778 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 779 | "Sending PS-Poll to pick a buffered frame\n"); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 780 | sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA; |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 781 | } else { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 782 | ath_dbg(common, PS, "Wake up to complete TX\n"); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 783 | sc->ps_flags |= PS_WAIT_FOR_TX_ACK; |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 784 | } |
| 785 | /* |
| 786 | * The actual restore operation will happen only after |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 787 | * the ps_flags bit is cleared. We are just dropping |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 788 | * the ps_usecount here. |
| 789 | */ |
Sujith Manoharan | 07c15a3 | 2012-06-04 20:24:07 +0530 | [diff] [blame] | 790 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 791 | ath9k_ps_restore(sc); |
| 792 | } |
| 793 | |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 794 | /* |
| 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 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 803 | memset(&txctl, 0, sizeof(struct ath_tx_control)); |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 804 | txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)]; |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 805 | txctl.sta = control->sta; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 806 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 807 | ath_dbg(common, XMIT, "transmitting packet, skb: %p\n", skb); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 808 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 809 | if (ath_tx_start(hw, skb, &txctl) != 0) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 810 | ath_dbg(common, XMIT, "TX failed\n"); |
Ben Greear | a5a0bca | 2012-04-03 09:16:55 -0700 | [diff] [blame] | 811 | TX_STAT_INC(txctl.txq->axq_qnum, txfailed); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 812 | goto exit; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 815 | return; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 816 | exit: |
Felix Fietkau | 249ee72 | 2012-10-03 21:07:52 +0200 | [diff] [blame] | 817 | ieee80211_free_txskb(hw, skb); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | static void ath9k_stop(struct ieee80211_hw *hw) |
| 821 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 822 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 823 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 824 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 825 | bool prev_idle; |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 826 | |
Sujith Manoharan | ea22df2 | 2014-08-23 13:29:07 +0530 | [diff] [blame] | 827 | ath9k_deinit_channel_context(sc); |
| 828 | |
Sujith | 4c48381 | 2009-08-18 10:51:52 +0530 | [diff] [blame] | 829 | mutex_lock(&sc->mutex); |
| 830 | |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 831 | ath_cancel_work(sc); |
Luis R. Rodriguez | c94dbff | 2009-07-27 11:53:04 -0700 | [diff] [blame] | 832 | |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 833 | if (test_bit(ATH_OP_INVALID, &common->op_flags)) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 834 | ath_dbg(common, ANY, "Device not present\n"); |
Sujith | 4c48381 | 2009-08-18 10:51:52 +0530 | [diff] [blame] | 835 | mutex_unlock(&sc->mutex); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 836 | return; |
| 837 | } |
| 838 | |
Sujith | 3867cf6 | 2009-12-23 20:03:27 -0500 | [diff] [blame] | 839 | /* Ensure HW is awake when we try to shut it down. */ |
| 840 | ath9k_ps_wakeup(sc); |
| 841 | |
Luis R. Rodriguez | 6a6733f | 2010-10-26 15:27:25 -0700 | [diff] [blame] | 842 | spin_lock_bh(&sc->sc_pcu_lock); |
| 843 | |
Stanislaw Gruszka | 203043f | 2011-01-25 14:08:40 +0100 | [diff] [blame] | 844 | /* prevent tasklets to enable interrupts once we disable them */ |
| 845 | ah->imask &= ~ATH9K_INT_GLOBAL; |
| 846 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 847 | /* make sure h/w will not generate any interrupt |
| 848 | * before setting the invalid flag. */ |
Felix Fietkau | 4df3071 | 2010-11-08 20:54:47 +0100 | [diff] [blame] | 849 | ath9k_hw_disable_interrupts(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 850 | |
Luis R. Rodriguez | 6a6733f | 2010-10-26 15:27:25 -0700 | [diff] [blame] | 851 | spin_unlock_bh(&sc->sc_pcu_lock); |
| 852 | |
Stanislaw Gruszka | 203043f | 2011-01-25 14:08:40 +0100 | [diff] [blame] | 853 | /* 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 Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 859 | 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 Manoharan | aeeb206 | 2014-11-16 06:11:02 +0530 | [diff] [blame] | 865 | ath9k_hw_set_gpio(ah, ah->led_pin, |
| 866 | (ah->config.led_active_high) ? 0 : 1); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 867 | ath9k_hw_cfg_gpio_input(ah, ah->led_pin); |
| 868 | } |
| 869 | |
John W. Linville | 9ebea38 | 2013-01-28 13:54:03 -0500 | [diff] [blame] | 870 | ath_prepare_reset(sc); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 871 | |
| 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 Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 878 | ah->curchan = ath9k_cmn_get_channel(hw, ah, |
| 879 | &sc->cur_chan->chandef); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 880 | |
| 881 | ath9k_hw_reset(ah, ah->curchan, ah->caldata, false); |
Felix Fietkau | ef739ab | 2014-11-30 21:58:31 +0100 | [diff] [blame] | 882 | |
| 883 | set_bit(ATH_OP_INVALID, &common->op_flags); |
| 884 | |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 885 | ath9k_hw_phy_disable(ah); |
| 886 | |
| 887 | ath9k_hw_configpcipowersave(ah, true); |
| 888 | |
| 889 | spin_unlock_bh(&sc->sc_pcu_lock); |
| 890 | |
Sujith | 3867cf6 | 2009-12-23 20:03:27 -0500 | [diff] [blame] | 891 | ath9k_ps_restore(sc); |
| 892 | |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 893 | sc->ps_idle = prev_idle; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 894 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 895 | mutex_unlock(&sc->mutex); |
| 896 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 897 | ath_dbg(common, CONFIG, "Driver halt\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 898 | } |
| 899 | |
Felix Fietkau | c648ecb | 2013-10-11 23:31:00 +0200 | [diff] [blame] | 900 | static bool ath9k_uses_beacons(int type) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 901 | { |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 902 | switch (type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 903 | case NL80211_IFTYPE_AP: |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 904 | case NL80211_IFTYPE_ADHOC: |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 905 | case NL80211_IFTYPE_MESH_POINT: |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 906 | return true; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 907 | default: |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 908 | return false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 909 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 910 | } |
| 911 | |
Sujith Manoharan | 4b93fd2 | 2014-08-23 13:29:22 +0530 | [diff] [blame] | 912 | static void ath9k_vif_iter(struct ath9k_vif_iter_data *iter_data, |
| 913 | u8 *mac, struct ieee80211_vif *vif) |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 914 | { |
Sujith Manoharan | cb35582 | 2014-09-17 14:45:56 +0530 | [diff] [blame] | 915 | struct ath_vif *avp = (struct ath_vif *)vif->drv_priv; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 916 | int i; |
| 917 | |
Felix Fietkau | ab11bb2 | 2013-04-16 12:51:57 +0200 | [diff] [blame] | 918 | if (iter_data->has_hw_macaddr) { |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 919 | for (i = 0; i < ETH_ALEN; i++) |
| 920 | iter_data->mask[i] &= |
| 921 | ~(iter_data->hw_macaddr[i] ^ mac[i]); |
Felix Fietkau | ab11bb2 | 2013-04-16 12:51:57 +0200 | [diff] [blame] | 922 | } else { |
| 923 | memcpy(iter_data->hw_macaddr, mac, ETH_ALEN); |
| 924 | iter_data->has_hw_macaddr = true; |
| 925 | } |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 926 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 927 | if (!vif->bss_conf.use_short_slot) |
| 928 | iter_data->slottime = ATH9K_SLOT_TIME_20; |
| 929 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 930 | switch (vif->type) { |
| 931 | case NL80211_IFTYPE_AP: |
| 932 | iter_data->naps++; |
| 933 | break; |
| 934 | case NL80211_IFTYPE_STATION: |
| 935 | iter_data->nstations++; |
Sujith Manoharan | cb35582 | 2014-09-17 14:45:56 +0530 | [diff] [blame] | 936 | if (avp->assoc && !iter_data->primary_sta) |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 937 | iter_data->primary_sta = vif; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 938 | break; |
| 939 | case NL80211_IFTYPE_ADHOC: |
| 940 | iter_data->nadhocs++; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 941 | if (vif->bss_conf.enable_beacon) |
| 942 | iter_data->beacons = true; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 943 | break; |
| 944 | case NL80211_IFTYPE_MESH_POINT: |
| 945 | iter_data->nmeshes++; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 946 | if (vif->bss_conf.enable_beacon) |
| 947 | iter_data->beacons = true; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 948 | break; |
| 949 | case NL80211_IFTYPE_WDS: |
| 950 | iter_data->nwds++; |
| 951 | break; |
| 952 | default: |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 953 | break; |
| 954 | } |
| 955 | } |
| 956 | |
Sujith Manoharan | 2ce73c0 | 2014-09-19 13:00:42 +0530 | [diff] [blame] | 957 | static 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 Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 985 | /* Called with sc->mutex held. */ |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 986 | void ath9k_calculate_iter_data(struct ath_softc *sc, |
| 987 | struct ath_chanctx *ctx, |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 988 | struct ath9k_vif_iter_data *iter_data) |
| 989 | { |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 990 | struct ath_vif *avp; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 991 | |
| 992 | /* |
Ben Greear | daad166 | 2014-11-04 15:22:50 -0800 | [diff] [blame] | 993 | * The hardware will use primary station addr together with the |
| 994 | * BSSID mask when matching addresses. |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 995 | */ |
| 996 | memset(iter_data, 0, sizeof(*iter_data)); |
Joe Perches | 93803b3 | 2015-03-02 19:54:49 -0800 | [diff] [blame^] | 997 | eth_broadcast_addr(iter_data->mask); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 998 | iter_data->slottime = ATH9K_SLOT_TIME_9; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 999 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1000 | list_for_each_entry(avp, &ctx->vifs, list) |
| 1001 | ath9k_vif_iter(iter_data, avp->vif->addr, avp->vif); |
Sujith Manoharan | 2ce73c0 | 2014-09-19 13:00:42 +0530 | [diff] [blame] | 1002 | |
| 1003 | ath9k_update_bssid_mask(sc, ctx, iter_data); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | static 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 Manoharan | cb35582 | 2014-09-17 14:45:56 +0530 | [diff] [blame] | 1010 | struct ath_vif *avp = (struct ath_vif *)vif->drv_priv; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1011 | unsigned long flags; |
| 1012 | |
| 1013 | set_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1014 | |
Sujith Manoharan | cb35582 | 2014-09-17 14:45:56 +0530 | [diff] [blame] | 1015 | ether_addr_copy(common->curbssid, avp->bssid); |
| 1016 | common->curaid = avp->aid; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1017 | 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 Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Sujith Manoharan | 4ee26de | 2014-09-15 11:25:52 +0530 | [diff] [blame] | 1036 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 1037 | static 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 Manoharan | 62ae1ae | 2014-10-17 07:40:20 +0530 | [diff] [blame] | 1055 | memcpy(common->macaddr, vif->addr, ETH_ALEN); |
Sujith Manoharan | 4ee26de | 2014-09-15 11:25:52 +0530 | [diff] [blame] | 1056 | 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 | |
| 1068 | exit: |
| 1069 | ath9k_ps_restore(sc); |
| 1070 | } |
| 1071 | #endif |
| 1072 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1073 | /* Called with sc->mutex held. */ |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1074 | void ath9k_calculate_summary_state(struct ath_softc *sc, |
| 1075 | struct ath_chanctx *ctx) |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1076 | { |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1077 | 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 Manoharan | 9bf30ff9 | 2014-09-05 08:03:11 +0530 | [diff] [blame] | 1080 | struct ath_beacon_config *cur_conf; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1081 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1082 | ath_chanctx_check_active(sc, ctx); |
| 1083 | |
| 1084 | if (ctx != sc->cur_chan) |
| 1085 | return; |
| 1086 | |
Sujith Manoharan | 4ee26de | 2014-09-15 11:25:52 +0530 | [diff] [blame] | 1087 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 1088 | if (ctx == &sc->offchannel.chan) |
| 1089 | return ath9k_set_offchannel_state(sc); |
| 1090 | #endif |
| 1091 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1092 | ath9k_ps_wakeup(sc); |
| 1093 | ath9k_calculate_iter_data(sc, ctx, &iter_data); |
| 1094 | |
| 1095 | if (iter_data.has_hw_macaddr) |
Sujith Manoharan | 62ae1ae | 2014-10-17 07:40:20 +0530 | [diff] [blame] | 1096 | memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1097 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1098 | memcpy(common->bssidmask, iter_data.mask, ETH_ALEN); |
| 1099 | ath_hw_setbssidmask(common); |
| 1100 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1101 | if (iter_data.naps > 0) { |
Sujith Manoharan | 9bf30ff9 | 2014-09-05 08:03:11 +0530 | [diff] [blame] | 1102 | cur_conf = &ctx->beacon; |
Sujith Manoharan | 60ca9f8 | 2012-07-17 17:15:37 +0530 | [diff] [blame] | 1103 | ath9k_hw_set_tsfadjust(ah, true); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1104 | ah->opmode = NL80211_IFTYPE_AP; |
Sujith Manoharan | 9bf30ff9 | 2014-09-05 08:03:11 +0530 | [diff] [blame] | 1105 | if (cur_conf->enable_beacon) |
| 1106 | iter_data.beacons = true; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1107 | } else { |
Sujith Manoharan | 60ca9f8 | 2012-07-17 17:15:37 +0530 | [diff] [blame] | 1108 | ath9k_hw_set_tsfadjust(ah, false); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1109 | |
Javier Cardona | fd5999c | 2011-05-03 16:57:19 -0700 | [diff] [blame] | 1110 | if (iter_data.nmeshes) |
| 1111 | ah->opmode = NL80211_IFTYPE_MESH_POINT; |
| 1112 | else if (iter_data.nwds) |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1113 | 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 Manoharan | df35d29 | 2012-07-17 17:15:43 +0530 | [diff] [blame] | 1120 | ath9k_hw_setopmode(ah); |
| 1121 | |
Felix Fietkau | 748299f | 2014-06-11 16:18:04 +0530 | [diff] [blame] | 1122 | ctx->switch_after_beacon = false; |
Felix Fietkau | 198823f | 2012-06-15 15:25:25 +0200 | [diff] [blame] | 1123 | if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0) |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1124 | ah->imask |= ATH9K_INT_TSFOOR; |
Felix Fietkau | 748299f | 2014-06-11 16:18:04 +0530 | [diff] [blame] | 1125 | else { |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1126 | ah->imask &= ~ATH9K_INT_TSFOOR; |
Felix Fietkau | 748299f | 2014-06-11 16:18:04 +0530 | [diff] [blame] | 1127 | if (iter_data.naps == 1 && iter_data.beacons) |
| 1128 | ctx->switch_after_beacon = true; |
| 1129 | } |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1130 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1131 | ah->imask &= ~ATH9K_INT_SWBA; |
| 1132 | if (ah->opmode == NL80211_IFTYPE_STATION) { |
| 1133 | bool changed = (iter_data.primary_sta != ctx->primary_sta); |
| 1134 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1135 | if (iter_data.primary_sta) { |
Sujith Manoharan | 602607b | 2014-09-05 08:03:10 +0530 | [diff] [blame] | 1136 | iter_data.beacons = true; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1137 | ath9k_set_assoc_state(sc, iter_data.primary_sta, |
| 1138 | changed); |
Sujith Manoharan | 1030f9f | 2014-09-15 11:25:54 +0530 | [diff] [blame] | 1139 | ctx->primary_sta = iter_data.primary_sta; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1140 | } else { |
| 1141 | ctx->primary_sta = NULL; |
Joe Perches | 93803b3 | 2015-03-02 19:54:49 -0800 | [diff] [blame^] | 1142 | eth_zero_addr(common->curbssid); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1143 | 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 Fietkau | 72d874c | 2011-10-08 20:06:19 +0200 | [diff] [blame] | 1151 | ath9k_hw_set_interrupts(ah); |
Sujith Manoharan | 6dcc344 | 2012-07-17 17:16:36 +0530 | [diff] [blame] | 1152 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1153 | 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 Manoharan | 6dcc344 | 2012-07-17 17:16:36 +0530 | [diff] [blame] | 1161 | } |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1162 | |
| 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 Manoharan | 2ce73c0 | 2014-09-19 13:00:42 +0530 | [diff] [blame] | 1168 | ath_dbg(common, CONFIG, |
| 1169 | "macaddr: %pM, bssid: %pM, bssidmask: %pM\n", |
| 1170 | common->macaddr, common->curbssid, common->bssidmask); |
| 1171 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1172 | ath9k_ps_restore(sc); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1175 | static void ath9k_assign_hw_queues(struct ieee80211_hw *hw, |
| 1176 | struct ieee80211_vif *vif) |
| 1177 | { |
| 1178 | int i; |
| 1179 | |
Sujith Manoharan | 868caae | 2014-10-21 19:23:02 +0530 | [diff] [blame] | 1180 | if (!ath9k_is_chanctx_enabled()) |
| 1181 | return; |
| 1182 | |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1183 | for (i = 0; i < IEEE80211_NUM_ACS; i++) |
| 1184 | vif->hw_queue[i] = i; |
| 1185 | |
Chun-Yeow Yeoh | 4b870c2 | 2014-11-12 16:40:19 +0800 | [diff] [blame] | 1186 | if (vif->type == NL80211_IFTYPE_AP || |
| 1187 | vif->type == NL80211_IFTYPE_MESH_POINT) |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1188 | vif->cab_queue = hw->queues - 2; |
| 1189 | else |
| 1190 | vif->cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 1191 | } |
| 1192 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1193 | static int ath9k_add_interface(struct ieee80211_hw *hw, |
| 1194 | struct ieee80211_vif *vif) |
| 1195 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1196 | struct ath_softc *sc = hw->priv; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1197 | struct ath_hw *ah = sc->sc_ah; |
| 1198 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | f89d1bc | 2013-08-06 14:18:13 +0200 | [diff] [blame] | 1199 | struct ath_vif *avp = (void *)vif->drv_priv; |
| 1200 | struct ath_node *an = &avp->mcast_node; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1201 | |
| 1202 | mutex_lock(&sc->mutex); |
| 1203 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1204 | if (config_enabled(CONFIG_ATH9K_TX99)) { |
Sujith Manoharan | ca529c9 | 2014-09-05 08:03:19 +0530 | [diff] [blame] | 1205 | if (sc->cur_chan->nvifs >= 1) { |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1206 | mutex_unlock(&sc->mutex); |
| 1207 | return -EOPNOTSUPP; |
| 1208 | } |
| 1209 | sc->tx99_vif = vif; |
| 1210 | } |
| 1211 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1212 | ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type); |
Sujith Manoharan | ca529c9 | 2014-09-05 08:03:19 +0530 | [diff] [blame] | 1213 | sc->cur_chan->nvifs++; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1214 | |
Sujith Manoharan | 130ef6e | 2012-07-17 17:15:30 +0530 | [diff] [blame] | 1215 | if (ath9k_uses_beacons(vif->type)) |
| 1216 | ath9k_beacon_assign_slot(sc, vif); |
| 1217 | |
Felix Fietkau | d463af4 | 2014-04-06 00:37:03 +0200 | [diff] [blame] | 1218 | avp->vif = vif; |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 1219 | if (!ath9k_is_chanctx_enabled()) { |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 1220 | avp->chanctx = sc->cur_chan; |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1221 | list_add_tail(&avp->list, &avp->chanctx->vifs); |
| 1222 | } |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1223 | |
Ben Greear | daad166 | 2014-11-04 15:22:50 -0800 | [diff] [blame] | 1224 | ath9k_calculate_summary_state(sc, avp->chanctx); |
| 1225 | |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1226 | ath9k_assign_hw_queues(hw, vif); |
Felix Fietkau | 0453531 | 2014-06-11 16:17:51 +0530 | [diff] [blame] | 1227 | |
Felix Fietkau | f89d1bc | 2013-08-06 14:18:13 +0200 | [diff] [blame] | 1228 | an->sc = sc; |
| 1229 | an->sta = NULL; |
| 1230 | an->vif = vif; |
| 1231 | an->no_ps_filter = true; |
| 1232 | ath_tx_node_init(sc, an); |
| 1233 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1234 | mutex_unlock(&sc->mutex); |
Mohammed Shafi Shajakhan | 327967c | 2012-09-04 19:33:36 +0530 | [diff] [blame] | 1235 | return 0; |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1238 | static int ath9k_change_interface(struct ieee80211_hw *hw, |
| 1239 | struct ieee80211_vif *vif, |
| 1240 | enum nl80211_iftype new_type, |
| 1241 | bool p2p) |
| 1242 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1243 | struct ath_softc *sc = hw->priv; |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1244 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | c083ce9 | 2014-06-11 16:17:54 +0530 | [diff] [blame] | 1245 | struct ath_vif *avp = (void *)vif->drv_priv; |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1246 | |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1247 | mutex_lock(&sc->mutex); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1248 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1249 | if (config_enabled(CONFIG_ATH9K_TX99)) { |
| 1250 | mutex_unlock(&sc->mutex); |
| 1251 | return -EOPNOTSUPP; |
| 1252 | } |
| 1253 | |
| 1254 | ath_dbg(common, CONFIG, "Change Interface\n"); |
| 1255 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1256 | if (ath9k_uses_beacons(vif->type)) |
Sujith Manoharan | 130ef6e | 2012-07-17 17:15:30 +0530 | [diff] [blame] | 1257 | ath9k_beacon_remove_slot(sc, vif); |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1258 | |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1259 | vif->type = new_type; |
| 1260 | vif->p2p = p2p; |
| 1261 | |
Sujith Manoharan | 130ef6e | 2012-07-17 17:15:30 +0530 | [diff] [blame] | 1262 | if (ath9k_uses_beacons(vif->type)) |
| 1263 | ath9k_beacon_assign_slot(sc, vif); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1264 | |
Sujith Manoharan | a402764 | 2014-09-05 09:50:55 +0530 | [diff] [blame] | 1265 | ath9k_assign_hw_queues(hw, vif); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1266 | ath9k_calculate_summary_state(sc, avp->chanctx); |
Sujith Manoharan | 130ef6e | 2012-07-17 17:15:30 +0530 | [diff] [blame] | 1267 | |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1268 | mutex_unlock(&sc->mutex); |
Mohammed Shafi Shajakhan | 327967c | 2012-09-04 19:33:36 +0530 | [diff] [blame] | 1269 | return 0; |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 1270 | } |
| 1271 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1272 | static void ath9k_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 1273 | struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1274 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1275 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1276 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | f89d1bc | 2013-08-06 14:18:13 +0200 | [diff] [blame] | 1277 | struct ath_vif *avp = (void *)vif->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1278 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1279 | ath_dbg(common, CONFIG, "Detach Interface\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1280 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1281 | mutex_lock(&sc->mutex); |
| 1282 | |
Sujith Manoharan | c7dd40c | 2014-08-22 20:39:30 +0530 | [diff] [blame] | 1283 | ath9k_p2p_remove_vif(sc, vif); |
Felix Fietkau | d463af4 | 2014-04-06 00:37:03 +0200 | [diff] [blame] | 1284 | |
Sujith Manoharan | ca529c9 | 2014-09-05 08:03:19 +0530 | [diff] [blame] | 1285 | sc->cur_chan->nvifs--; |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1286 | sc->tx99_vif = NULL; |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 1287 | if (!ath9k_is_chanctx_enabled()) |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1288 | list_del(&avp->list); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1289 | |
Ben Greear | 4801416 | 2011-01-15 19:13:48 +0000 | [diff] [blame] | 1290 | if (ath9k_uses_beacons(vif->type)) |
Sujith Manoharan | 130ef6e | 2012-07-17 17:15:30 +0530 | [diff] [blame] | 1291 | ath9k_beacon_remove_slot(sc, vif); |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 1292 | |
Felix Fietkau | f89d1bc | 2013-08-06 14:18:13 +0200 | [diff] [blame] | 1293 | ath_tx_node_cleanup(sc, &avp->mcast_node); |
| 1294 | |
Ben Greear | daad166 | 2014-11-04 15:22:50 -0800 | [diff] [blame] | 1295 | ath9k_calculate_summary_state(sc, avp->chanctx); |
| 1296 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1297 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1298 | } |
| 1299 | |
Senthil Balasubramanian | fbab739 | 2010-10-05 20:36:40 +0530 | [diff] [blame] | 1300 | static void ath9k_enable_ps(struct ath_softc *sc) |
Senthil Balasubramanian | 3f7c5c1 | 2010-02-03 22:51:13 +0530 | [diff] [blame] | 1301 | { |
Pavel Roskin | 3069168 | 2010-03-31 18:05:31 -0400 | [diff] [blame] | 1302 | struct ath_hw *ah = sc->sc_ah; |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 1303 | struct ath_common *common = ath9k_hw_common(ah); |
Pavel Roskin | 3069168 | 2010-03-31 18:05:31 -0400 | [diff] [blame] | 1304 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1305 | if (config_enabled(CONFIG_ATH9K_TX99)) |
| 1306 | return; |
| 1307 | |
Senthil Balasubramanian | 3f7c5c1 | 2010-02-03 22:51:13 +0530 | [diff] [blame] | 1308 | sc->ps_enabled = true; |
Pavel Roskin | 3069168 | 2010-03-31 18:05:31 -0400 | [diff] [blame] | 1309 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) { |
| 1310 | if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) { |
| 1311 | ah->imask |= ATH9K_INT_TIM_TIMER; |
Felix Fietkau | 72d874c | 2011-10-08 20:06:19 +0200 | [diff] [blame] | 1312 | ath9k_hw_set_interrupts(ah); |
Senthil Balasubramanian | 3f7c5c1 | 2010-02-03 22:51:13 +0530 | [diff] [blame] | 1313 | } |
Vasanthakumar Thiagarajan | fdf7662 | 2010-05-17 18:57:55 -0700 | [diff] [blame] | 1314 | ath9k_hw_setrxabort(ah, 1); |
Senthil Balasubramanian | 3f7c5c1 | 2010-02-03 22:51:13 +0530 | [diff] [blame] | 1315 | } |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 1316 | ath_dbg(common, PS, "PowerSave enabled\n"); |
Senthil Balasubramanian | 3f7c5c1 | 2010-02-03 22:51:13 +0530 | [diff] [blame] | 1317 | } |
| 1318 | |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1319 | static void ath9k_disable_ps(struct ath_softc *sc) |
| 1320 | { |
| 1321 | struct ath_hw *ah = sc->sc_ah; |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 1322 | struct ath_common *common = ath9k_hw_common(ah); |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1323 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1324 | if (config_enabled(CONFIG_ATH9K_TX99)) |
| 1325 | return; |
| 1326 | |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1327 | sc->ps_enabled = false; |
| 1328 | ath9k_hw_setpower(ah, ATH9K_PM_AWAKE); |
| 1329 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) { |
| 1330 | ath9k_hw_setrxabort(ah, 0); |
| 1331 | sc->ps_flags &= ~(PS_WAIT_FOR_BEACON | |
| 1332 | PS_WAIT_FOR_CAB | |
| 1333 | PS_WAIT_FOR_PSPOLL_DATA | |
| 1334 | PS_WAIT_FOR_TX_ACK); |
| 1335 | if (ah->imask & ATH9K_INT_TIM_TIMER) { |
| 1336 | ah->imask &= ~ATH9K_INT_TIM_TIMER; |
Felix Fietkau | 72d874c | 2011-10-08 20:06:19 +0200 | [diff] [blame] | 1337 | ath9k_hw_set_interrupts(ah); |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1338 | } |
| 1339 | } |
Sujith Manoharan | ad12886 | 2012-04-24 10:23:20 +0530 | [diff] [blame] | 1340 | ath_dbg(common, PS, "PowerSave disabled\n"); |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1341 | } |
| 1342 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1343 | static int ath9k_config(struct ieee80211_hw *hw, u32 changed) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1344 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1345 | struct ath_softc *sc = hw->priv; |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1346 | struct ath_hw *ah = sc->sc_ah; |
| 1347 | struct ath_common *common = ath9k_hw_common(ah); |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1348 | struct ieee80211_conf *conf = &hw->conf; |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 1349 | struct ath_chanctx *ctx = sc->cur_chan; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1350 | |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 1351 | ath9k_ps_wakeup(sc); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 1352 | mutex_lock(&sc->mutex); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1353 | |
Felix Fietkau | daa1b6e | 2011-11-16 13:08:43 +0100 | [diff] [blame] | 1354 | if (changed & IEEE80211_CONF_CHANGE_IDLE) { |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 1355 | sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE); |
Rajkumar Manoharan | b73f3e7 | 2012-07-01 19:53:53 +0530 | [diff] [blame] | 1356 | if (sc->ps_idle) { |
Felix Fietkau | daa1b6e | 2011-11-16 13:08:43 +0100 | [diff] [blame] | 1357 | ath_cancel_work(sc); |
Rajkumar Manoharan | b73f3e7 | 2012-07-01 19:53:53 +0530 | [diff] [blame] | 1358 | ath9k_stop_btcoex(sc); |
| 1359 | } else { |
| 1360 | ath9k_start_btcoex(sc); |
Felix Fietkau | 75600ab | 2012-04-12 20:36:31 +0200 | [diff] [blame] | 1361 | /* |
| 1362 | * The chip needs a reset to properly wake up from |
| 1363 | * full sleep |
| 1364 | */ |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 1365 | ath_chanctx_set_channel(sc, ctx, &ctx->chandef); |
Rajkumar Manoharan | b73f3e7 | 2012-07-01 19:53:53 +0530 | [diff] [blame] | 1366 | } |
Felix Fietkau | daa1b6e | 2011-11-16 13:08:43 +0100 | [diff] [blame] | 1367 | } |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 1368 | |
Luis R. Rodriguez | e7824a5 | 2009-11-24 02:53:25 -0500 | [diff] [blame] | 1369 | /* |
| 1370 | * We just prepare to enable PS. We have to wait until our AP has |
| 1371 | * ACK'd our null data frame to disable RX otherwise we'll ignore |
| 1372 | * those ACKs and end up retransmitting the same null data frames. |
| 1373 | * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode. |
| 1374 | */ |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1375 | if (changed & IEEE80211_CONF_CHANGE_PS) { |
Luis R. Rodriguez | 8ab2cd0 | 2010-09-16 15:12:26 -0400 | [diff] [blame] | 1376 | unsigned long flags; |
| 1377 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
Senthil Balasubramanian | fbab739 | 2010-10-05 20:36:40 +0530 | [diff] [blame] | 1378 | if (conf->flags & IEEE80211_CONF_PS) |
| 1379 | ath9k_enable_ps(sc); |
Senthil Balasubramanian | 845d708 | 2010-10-05 20:36:41 +0530 | [diff] [blame] | 1380 | else |
| 1381 | ath9k_disable_ps(sc); |
Luis R. Rodriguez | 8ab2cd0 | 2010-09-16 15:12:26 -0400 | [diff] [blame] | 1382 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1383 | } |
| 1384 | |
Sujith | 199afd9 | 2010-01-08 10:36:13 +0530 | [diff] [blame] | 1385 | if (changed & IEEE80211_CONF_CHANGE_MONITOR) { |
| 1386 | if (conf->flags & IEEE80211_CONF_MONITOR) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1387 | ath_dbg(common, CONFIG, "Monitor mode is enabled\n"); |
Rajkumar Manoharan | 5f841b4 | 2010-10-27 18:31:15 +0530 | [diff] [blame] | 1388 | sc->sc_ah->is_monitoring = true; |
| 1389 | } else { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1390 | ath_dbg(common, CONFIG, "Monitor mode is disabled\n"); |
Rajkumar Manoharan | 5f841b4 | 2010-10-27 18:31:15 +0530 | [diff] [blame] | 1391 | sc->sc_ah->is_monitoring = false; |
Sujith | 199afd9 | 2010-01-08 10:36:13 +0530 | [diff] [blame] | 1392 | } |
| 1393 | } |
| 1394 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 1395 | if (!ath9k_is_chanctx_enabled() && (changed & IEEE80211_CONF_CHANGE_CHANNEL)) { |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 1396 | ctx->offchannel = !!(conf->flags & IEEE80211_CONF_OFFCHANNEL); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 1397 | ath_chanctx_set_channel(sc, ctx, &hw->conf.chandef); |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 1398 | } |
Sujith | 86b89ee | 2008-08-07 10:54:57 +0530 | [diff] [blame] | 1399 | |
Luis R. Rodriguez | c9f6a65 | 2010-01-19 14:04:19 -0500 | [diff] [blame] | 1400 | if (changed & IEEE80211_CONF_CHANGE_POWER) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1401 | ath_dbg(common, CONFIG, "Set power: %d\n", conf->power_level); |
Felix Fietkau | bc7e1be | 2014-06-11 16:17:50 +0530 | [diff] [blame] | 1402 | sc->cur_chan->txpower = 2 * conf->power_level; |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 1403 | ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower, |
| 1404 | sc->cur_chan->txpower, |
| 1405 | &sc->cur_chan->cur_txpower); |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 1406 | } |
| 1407 | |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 1408 | mutex_unlock(&sc->mutex); |
Felix Fietkau | c0c1174 | 2011-11-16 13:08:41 +0100 | [diff] [blame] | 1409 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1410 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1411 | return 0; |
| 1412 | } |
| 1413 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1414 | #define SUPPORTED_FILTERS \ |
| 1415 | (FIF_PROMISC_IN_BSS | \ |
| 1416 | FIF_ALLMULTI | \ |
| 1417 | FIF_CONTROL | \ |
Luis R. Rodriguez | af6a3fc | 2009-08-08 21:55:16 -0400 | [diff] [blame] | 1418 | FIF_PSPOLL | \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1419 | FIF_OTHER_BSS | \ |
| 1420 | FIF_BCN_PRBRESP_PROMISC | \ |
Jouni Malinen | 9c1d8e4 | 2010-10-13 17:29:31 +0300 | [diff] [blame] | 1421 | FIF_PROBE_REQ | \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1422 | FIF_FCSFAIL) |
| 1423 | |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 1424 | /* FIXME: sc->sc_full_reset ? */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1425 | static void ath9k_configure_filter(struct ieee80211_hw *hw, |
| 1426 | unsigned int changed_flags, |
| 1427 | unsigned int *total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 1428 | u64 multicast) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1429 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1430 | struct ath_softc *sc = hw->priv; |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 1431 | u32 rfilt; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1432 | |
| 1433 | changed_flags &= SUPPORTED_FILTERS; |
| 1434 | *total_flags &= SUPPORTED_FILTERS; |
| 1435 | |
Sujith Manoharan | fce3443 | 2014-09-05 08:03:18 +0530 | [diff] [blame] | 1436 | spin_lock_bh(&sc->chan_lock); |
| 1437 | sc->cur_chan->rxfilter = *total_flags; |
| 1438 | spin_unlock_bh(&sc->chan_lock); |
| 1439 | |
Jouni Malinen | aa68aea | 2009-05-19 17:01:41 +0300 | [diff] [blame] | 1440 | ath9k_ps_wakeup(sc); |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 1441 | rfilt = ath_calcrxfilter(sc); |
| 1442 | ath9k_hw_setrxfilter(sc->sc_ah, rfilt); |
Jouni Malinen | aa68aea | 2009-05-19 17:01:41 +0300 | [diff] [blame] | 1443 | ath9k_ps_restore(sc); |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 1444 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1445 | ath_dbg(ath9k_hw_common(sc->sc_ah), CONFIG, "Set HW RX filter: 0x%x\n", |
| 1446 | rfilt); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1447 | } |
| 1448 | |
Johannes Berg | 4ca7786 | 2010-02-19 19:06:56 +0100 | [diff] [blame] | 1449 | static int ath9k_sta_add(struct ieee80211_hw *hw, |
| 1450 | struct ieee80211_vif *vif, |
| 1451 | struct ieee80211_sta *sta) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1452 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1453 | struct ath_softc *sc = hw->priv; |
Felix Fietkau | 93ae2dd | 2011-04-17 23:28:10 +0200 | [diff] [blame] | 1454 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 1455 | struct ath_node *an = (struct ath_node *) sta->drv_priv; |
| 1456 | struct ieee80211_key_conf ps_key = { }; |
Felix Fietkau | 4ef69d0 | 2013-04-27 11:47:01 +0200 | [diff] [blame] | 1457 | int key; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1458 | |
Ben Greear | 7e1e386 | 2011-11-03 11:33:13 -0700 | [diff] [blame] | 1459 | ath_node_attach(sc, sta, vif); |
Felix Fietkau | f59a59f | 2011-05-10 20:52:22 +0200 | [diff] [blame] | 1460 | |
| 1461 | if (vif->type != NL80211_IFTYPE_AP && |
| 1462 | vif->type != NL80211_IFTYPE_AP_VLAN) |
| 1463 | return 0; |
| 1464 | |
Felix Fietkau | 4ef69d0 | 2013-04-27 11:47:01 +0200 | [diff] [blame] | 1465 | key = ath_key_config(common, vif, sta, &ps_key); |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1466 | if (key > 0) { |
Felix Fietkau | 4ef69d0 | 2013-04-27 11:47:01 +0200 | [diff] [blame] | 1467 | an->ps_key = key; |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1468 | an->key_idx[0] = key; |
| 1469 | } |
Johannes Berg | 4ca7786 | 2010-02-19 19:06:56 +0100 | [diff] [blame] | 1470 | |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
Felix Fietkau | 93ae2dd | 2011-04-17 23:28:10 +0200 | [diff] [blame] | 1474 | static void ath9k_del_ps_key(struct ath_softc *sc, |
| 1475 | struct ieee80211_vif *vif, |
| 1476 | struct ieee80211_sta *sta) |
| 1477 | { |
| 1478 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 1479 | struct ath_node *an = (struct ath_node *) sta->drv_priv; |
| 1480 | struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key }; |
| 1481 | |
| 1482 | if (!an->ps_key) |
| 1483 | return; |
| 1484 | |
| 1485 | ath_key_delete(common, &ps_key); |
Felix Fietkau | 4ef69d0 | 2013-04-27 11:47:01 +0200 | [diff] [blame] | 1486 | an->ps_key = 0; |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1487 | an->key_idx[0] = 0; |
Felix Fietkau | 93ae2dd | 2011-04-17 23:28:10 +0200 | [diff] [blame] | 1488 | } |
| 1489 | |
Johannes Berg | 4ca7786 | 2010-02-19 19:06:56 +0100 | [diff] [blame] | 1490 | static int ath9k_sta_remove(struct ieee80211_hw *hw, |
| 1491 | struct ieee80211_vif *vif, |
| 1492 | struct ieee80211_sta *sta) |
| 1493 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1494 | struct ath_softc *sc = hw->priv; |
Johannes Berg | 4ca7786 | 2010-02-19 19:06:56 +0100 | [diff] [blame] | 1495 | |
Felix Fietkau | 93ae2dd | 2011-04-17 23:28:10 +0200 | [diff] [blame] | 1496 | ath9k_del_ps_key(sc, vif, sta); |
Johannes Berg | 4ca7786 | 2010-02-19 19:06:56 +0100 | [diff] [blame] | 1497 | ath_node_detach(sc, sta); |
| 1498 | |
| 1499 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1500 | } |
| 1501 | |
Sujith Manoharan | df3c6eb | 2014-10-17 07:40:08 +0530 | [diff] [blame] | 1502 | static int ath9k_sta_state(struct ieee80211_hw *hw, |
| 1503 | struct ieee80211_vif *vif, |
| 1504 | struct ieee80211_sta *sta, |
| 1505 | enum ieee80211_sta_state old_state, |
| 1506 | enum ieee80211_sta_state new_state) |
| 1507 | { |
| 1508 | struct ath_softc *sc = hw->priv; |
| 1509 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 1510 | int ret = 0; |
| 1511 | |
| 1512 | if (old_state == IEEE80211_STA_AUTH && |
| 1513 | new_state == IEEE80211_STA_ASSOC) { |
| 1514 | ret = ath9k_sta_add(hw, vif, sta); |
| 1515 | ath_dbg(common, CONFIG, |
| 1516 | "Add station: %pM\n", sta->addr); |
| 1517 | } else if (old_state == IEEE80211_STA_ASSOC && |
| 1518 | new_state == IEEE80211_STA_AUTH) { |
| 1519 | ret = ath9k_sta_remove(hw, vif, sta); |
| 1520 | ath_dbg(common, CONFIG, |
| 1521 | "Remove station: %pM\n", sta->addr); |
| 1522 | } |
| 1523 | |
Sujith Manoharan | b8f9279 | 2014-10-17 07:40:09 +0530 | [diff] [blame] | 1524 | if (ath9k_is_chanctx_enabled()) { |
Sujith Manoharan | 91e6ceb | 2014-10-17 07:40:19 +0530 | [diff] [blame] | 1525 | if (vif->type == NL80211_IFTYPE_STATION) { |
| 1526 | if (old_state == IEEE80211_STA_ASSOC && |
| 1527 | new_state == IEEE80211_STA_AUTHORIZED) |
| 1528 | ath_chanctx_event(sc, vif, |
| 1529 | ATH_CHANCTX_EVENT_AUTHORIZED); |
| 1530 | } |
Sujith Manoharan | b8f9279 | 2014-10-17 07:40:09 +0530 | [diff] [blame] | 1531 | } |
| 1532 | |
Sujith Manoharan | df3c6eb | 2014-10-17 07:40:08 +0530 | [diff] [blame] | 1533 | return ret; |
| 1534 | } |
| 1535 | |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1536 | static void ath9k_sta_set_tx_filter(struct ath_hw *ah, |
| 1537 | struct ath_node *an, |
| 1538 | bool set) |
| 1539 | { |
| 1540 | int i; |
| 1541 | |
| 1542 | for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) { |
| 1543 | if (!an->key_idx[i]) |
| 1544 | continue; |
| 1545 | ath9k_hw_set_tx_filter(ah, an->key_idx[i], set); |
| 1546 | } |
| 1547 | } |
| 1548 | |
Felix Fietkau | 5519541 | 2011-04-17 23:28:09 +0200 | [diff] [blame] | 1549 | static void ath9k_sta_notify(struct ieee80211_hw *hw, |
| 1550 | struct ieee80211_vif *vif, |
| 1551 | enum sta_notify_cmd cmd, |
| 1552 | struct ieee80211_sta *sta) |
| 1553 | { |
| 1554 | struct ath_softc *sc = hw->priv; |
| 1555 | struct ath_node *an = (struct ath_node *) sta->drv_priv; |
| 1556 | |
| 1557 | switch (cmd) { |
| 1558 | case STA_NOTIFY_SLEEP: |
| 1559 | an->sleeping = true; |
Johannes Berg | 042ec45 | 2011-09-29 16:04:26 +0200 | [diff] [blame] | 1560 | ath_tx_aggr_sleep(sta, sc, an); |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1561 | ath9k_sta_set_tx_filter(sc->sc_ah, an, true); |
Felix Fietkau | 5519541 | 2011-04-17 23:28:09 +0200 | [diff] [blame] | 1562 | break; |
| 1563 | case STA_NOTIFY_AWAKE: |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1564 | ath9k_sta_set_tx_filter(sc->sc_ah, an, false); |
Felix Fietkau | 5519541 | 2011-04-17 23:28:09 +0200 | [diff] [blame] | 1565 | an->sleeping = false; |
| 1566 | ath_tx_aggr_wakeup(sc, an); |
| 1567 | break; |
| 1568 | } |
| 1569 | } |
| 1570 | |
Eliad Peller | 8a3a3c8 | 2011-10-02 10:15:52 +0200 | [diff] [blame] | 1571 | static int ath9k_conf_tx(struct ieee80211_hw *hw, |
| 1572 | struct ieee80211_vif *vif, u16 queue, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1573 | const struct ieee80211_tx_queue_params *params) |
| 1574 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1575 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1576 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 1577 | struct ath_txq *txq; |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 1578 | struct ath9k_tx_queue_info qi; |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 1579 | int ret = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1580 | |
Sujith Manoharan | bea843c | 2012-11-21 18:13:10 +0530 | [diff] [blame] | 1581 | if (queue >= IEEE80211_NUM_ACS) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1582 | return 0; |
| 1583 | |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 1584 | txq = sc->tx.txq_map[queue]; |
| 1585 | |
Felix Fietkau | 96f372c | 2011-04-07 19:07:17 +0200 | [diff] [blame] | 1586 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1587 | mutex_lock(&sc->mutex); |
| 1588 | |
Sujith | 1ffb061 | 2009-03-30 15:28:46 +0530 | [diff] [blame] | 1589 | memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); |
| 1590 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1591 | qi.tqi_aifs = params->aifs; |
| 1592 | qi.tqi_cwmin = params->cw_min; |
| 1593 | qi.tqi_cwmax = params->cw_max; |
Felix Fietkau | 531bd07 | 2012-07-15 19:53:34 +0200 | [diff] [blame] | 1594 | qi.tqi_burstTime = params->txop * 32; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1595 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 1596 | ath_dbg(common, CONFIG, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 1597 | "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
| 1598 | queue, txq->axq_qnum, params->aifs, params->cw_min, |
| 1599 | params->cw_max, params->txop); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1600 | |
Felix Fietkau | aa5955c | 2012-07-15 19:53:36 +0200 | [diff] [blame] | 1601 | ath_update_max_aggr_framelen(sc, queue, qi.tqi_burstTime); |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 1602 | ret = ath_txq_update(sc, txq->axq_qnum, &qi); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1603 | if (ret) |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 1604 | ath_err(common, "TXQ Update failed\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1605 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1606 | mutex_unlock(&sc->mutex); |
Felix Fietkau | 96f372c | 2011-04-07 19:07:17 +0200 | [diff] [blame] | 1607 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1608 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1609 | return ret; |
| 1610 | } |
| 1611 | |
| 1612 | static int ath9k_set_key(struct ieee80211_hw *hw, |
| 1613 | enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 1614 | struct ieee80211_vif *vif, |
| 1615 | struct ieee80211_sta *sta, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1616 | struct ieee80211_key_conf *key) |
| 1617 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1618 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1619 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1620 | struct ath_node *an = NULL; |
| 1621 | int ret = 0, i; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1622 | |
John W. Linville | 3e6109c | 2011-01-05 09:39:17 -0500 | [diff] [blame] | 1623 | if (ath9k_modparam_nohwcrypt) |
Jouni Malinen | b3bd89c | 2009-02-24 13:42:01 +0200 | [diff] [blame] | 1624 | return -ENOSPC; |
| 1625 | |
Chun-Yeow Yeoh | 5bd5e9a | 2011-12-07 12:45:46 -0800 | [diff] [blame] | 1626 | if ((vif->type == NL80211_IFTYPE_ADHOC || |
| 1627 | vif->type == NL80211_IFTYPE_MESH_POINT) && |
Jouni Malinen | cfdc9a8 | 2011-03-23 14:52:19 +0200 | [diff] [blame] | 1628 | (key->cipher == WLAN_CIPHER_SUITE_TKIP || |
| 1629 | key->cipher == WLAN_CIPHER_SUITE_CCMP) && |
| 1630 | !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
| 1631 | /* |
| 1632 | * For now, disable hw crypto for the RSN IBSS group keys. This |
| 1633 | * could be optimized in the future to use a modified key cache |
| 1634 | * design to support per-STA RX GTK, but until that gets |
| 1635 | * implemented, use of software crypto for group addressed |
| 1636 | * frames is a acceptable to allow RSN IBSS to be used. |
| 1637 | */ |
| 1638 | return -EOPNOTSUPP; |
| 1639 | } |
| 1640 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1641 | mutex_lock(&sc->mutex); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1642 | ath9k_ps_wakeup(sc); |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1643 | ath_dbg(common, CONFIG, "Set HW Key %d\n", cmd); |
| 1644 | if (sta) |
| 1645 | an = (struct ath_node *)sta->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1646 | |
| 1647 | switch (cmd) { |
| 1648 | case SET_KEY: |
Felix Fietkau | 93ae2dd | 2011-04-17 23:28:10 +0200 | [diff] [blame] | 1649 | if (sta) |
| 1650 | ath9k_del_ps_key(sc, vif, sta); |
| 1651 | |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1652 | key->hw_key_idx = 0; |
Bruno Randolf | 040e539 | 2010-09-08 16:05:04 +0900 | [diff] [blame] | 1653 | ret = ath_key_config(common, vif, sta, key); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 1654 | if (ret >= 0) { |
| 1655 | key->hw_key_idx = ret; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1656 | /* push IV and Michael MIC generation to stack */ |
| 1657 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1658 | if (key->cipher == WLAN_CIPHER_SUITE_TKIP) |
Senthil Balasubramanian | 1b96175 | 2008-09-01 19:45:21 +0530 | [diff] [blame] | 1659 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
Chun-Yeow Yeoh | e6510b1 | 2014-11-16 03:05:40 +0800 | [diff] [blame] | 1660 | if (sc->sc_ah->sw_mgmt_crypto_tx && |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1661 | key->cipher == WLAN_CIPHER_SUITE_CCMP) |
Johannes Berg | e548c49 | 2012-09-04 17:08:23 +0200 | [diff] [blame] | 1662 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT_TX; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 1663 | ret = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1664 | } |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1665 | if (an && key->hw_key_idx) { |
| 1666 | for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) { |
| 1667 | if (an->key_idx[i]) |
| 1668 | continue; |
| 1669 | an->key_idx[i] = key->hw_key_idx; |
| 1670 | break; |
| 1671 | } |
| 1672 | WARN_ON(i == ARRAY_SIZE(an->key_idx)); |
| 1673 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1674 | break; |
| 1675 | case DISABLE_KEY: |
Bruno Randolf | 040e539 | 2010-09-08 16:05:04 +0900 | [diff] [blame] | 1676 | ath_key_delete(common, key); |
Rajkumar Manoharan | 4bbf441 | 2014-05-22 12:35:49 +0530 | [diff] [blame] | 1677 | if (an) { |
| 1678 | for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) { |
| 1679 | if (an->key_idx[i] != key->hw_key_idx) |
| 1680 | continue; |
| 1681 | an->key_idx[i] = 0; |
| 1682 | break; |
| 1683 | } |
| 1684 | } |
| 1685 | key->hw_key_idx = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1686 | break; |
| 1687 | default: |
| 1688 | ret = -EINVAL; |
| 1689 | } |
| 1690 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1691 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1692 | mutex_unlock(&sc->mutex); |
| 1693 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1694 | return ret; |
| 1695 | } |
Sujith Manoharan | 6c43c090 | 2012-07-17 17:15:50 +0530 | [diff] [blame] | 1696 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1697 | static void ath9k_bss_info_changed(struct ieee80211_hw *hw, |
| 1698 | struct ieee80211_vif *vif, |
| 1699 | struct ieee80211_bss_conf *bss_conf, |
| 1700 | u32 changed) |
| 1701 | { |
Sujith Manoharan | da0d45f | 2012-07-17 17:16:29 +0530 | [diff] [blame] | 1702 | #define CHECK_ANI \ |
| 1703 | (BSS_CHANGED_ASSOC | \ |
| 1704 | BSS_CHANGED_IBSS | \ |
| 1705 | BSS_CHANGED_BEACON_ENABLED) |
| 1706 | |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1707 | struct ath_softc *sc = hw->priv; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1708 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1709 | struct ath_common *common = ath9k_hw_common(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1710 | struct ath_vif *avp = (void *)vif->drv_priv; |
Felix Fietkau | 0005baf | 2010-01-15 02:33:40 +0100 | [diff] [blame] | 1711 | int slottime; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1712 | |
Felix Fietkau | 96f372c | 2011-04-07 19:07:17 +0200 | [diff] [blame] | 1713 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1714 | mutex_lock(&sc->mutex); |
| 1715 | |
Rajkumar Manoharan | 9f61903 | 2012-03-10 05:06:49 +0530 | [diff] [blame] | 1716 | if (changed & BSS_CHANGED_ASSOC) { |
Sujith Manoharan | 6c43c090 | 2012-07-17 17:15:50 +0530 | [diff] [blame] | 1717 | ath_dbg(common, CONFIG, "BSSID %pM Changed ASSOC %d\n", |
| 1718 | bss_conf->bssid, bss_conf->assoc); |
Sujith | c6089cc | 2009-11-16 11:40:48 +0530 | [diff] [blame] | 1719 | |
Sujith Manoharan | 62ae1ae | 2014-10-17 07:40:20 +0530 | [diff] [blame] | 1720 | memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN); |
Sujith Manoharan | cb35582 | 2014-09-17 14:45:56 +0530 | [diff] [blame] | 1721 | avp->aid = bss_conf->aid; |
| 1722 | avp->assoc = bss_conf->assoc; |
| 1723 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1724 | ath9k_calculate_summary_state(sc, avp->chanctx); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1725 | } |
| 1726 | |
Rajkumar Manoharan | 2e5ef45 | 2011-05-20 17:52:12 +0530 | [diff] [blame] | 1727 | if (changed & BSS_CHANGED_IBSS) { |
Rajkumar Manoharan | 2e5ef45 | 2011-05-20 17:52:12 +0530 | [diff] [blame] | 1728 | memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); |
| 1729 | common->curaid = bss_conf->aid; |
| 1730 | ath9k_hw_write_associd(sc->sc_ah); |
Rajkumar Manoharan | 2e5ef45 | 2011-05-20 17:52:12 +0530 | [diff] [blame] | 1731 | } |
| 1732 | |
Sujith Manoharan | ef4ad63 | 2012-07-17 17:15:56 +0530 | [diff] [blame] | 1733 | if ((changed & BSS_CHANGED_BEACON_ENABLED) || |
Rajkumar Manoharan | 9198cf4 | 2014-06-26 16:54:40 +0530 | [diff] [blame] | 1734 | (changed & BSS_CHANGED_BEACON_INT) || |
| 1735 | (changed & BSS_CHANGED_BEACON_INFO)) { |
Sujith Manoharan | 9bf30ff9 | 2014-09-05 08:03:11 +0530 | [diff] [blame] | 1736 | ath9k_beacon_config(sc, vif, changed); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1737 | if (changed & BSS_CHANGED_BEACON_ENABLED) |
| 1738 | ath9k_calculate_summary_state(sc, avp->chanctx); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1739 | } |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1740 | |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 1741 | if ((avp->chanctx == sc->cur_chan) && |
| 1742 | (changed & BSS_CHANGED_ERP_SLOT)) { |
Felix Fietkau | 0005baf | 2010-01-15 02:33:40 +0100 | [diff] [blame] | 1743 | if (bss_conf->use_short_slot) |
| 1744 | slottime = 9; |
| 1745 | else |
| 1746 | slottime = 20; |
| 1747 | if (vif->type == NL80211_IFTYPE_AP) { |
| 1748 | /* |
| 1749 | * Defer update, so that connected stations can adjust |
| 1750 | * their settings at the same time. |
| 1751 | * See beacon.c for more details |
| 1752 | */ |
| 1753 | sc->beacon.slottime = slottime; |
| 1754 | sc->beacon.updateslot = UPDATE; |
| 1755 | } else { |
| 1756 | ah->slottime = slottime; |
| 1757 | ath9k_hw_init_global_settings(ah); |
| 1758 | } |
| 1759 | } |
| 1760 | |
Sujith Manoharan | c7dd40c | 2014-08-22 20:39:30 +0530 | [diff] [blame] | 1761 | if (changed & BSS_CHANGED_P2P_PS) |
| 1762 | ath9k_p2p_bss_info_changed(sc, vif); |
Felix Fietkau | d463af4 | 2014-04-06 00:37:03 +0200 | [diff] [blame] | 1763 | |
Sujith Manoharan | da0d45f | 2012-07-17 17:16:29 +0530 | [diff] [blame] | 1764 | if (changed & CHECK_ANI) |
| 1765 | ath_check_ani(sc); |
| 1766 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1767 | mutex_unlock(&sc->mutex); |
Felix Fietkau | 96f372c | 2011-04-07 19:07:17 +0200 | [diff] [blame] | 1768 | ath9k_ps_restore(sc); |
Sujith Manoharan | da0d45f | 2012-07-17 17:16:29 +0530 | [diff] [blame] | 1769 | |
| 1770 | #undef CHECK_ANI |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1771 | } |
| 1772 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 1773 | static u64 ath9k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1774 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1775 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1776 | u64 tsf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1777 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1778 | mutex_lock(&sc->mutex); |
Sujith Manoharan | 9abbfb2 | 2010-12-10 11:27:06 +0530 | [diff] [blame] | 1779 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1780 | tsf = ath9k_hw_gettsf64(sc->sc_ah); |
Sujith Manoharan | 9abbfb2 | 2010-12-10 11:27:06 +0530 | [diff] [blame] | 1781 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1782 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1783 | |
| 1784 | return tsf; |
| 1785 | } |
| 1786 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 1787 | static void ath9k_set_tsf(struct ieee80211_hw *hw, |
| 1788 | struct ieee80211_vif *vif, |
| 1789 | u64 tsf) |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 1790 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1791 | struct ath_softc *sc = hw->priv; |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 1792 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1793 | mutex_lock(&sc->mutex); |
Sujith Manoharan | 9abbfb2 | 2010-12-10 11:27:06 +0530 | [diff] [blame] | 1794 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1795 | ath9k_hw_settsf64(sc->sc_ah, tsf); |
Sujith Manoharan | 9abbfb2 | 2010-12-10 11:27:06 +0530 | [diff] [blame] | 1796 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1797 | mutex_unlock(&sc->mutex); |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 1798 | } |
| 1799 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 1800 | static void ath9k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1801 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1802 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1803 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1804 | mutex_lock(&sc->mutex); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 1805 | |
| 1806 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1807 | ath9k_hw_reset_tsf(sc->sc_ah); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 1808 | ath9k_ps_restore(sc); |
| 1809 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1810 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | static int ath9k_ampdu_action(struct ieee80211_hw *hw, |
Johannes Berg | c951ad3 | 2009-11-16 12:00:38 +0100 | [diff] [blame] | 1814 | struct ieee80211_vif *vif, |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 1815 | enum ieee80211_ampdu_mlme_action action, |
| 1816 | struct ieee80211_sta *sta, |
Johannes Berg | 0b01f03 | 2011-01-18 13:51:05 +0100 | [diff] [blame] | 1817 | u16 tid, u16 *ssn, u8 buf_size) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1818 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1819 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | 1e929d3 | 2014-10-17 07:40:30 +0530 | [diff] [blame] | 1820 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 16e2342 | 2013-05-17 12:58:24 +0200 | [diff] [blame] | 1821 | bool flush = false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1822 | int ret = 0; |
| 1823 | |
Sujith Manoharan | 7ca7c77 | 2013-05-08 05:03:32 +0530 | [diff] [blame] | 1824 | mutex_lock(&sc->mutex); |
Johannes Berg | 85ad181 | 2010-06-10 10:21:49 +0200 | [diff] [blame] | 1825 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1826 | switch (action) { |
| 1827 | case IEEE80211_AMPDU_RX_START: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1828 | break; |
| 1829 | case IEEE80211_AMPDU_RX_STOP: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1830 | break; |
| 1831 | case IEEE80211_AMPDU_TX_START: |
Sujith Manoharan | 1e929d3 | 2014-10-17 07:40:30 +0530 | [diff] [blame] | 1832 | if (ath9k_is_chanctx_enabled()) { |
| 1833 | if (test_bit(ATH_OP_SCANNING, &common->op_flags)) { |
| 1834 | ret = -EBUSY; |
| 1835 | break; |
| 1836 | } |
| 1837 | } |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1838 | ath9k_ps_wakeup(sc); |
Felix Fietkau | 231c3a1 | 2010-09-20 19:35:28 +0200 | [diff] [blame] | 1839 | ret = ath_tx_aggr_start(sc, sta, tid, ssn); |
| 1840 | if (!ret) |
| 1841 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1842 | ath9k_ps_restore(sc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1843 | break; |
Johannes Berg | 18b559d | 2012-07-18 13:51:25 +0200 | [diff] [blame] | 1844 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 1845 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
Felix Fietkau | 16e2342 | 2013-05-17 12:58:24 +0200 | [diff] [blame] | 1846 | flush = true; |
| 1847 | case IEEE80211_AMPDU_TX_STOP_CONT: |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1848 | ath9k_ps_wakeup(sc); |
Sujith | f83da96 | 2009-07-23 15:32:37 +0530 | [diff] [blame] | 1849 | ath_tx_aggr_stop(sc, sta, tid); |
Felix Fietkau | 08c96ab | 2013-05-18 21:28:15 +0200 | [diff] [blame] | 1850 | if (!flush) |
Felix Fietkau | 16e2342 | 2013-05-17 12:58:24 +0200 | [diff] [blame] | 1851 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1852 | ath9k_ps_restore(sc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1853 | break; |
Johannes Berg | b172023 | 2009-03-23 17:28:39 +0100 | [diff] [blame] | 1854 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1855 | ath9k_ps_wakeup(sc); |
Sujith | 8469cde | 2008-10-29 10:19:28 +0530 | [diff] [blame] | 1856 | ath_tx_aggr_resume(sc, sta, tid); |
Luis R. Rodriguez | 8b685ba | 2009-12-23 20:03:29 -0500 | [diff] [blame] | 1857 | ath9k_ps_restore(sc); |
Sujith | 8469cde | 2008-10-29 10:19:28 +0530 | [diff] [blame] | 1858 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1859 | default: |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 1860 | ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1861 | } |
| 1862 | |
Sujith Manoharan | 7ca7c77 | 2013-05-08 05:03:32 +0530 | [diff] [blame] | 1863 | mutex_unlock(&sc->mutex); |
Johannes Berg | 85ad181 | 2010-06-10 10:21:49 +0200 | [diff] [blame] | 1864 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1865 | return ret; |
| 1866 | } |
| 1867 | |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 1868 | static int ath9k_get_survey(struct ieee80211_hw *hw, int idx, |
| 1869 | struct survey_info *survey) |
| 1870 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1871 | struct ath_softc *sc = hw->priv; |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1872 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 39162db | 2010-09-29 19:12:06 +0200 | [diff] [blame] | 1873 | struct ieee80211_supported_band *sband; |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1874 | struct ieee80211_channel *chan; |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1875 | int pos; |
| 1876 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1877 | if (config_enabled(CONFIG_ATH9K_TX99)) |
| 1878 | return -EOPNOTSUPP; |
| 1879 | |
Sujith Manoharan | b7cc9b9 | 2013-12-26 08:14:40 +0530 | [diff] [blame] | 1880 | spin_lock_bh(&common->cc_lock); |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1881 | if (idx == 0) |
| 1882 | ath_update_survey_stats(sc); |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 1883 | |
Felix Fietkau | 39162db | 2010-09-29 19:12:06 +0200 | [diff] [blame] | 1884 | sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ]; |
| 1885 | if (sband && idx >= sband->n_channels) { |
| 1886 | idx -= sband->n_channels; |
| 1887 | sband = NULL; |
| 1888 | } |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 1889 | |
Felix Fietkau | 39162db | 2010-09-29 19:12:06 +0200 | [diff] [blame] | 1890 | if (!sband) |
| 1891 | sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ]; |
| 1892 | |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1893 | if (!sband || idx >= sband->n_channels) { |
Sujith Manoharan | b7cc9b9 | 2013-12-26 08:14:40 +0530 | [diff] [blame] | 1894 | spin_unlock_bh(&common->cc_lock); |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1895 | return -ENOENT; |
Felix Fietkau | 4f1a5a4 | 2010-09-29 17:15:28 +0200 | [diff] [blame] | 1896 | } |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 1897 | |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1898 | chan = &sband->channels[idx]; |
| 1899 | pos = chan->hw_value; |
| 1900 | memcpy(survey, &sc->survey[pos], sizeof(*survey)); |
| 1901 | survey->channel = chan; |
Sujith Manoharan | b7cc9b9 | 2013-12-26 08:14:40 +0530 | [diff] [blame] | 1902 | spin_unlock_bh(&common->cc_lock); |
Felix Fietkau | 3430098 | 2010-10-10 18:21:52 +0200 | [diff] [blame] | 1903 | |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 1904 | return 0; |
| 1905 | } |
| 1906 | |
Lorenzo Bianconi | 24a1936 | 2014-09-16 02:13:15 +0200 | [diff] [blame] | 1907 | static void ath9k_enable_dynack(struct ath_softc *sc) |
| 1908 | { |
| 1909 | #ifdef CONFIG_ATH9K_DYNACK |
| 1910 | u32 rfilt; |
| 1911 | struct ath_hw *ah = sc->sc_ah; |
| 1912 | |
| 1913 | ath_dynack_reset(ah); |
| 1914 | |
| 1915 | ah->dynack.enabled = true; |
| 1916 | rfilt = ath_calcrxfilter(sc); |
| 1917 | ath9k_hw_setrxfilter(ah, rfilt); |
| 1918 | #endif |
| 1919 | } |
| 1920 | |
Lorenzo Bianconi | a4bcaf5 | 2014-09-04 23:57:41 +0200 | [diff] [blame] | 1921 | static void ath9k_set_coverage_class(struct ieee80211_hw *hw, |
| 1922 | s16 coverage_class) |
Felix Fietkau | e239d85 | 2010-01-15 02:34:58 +0100 | [diff] [blame] | 1923 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 1924 | struct ath_softc *sc = hw->priv; |
Felix Fietkau | e239d85 | 2010-01-15 02:34:58 +0100 | [diff] [blame] | 1925 | struct ath_hw *ah = sc->sc_ah; |
| 1926 | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 1927 | if (config_enabled(CONFIG_ATH9K_TX99)) |
| 1928 | return; |
| 1929 | |
Felix Fietkau | e239d85 | 2010-01-15 02:34:58 +0100 | [diff] [blame] | 1930 | mutex_lock(&sc->mutex); |
Mohammed Shafi Shajakhan | 8b2a3827 | 2011-08-24 21:38:07 +0530 | [diff] [blame] | 1931 | |
Lorenzo Bianconi | 24a1936 | 2014-09-16 02:13:15 +0200 | [diff] [blame] | 1932 | if (coverage_class >= 0) { |
| 1933 | ah->coverage_class = coverage_class; |
| 1934 | if (ah->dynack.enabled) { |
| 1935 | u32 rfilt; |
| 1936 | |
| 1937 | ah->dynack.enabled = false; |
| 1938 | rfilt = ath_calcrxfilter(sc); |
| 1939 | ath9k_hw_setrxfilter(ah, rfilt); |
| 1940 | } |
| 1941 | ath9k_ps_wakeup(sc); |
| 1942 | ath9k_hw_init_global_settings(ah); |
| 1943 | ath9k_ps_restore(sc); |
| 1944 | } else if (!ah->dynack.enabled) { |
| 1945 | ath9k_enable_dynack(sc); |
| 1946 | } |
Mohammed Shafi Shajakhan | 8b2a3827 | 2011-08-24 21:38:07 +0530 | [diff] [blame] | 1947 | |
Felix Fietkau | e239d85 | 2010-01-15 02:34:58 +0100 | [diff] [blame] | 1948 | mutex_unlock(&sc->mutex); |
| 1949 | } |
| 1950 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 1951 | static bool ath9k_has_tx_pending(struct ath_softc *sc, |
| 1952 | bool sw_pending) |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 1953 | { |
Geert Uytterhoeven | f783807 | 2014-01-26 11:53:21 +0100 | [diff] [blame] | 1954 | int i, npend = 0; |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 1955 | |
| 1956 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 1957 | if (!ATH_TXQ_SETUP(sc, i)) |
| 1958 | continue; |
| 1959 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 1960 | npend = ath9k_has_pending_frames(sc, &sc->tx.txq[i], |
| 1961 | sw_pending); |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 1962 | if (npend) |
| 1963 | break; |
| 1964 | } |
| 1965 | |
| 1966 | return !!npend; |
| 1967 | } |
| 1968 | |
Emmanuel Grumbach | 77be2c5 | 2014-03-27 11:30:29 +0200 | [diff] [blame] | 1969 | static void ath9k_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 1970 | u32 queues, bool drop) |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 1971 | { |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 1972 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | 25f3bc7 | 2014-10-17 07:40:29 +0530 | [diff] [blame] | 1973 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 1974 | |
Sujith Manoharan | 25f3bc7 | 2014-10-17 07:40:29 +0530 | [diff] [blame] | 1975 | if (ath9k_is_chanctx_enabled()) { |
| 1976 | if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags)) |
| 1977 | goto flush; |
| 1978 | |
| 1979 | /* |
| 1980 | * If MCC is active, extend the flush timeout |
| 1981 | * and wait for the HW/SW queues to become |
| 1982 | * empty. This needs to be done outside the |
| 1983 | * sc->mutex lock to allow the channel scheduler |
| 1984 | * to switch channel contexts. |
| 1985 | * |
| 1986 | * The vif queues have been stopped in mac80211, |
| 1987 | * so there won't be any incoming frames. |
| 1988 | */ |
| 1989 | __ath9k_flush(hw, queues, drop, true, true); |
| 1990 | return; |
| 1991 | } |
| 1992 | flush: |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 1993 | mutex_lock(&sc->mutex); |
Sujith Manoharan | 25f3bc7 | 2014-10-17 07:40:29 +0530 | [diff] [blame] | 1994 | __ath9k_flush(hw, queues, drop, true, false); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 1995 | mutex_unlock(&sc->mutex); |
| 1996 | } |
| 1997 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 1998 | void __ath9k_flush(struct ieee80211_hw *hw, u32 queues, bool drop, |
Sujith Manoharan | 25f3bc7 | 2014-10-17 07:40:29 +0530 | [diff] [blame] | 1999 | bool sw_pending, bool timeout_override) |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 2000 | { |
| 2001 | struct ath_softc *sc = hw->priv; |
Mohammed Shafi Shajakhan | 99aa55b | 2011-05-06 20:43:11 +0530 | [diff] [blame] | 2002 | struct ath_hw *ah = sc->sc_ah; |
| 2003 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith Manoharan | 2fae0d9 | 2014-10-17 07:40:15 +0530 | [diff] [blame] | 2004 | int timeout; |
Rajkumar Manoharan | 2f6fc35 | 2011-04-28 15:31:57 +0530 | [diff] [blame] | 2005 | bool drain_txq; |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2006 | |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2007 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 2008 | |
Mohammed Shafi Shajakhan | 6a6b3f3 | 2011-09-09 10:41:08 +0530 | [diff] [blame] | 2009 | if (ah->ah_flags & AH_UNPLUGGED) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 2010 | ath_dbg(common, ANY, "Device has been unplugged!\n"); |
Mohammed Shafi Shajakhan | 6a6b3f3 | 2011-09-09 10:41:08 +0530 | [diff] [blame] | 2011 | return; |
| 2012 | } |
| 2013 | |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 2014 | if (test_bit(ATH_OP_INVALID, &common->op_flags)) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 2015 | ath_dbg(common, ANY, "Device not present\n"); |
Mohammed Shafi Shajakhan | 99aa55b | 2011-05-06 20:43:11 +0530 | [diff] [blame] | 2016 | return; |
| 2017 | } |
| 2018 | |
Sujith Manoharan | 2fae0d9 | 2014-10-17 07:40:15 +0530 | [diff] [blame] | 2019 | spin_lock_bh(&sc->chan_lock); |
Sujith Manoharan | 25f3bc7 | 2014-10-17 07:40:29 +0530 | [diff] [blame] | 2020 | if (timeout_override) |
| 2021 | timeout = HZ / 5; |
| 2022 | else |
| 2023 | timeout = sc->cur_chan->flush_timeout; |
Sujith Manoharan | 2fae0d9 | 2014-10-17 07:40:15 +0530 | [diff] [blame] | 2024 | spin_unlock_bh(&sc->chan_lock); |
| 2025 | |
| 2026 | ath_dbg(common, CHAN_CTX, |
| 2027 | "Flush timeout: %d\n", jiffies_to_msecs(timeout)); |
| 2028 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 2029 | if (wait_event_timeout(sc->tx_wait, !ath9k_has_tx_pending(sc, sw_pending), |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 2030 | timeout) > 0) |
| 2031 | drop = false; |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2032 | |
Felix Fietkau | 9df0d6a | 2011-11-16 13:08:42 +0100 | [diff] [blame] | 2033 | if (drop) { |
| 2034 | ath9k_ps_wakeup(sc); |
| 2035 | spin_lock_bh(&sc->sc_pcu_lock); |
Felix Fietkau | 1381559 | 2013-01-20 18:51:53 +0100 | [diff] [blame] | 2036 | drain_txq = ath_drain_all_txq(sc); |
Felix Fietkau | 9df0d6a | 2011-11-16 13:08:42 +0100 | [diff] [blame] | 2037 | spin_unlock_bh(&sc->sc_pcu_lock); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 2038 | |
Felix Fietkau | 9df0d6a | 2011-11-16 13:08:42 +0100 | [diff] [blame] | 2039 | if (!drain_txq) |
Sujith Manoharan | 5555c95 | 2014-10-17 07:40:11 +0530 | [diff] [blame] | 2040 | ath_reset(sc, NULL); |
Felix Fietkau | 9adcf44 | 2011-09-03 01:40:26 +0200 | [diff] [blame] | 2041 | |
Felix Fietkau | 9df0d6a | 2011-11-16 13:08:42 +0100 | [diff] [blame] | 2042 | ath9k_ps_restore(sc); |
Felix Fietkau | 9df0d6a | 2011-11-16 13:08:42 +0100 | [diff] [blame] | 2043 | } |
Senthil Balasubramanian | d78f4b3 | 2011-03-23 23:07:22 +0530 | [diff] [blame] | 2044 | |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2045 | ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0); |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2046 | } |
| 2047 | |
Vivek Natarajan | 15b91e8 | 2011-04-06 11:41:11 +0530 | [diff] [blame] | 2048 | static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw) |
| 2049 | { |
| 2050 | struct ath_softc *sc = hw->priv; |
Vivek Natarajan | 15b91e8 | 2011-04-06 11:41:11 +0530 | [diff] [blame] | 2051 | |
Sujith Manoharan | e2d389b | 2014-10-17 07:40:18 +0530 | [diff] [blame] | 2052 | return ath9k_has_tx_pending(sc, true); |
Vivek Natarajan | 15b91e8 | 2011-04-06 11:41:11 +0530 | [diff] [blame] | 2053 | } |
| 2054 | |
Mohammed Shafi Shajakhan | 5595f11 | 2011-05-19 18:08:57 +0530 | [diff] [blame] | 2055 | static int ath9k_tx_last_beacon(struct ieee80211_hw *hw) |
Felix Fietkau | ba4903f | 2011-05-17 21:09:54 +0200 | [diff] [blame] | 2056 | { |
| 2057 | struct ath_softc *sc = hw->priv; |
| 2058 | struct ath_hw *ah = sc->sc_ah; |
| 2059 | struct ieee80211_vif *vif; |
| 2060 | struct ath_vif *avp; |
| 2061 | struct ath_buf *bf; |
| 2062 | struct ath_tx_status ts; |
Felix Fietkau | 4286df6 | 2012-02-27 19:58:40 +0100 | [diff] [blame] | 2063 | bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA); |
Felix Fietkau | ba4903f | 2011-05-17 21:09:54 +0200 | [diff] [blame] | 2064 | int status; |
| 2065 | |
| 2066 | vif = sc->beacon.bslot[0]; |
| 2067 | if (!vif) |
| 2068 | return 0; |
| 2069 | |
Sujith Manoharan | aa45fe9 | 2012-07-17 17:16:03 +0530 | [diff] [blame] | 2070 | if (!vif->bss_conf.enable_beacon) |
Felix Fietkau | ba4903f | 2011-05-17 21:09:54 +0200 | [diff] [blame] | 2071 | return 0; |
| 2072 | |
Sujith Manoharan | aa45fe9 | 2012-07-17 17:16:03 +0530 | [diff] [blame] | 2073 | avp = (void *)vif->drv_priv; |
| 2074 | |
Felix Fietkau | 4286df6 | 2012-02-27 19:58:40 +0100 | [diff] [blame] | 2075 | if (!sc->beacon.tx_processed && !edma) { |
Felix Fietkau | ba4903f | 2011-05-17 21:09:54 +0200 | [diff] [blame] | 2076 | tasklet_disable(&sc->bcon_tasklet); |
| 2077 | |
| 2078 | bf = avp->av_bcbuf; |
| 2079 | if (!bf || !bf->bf_mpdu) |
| 2080 | goto skip; |
| 2081 | |
| 2082 | status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts); |
| 2083 | if (status == -EINPROGRESS) |
| 2084 | goto skip; |
| 2085 | |
| 2086 | sc->beacon.tx_processed = true; |
| 2087 | sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK); |
| 2088 | |
| 2089 | skip: |
| 2090 | tasklet_enable(&sc->bcon_tasklet); |
| 2091 | } |
| 2092 | |
| 2093 | return sc->beacon.tx_last; |
| 2094 | } |
| 2095 | |
Mohammed Shafi Shajakhan | 52c94f4 | 2011-08-20 17:21:42 +0530 | [diff] [blame] | 2096 | static int ath9k_get_stats(struct ieee80211_hw *hw, |
| 2097 | struct ieee80211_low_level_stats *stats) |
| 2098 | { |
| 2099 | struct ath_softc *sc = hw->priv; |
| 2100 | struct ath_hw *ah = sc->sc_ah; |
| 2101 | struct ath9k_mib_stats *mib_stats = &ah->ah_mibStats; |
| 2102 | |
| 2103 | stats->dot11ACKFailureCount = mib_stats->ackrcv_bad; |
| 2104 | stats->dot11RTSFailureCount = mib_stats->rts_bad; |
| 2105 | stats->dot11FCSErrorCount = mib_stats->fcs_bad; |
| 2106 | stats->dot11RTSSuccessCount = mib_stats->rts_good; |
| 2107 | return 0; |
| 2108 | } |
| 2109 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 2110 | static u32 fill_chainmask(u32 cap, u32 new) |
| 2111 | { |
| 2112 | u32 filled = 0; |
| 2113 | int i; |
| 2114 | |
| 2115 | for (i = 0; cap && new; i++, cap >>= 1) { |
| 2116 | if (!(cap & BIT(0))) |
| 2117 | continue; |
| 2118 | |
| 2119 | if (new & BIT(0)) |
| 2120 | filled |= BIT(i); |
| 2121 | |
| 2122 | new >>= 1; |
| 2123 | } |
| 2124 | |
| 2125 | return filled; |
| 2126 | } |
| 2127 | |
Felix Fietkau | 5d9c7e3 | 2012-07-15 19:53:30 +0200 | [diff] [blame] | 2128 | static bool validate_antenna_mask(struct ath_hw *ah, u32 val) |
| 2129 | { |
Felix Fietkau | fea92cb | 2013-01-20 21:55:22 +0100 | [diff] [blame] | 2130 | if (AR_SREV_9300_20_OR_LATER(ah)) |
| 2131 | return true; |
| 2132 | |
Felix Fietkau | 5d9c7e3 | 2012-07-15 19:53:30 +0200 | [diff] [blame] | 2133 | switch (val & 0x7) { |
| 2134 | case 0x1: |
| 2135 | case 0x3: |
| 2136 | case 0x7: |
| 2137 | return true; |
| 2138 | case 0x2: |
| 2139 | return (ah->caps.rx_chainmask == 1); |
| 2140 | default: |
| 2141 | return false; |
| 2142 | } |
| 2143 | } |
| 2144 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 2145 | static int ath9k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant) |
| 2146 | { |
| 2147 | struct ath_softc *sc = hw->priv; |
| 2148 | struct ath_hw *ah = sc->sc_ah; |
| 2149 | |
Felix Fietkau | 5d9c7e3 | 2012-07-15 19:53:30 +0200 | [diff] [blame] | 2150 | if (ah->caps.rx_chainmask != 1) |
| 2151 | rx_ant |= tx_ant; |
| 2152 | |
| 2153 | if (!validate_antenna_mask(ah, rx_ant) || !tx_ant) |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 2154 | return -EINVAL; |
| 2155 | |
| 2156 | sc->ant_rx = rx_ant; |
| 2157 | sc->ant_tx = tx_ant; |
| 2158 | |
| 2159 | if (ah->caps.rx_chainmask == 1) |
| 2160 | return 0; |
| 2161 | |
| 2162 | /* AR9100 runs into calibration issues if not all rx chains are enabled */ |
| 2163 | if (AR_SREV_9100(ah)) |
| 2164 | ah->rxchainmask = 0x7; |
| 2165 | else |
| 2166 | ah->rxchainmask = fill_chainmask(ah->caps.rx_chainmask, rx_ant); |
| 2167 | |
| 2168 | ah->txchainmask = fill_chainmask(ah->caps.tx_chainmask, tx_ant); |
Oleksij Rempel | b57ba3b | 2014-02-25 14:48:55 +0100 | [diff] [blame] | 2169 | ath9k_cmn_reload_chainmask(ah); |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 2170 | |
| 2171 | return 0; |
| 2172 | } |
| 2173 | |
| 2174 | static int ath9k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant) |
| 2175 | { |
| 2176 | struct ath_softc *sc = hw->priv; |
| 2177 | |
| 2178 | *tx_ant = sc->ant_tx; |
| 2179 | *rx_ant = sc->ant_rx; |
| 2180 | return 0; |
| 2181 | } |
| 2182 | |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 2183 | static void ath9k_sw_scan_start(struct ieee80211_hw *hw, |
| 2184 | struct ieee80211_vif *vif, |
| 2185 | const u8 *mac_addr) |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 2186 | { |
| 2187 | struct ath_softc *sc = hw->priv; |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 2188 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2189 | set_bit(ATH_OP_SCANNING, &common->op_flags); |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 2190 | } |
| 2191 | |
Johannes Berg | a344d67 | 2014-06-12 22:24:31 +0200 | [diff] [blame] | 2192 | static void ath9k_sw_scan_complete(struct ieee80211_hw *hw, |
| 2193 | struct ieee80211_vif *vif) |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 2194 | { |
| 2195 | struct ath_softc *sc = hw->priv; |
Oleksij Rempel | eefa01d | 2014-02-27 11:40:46 +0100 | [diff] [blame] | 2196 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2197 | clear_bit(ATH_OP_SCANNING, &common->op_flags); |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 2198 | } |
Mohammed Shafi Shajakhan | b11e640 | 2012-07-10 14:56:52 +0530 | [diff] [blame] | 2199 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 2200 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 2201 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2202 | static void ath9k_cancel_pending_offchannel(struct ath_softc *sc) |
| 2203 | { |
| 2204 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2205 | |
| 2206 | if (sc->offchannel.roc_vif) { |
| 2207 | ath_dbg(common, CHAN_CTX, |
| 2208 | "%s: Aborting RoC\n", __func__); |
| 2209 | |
| 2210 | del_timer_sync(&sc->offchannel.timer); |
| 2211 | if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START) |
| 2212 | ath_roc_complete(sc, true); |
| 2213 | } |
| 2214 | |
| 2215 | if (test_bit(ATH_OP_SCANNING, &common->op_flags)) { |
| 2216 | ath_dbg(common, CHAN_CTX, |
| 2217 | "%s: Aborting HW scan\n", __func__); |
| 2218 | |
| 2219 | del_timer_sync(&sc->offchannel.timer); |
| 2220 | ath_scan_complete(sc, true); |
| 2221 | } |
| 2222 | } |
| 2223 | |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2224 | static int ath9k_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
John W. Linville | 855df36 | 2014-06-25 15:15:14 -0400 | [diff] [blame] | 2225 | struct ieee80211_scan_request *hw_req) |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2226 | { |
John W. Linville | 855df36 | 2014-06-25 15:15:14 -0400 | [diff] [blame] | 2227 | struct cfg80211_scan_request *req = &hw_req->req; |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2228 | struct ath_softc *sc = hw->priv; |
| 2229 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2230 | int ret = 0; |
| 2231 | |
| 2232 | mutex_lock(&sc->mutex); |
| 2233 | |
| 2234 | if (WARN_ON(sc->offchannel.scan_req)) { |
| 2235 | ret = -EBUSY; |
| 2236 | goto out; |
| 2237 | } |
| 2238 | |
| 2239 | ath9k_ps_wakeup(sc); |
| 2240 | set_bit(ATH_OP_SCANNING, &common->op_flags); |
| 2241 | sc->offchannel.scan_vif = vif; |
| 2242 | sc->offchannel.scan_req = req; |
| 2243 | sc->offchannel.scan_idx = 0; |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2244 | |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2245 | ath_dbg(common, CHAN_CTX, "HW scan request received on vif: %pM\n", |
| 2246 | vif->addr); |
| 2247 | |
| 2248 | if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) { |
| 2249 | ath_dbg(common, CHAN_CTX, "Starting HW scan\n"); |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2250 | ath_offchannel_next(sc); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2251 | } |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2252 | |
| 2253 | out: |
| 2254 | mutex_unlock(&sc->mutex); |
| 2255 | |
| 2256 | return ret; |
| 2257 | } |
| 2258 | |
| 2259 | static void ath9k_cancel_hw_scan(struct ieee80211_hw *hw, |
| 2260 | struct ieee80211_vif *vif) |
| 2261 | { |
| 2262 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2263 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2264 | |
| 2265 | ath_dbg(common, CHAN_CTX, "Cancel HW scan on vif: %pM\n", vif->addr); |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2266 | |
| 2267 | mutex_lock(&sc->mutex); |
| 2268 | del_timer_sync(&sc->offchannel.timer); |
| 2269 | ath_scan_complete(sc, true); |
| 2270 | mutex_unlock(&sc->mutex); |
| 2271 | } |
| 2272 | |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2273 | static int ath9k_remain_on_channel(struct ieee80211_hw *hw, |
| 2274 | struct ieee80211_vif *vif, |
| 2275 | struct ieee80211_channel *chan, int duration, |
| 2276 | enum ieee80211_roc_type type) |
| 2277 | { |
| 2278 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2279 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2280 | int ret = 0; |
| 2281 | |
| 2282 | mutex_lock(&sc->mutex); |
| 2283 | |
| 2284 | if (WARN_ON(sc->offchannel.roc_vif)) { |
| 2285 | ret = -EBUSY; |
| 2286 | goto out; |
| 2287 | } |
| 2288 | |
| 2289 | ath9k_ps_wakeup(sc); |
| 2290 | sc->offchannel.roc_vif = vif; |
| 2291 | sc->offchannel.roc_chan = chan; |
| 2292 | sc->offchannel.roc_duration = duration; |
| 2293 | |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2294 | ath_dbg(common, CHAN_CTX, |
| 2295 | "RoC request on vif: %pM, type: %d duration: %d\n", |
| 2296 | vif->addr, type, duration); |
| 2297 | |
| 2298 | if (sc->offchannel.state == ATH_OFFCHANNEL_IDLE) { |
| 2299 | ath_dbg(common, CHAN_CTX, "Starting RoC period\n"); |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2300 | ath_offchannel_next(sc); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2301 | } |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2302 | |
| 2303 | out: |
| 2304 | mutex_unlock(&sc->mutex); |
| 2305 | |
| 2306 | return ret; |
| 2307 | } |
| 2308 | |
| 2309 | static int ath9k_cancel_remain_on_channel(struct ieee80211_hw *hw) |
| 2310 | { |
| 2311 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2312 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2313 | |
| 2314 | mutex_lock(&sc->mutex); |
| 2315 | |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2316 | ath_dbg(common, CHAN_CTX, "Cancel RoC\n"); |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2317 | del_timer_sync(&sc->offchannel.timer); |
| 2318 | |
| 2319 | if (sc->offchannel.roc_vif) { |
| 2320 | if (sc->offchannel.state >= ATH_OFFCHANNEL_ROC_START) |
| 2321 | ath_roc_complete(sc, true); |
| 2322 | } |
| 2323 | |
| 2324 | mutex_unlock(&sc->mutex); |
| 2325 | |
| 2326 | return 0; |
| 2327 | } |
| 2328 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2329 | static int ath9k_add_chanctx(struct ieee80211_hw *hw, |
| 2330 | struct ieee80211_chanctx_conf *conf) |
| 2331 | { |
| 2332 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2333 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2334 | struct ath_chanctx *ctx, **ptr; |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2335 | int pos; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2336 | |
| 2337 | mutex_lock(&sc->mutex); |
Rajkumar Manoharan | c4dc0d0 | 2014-06-11 16:17:58 +0530 | [diff] [blame] | 2338 | |
| 2339 | ath_for_each_chanctx(sc, ctx) { |
| 2340 | if (ctx->assigned) |
| 2341 | continue; |
| 2342 | |
| 2343 | ptr = (void *) conf->drv_priv; |
| 2344 | *ptr = ctx; |
| 2345 | ctx->assigned = true; |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2346 | pos = ctx - &sc->chanctx[0]; |
| 2347 | ctx->hw_queue_base = pos * IEEE80211_NUM_ACS; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2348 | |
| 2349 | ath_dbg(common, CHAN_CTX, |
| 2350 | "Add channel context: %d MHz\n", |
| 2351 | conf->def.chan->center_freq); |
| 2352 | |
Rajkumar Manoharan | c4dc0d0 | 2014-06-11 16:17:58 +0530 | [diff] [blame] | 2353 | ath_chanctx_set_channel(sc, ctx, &conf->def); |
Sujith Manoharan | 4c7e9ae | 2014-08-24 21:16:13 +0530 | [diff] [blame] | 2354 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2355 | mutex_unlock(&sc->mutex); |
Rajkumar Manoharan | c4dc0d0 | 2014-06-11 16:17:58 +0530 | [diff] [blame] | 2356 | return 0; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2357 | } |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2358 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2359 | mutex_unlock(&sc->mutex); |
Rajkumar Manoharan | c4dc0d0 | 2014-06-11 16:17:58 +0530 | [diff] [blame] | 2360 | return -ENOSPC; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2361 | } |
| 2362 | |
| 2363 | |
| 2364 | static void ath9k_remove_chanctx(struct ieee80211_hw *hw, |
| 2365 | struct ieee80211_chanctx_conf *conf) |
| 2366 | { |
| 2367 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2368 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2369 | struct ath_chanctx *ctx = ath_chanctx_get(conf); |
| 2370 | |
| 2371 | mutex_lock(&sc->mutex); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2372 | |
| 2373 | ath_dbg(common, CHAN_CTX, |
| 2374 | "Remove channel context: %d MHz\n", |
| 2375 | conf->def.chan->center_freq); |
| 2376 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2377 | ctx->assigned = false; |
Sujith Manoharan | b18111d | 2014-10-07 10:14:37 +0530 | [diff] [blame] | 2378 | ctx->hw_queue_base = 0; |
Felix Fietkau | 73fa2f2 | 2014-06-11 16:18:10 +0530 | [diff] [blame] | 2379 | ath_chanctx_event(sc, NULL, ATH_CHANCTX_EVENT_UNASSIGN); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2380 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2381 | mutex_unlock(&sc->mutex); |
| 2382 | } |
| 2383 | |
| 2384 | static void ath9k_change_chanctx(struct ieee80211_hw *hw, |
| 2385 | struct ieee80211_chanctx_conf *conf, |
| 2386 | u32 changed) |
| 2387 | { |
| 2388 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2389 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2390 | struct ath_chanctx *ctx = ath_chanctx_get(conf); |
| 2391 | |
| 2392 | mutex_lock(&sc->mutex); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2393 | ath_dbg(common, CHAN_CTX, |
| 2394 | "Change channel context: %d MHz\n", |
| 2395 | conf->def.chan->center_freq); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2396 | ath_chanctx_set_channel(sc, ctx, &conf->def); |
| 2397 | mutex_unlock(&sc->mutex); |
| 2398 | } |
| 2399 | |
| 2400 | static int ath9k_assign_vif_chanctx(struct ieee80211_hw *hw, |
| 2401 | struct ieee80211_vif *vif, |
| 2402 | struct ieee80211_chanctx_conf *conf) |
| 2403 | { |
| 2404 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2405 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2406 | struct ath_vif *avp = (void *)vif->drv_priv; |
| 2407 | struct ath_chanctx *ctx = ath_chanctx_get(conf); |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2408 | int i; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2409 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2410 | ath9k_cancel_pending_offchannel(sc); |
| 2411 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2412 | mutex_lock(&sc->mutex); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2413 | |
| 2414 | ath_dbg(common, CHAN_CTX, |
| 2415 | "Assign VIF (addr: %pM, type: %d, p2p: %d) to channel context: %d MHz\n", |
| 2416 | vif->addr, vif->type, vif->p2p, |
| 2417 | conf->def.chan->center_freq); |
| 2418 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2419 | avp->chanctx = ctx; |
Sujith Manoharan | 2ce73c0 | 2014-09-19 13:00:42 +0530 | [diff] [blame] | 2420 | ctx->nvifs_assigned++; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2421 | list_add_tail(&avp->list, &ctx->vifs); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 2422 | ath9k_calculate_summary_state(sc, ctx); |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2423 | for (i = 0; i < IEEE80211_NUM_ACS; i++) |
| 2424 | vif->hw_queue[i] = ctx->hw_queue_base + i; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2425 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2426 | mutex_unlock(&sc->mutex); |
| 2427 | |
| 2428 | return 0; |
| 2429 | } |
| 2430 | |
| 2431 | static void ath9k_unassign_vif_chanctx(struct ieee80211_hw *hw, |
| 2432 | struct ieee80211_vif *vif, |
| 2433 | struct ieee80211_chanctx_conf *conf) |
| 2434 | { |
| 2435 | struct ath_softc *sc = hw->priv; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2436 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2437 | struct ath_vif *avp = (void *)vif->drv_priv; |
| 2438 | struct ath_chanctx *ctx = ath_chanctx_get(conf); |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2439 | int ac; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2440 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2441 | ath9k_cancel_pending_offchannel(sc); |
| 2442 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2443 | mutex_lock(&sc->mutex); |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2444 | |
| 2445 | ath_dbg(common, CHAN_CTX, |
| 2446 | "Remove VIF (addr: %pM, type: %d, p2p: %d) from channel context: %d MHz\n", |
| 2447 | vif->addr, vif->type, vif->p2p, |
| 2448 | conf->def.chan->center_freq); |
| 2449 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2450 | avp->chanctx = NULL; |
Sujith Manoharan | 2ce73c0 | 2014-09-19 13:00:42 +0530 | [diff] [blame] | 2451 | ctx->nvifs_assigned--; |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2452 | list_del(&avp->list); |
Rajkumar Manoharan | 9a9c4fb | 2014-06-11 16:18:03 +0530 | [diff] [blame] | 2453 | ath9k_calculate_summary_state(sc, ctx); |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 2454 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
| 2455 | vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2456 | |
Felix Fietkau | 3930563 | 2014-06-11 16:17:57 +0530 | [diff] [blame] | 2457 | mutex_unlock(&sc->mutex); |
| 2458 | } |
| 2459 | |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2460 | static void ath9k_mgd_prepare_tx(struct ieee80211_hw *hw, |
| 2461 | struct ieee80211_vif *vif) |
| 2462 | { |
| 2463 | struct ath_softc *sc = hw->priv; |
| 2464 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 2465 | struct ath_vif *avp = (struct ath_vif *) vif->drv_priv; |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2466 | struct ath_beacon_config *cur_conf; |
| 2467 | struct ath_chanctx *go_ctx; |
| 2468 | unsigned long timeout; |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2469 | bool changed = false; |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2470 | u32 beacon_int; |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2471 | |
| 2472 | if (!test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags)) |
| 2473 | return; |
| 2474 | |
| 2475 | if (!avp->chanctx) |
| 2476 | return; |
| 2477 | |
| 2478 | mutex_lock(&sc->mutex); |
| 2479 | |
| 2480 | spin_lock_bh(&sc->chan_lock); |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2481 | if (sc->next_chan || (sc->cur_chan != avp->chanctx)) |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2482 | changed = true; |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2483 | spin_unlock_bh(&sc->chan_lock); |
| 2484 | |
| 2485 | if (!changed) |
| 2486 | goto out; |
| 2487 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2488 | ath9k_cancel_pending_offchannel(sc); |
Sujith Manoharan | 23aab0c | 2014-10-17 07:40:28 +0530 | [diff] [blame] | 2489 | |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2490 | go_ctx = ath_is_go_chanctx_present(sc); |
| 2491 | |
| 2492 | if (go_ctx) { |
| 2493 | /* |
| 2494 | * Wait till the GO interface gets a chance |
| 2495 | * to send out an NoA. |
| 2496 | */ |
| 2497 | spin_lock_bh(&sc->chan_lock); |
| 2498 | sc->sched.mgd_prepare_tx = true; |
| 2499 | cur_conf = &go_ctx->beacon; |
| 2500 | beacon_int = TU_TO_USEC(cur_conf->beacon_interval); |
| 2501 | spin_unlock_bh(&sc->chan_lock); |
| 2502 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2503 | timeout = usecs_to_jiffies(beacon_int * 2); |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2504 | init_completion(&sc->go_beacon); |
| 2505 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2506 | mutex_unlock(&sc->mutex); |
Sujith Manoharan | 2c3634a | 2014-11-16 06:11:08 +0530 | [diff] [blame] | 2507 | |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2508 | if (wait_for_completion_timeout(&sc->go_beacon, |
Sujith Manoharan | 2c3634a | 2014-11-16 06:11:08 +0530 | [diff] [blame] | 2509 | timeout) == 0) { |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2510 | ath_dbg(common, CHAN_CTX, |
| 2511 | "Failed to send new NoA\n"); |
Sujith Manoharan | 2c3634a | 2014-11-16 06:11:08 +0530 | [diff] [blame] | 2512 | |
| 2513 | spin_lock_bh(&sc->chan_lock); |
| 2514 | sc->sched.mgd_prepare_tx = false; |
| 2515 | spin_unlock_bh(&sc->chan_lock); |
| 2516 | } |
| 2517 | |
Sujith Manoharan | 6185672 | 2014-11-16 06:11:07 +0530 | [diff] [blame] | 2518 | mutex_lock(&sc->mutex); |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2519 | } |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2520 | |
Sujith Manoharan | 878066e | 2014-08-27 12:07:24 +0530 | [diff] [blame] | 2521 | ath_dbg(common, CHAN_CTX, |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2522 | "%s: Set chanctx state to FORCE_ACTIVE for vif: %pM\n", |
| 2523 | __func__, vif->addr); |
| 2524 | |
| 2525 | spin_lock_bh(&sc->chan_lock); |
| 2526 | sc->next_chan = avp->chanctx; |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2527 | sc->sched.state = ATH_CHANCTX_STATE_FORCE_ACTIVE; |
| 2528 | spin_unlock_bh(&sc->chan_lock); |
| 2529 | |
Sujith Manoharan | c6500ea | 2014-10-17 07:40:22 +0530 | [diff] [blame] | 2530 | ath_chanctx_set_next(sc, true); |
| 2531 | out: |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2532 | mutex_unlock(&sc->mutex); |
| 2533 | } |
| 2534 | |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2535 | void ath9k_fill_chanctx_ops(void) |
| 2536 | { |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 2537 | if (!ath9k_is_chanctx_enabled()) |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2538 | return; |
| 2539 | |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2540 | ath9k_ops.hw_scan = ath9k_hw_scan; |
| 2541 | ath9k_ops.cancel_hw_scan = ath9k_cancel_hw_scan; |
| 2542 | ath9k_ops.remain_on_channel = ath9k_remain_on_channel; |
Felix Fietkau | 405393c | 2014-06-11 16:17:56 +0530 | [diff] [blame] | 2543 | ath9k_ops.cancel_remain_on_channel = ath9k_cancel_remain_on_channel; |
Sujith Manoharan | bc81d43 | 2014-08-22 20:39:27 +0530 | [diff] [blame] | 2544 | ath9k_ops.add_chanctx = ath9k_add_chanctx; |
| 2545 | ath9k_ops.remove_chanctx = ath9k_remove_chanctx; |
| 2546 | ath9k_ops.change_chanctx = ath9k_change_chanctx; |
| 2547 | ath9k_ops.assign_vif_chanctx = ath9k_assign_vif_chanctx; |
| 2548 | ath9k_ops.unassign_vif_chanctx = ath9k_unassign_vif_chanctx; |
Sujith Manoharan | e20a854 | 2014-08-23 13:29:09 +0530 | [diff] [blame] | 2549 | ath9k_ops.mgd_prepare_tx = ath9k_mgd_prepare_tx; |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 2550 | } |
| 2551 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 2552 | #endif |
| 2553 | |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 2554 | static int ath9k_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 2555 | int *dbm) |
| 2556 | { |
| 2557 | struct ath_softc *sc = hw->priv; |
| 2558 | struct ath_vif *avp = (void *)vif->drv_priv; |
| 2559 | |
| 2560 | mutex_lock(&sc->mutex); |
| 2561 | if (avp->chanctx) |
| 2562 | *dbm = avp->chanctx->cur_txpower; |
| 2563 | else |
| 2564 | *dbm = sc->cur_chan->cur_txpower; |
| 2565 | mutex_unlock(&sc->mutex); |
| 2566 | |
| 2567 | *dbm /= 2; |
| 2568 | |
| 2569 | return 0; |
| 2570 | } |
| 2571 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2572 | struct ieee80211_ops ath9k_ops = { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2573 | .tx = ath9k_tx, |
| 2574 | .start = ath9k_start, |
| 2575 | .stop = ath9k_stop, |
| 2576 | .add_interface = ath9k_add_interface, |
Rajkumar Manoharan | 6b3b991 | 2010-12-08 19:38:55 +0530 | [diff] [blame] | 2577 | .change_interface = ath9k_change_interface, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2578 | .remove_interface = ath9k_remove_interface, |
| 2579 | .config = ath9k_config, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2580 | .configure_filter = ath9k_configure_filter, |
Sujith Manoharan | df3c6eb | 2014-10-17 07:40:08 +0530 | [diff] [blame] | 2581 | .sta_state = ath9k_sta_state, |
Felix Fietkau | 5519541 | 2011-04-17 23:28:09 +0200 | [diff] [blame] | 2582 | .sta_notify = ath9k_sta_notify, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2583 | .conf_tx = ath9k_conf_tx, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2584 | .bss_info_changed = ath9k_bss_info_changed, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2585 | .set_key = ath9k_set_key, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2586 | .get_tsf = ath9k_get_tsf, |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 2587 | .set_tsf = ath9k_set_tsf, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2588 | .reset_tsf = ath9k_reset_tsf, |
Johannes Berg | 4233df6 | 2008-10-13 13:35:05 +0200 | [diff] [blame] | 2589 | .ampdu_action = ath9k_ampdu_action, |
Benoit Papillault | 62dad5b | 2010-04-28 00:08:24 +0200 | [diff] [blame] | 2590 | .get_survey = ath9k_get_survey, |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 2591 | .rfkill_poll = ath9k_rfkill_poll_state, |
Felix Fietkau | e239d85 | 2010-01-15 02:34:58 +0100 | [diff] [blame] | 2592 | .set_coverage_class = ath9k_set_coverage_class, |
Vasanthakumar Thiagarajan | 6908162 | 2011-02-19 01:13:42 -0800 | [diff] [blame] | 2593 | .flush = ath9k_flush, |
Vivek Natarajan | 15b91e8 | 2011-04-06 11:41:11 +0530 | [diff] [blame] | 2594 | .tx_frames_pending = ath9k_tx_frames_pending, |
Mohammed Shafi Shajakhan | 52c94f4 | 2011-08-20 17:21:42 +0530 | [diff] [blame] | 2595 | .tx_last_beacon = ath9k_tx_last_beacon, |
Felix Fietkau | 86a22ac | 2013-06-07 18:12:01 +0200 | [diff] [blame] | 2596 | .release_buffered_frames = ath9k_release_buffered_frames, |
Mohammed Shafi Shajakhan | 52c94f4 | 2011-08-20 17:21:42 +0530 | [diff] [blame] | 2597 | .get_stats = ath9k_get_stats, |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 2598 | .set_antenna = ath9k_set_antenna, |
| 2599 | .get_antenna = ath9k_get_antenna, |
Ben Greear | b90bd9d | 2012-05-15 15:33:25 -0700 | [diff] [blame] | 2600 | |
Sujith Manoharan | e60001e | 2013-10-28 12:22:04 +0530 | [diff] [blame] | 2601 | #ifdef CONFIG_ATH9K_WOW |
Mohammed Shafi Shajakhan | b11e640 | 2012-07-10 14:56:52 +0530 | [diff] [blame] | 2602 | .suspend = ath9k_suspend, |
| 2603 | .resume = ath9k_resume, |
| 2604 | .set_wakeup = ath9k_set_wakeup, |
| 2605 | #endif |
| 2606 | |
Ben Greear | b90bd9d | 2012-05-15 15:33:25 -0700 | [diff] [blame] | 2607 | #ifdef CONFIG_ATH9K_DEBUGFS |
| 2608 | .get_et_sset_count = ath9k_get_et_sset_count, |
Sujith Manoharan | a145daf | 2012-11-28 15:08:54 +0530 | [diff] [blame] | 2609 | .get_et_stats = ath9k_get_et_stats, |
| 2610 | .get_et_strings = ath9k_get_et_strings, |
| 2611 | #endif |
| 2612 | |
Sujith Manoharan | 1cdbaf0 | 2014-01-13 07:29:27 +0530 | [diff] [blame] | 2613 | #if defined(CONFIG_MAC80211_DEBUGFS) && defined(CONFIG_ATH9K_STATION_STATISTICS) |
Sujith Manoharan | a145daf | 2012-11-28 15:08:54 +0530 | [diff] [blame] | 2614 | .sta_add_debugfs = ath9k_sta_add_debugfs, |
Ben Greear | b90bd9d | 2012-05-15 15:33:25 -0700 | [diff] [blame] | 2615 | #endif |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 2616 | .sw_scan_start = ath9k_sw_scan_start, |
| 2617 | .sw_scan_complete = ath9k_sw_scan_complete, |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 2618 | .get_txpower = ath9k_get_txpower, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2619 | }; |