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