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