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