Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 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> |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 18 | #include "ath9k.h" |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 19 | #include "btcoex.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 20 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 21 | static char *dev_info = "ath9k"; |
| 22 | |
| 23 | MODULE_AUTHOR("Atheros Communications"); |
| 24 | MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards."); |
| 25 | MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards"); |
| 26 | MODULE_LICENSE("Dual BSD/GPL"); |
| 27 | |
Jouni Malinen | b3bd89c | 2009-02-24 13:42:01 +0200 | [diff] [blame] | 28 | static int modparam_nohwcrypt; |
| 29 | module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444); |
| 30 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); |
| 31 | |
Luis R. Rodriguez | faa27fa | 2009-10-06 21:19:06 -0400 | [diff] [blame] | 32 | static unsigned int ath9k_debug = ATH_DBG_DEFAULT; |
| 33 | module_param_named(debug, ath9k_debug, uint, 0); |
| 34 | MODULE_PARM_DESC(ath9k_debug, "Debugging mask"); |
| 35 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 36 | /* We use the hw_value as an index into our private channel structure */ |
| 37 | |
| 38 | #define CHAN2G(_freq, _idx) { \ |
| 39 | .center_freq = (_freq), \ |
| 40 | .hw_value = (_idx), \ |
Luis R. Rodriguez | eeddfd9 | 2009-05-19 17:49:46 -0400 | [diff] [blame] | 41 | .max_power = 20, \ |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | #define CHAN5G(_freq, _idx) { \ |
| 45 | .band = IEEE80211_BAND_5GHZ, \ |
| 46 | .center_freq = (_freq), \ |
| 47 | .hw_value = (_idx), \ |
Luis R. Rodriguez | eeddfd9 | 2009-05-19 17:49:46 -0400 | [diff] [blame] | 48 | .max_power = 20, \ |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | /* Some 2 GHz radios are actually tunable on 2312-2732 |
| 52 | * on 5 MHz steps, we support the channels which we know |
| 53 | * we have calibration data for all cards though to make |
| 54 | * this static */ |
| 55 | static struct ieee80211_channel ath9k_2ghz_chantable[] = { |
| 56 | CHAN2G(2412, 0), /* Channel 1 */ |
| 57 | CHAN2G(2417, 1), /* Channel 2 */ |
| 58 | CHAN2G(2422, 2), /* Channel 3 */ |
| 59 | CHAN2G(2427, 3), /* Channel 4 */ |
| 60 | CHAN2G(2432, 4), /* Channel 5 */ |
| 61 | CHAN2G(2437, 5), /* Channel 6 */ |
| 62 | CHAN2G(2442, 6), /* Channel 7 */ |
| 63 | CHAN2G(2447, 7), /* Channel 8 */ |
| 64 | CHAN2G(2452, 8), /* Channel 9 */ |
| 65 | CHAN2G(2457, 9), /* Channel 10 */ |
| 66 | CHAN2G(2462, 10), /* Channel 11 */ |
| 67 | CHAN2G(2467, 11), /* Channel 12 */ |
| 68 | CHAN2G(2472, 12), /* Channel 13 */ |
| 69 | CHAN2G(2484, 13), /* Channel 14 */ |
| 70 | }; |
| 71 | |
| 72 | /* Some 5 GHz radios are actually tunable on XXXX-YYYY |
| 73 | * on 5 MHz steps, we support the channels which we know |
| 74 | * we have calibration data for all cards though to make |
| 75 | * this static */ |
| 76 | static struct ieee80211_channel ath9k_5ghz_chantable[] = { |
| 77 | /* _We_ call this UNII 1 */ |
| 78 | CHAN5G(5180, 14), /* Channel 36 */ |
| 79 | CHAN5G(5200, 15), /* Channel 40 */ |
| 80 | CHAN5G(5220, 16), /* Channel 44 */ |
| 81 | CHAN5G(5240, 17), /* Channel 48 */ |
| 82 | /* _We_ call this UNII 2 */ |
| 83 | CHAN5G(5260, 18), /* Channel 52 */ |
| 84 | CHAN5G(5280, 19), /* Channel 56 */ |
| 85 | CHAN5G(5300, 20), /* Channel 60 */ |
| 86 | CHAN5G(5320, 21), /* Channel 64 */ |
| 87 | /* _We_ call this "Middle band" */ |
| 88 | CHAN5G(5500, 22), /* Channel 100 */ |
| 89 | CHAN5G(5520, 23), /* Channel 104 */ |
| 90 | CHAN5G(5540, 24), /* Channel 108 */ |
| 91 | CHAN5G(5560, 25), /* Channel 112 */ |
| 92 | CHAN5G(5580, 26), /* Channel 116 */ |
| 93 | CHAN5G(5600, 27), /* Channel 120 */ |
| 94 | CHAN5G(5620, 28), /* Channel 124 */ |
| 95 | CHAN5G(5640, 29), /* Channel 128 */ |
| 96 | CHAN5G(5660, 30), /* Channel 132 */ |
| 97 | CHAN5G(5680, 31), /* Channel 136 */ |
| 98 | CHAN5G(5700, 32), /* Channel 140 */ |
| 99 | /* _We_ call this UNII 3 */ |
| 100 | CHAN5G(5745, 33), /* Channel 149 */ |
| 101 | CHAN5G(5765, 34), /* Channel 153 */ |
| 102 | CHAN5G(5785, 35), /* Channel 157 */ |
| 103 | CHAN5G(5805, 36), /* Channel 161 */ |
| 104 | CHAN5G(5825, 37), /* Channel 165 */ |
| 105 | }; |
| 106 | |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 107 | static void ath_cache_conf_rate(struct ath_softc *sc, |
| 108 | struct ieee80211_conf *conf) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 109 | { |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 110 | switch (conf->channel->band) { |
| 111 | case IEEE80211_BAND_2GHZ: |
| 112 | if (conf_is_ht20(conf)) |
| 113 | sc->cur_rate_table = |
| 114 | sc->hw_rate_table[ATH9K_MODE_11NG_HT20]; |
| 115 | else if (conf_is_ht40_minus(conf)) |
| 116 | sc->cur_rate_table = |
| 117 | sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS]; |
| 118 | else if (conf_is_ht40_plus(conf)) |
| 119 | sc->cur_rate_table = |
| 120 | sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS]; |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame] | 121 | else |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 122 | sc->cur_rate_table = |
| 123 | sc->hw_rate_table[ATH9K_MODE_11G]; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 124 | break; |
| 125 | case IEEE80211_BAND_5GHZ: |
| 126 | if (conf_is_ht20(conf)) |
| 127 | sc->cur_rate_table = |
| 128 | sc->hw_rate_table[ATH9K_MODE_11NA_HT20]; |
| 129 | else if (conf_is_ht40_minus(conf)) |
| 130 | sc->cur_rate_table = |
| 131 | sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS]; |
| 132 | else if (conf_is_ht40_plus(conf)) |
| 133 | sc->cur_rate_table = |
| 134 | sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS]; |
| 135 | else |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame] | 136 | sc->cur_rate_table = |
| 137 | sc->hw_rate_table[ATH9K_MODE_11A]; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 138 | break; |
| 139 | default: |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 140 | BUG_ON(1); |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 141 | break; |
| 142 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static void ath_update_txpow(struct ath_softc *sc) |
| 146 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 147 | struct ath_hw *ah = sc->sc_ah; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 148 | u32 txpow; |
| 149 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 150 | if (sc->curtxpow != sc->config.txpowlimit) { |
| 151 | ath9k_hw_set_txpowerlimit(ah, sc->config.txpowlimit); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 152 | /* read back in case value is clamped */ |
| 153 | ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 154 | sc->curtxpow = txpow; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 155 | } |
| 156 | } |
| 157 | |
| 158 | static u8 parse_mpdudensity(u8 mpdudensity) |
| 159 | { |
| 160 | /* |
| 161 | * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing": |
| 162 | * 0 for no restriction |
| 163 | * 1 for 1/4 us |
| 164 | * 2 for 1/2 us |
| 165 | * 3 for 1 us |
| 166 | * 4 for 2 us |
| 167 | * 5 for 4 us |
| 168 | * 6 for 8 us |
| 169 | * 7 for 16 us |
| 170 | */ |
| 171 | switch (mpdudensity) { |
| 172 | case 0: |
| 173 | return 0; |
| 174 | case 1: |
| 175 | case 2: |
| 176 | case 3: |
| 177 | /* Our lower layer calculations limit our precision to |
| 178 | 1 microsecond */ |
| 179 | return 1; |
| 180 | case 4: |
| 181 | return 2; |
| 182 | case 5: |
| 183 | return 4; |
| 184 | case 6: |
| 185 | return 8; |
| 186 | case 7: |
| 187 | return 16; |
| 188 | default: |
| 189 | return 0; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band) |
| 194 | { |
Luis R. Rodriguez | 4f0fc7c | 2009-05-06 02:20:00 -0400 | [diff] [blame] | 195 | const struct ath_rate_table *rate_table = NULL; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 196 | struct ieee80211_supported_band *sband; |
| 197 | struct ieee80211_rate *rate; |
| 198 | int i, maxrates; |
| 199 | |
| 200 | switch (band) { |
| 201 | case IEEE80211_BAND_2GHZ: |
| 202 | rate_table = sc->hw_rate_table[ATH9K_MODE_11G]; |
| 203 | break; |
| 204 | case IEEE80211_BAND_5GHZ: |
| 205 | rate_table = sc->hw_rate_table[ATH9K_MODE_11A]; |
| 206 | break; |
| 207 | default: |
| 208 | break; |
| 209 | } |
| 210 | |
| 211 | if (rate_table == NULL) |
| 212 | return; |
| 213 | |
| 214 | sband = &sc->sbands[band]; |
| 215 | rate = sc->rates[band]; |
| 216 | |
| 217 | if (rate_table->rate_cnt > ATH_RATE_MAX) |
| 218 | maxrates = ATH_RATE_MAX; |
| 219 | else |
| 220 | maxrates = rate_table->rate_cnt; |
| 221 | |
| 222 | for (i = 0; i < maxrates; i++) { |
| 223 | rate[i].bitrate = rate_table->info[i].ratekbps / 100; |
| 224 | rate[i].hw_value = rate_table->info[i].ratecode; |
Sujith | f46730d | 2009-01-27 13:51:03 +0530 | [diff] [blame] | 225 | if (rate_table->info[i].short_preamble) { |
| 226 | rate[i].hw_value_short = rate_table->info[i].ratecode | |
| 227 | rate_table->info[i].short_preamble; |
| 228 | rate[i].flags = IEEE80211_RATE_SHORT_PREAMBLE; |
| 229 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 230 | sband->n_bitrates++; |
Sujith | f46730d | 2009-01-27 13:51:03 +0530 | [diff] [blame] | 231 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 232 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG, |
| 233 | "Rate: %2dMbps, ratecode: %2d\n", |
| 234 | rate[i].bitrate / 10, rate[i].hw_value); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
Vasanthakumar Thiagarajan | 82880a7 | 2009-06-13 14:50:24 +0530 | [diff] [blame] | 238 | static struct ath9k_channel *ath_get_curchannel(struct ath_softc *sc, |
| 239 | struct ieee80211_hw *hw) |
| 240 | { |
| 241 | struct ieee80211_channel *curchan = hw->conf.channel; |
| 242 | struct ath9k_channel *channel; |
| 243 | u8 chan_idx; |
| 244 | |
| 245 | chan_idx = curchan->hw_value; |
| 246 | channel = &sc->sc_ah->channels[chan_idx]; |
| 247 | ath9k_update_ichannel(sc, hw, channel); |
| 248 | return channel; |
| 249 | } |
| 250 | |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 251 | 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] | 252 | { |
| 253 | unsigned long flags; |
| 254 | bool ret; |
| 255 | |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 256 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
| 257 | ret = ath9k_hw_setpower(sc->sc_ah, mode); |
| 258 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
Luis R. Rodriguez | 8c77a56 | 2009-09-09 21:02:34 -0700 | [diff] [blame] | 259 | |
| 260 | return ret; |
| 261 | } |
| 262 | |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 263 | void ath9k_ps_wakeup(struct ath_softc *sc) |
| 264 | { |
| 265 | unsigned long flags; |
| 266 | |
| 267 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
| 268 | if (++sc->ps_usecount != 1) |
| 269 | goto unlock; |
| 270 | |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 271 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE); |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 272 | |
| 273 | unlock: |
| 274 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
| 275 | } |
| 276 | |
| 277 | void ath9k_ps_restore(struct ath_softc *sc) |
| 278 | { |
| 279 | unsigned long flags; |
| 280 | |
| 281 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
| 282 | if (--sc->ps_usecount != 0) |
| 283 | goto unlock; |
| 284 | |
| 285 | if (sc->ps_enabled && |
| 286 | !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON | |
| 287 | SC_OP_WAIT_FOR_CAB | |
| 288 | SC_OP_WAIT_FOR_PSPOLL_DATA | |
| 289 | SC_OP_WAIT_FOR_TX_ACK))) |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 290 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP); |
Luis R. Rodriguez | a91d75ae | 2009-09-09 20:29:18 -0700 | [diff] [blame] | 291 | |
| 292 | unlock: |
| 293 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
| 294 | } |
| 295 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 296 | /* |
| 297 | * Set/change channels. If the channel is really being changed, it's done |
| 298 | * by reseting the chip. To accomplish this we must first cleanup any pending |
| 299 | * DMA, then restart stuff. |
| 300 | */ |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 301 | int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw, |
| 302 | struct ath9k_channel *hchan) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 303 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 304 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 305 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | 25c56ee | 2009-09-13 23:04:44 -0700 | [diff] [blame] | 306 | struct ieee80211_conf *conf = &common->hw->conf; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 307 | bool fastcc = true, stopped; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 308 | struct ieee80211_channel *channel = hw->conf.channel; |
| 309 | int r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 310 | |
| 311 | if (sc->sc_flags & SC_OP_INVALID) |
| 312 | return -EIO; |
| 313 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 314 | ath9k_ps_wakeup(sc); |
| 315 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 316 | /* |
| 317 | * This is only performed if the channel settings have |
| 318 | * actually changed. |
| 319 | * |
| 320 | * To switch channels clear any pending DMA operations; |
| 321 | * wait long enough for the RX fifo to drain, reset the |
| 322 | * hardware at the new frequency, and then re-enable |
| 323 | * the relevant bits of the h/w. |
| 324 | */ |
| 325 | ath9k_hw_set_interrupts(ah, 0); |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 326 | ath_drain_all_txq(sc, false); |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 327 | stopped = ath_stoprecv(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 328 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 329 | /* XXX: do not flush receive queue here. We don't want |
| 330 | * to flush data frames already in queue because of |
| 331 | * changing channel. */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 332 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 333 | if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET)) |
| 334 | fastcc = false; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 335 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 336 | ath_print(common, ATH_DBG_CONFIG, |
Luis R. Rodriguez | 25c56ee | 2009-09-13 23:04:44 -0700 | [diff] [blame] | 337 | "(%u MHz) -> (%u MHz), conf_is_ht40: %d\n", |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 338 | sc->sc_ah->curchan->channel, |
Luis R. Rodriguez | 25c56ee | 2009-09-13 23:04:44 -0700 | [diff] [blame] | 339 | channel->center_freq, conf_is_ht40(conf)); |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 340 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 341 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 342 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 343 | r = ath9k_hw_reset(ah, hchan, fastcc); |
| 344 | if (r) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 345 | ath_print(common, ATH_DBG_FATAL, |
| 346 | "Unable to reset channel (%u Mhz) " |
| 347 | "reset status %d\n", |
| 348 | channel->center_freq, r); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 349 | spin_unlock_bh(&sc->sc_resetlock); |
Gabor Juhos | 3989279 | 2009-06-15 17:49:09 +0200 | [diff] [blame] | 350 | goto ps_restore; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 351 | } |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 352 | spin_unlock_bh(&sc->sc_resetlock); |
| 353 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 354 | sc->sc_flags &= ~SC_OP_FULL_RESET; |
| 355 | |
| 356 | if (ath_startrecv(sc) != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 357 | ath_print(common, ATH_DBG_FATAL, |
| 358 | "Unable to restart recv logic\n"); |
Gabor Juhos | 3989279 | 2009-06-15 17:49:09 +0200 | [diff] [blame] | 359 | r = -EIO; |
| 360 | goto ps_restore; |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | ath_cache_conf_rate(sc, &hw->conf); |
| 364 | ath_update_txpow(sc); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 365 | ath9k_hw_set_interrupts(ah, sc->imask); |
Gabor Juhos | 3989279 | 2009-06-15 17:49:09 +0200 | [diff] [blame] | 366 | |
| 367 | ps_restore: |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 368 | ath9k_ps_restore(sc); |
Gabor Juhos | 3989279 | 2009-06-15 17:49:09 +0200 | [diff] [blame] | 369 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | /* |
| 373 | * This routine performs the periodic noise floor calibration function |
| 374 | * that is used to adjust and optimize the chip performance. This |
| 375 | * takes environmental changes (location, temperature) into account. |
| 376 | * When the task is complete, it reschedules itself depending on the |
| 377 | * appropriate interval that was calculated. |
| 378 | */ |
| 379 | static void ath_ani_calibrate(unsigned long data) |
| 380 | { |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 381 | struct ath_softc *sc = (struct ath_softc *)data; |
| 382 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 383 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 384 | bool longcal = false; |
| 385 | bool shortcal = false; |
| 386 | bool aniflag = false; |
| 387 | unsigned int timestamp = jiffies_to_msecs(jiffies); |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 388 | u32 cal_interval, short_cal_interval; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 389 | |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 390 | short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ? |
| 391 | ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 392 | |
| 393 | /* |
| 394 | * don't calibrate when we're scanning. |
| 395 | * we are most likely not on our home channel. |
| 396 | */ |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 397 | spin_lock(&sc->ani_lock); |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 398 | if (sc->sc_flags & SC_OP_SCANNING) |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 399 | goto set_timer; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 400 | |
Jouni Malinen | 1ffc1c6 | 2009-05-19 17:01:39 +0300 | [diff] [blame] | 401 | /* Only calibrate if awake */ |
| 402 | if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE) |
| 403 | goto set_timer; |
| 404 | |
| 405 | ath9k_ps_wakeup(sc); |
| 406 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 407 | /* Long calibration runs independently of short calibration. */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 408 | if ((timestamp - sc->ani.longcal_timer) >= ATH_LONG_CALINTERVAL) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 409 | longcal = true; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 410 | ath_print(common, ATH_DBG_ANI, "longcal @%lu\n", jiffies); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 411 | sc->ani.longcal_timer = timestamp; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 412 | } |
| 413 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 414 | /* Short calibration applies only while caldone is false */ |
| 415 | if (!sc->ani.caldone) { |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 416 | if ((timestamp - sc->ani.shortcal_timer) >= short_cal_interval) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 417 | shortcal = true; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 418 | ath_print(common, ATH_DBG_ANI, |
| 419 | "shortcal @%lu\n", jiffies); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 420 | sc->ani.shortcal_timer = timestamp; |
| 421 | sc->ani.resetcal_timer = timestamp; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 422 | } |
| 423 | } else { |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 424 | if ((timestamp - sc->ani.resetcal_timer) >= |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 425 | ATH_RESTART_CALINTERVAL) { |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 426 | sc->ani.caldone = ath9k_hw_reset_calvalid(ah); |
| 427 | if (sc->ani.caldone) |
| 428 | sc->ani.resetcal_timer = timestamp; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 429 | } |
| 430 | } |
| 431 | |
| 432 | /* Verify whether we must check ANI */ |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 433 | if ((timestamp - sc->ani.checkani_timer) >= ATH_ANI_POLLINTERVAL) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 434 | aniflag = true; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 435 | sc->ani.checkani_timer = timestamp; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | /* Skip all processing if there's nothing to do. */ |
| 439 | if (longcal || shortcal || aniflag) { |
| 440 | /* Call ANI routine if necessary */ |
| 441 | if (aniflag) |
Vasanthakumar Thiagarajan | 22e66a4 | 2009-08-19 16:23:40 +0530 | [diff] [blame] | 442 | ath9k_hw_ani_monitor(ah, ah->curchan); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 443 | |
| 444 | /* Perform calibration if necessary */ |
| 445 | if (longcal || shortcal) { |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 446 | sc->ani.caldone = |
| 447 | ath9k_hw_calibrate(ah, |
| 448 | ah->curchan, |
| 449 | common->rx_chainmask, |
| 450 | longcal); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 451 | |
Sujith | 379f044 | 2009-04-13 21:56:48 +0530 | [diff] [blame] | 452 | if (longcal) |
| 453 | sc->ani.noise_floor = ath9k_hw_getchan_noise(ah, |
| 454 | ah->curchan); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 455 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 456 | ath_print(common, ATH_DBG_ANI, |
| 457 | " calibrate chan %u/%x nf: %d\n", |
| 458 | ah->curchan->channel, |
| 459 | ah->curchan->channelFlags, |
| 460 | sc->ani.noise_floor); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 461 | } |
| 462 | } |
| 463 | |
Jouni Malinen | 1ffc1c6 | 2009-05-19 17:01:39 +0300 | [diff] [blame] | 464 | ath9k_ps_restore(sc); |
| 465 | |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 466 | set_timer: |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 467 | spin_unlock(&sc->ani_lock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 468 | /* |
| 469 | * Set timer interval based on previous results. |
| 470 | * The interval must be the shortest necessary to satisfy ANI, |
| 471 | * short calibration and long calibration. |
| 472 | */ |
Sujith | aac9207 | 2008-12-02 18:37:54 +0530 | [diff] [blame] | 473 | cal_interval = ATH_LONG_CALINTERVAL; |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 474 | if (sc->sc_ah->config.enable_ani) |
Sujith | aac9207 | 2008-12-02 18:37:54 +0530 | [diff] [blame] | 475 | cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 476 | if (!sc->ani.caldone) |
Sujith | 20977d3 | 2009-02-20 15:13:28 +0530 | [diff] [blame] | 477 | cal_interval = min(cal_interval, (u32)short_cal_interval); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 478 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 479 | mod_timer(&sc->ani.timer, jiffies + msecs_to_jiffies(cal_interval)); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 480 | } |
| 481 | |
Sujith | 415f738 | 2009-04-13 21:56:46 +0530 | [diff] [blame] | 482 | static void ath_start_ani(struct ath_softc *sc) |
| 483 | { |
| 484 | unsigned long timestamp = jiffies_to_msecs(jiffies); |
| 485 | |
| 486 | sc->ani.longcal_timer = timestamp; |
| 487 | sc->ani.shortcal_timer = timestamp; |
| 488 | sc->ani.checkani_timer = timestamp; |
| 489 | |
| 490 | mod_timer(&sc->ani.timer, |
| 491 | jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL)); |
| 492 | } |
| 493 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 494 | /* |
| 495 | * Update tx/rx chainmask. For legacy association, |
| 496 | * hard code chainmask to 1x1, for 11n association, use |
Vasanthakumar Thiagarajan | c97c92d | 2009-01-02 15:35:46 +0530 | [diff] [blame] | 497 | * the chainmask configuration, for bt coexistence, use |
| 498 | * the chainmask configuration even in legacy mode. |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 499 | */ |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 500 | void ath_update_chainmask(struct ath_softc *sc, int is_ht) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 501 | { |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 502 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 503 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 504 | |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 505 | if ((sc->sc_flags & SC_OP_SCANNING) || is_ht || |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 506 | (ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE)) { |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 507 | common->tx_chainmask = ah->caps.tx_chainmask; |
| 508 | common->rx_chainmask = ah->caps.rx_chainmask; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 509 | } else { |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 510 | common->tx_chainmask = 1; |
| 511 | common->rx_chainmask = 1; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 512 | } |
| 513 | |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 514 | ath_print(common, ATH_DBG_CONFIG, |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 515 | "tx chmask: %d, rx chmask: %d\n", |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 516 | common->tx_chainmask, |
| 517 | common->rx_chainmask); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta) |
| 521 | { |
| 522 | struct ath_node *an; |
| 523 | |
| 524 | an = (struct ath_node *)sta->drv_priv; |
| 525 | |
Sujith | 87792ef | 2009-03-30 15:28:48 +0530 | [diff] [blame] | 526 | if (sc->sc_flags & SC_OP_TXAGGR) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 527 | ath_tx_node_init(sc, an); |
Sujith | 9e98ac6 | 2009-07-23 15:32:34 +0530 | [diff] [blame] | 528 | an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR + |
Sujith | 87792ef | 2009-03-30 15:28:48 +0530 | [diff] [blame] | 529 | sta->ht_cap.ampdu_factor); |
| 530 | an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density); |
Senthil Balasubramanian | a59b5a5 | 2009-07-14 20:17:07 -0400 | [diff] [blame] | 531 | an->last_rssi = ATH_RSSI_DUMMY_MARKER; |
Sujith | 87792ef | 2009-03-30 15:28:48 +0530 | [diff] [blame] | 532 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta) |
| 536 | { |
| 537 | struct ath_node *an = (struct ath_node *)sta->drv_priv; |
| 538 | |
| 539 | if (sc->sc_flags & SC_OP_TXAGGR) |
| 540 | ath_tx_node_cleanup(sc, an); |
| 541 | } |
| 542 | |
| 543 | static void ath9k_tasklet(unsigned long data) |
| 544 | { |
| 545 | struct ath_softc *sc = (struct ath_softc *)data; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 546 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 547 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 548 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 549 | u32 status = sc->intrstatus; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 550 | |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 551 | ath9k_ps_wakeup(sc); |
| 552 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 553 | if (status & ATH9K_INT_FATAL) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 554 | ath_reset(sc, false); |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 555 | ath9k_ps_restore(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 556 | return; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 557 | } |
| 558 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 559 | if (status & (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) { |
| 560 | spin_lock_bh(&sc->rx.rxflushlock); |
| 561 | ath_rx_tasklet(sc, 0); |
| 562 | spin_unlock_bh(&sc->rx.rxflushlock); |
| 563 | } |
| 564 | |
| 565 | if (status & ATH9K_INT_TX) |
| 566 | ath_tx_tasklet(sc); |
| 567 | |
Gabor Juhos | 9614832 | 2009-07-24 17:27:21 +0200 | [diff] [blame] | 568 | if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) { |
Jouni Malinen | 54ce846 | 2009-05-19 17:01:40 +0300 | [diff] [blame] | 569 | /* |
| 570 | * TSF sync does not look correct; remain awake to sync with |
| 571 | * the next Beacon. |
| 572 | */ |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 573 | ath_print(common, ATH_DBG_PS, |
| 574 | "TSFOOR - Sync with next Beacon\n"); |
Jouni Malinen | ccdfeab | 2009-05-20 21:59:08 +0300 | [diff] [blame] | 575 | sc->sc_flags |= SC_OP_WAIT_FOR_BEACON | SC_OP_BEACON_SYNC; |
Jouni Malinen | 54ce846 | 2009-05-19 17:01:40 +0300 | [diff] [blame] | 576 | } |
| 577 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 578 | if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE) |
Vasanthakumar Thiagarajan | ebb8e1d | 2009-09-01 17:46:32 +0530 | [diff] [blame] | 579 | if (status & ATH9K_INT_GENTIMER) |
| 580 | ath_gen_timer_isr(sc->sc_ah); |
| 581 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 582 | /* re-enable hardware interrupt */ |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 583 | ath9k_hw_set_interrupts(ah, sc->imask); |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 584 | ath9k_ps_restore(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 585 | } |
| 586 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 587 | irqreturn_t ath_isr(int irq, void *dev) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 588 | { |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 589 | #define SCHED_INTR ( \ |
| 590 | ATH9K_INT_FATAL | \ |
| 591 | ATH9K_INT_RXORN | \ |
| 592 | ATH9K_INT_RXEOL | \ |
| 593 | ATH9K_INT_RX | \ |
| 594 | ATH9K_INT_TX | \ |
| 595 | ATH9K_INT_BMISS | \ |
| 596 | ATH9K_INT_CST | \ |
Vasanthakumar Thiagarajan | ebb8e1d | 2009-09-01 17:46:32 +0530 | [diff] [blame] | 597 | ATH9K_INT_TSFOOR | \ |
| 598 | ATH9K_INT_GENTIMER) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 599 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 600 | struct ath_softc *sc = dev; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 601 | struct ath_hw *ah = sc->sc_ah; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 602 | enum ath9k_int status; |
| 603 | bool sched = false; |
| 604 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 605 | /* |
| 606 | * The hardware is not ready/present, don't |
| 607 | * touch anything. Note this can happen early |
| 608 | * on if the IRQ is shared. |
| 609 | */ |
| 610 | if (sc->sc_flags & SC_OP_INVALID) |
| 611 | return IRQ_NONE; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 612 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 613 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 614 | /* shared irq, not for us */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 615 | |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 616 | if (!ath9k_hw_intrpend(ah)) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 617 | return IRQ_NONE; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 618 | |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 619 | /* |
| 620 | * Figure out the reason(s) for the interrupt. Note |
| 621 | * that the hal returns a pseudo-ISR that may include |
| 622 | * bits we haven't explicitly enabled so we mask the |
| 623 | * value to insure we only process bits we requested. |
| 624 | */ |
| 625 | ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */ |
| 626 | status &= sc->imask; /* discard unasked-for bits */ |
| 627 | |
| 628 | /* |
| 629 | * If there are no status bits set, then this interrupt was not |
| 630 | * for me (should have been caught above). |
| 631 | */ |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 632 | if (!status) |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 633 | return IRQ_NONE; |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 634 | |
| 635 | /* Cache the status */ |
| 636 | sc->intrstatus = status; |
| 637 | |
| 638 | if (status & SCHED_INTR) |
| 639 | sched = true; |
| 640 | |
| 641 | /* |
| 642 | * If a FATAL or RXORN interrupt is received, we have to reset the |
| 643 | * chip immediately. |
| 644 | */ |
| 645 | if (status & (ATH9K_INT_FATAL | ATH9K_INT_RXORN)) |
| 646 | goto chip_reset; |
| 647 | |
| 648 | if (status & ATH9K_INT_SWBA) |
| 649 | tasklet_schedule(&sc->bcon_tasklet); |
| 650 | |
| 651 | if (status & ATH9K_INT_TXURN) |
| 652 | ath9k_hw_updatetxtriglevel(ah, true); |
| 653 | |
| 654 | if (status & ATH9K_INT_MIB) { |
| 655 | /* |
| 656 | * Disable interrupts until we service the MIB |
| 657 | * interrupt; otherwise it will continue to |
| 658 | * fire. |
| 659 | */ |
| 660 | ath9k_hw_set_interrupts(ah, 0); |
| 661 | /* |
| 662 | * Let the hal handle the event. We assume |
| 663 | * it will clear whatever condition caused |
| 664 | * the interrupt. |
| 665 | */ |
Vasanthakumar Thiagarajan | 22e66a4 | 2009-08-19 16:23:40 +0530 | [diff] [blame] | 666 | ath9k_hw_procmibevent(ah); |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 667 | ath9k_hw_set_interrupts(ah, sc->imask); |
| 668 | } |
| 669 | |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 670 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) |
| 671 | if (status & ATH9K_INT_TIM_TIMER) { |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 672 | /* Clear RxAbort bit so that we can |
| 673 | * receive frames */ |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 674 | ath9k_setpower(sc, ATH9K_PM_AWAKE); |
Vasanthakumar Thiagarajan | 153e080 | 2009-05-15 02:47:16 -0400 | [diff] [blame] | 675 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 676 | sc->sc_flags |= SC_OP_WAIT_FOR_BEACON; |
| 677 | } |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 678 | |
| 679 | chip_reset: |
| 680 | |
Sujith | 817e11d | 2008-12-07 21:42:44 +0530 | [diff] [blame] | 681 | ath_debug_stat_interrupt(sc, status); |
| 682 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 683 | if (sched) { |
| 684 | /* turn off every interrupt except SWBA */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 685 | ath9k_hw_set_interrupts(ah, (sc->imask & ATH9K_INT_SWBA)); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 686 | tasklet_schedule(&sc->intr_tq); |
| 687 | } |
| 688 | |
| 689 | return IRQ_HANDLED; |
Sujith | 063d8be | 2009-03-30 15:28:49 +0530 | [diff] [blame] | 690 | |
| 691 | #undef SCHED_INTR |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 692 | } |
| 693 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 694 | static u32 ath_get_extchanmode(struct ath_softc *sc, |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 695 | struct ieee80211_channel *chan, |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 696 | enum nl80211_channel_type channel_type) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 697 | { |
| 698 | u32 chanmode = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 699 | |
| 700 | switch (chan->band) { |
| 701 | case IEEE80211_BAND_2GHZ: |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 702 | switch(channel_type) { |
| 703 | case NL80211_CHAN_NO_HT: |
| 704 | case NL80211_CHAN_HT20: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 705 | chanmode = CHANNEL_G_HT20; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 706 | break; |
| 707 | case NL80211_CHAN_HT40PLUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 708 | chanmode = CHANNEL_G_HT40PLUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 709 | break; |
| 710 | case NL80211_CHAN_HT40MINUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 711 | chanmode = CHANNEL_G_HT40MINUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 712 | break; |
| 713 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 714 | break; |
| 715 | case IEEE80211_BAND_5GHZ: |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 716 | switch(channel_type) { |
| 717 | case NL80211_CHAN_NO_HT: |
| 718 | case NL80211_CHAN_HT20: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 719 | chanmode = CHANNEL_A_HT20; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 720 | break; |
| 721 | case NL80211_CHAN_HT40PLUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 722 | chanmode = CHANNEL_A_HT40PLUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 723 | break; |
| 724 | case NL80211_CHAN_HT40MINUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 725 | chanmode = CHANNEL_A_HT40MINUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 726 | break; |
| 727 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 728 | break; |
| 729 | default: |
| 730 | break; |
| 731 | } |
| 732 | |
| 733 | return chanmode; |
| 734 | } |
| 735 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 736 | static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key, |
Jouni Malinen | 3f53dd6 | 2009-02-26 11:18:46 +0200 | [diff] [blame] | 737 | struct ath9k_keyval *hk, const u8 *addr, |
| 738 | bool authenticator) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 739 | { |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 740 | const u8 *key_rxmic; |
| 741 | const u8 *key_txmic; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 742 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 743 | key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY; |
| 744 | key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 745 | |
| 746 | if (addr == NULL) { |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 747 | /* |
| 748 | * Group key installation - only two key cache entries are used |
| 749 | * regardless of splitmic capability since group key is only |
| 750 | * used either for TX or RX. |
| 751 | */ |
Jouni Malinen | 3f53dd6 | 2009-02-26 11:18:46 +0200 | [diff] [blame] | 752 | if (authenticator) { |
| 753 | memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic)); |
| 754 | memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_mic)); |
| 755 | } else { |
| 756 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 757 | memcpy(hk->kv_txmic, key_rxmic, sizeof(hk->kv_mic)); |
| 758 | } |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 759 | return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 760 | } |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 761 | if (!sc->splitmic) { |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 762 | /* TX and RX keys share the same key cache entry. */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 763 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 764 | memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic)); |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 765 | return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, addr); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 766 | } |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 767 | |
| 768 | /* Separate key cache entries for TX and RX */ |
| 769 | |
| 770 | /* TX key goes at first index, RX key at +32. */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 771 | memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic)); |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 772 | if (!ath9k_hw_set_keycache_entry(sc->sc_ah, keyix, hk, NULL)) { |
| 773 | /* TX MIC entry failed. No need to proceed further */ |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 774 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL, |
| 775 | "Setting TX MIC Key Failed\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 780 | /* XXX delete tx key on failure? */ |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 781 | return ath9k_hw_set_keycache_entry(sc->sc_ah, keyix + 32, hk, addr); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc) |
| 785 | { |
| 786 | int i; |
| 787 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 788 | for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) { |
| 789 | if (test_bit(i, sc->keymap) || |
| 790 | test_bit(i + 64, sc->keymap)) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 791 | continue; /* At least one part of TKIP key allocated */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 792 | if (sc->splitmic && |
| 793 | (test_bit(i + 32, sc->keymap) || |
| 794 | test_bit(i + 64 + 32, sc->keymap))) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 795 | continue; /* At least one part of TKIP key allocated */ |
| 796 | |
| 797 | /* Found a free slot for a TKIP key */ |
| 798 | return i; |
| 799 | } |
| 800 | return -1; |
| 801 | } |
| 802 | |
| 803 | static int ath_reserve_key_cache_slot(struct ath_softc *sc) |
| 804 | { |
| 805 | int i; |
| 806 | |
| 807 | /* First, try to find slots that would not be available for TKIP. */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 808 | if (sc->splitmic) { |
| 809 | for (i = IEEE80211_WEP_NKID; i < sc->keymax / 4; i++) { |
| 810 | if (!test_bit(i, sc->keymap) && |
| 811 | (test_bit(i + 32, sc->keymap) || |
| 812 | test_bit(i + 64, sc->keymap) || |
| 813 | test_bit(i + 64 + 32, sc->keymap))) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 814 | return i; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 815 | if (!test_bit(i + 32, sc->keymap) && |
| 816 | (test_bit(i, sc->keymap) || |
| 817 | test_bit(i + 64, sc->keymap) || |
| 818 | test_bit(i + 64 + 32, sc->keymap))) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 819 | return i + 32; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 820 | if (!test_bit(i + 64, sc->keymap) && |
| 821 | (test_bit(i , sc->keymap) || |
| 822 | test_bit(i + 32, sc->keymap) || |
| 823 | test_bit(i + 64 + 32, sc->keymap))) |
Jouni Malinen | ea61213 | 2008-12-18 14:31:10 +0200 | [diff] [blame] | 824 | return i + 64; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 825 | if (!test_bit(i + 64 + 32, sc->keymap) && |
| 826 | (test_bit(i, sc->keymap) || |
| 827 | test_bit(i + 32, sc->keymap) || |
| 828 | test_bit(i + 64, sc->keymap))) |
Jouni Malinen | ea61213 | 2008-12-18 14:31:10 +0200 | [diff] [blame] | 829 | return i + 64 + 32; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 830 | } |
| 831 | } else { |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 832 | for (i = IEEE80211_WEP_NKID; i < sc->keymax / 2; i++) { |
| 833 | if (!test_bit(i, sc->keymap) && |
| 834 | test_bit(i + 64, sc->keymap)) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 835 | return i; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 836 | if (test_bit(i, sc->keymap) && |
| 837 | !test_bit(i + 64, sc->keymap)) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 838 | return i + 64; |
| 839 | } |
| 840 | } |
| 841 | |
| 842 | /* No partially used TKIP slots, pick any available slot */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 843 | for (i = IEEE80211_WEP_NKID; i < sc->keymax; i++) { |
Jouni Malinen | be2864c | 2008-12-18 14:33:00 +0200 | [diff] [blame] | 844 | /* Do not allow slots that could be needed for TKIP group keys |
| 845 | * to be used. This limitation could be removed if we know that |
| 846 | * TKIP will not be used. */ |
| 847 | if (i >= 64 && i < 64 + IEEE80211_WEP_NKID) |
| 848 | continue; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 849 | if (sc->splitmic) { |
Jouni Malinen | be2864c | 2008-12-18 14:33:00 +0200 | [diff] [blame] | 850 | if (i >= 32 && i < 32 + IEEE80211_WEP_NKID) |
| 851 | continue; |
| 852 | if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID) |
| 853 | continue; |
| 854 | } |
| 855 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 856 | if (!test_bit(i, sc->keymap)) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 857 | return i; /* Found a free slot for a key */ |
| 858 | } |
| 859 | |
| 860 | /* No free slot found */ |
| 861 | return -1; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | static int ath_key_config(struct ath_softc *sc, |
Jouni Malinen | 3f53dd6 | 2009-02-26 11:18:46 +0200 | [diff] [blame] | 865 | struct ieee80211_vif *vif, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 866 | struct ieee80211_sta *sta, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 867 | struct ieee80211_key_conf *key) |
| 868 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 869 | struct ath9k_keyval hk; |
| 870 | const u8 *mac = NULL; |
| 871 | int ret = 0; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 872 | int idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 873 | |
| 874 | memset(&hk, 0, sizeof(hk)); |
| 875 | |
| 876 | switch (key->alg) { |
| 877 | case ALG_WEP: |
| 878 | hk.kv_type = ATH9K_CIPHER_WEP; |
| 879 | break; |
| 880 | case ALG_TKIP: |
| 881 | hk.kv_type = ATH9K_CIPHER_TKIP; |
| 882 | break; |
| 883 | case ALG_CCMP: |
| 884 | hk.kv_type = ATH9K_CIPHER_AES_CCM; |
| 885 | break; |
| 886 | default: |
Jouni Malinen | ca470b2 | 2009-01-08 13:32:12 +0200 | [diff] [blame] | 887 | return -EOPNOTSUPP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 888 | } |
| 889 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 890 | hk.kv_len = key->keylen; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 891 | memcpy(hk.kv_val, key->key, key->keylen); |
| 892 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 893 | if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
| 894 | /* For now, use the default keys for broadcast keys. This may |
| 895 | * need to change with virtual interfaces. */ |
| 896 | idx = key->keyidx; |
| 897 | } else if (key->keyidx) { |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 898 | if (WARN_ON(!sta)) |
| 899 | return -EOPNOTSUPP; |
| 900 | mac = sta->addr; |
| 901 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 902 | if (vif->type != NL80211_IFTYPE_AP) { |
| 903 | /* Only keyidx 0 should be used with unicast key, but |
| 904 | * allow this for client mode for now. */ |
| 905 | idx = key->keyidx; |
| 906 | } else |
| 907 | return -EIO; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 908 | } else { |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 909 | if (WARN_ON(!sta)) |
| 910 | return -EOPNOTSUPP; |
| 911 | mac = sta->addr; |
| 912 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 913 | if (key->alg == ALG_TKIP) |
| 914 | idx = ath_reserve_key_cache_slot_tkip(sc); |
| 915 | else |
| 916 | idx = ath_reserve_key_cache_slot(sc); |
| 917 | if (idx < 0) |
Jouni Malinen | ca470b2 | 2009-01-08 13:32:12 +0200 | [diff] [blame] | 918 | return -ENOSPC; /* no free key cache entries */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | if (key->alg == ALG_TKIP) |
Jouni Malinen | 3f53dd6 | 2009-02-26 11:18:46 +0200 | [diff] [blame] | 922 | ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac, |
| 923 | vif->type == NL80211_IFTYPE_AP); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 924 | else |
Jouni Malinen | d216aaa | 2009-03-03 13:11:53 +0200 | [diff] [blame] | 925 | ret = ath9k_hw_set_keycache_entry(sc->sc_ah, idx, &hk, mac); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 926 | |
| 927 | if (!ret) |
| 928 | return -EIO; |
| 929 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 930 | set_bit(idx, sc->keymap); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 931 | if (key->alg == ALG_TKIP) { |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 932 | set_bit(idx + 64, sc->keymap); |
| 933 | if (sc->splitmic) { |
| 934 | set_bit(idx + 32, sc->keymap); |
| 935 | set_bit(idx + 64 + 32, sc->keymap); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
| 939 | return idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key) |
| 943 | { |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 944 | ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx); |
| 945 | if (key->hw_key_idx < IEEE80211_WEP_NKID) |
| 946 | return; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 947 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 948 | clear_bit(key->hw_key_idx, sc->keymap); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 949 | if (key->alg != ALG_TKIP) |
| 950 | return; |
| 951 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 952 | clear_bit(key->hw_key_idx + 64, sc->keymap); |
| 953 | if (sc->splitmic) { |
| 954 | clear_bit(key->hw_key_idx + 32, sc->keymap); |
| 955 | clear_bit(key->hw_key_idx + 64 + 32, sc->keymap); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 956 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 957 | } |
| 958 | |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 959 | static void setup_ht_cap(struct ath_softc *sc, |
| 960 | struct ieee80211_sta_ht_cap *ht_info) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 961 | { |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 962 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Senthil Balasubramanian | 140add2 | 2009-06-24 18:56:42 +0530 | [diff] [blame] | 963 | u8 tx_streams, rx_streams; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 964 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 965 | ht_info->ht_supported = true; |
| 966 | ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
| 967 | IEEE80211_HT_CAP_SM_PS | |
| 968 | IEEE80211_HT_CAP_SGI_40 | |
| 969 | IEEE80211_HT_CAP_DSSSCCK40; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 970 | |
Sujith | 9e98ac6 | 2009-07-23 15:32:34 +0530 | [diff] [blame] | 971 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
| 972 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 973 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 974 | /* set up supported mcs set */ |
| 975 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 976 | tx_streams = !(common->tx_chainmask & (common->tx_chainmask - 1)) ? |
| 977 | 1 : 2; |
| 978 | rx_streams = !(common->rx_chainmask & (common->rx_chainmask - 1)) ? |
| 979 | 1 : 2; |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 980 | |
Senthil Balasubramanian | 140add2 | 2009-06-24 18:56:42 +0530 | [diff] [blame] | 981 | if (tx_streams != rx_streams) { |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 982 | ath_print(common, ATH_DBG_CONFIG, |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 983 | "TX streams %d, RX streams: %d\n", |
| 984 | tx_streams, rx_streams); |
Senthil Balasubramanian | 140add2 | 2009-06-24 18:56:42 +0530 | [diff] [blame] | 985 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; |
| 986 | ht_info->mcs.tx_params |= ((tx_streams - 1) << |
| 987 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 988 | } |
| 989 | |
Senthil Balasubramanian | 140add2 | 2009-06-24 18:56:42 +0530 | [diff] [blame] | 990 | ht_info->mcs.rx_mask[0] = 0xff; |
| 991 | if (rx_streams >= 2) |
| 992 | ht_info->mcs.rx_mask[1] = 0xff; |
| 993 | |
| 994 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 995 | } |
| 996 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 997 | static void ath9k_bss_assoc_info(struct ath_softc *sc, |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 998 | struct ieee80211_vif *vif, |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 999 | struct ieee80211_bss_conf *bss_conf) |
| 1000 | { |
Luis R. Rodriguez | f2b2143 | 2009-09-10 08:50:20 -0700 | [diff] [blame] | 1001 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1002 | struct ath_common *common = ath9k_hw_common(ah); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1003 | |
| 1004 | if (bss_conf->assoc) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1005 | ath_print(common, ATH_DBG_CONFIG, |
| 1006 | "Bss Info ASSOC %d, bssid: %pM\n", |
| 1007 | bss_conf->aid, common->curbssid); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1008 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1009 | /* New association, store aid */ |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1010 | common->curaid = bss_conf->aid; |
Luis R. Rodriguez | f2b2143 | 2009-09-10 08:50:20 -0700 | [diff] [blame] | 1011 | ath9k_hw_write_associd(ah); |
Jouni Malinen | ccdfeab | 2009-05-20 21:59:08 +0300 | [diff] [blame] | 1012 | |
Senthil Balasubramanian | 2664f20 | 2009-06-24 18:56:39 +0530 | [diff] [blame] | 1013 | /* |
| 1014 | * Request a re-configuration of Beacon related timers |
| 1015 | * on the receipt of the first Beacon frame (i.e., |
| 1016 | * after time sync with the AP). |
| 1017 | */ |
| 1018 | sc->sc_flags |= SC_OP_BEACON_SYNC; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1019 | |
| 1020 | /* Configure the beacon */ |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 1021 | ath_beacon_config(sc, vif); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1022 | |
| 1023 | /* Reset rssi stats */ |
Vasanthakumar Thiagarajan | 22e66a4 | 2009-08-19 16:23:40 +0530 | [diff] [blame] | 1024 | sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1025 | |
Sujith | 415f738 | 2009-04-13 21:56:46 +0530 | [diff] [blame] | 1026 | ath_start_ani(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1027 | } else { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1028 | ath_print(common, ATH_DBG_CONFIG, "Bss Info DISASSOC\n"); |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1029 | common->curaid = 0; |
Senthil Balasubramanian | f38faa3 | 2009-06-24 18:56:40 +0530 | [diff] [blame] | 1030 | /* Stop ANI */ |
| 1031 | del_timer_sync(&sc->ani.timer); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1032 | } |
| 1033 | } |
| 1034 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1035 | /********************************/ |
| 1036 | /* LED functions */ |
| 1037 | /********************************/ |
| 1038 | |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1039 | static void ath_led_blink_work(struct work_struct *work) |
| 1040 | { |
| 1041 | struct ath_softc *sc = container_of(work, struct ath_softc, |
| 1042 | ath_led_blink_work.work); |
| 1043 | |
| 1044 | if (!(sc->sc_flags & SC_OP_LED_ASSOCIATED)) |
| 1045 | return; |
Vasanthakumar Thiagarajan | 85067c0 | 2009-03-14 19:59:41 +0530 | [diff] [blame] | 1046 | |
| 1047 | if ((sc->led_on_duration == ATH_LED_ON_DURATION_IDLE) || |
| 1048 | (sc->led_off_duration == ATH_LED_OFF_DURATION_IDLE)) |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1049 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0); |
Vasanthakumar Thiagarajan | 85067c0 | 2009-03-14 19:59:41 +0530 | [diff] [blame] | 1050 | else |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1051 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, |
Vasanthakumar Thiagarajan | 85067c0 | 2009-03-14 19:59:41 +0530 | [diff] [blame] | 1052 | (sc->sc_flags & SC_OP_LED_ON) ? 1 : 0); |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1053 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1054 | ieee80211_queue_delayed_work(sc->hw, |
| 1055 | &sc->ath_led_blink_work, |
| 1056 | (sc->sc_flags & SC_OP_LED_ON) ? |
| 1057 | msecs_to_jiffies(sc->led_off_duration) : |
| 1058 | msecs_to_jiffies(sc->led_on_duration)); |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1059 | |
Vasanthakumar Thiagarajan | 85067c0 | 2009-03-14 19:59:41 +0530 | [diff] [blame] | 1060 | sc->led_on_duration = sc->led_on_cnt ? |
| 1061 | max((ATH_LED_ON_DURATION_IDLE - sc->led_on_cnt), 25) : |
| 1062 | ATH_LED_ON_DURATION_IDLE; |
| 1063 | sc->led_off_duration = sc->led_off_cnt ? |
| 1064 | max((ATH_LED_OFF_DURATION_IDLE - sc->led_off_cnt), 10) : |
| 1065 | ATH_LED_OFF_DURATION_IDLE; |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1066 | sc->led_on_cnt = sc->led_off_cnt = 0; |
| 1067 | if (sc->sc_flags & SC_OP_LED_ON) |
| 1068 | sc->sc_flags &= ~SC_OP_LED_ON; |
| 1069 | else |
| 1070 | sc->sc_flags |= SC_OP_LED_ON; |
| 1071 | } |
| 1072 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1073 | static void ath_led_brightness(struct led_classdev *led_cdev, |
| 1074 | enum led_brightness brightness) |
| 1075 | { |
| 1076 | struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev); |
| 1077 | struct ath_softc *sc = led->sc; |
| 1078 | |
| 1079 | switch (brightness) { |
| 1080 | case LED_OFF: |
| 1081 | if (led->led_type == ATH_LED_ASSOC || |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1082 | led->led_type == ATH_LED_RADIO) { |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1083 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1084 | (led->led_type == ATH_LED_RADIO)); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1085 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1086 | if (led->led_type == ATH_LED_RADIO) |
| 1087 | sc->sc_flags &= ~SC_OP_LED_ON; |
| 1088 | } else { |
| 1089 | sc->led_off_cnt++; |
| 1090 | } |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1091 | break; |
| 1092 | case LED_FULL: |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1093 | if (led->led_type == ATH_LED_ASSOC) { |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1094 | sc->sc_flags |= SC_OP_LED_ASSOCIATED; |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1095 | ieee80211_queue_delayed_work(sc->hw, |
| 1096 | &sc->ath_led_blink_work, 0); |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1097 | } else if (led->led_type == ATH_LED_RADIO) { |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1098 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 0); |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1099 | sc->sc_flags |= SC_OP_LED_ON; |
| 1100 | } else { |
| 1101 | sc->led_on_cnt++; |
| 1102 | } |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1103 | break; |
| 1104 | default: |
| 1105 | break; |
| 1106 | } |
| 1107 | } |
| 1108 | |
| 1109 | static int ath_register_led(struct ath_softc *sc, struct ath_led *led, |
| 1110 | char *trigger) |
| 1111 | { |
| 1112 | int ret; |
| 1113 | |
| 1114 | led->sc = sc; |
| 1115 | led->led_cdev.name = led->name; |
| 1116 | led->led_cdev.default_trigger = trigger; |
| 1117 | led->led_cdev.brightness_set = ath_led_brightness; |
| 1118 | |
| 1119 | ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev); |
| 1120 | if (ret) |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1121 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL, |
| 1122 | "Failed to register led:%s", led->name); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1123 | else |
| 1124 | led->registered = 1; |
| 1125 | return ret; |
| 1126 | } |
| 1127 | |
| 1128 | static void ath_unregister_led(struct ath_led *led) |
| 1129 | { |
| 1130 | if (led->registered) { |
| 1131 | led_classdev_unregister(&led->led_cdev); |
| 1132 | led->registered = 0; |
| 1133 | } |
| 1134 | } |
| 1135 | |
| 1136 | static void ath_deinit_leds(struct ath_softc *sc) |
| 1137 | { |
| 1138 | ath_unregister_led(&sc->assoc_led); |
| 1139 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
| 1140 | ath_unregister_led(&sc->tx_led); |
| 1141 | ath_unregister_led(&sc->rx_led); |
| 1142 | ath_unregister_led(&sc->radio_led); |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1143 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1144 | } |
| 1145 | |
| 1146 | static void ath_init_leds(struct ath_softc *sc) |
| 1147 | { |
| 1148 | char *trigger; |
| 1149 | int ret; |
| 1150 | |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1151 | if (AR_SREV_9287(sc->sc_ah)) |
| 1152 | sc->sc_ah->led_pin = ATH_LED_PIN_9287; |
| 1153 | else |
| 1154 | sc->sc_ah->led_pin = ATH_LED_PIN_DEF; |
| 1155 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1156 | /* Configure gpio 1 for output */ |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1157 | ath9k_hw_cfg_output(sc->sc_ah, sc->sc_ah->led_pin, |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1158 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
| 1159 | /* LED off, active low */ |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1160 | ath9k_hw_set_gpio(sc->sc_ah, sc->sc_ah->led_pin, 1); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1161 | |
Vasanthakumar Thiagarajan | f2bffa7 | 2009-01-29 17:52:19 +0530 | [diff] [blame] | 1162 | INIT_DELAYED_WORK(&sc->ath_led_blink_work, ath_led_blink_work); |
| 1163 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1164 | trigger = ieee80211_get_radio_led_name(sc->hw); |
| 1165 | snprintf(sc->radio_led.name, sizeof(sc->radio_led.name), |
Danny Kukawka | 0818cb8 | 2009-01-31 15:52:09 +0100 | [diff] [blame] | 1166 | "ath9k-%s::radio", wiphy_name(sc->hw->wiphy)); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1167 | ret = ath_register_led(sc, &sc->radio_led, trigger); |
| 1168 | sc->radio_led.led_type = ATH_LED_RADIO; |
| 1169 | if (ret) |
| 1170 | goto fail; |
| 1171 | |
| 1172 | trigger = ieee80211_get_assoc_led_name(sc->hw); |
| 1173 | snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name), |
Danny Kukawka | 0818cb8 | 2009-01-31 15:52:09 +0100 | [diff] [blame] | 1174 | "ath9k-%s::assoc", wiphy_name(sc->hw->wiphy)); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1175 | ret = ath_register_led(sc, &sc->assoc_led, trigger); |
| 1176 | sc->assoc_led.led_type = ATH_LED_ASSOC; |
| 1177 | if (ret) |
| 1178 | goto fail; |
| 1179 | |
| 1180 | trigger = ieee80211_get_tx_led_name(sc->hw); |
| 1181 | snprintf(sc->tx_led.name, sizeof(sc->tx_led.name), |
Danny Kukawka | 0818cb8 | 2009-01-31 15:52:09 +0100 | [diff] [blame] | 1182 | "ath9k-%s::tx", wiphy_name(sc->hw->wiphy)); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1183 | ret = ath_register_led(sc, &sc->tx_led, trigger); |
| 1184 | sc->tx_led.led_type = ATH_LED_TX; |
| 1185 | if (ret) |
| 1186 | goto fail; |
| 1187 | |
| 1188 | trigger = ieee80211_get_rx_led_name(sc->hw); |
| 1189 | snprintf(sc->rx_led.name, sizeof(sc->rx_led.name), |
Danny Kukawka | 0818cb8 | 2009-01-31 15:52:09 +0100 | [diff] [blame] | 1190 | "ath9k-%s::rx", wiphy_name(sc->hw->wiphy)); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1191 | ret = ath_register_led(sc, &sc->rx_led, trigger); |
| 1192 | sc->rx_led.led_type = ATH_LED_RX; |
| 1193 | if (ret) |
| 1194 | goto fail; |
| 1195 | |
| 1196 | return; |
| 1197 | |
| 1198 | fail: |
Luis R. Rodriguez | 35c95ab | 2009-07-27 11:53:03 -0700 | [diff] [blame] | 1199 | cancel_delayed_work_sync(&sc->ath_led_blink_work); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1200 | ath_deinit_leds(sc); |
| 1201 | } |
| 1202 | |
Jouni Malinen | 7ec3e51 | 2009-03-03 19:23:37 +0200 | [diff] [blame] | 1203 | void ath_radio_enable(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1204 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1205 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1206 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1207 | struct ieee80211_channel *channel = sc->hw->conf.channel; |
| 1208 | int r; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1209 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1210 | ath9k_ps_wakeup(sc); |
Vivek Natarajan | 93b1b37 | 2009-09-17 09:24:58 +0530 | [diff] [blame] | 1211 | ath9k_hw_configpcipowersave(ah, 0, 0); |
Sujith | d2f5b3a | 2009-04-13 21:56:25 +0530 | [diff] [blame] | 1212 | |
Vasanthakumar Thiagarajan | 159cd46 | 2009-06-13 14:50:25 +0530 | [diff] [blame] | 1213 | if (!ah->curchan) |
| 1214 | ah->curchan = ath_get_curchannel(sc, sc->hw); |
| 1215 | |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1216 | spin_lock_bh(&sc->sc_resetlock); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1217 | r = ath9k_hw_reset(ah, ah->curchan, false); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1218 | if (r) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1219 | ath_print(common, ATH_DBG_FATAL, |
| 1220 | "Unable to reset channel %u (%uMhz) ", |
| 1221 | "reset status %d\n", |
| 1222 | channel->center_freq, r); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1223 | } |
| 1224 | spin_unlock_bh(&sc->sc_resetlock); |
| 1225 | |
| 1226 | ath_update_txpow(sc); |
| 1227 | if (ath_startrecv(sc) != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1228 | ath_print(common, ATH_DBG_FATAL, |
| 1229 | "Unable to restart recv logic\n"); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1230 | return; |
| 1231 | } |
| 1232 | |
| 1233 | if (sc->sc_flags & SC_OP_BEACONS) |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 1234 | ath_beacon_config(sc, NULL); /* restart beacons */ |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1235 | |
| 1236 | /* Re-Enable interrupts */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1237 | ath9k_hw_set_interrupts(ah, sc->imask); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1238 | |
| 1239 | /* Enable LED */ |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1240 | ath9k_hw_cfg_output(ah, ah->led_pin, |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1241 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1242 | ath9k_hw_set_gpio(ah, ah->led_pin, 0); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1243 | |
| 1244 | ieee80211_wake_queues(sc->hw); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1245 | ath9k_ps_restore(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1246 | } |
| 1247 | |
Jouni Malinen | 7ec3e51 | 2009-03-03 19:23:37 +0200 | [diff] [blame] | 1248 | void ath_radio_disable(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1249 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1250 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1251 | struct ieee80211_channel *channel = sc->hw->conf.channel; |
| 1252 | int r; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1253 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1254 | ath9k_ps_wakeup(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1255 | ieee80211_stop_queues(sc->hw); |
| 1256 | |
| 1257 | /* Disable LED */ |
Vivek Natarajan | 08fc5c1 | 2009-08-14 11:30:52 +0530 | [diff] [blame] | 1258 | ath9k_hw_set_gpio(ah, ah->led_pin, 1); |
| 1259 | ath9k_hw_cfg_gpio_input(ah, ah->led_pin); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1260 | |
| 1261 | /* Disable interrupts */ |
| 1262 | ath9k_hw_set_interrupts(ah, 0); |
| 1263 | |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 1264 | ath_drain_all_txq(sc, false); /* clear pending tx frames */ |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1265 | ath_stoprecv(sc); /* turn off frame recv */ |
| 1266 | ath_flushrecv(sc); /* flush recv queue */ |
| 1267 | |
Vasanthakumar Thiagarajan | 159cd46 | 2009-06-13 14:50:25 +0530 | [diff] [blame] | 1268 | if (!ah->curchan) |
| 1269 | ah->curchan = ath_get_curchannel(sc, sc->hw); |
| 1270 | |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1271 | spin_lock_bh(&sc->sc_resetlock); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1272 | r = ath9k_hw_reset(ah, ah->curchan, false); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1273 | if (r) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1274 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL, |
| 1275 | "Unable to reset channel %u (%uMhz) " |
| 1276 | "reset status %d\n", |
| 1277 | channel->center_freq, r); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1278 | } |
| 1279 | spin_unlock_bh(&sc->sc_resetlock); |
| 1280 | |
| 1281 | ath9k_hw_phy_disable(ah); |
Vivek Natarajan | 93b1b37 | 2009-09-17 09:24:58 +0530 | [diff] [blame] | 1282 | ath9k_hw_configpcipowersave(ah, 1, 1); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1283 | ath9k_ps_restore(sc); |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 1284 | ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1285 | } |
| 1286 | |
Gabor Juhos | 5077fd3 | 2009-03-06 11:17:55 +0100 | [diff] [blame] | 1287 | /*******************/ |
| 1288 | /* Rfkill */ |
| 1289 | /*******************/ |
| 1290 | |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1291 | static bool ath_is_rfkill_set(struct ath_softc *sc) |
| 1292 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1293 | struct ath_hw *ah = sc->sc_ah; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1294 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1295 | return ath9k_hw_gpio_get(ah, ah->rfkill_gpio) == |
| 1296 | ah->rfkill_polarity; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1297 | } |
| 1298 | |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1299 | static void ath9k_rfkill_poll_state(struct ieee80211_hw *hw) |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1300 | { |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1301 | struct ath_wiphy *aphy = hw->priv; |
| 1302 | struct ath_softc *sc = aphy->sc; |
| 1303 | bool blocked = !!ath_is_rfkill_set(sc); |
| 1304 | |
| 1305 | wiphy_rfkill_set_hw_state(hw->wiphy, blocked); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1306 | } |
| 1307 | |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1308 | static void ath_start_rfkill_poll(struct ath_softc *sc) |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1309 | { |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1310 | struct ath_hw *ah = sc->sc_ah; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1311 | |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1312 | if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
| 1313 | wiphy_rfkill_start_polling(sc->hw->wiphy); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1314 | } |
| 1315 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 1316 | void ath_cleanup(struct ath_softc *sc) |
Gabor Juhos | 39c3c2f | 2009-01-14 20:17:05 +0100 | [diff] [blame] | 1317 | { |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1318 | struct ath_hw *ah = sc->sc_ah; |
| 1319 | struct ath_common *common = ath9k_hw_common(ah); |
| 1320 | |
Gabor Juhos | 39c3c2f | 2009-01-14 20:17:05 +0100 | [diff] [blame] | 1321 | ath_detach(sc); |
| 1322 | free_irq(sc->irq, sc); |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1323 | ath_bus_cleanup(common); |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1324 | kfree(sc->sec_wiphy); |
Gabor Juhos | 39c3c2f | 2009-01-14 20:17:05 +0100 | [diff] [blame] | 1325 | ieee80211_free_hw(sc->hw); |
| 1326 | } |
| 1327 | |
Luis R. Rodriguez | 7fda166 | 2009-10-06 21:19:08 -0400 | [diff] [blame^] | 1328 | static void ath9k_uninit_hw(struct ath_softc *sc) |
| 1329 | { |
| 1330 | struct ath_hw *ah = sc->sc_ah; |
| 1331 | |
| 1332 | BUG_ON(!ah); |
| 1333 | |
| 1334 | ath9k_exit_debug(ah); |
| 1335 | ath9k_hw_detach(ah); |
| 1336 | sc->sc_ah = NULL; |
| 1337 | } |
| 1338 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 1339 | void ath_detach(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1340 | { |
| 1341 | struct ieee80211_hw *hw = sc->hw; |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1342 | struct ath_hw *ah = sc->sc_ah; |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1343 | int i = 0; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1344 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1345 | ath9k_ps_wakeup(sc); |
| 1346 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1347 | dev_dbg(sc->dev, "Detach ATH hw\n"); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1348 | |
Luis R. Rodriguez | 35c95ab | 2009-07-27 11:53:03 -0700 | [diff] [blame] | 1349 | ath_deinit_leds(sc); |
Sujith | e31f7b9 | 2009-09-23 13:49:12 +0530 | [diff] [blame] | 1350 | wiphy_rfkill_stop_polling(sc->hw->wiphy); |
Luis R. Rodriguez | 35c95ab | 2009-07-27 11:53:03 -0700 | [diff] [blame] | 1351 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1352 | for (i = 0; i < sc->num_sec_wiphy; i++) { |
| 1353 | struct ath_wiphy *aphy = sc->sec_wiphy[i]; |
| 1354 | if (aphy == NULL) |
| 1355 | continue; |
| 1356 | sc->sec_wiphy[i] = NULL; |
| 1357 | ieee80211_unregister_hw(aphy->hw); |
| 1358 | ieee80211_free_hw(aphy->hw); |
| 1359 | } |
Vasanthakumar Thiagarajan | 3fcdfb4 | 2008-11-18 01:19:56 +0530 | [diff] [blame] | 1360 | ieee80211_unregister_hw(hw); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1361 | ath_rx_cleanup(sc); |
| 1362 | ath_tx_cleanup(sc); |
| 1363 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1364 | tasklet_kill(&sc->intr_tq); |
| 1365 | tasklet_kill(&sc->bcon_tasklet); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1366 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1367 | if (!(sc->sc_flags & SC_OP_INVALID)) |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 1368 | ath9k_setpower(sc, ATH9K_PM_AWAKE); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1369 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1370 | /* cleanup tx queues */ |
| 1371 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1372 | if (ATH_TXQ_SETUP(sc, i)) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1373 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1374 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1375 | if ((sc->btcoex.no_stomp_timer) && |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 1376 | ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE) |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1377 | ath_gen_timer_free(ah, sc->btcoex.no_stomp_timer); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 1378 | |
Luis R. Rodriguez | 7fda166 | 2009-10-06 21:19:08 -0400 | [diff] [blame^] | 1379 | ath9k_uninit_hw(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1380 | } |
| 1381 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 1382 | static int ath9k_reg_notifier(struct wiphy *wiphy, |
| 1383 | struct regulatory_request *request) |
| 1384 | { |
| 1385 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
| 1386 | struct ath_wiphy *aphy = hw->priv; |
| 1387 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 1388 | struct ath_regulatory *reg = ath9k_hw_regulatory(sc->sc_ah); |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 1389 | |
| 1390 | return ath_reg_notifier_apply(wiphy, request, reg); |
| 1391 | } |
| 1392 | |
Luis R. Rodriguez | 1e40bcf | 2009-08-03 12:24:47 -0700 | [diff] [blame] | 1393 | /* |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1394 | * Detects if there is any priority bt traffic |
| 1395 | */ |
| 1396 | static void ath_detect_bt_priority(struct ath_softc *sc) |
| 1397 | { |
| 1398 | struct ath_btcoex *btcoex = &sc->btcoex; |
| 1399 | struct ath_hw *ah = sc->sc_ah; |
| 1400 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 1401 | if (ath9k_hw_gpio_get(sc->sc_ah, ah->btcoex_hw.btpriority_gpio)) |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1402 | btcoex->bt_priority_cnt++; |
| 1403 | |
| 1404 | if (time_after(jiffies, btcoex->bt_priority_time + |
| 1405 | msecs_to_jiffies(ATH_BT_PRIORITY_TIME_THRESHOLD))) { |
| 1406 | if (btcoex->bt_priority_cnt >= ATH_BT_CNT_THRESHOLD) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1407 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_BTCOEX, |
| 1408 | "BT priority traffic detected"); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1409 | sc->sc_flags |= SC_OP_BT_PRIORITY_DETECTED; |
| 1410 | } else { |
| 1411 | sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED; |
| 1412 | } |
| 1413 | |
| 1414 | btcoex->bt_priority_cnt = 0; |
| 1415 | btcoex->bt_priority_time = jiffies; |
| 1416 | } |
| 1417 | } |
| 1418 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1419 | /* |
| 1420 | * Configures appropriate weight based on stomp type. |
| 1421 | */ |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1422 | static void ath9k_btcoex_bt_stomp(struct ath_softc *sc, |
| 1423 | enum ath_stomp_type stomp_type) |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1424 | { |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1425 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1426 | |
| 1427 | switch (stomp_type) { |
| 1428 | case ATH_BTCOEX_STOMP_ALL: |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1429 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
| 1430 | AR_STOMP_ALL_WLAN_WGHT); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1431 | break; |
| 1432 | case ATH_BTCOEX_STOMP_LOW: |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1433 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
| 1434 | AR_STOMP_LOW_WLAN_WGHT); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1435 | break; |
| 1436 | case ATH_BTCOEX_STOMP_NONE: |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1437 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
| 1438 | AR_STOMP_NONE_WLAN_WGHT); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1439 | break; |
| 1440 | default: |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1441 | ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX, |
| 1442 | "Invalid Stomptype\n"); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1443 | break; |
| 1444 | } |
| 1445 | |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1446 | ath9k_hw_btcoex_enable(ah); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1447 | } |
| 1448 | |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1449 | static void ath9k_gen_timer_start(struct ath_hw *ah, |
| 1450 | struct ath_gen_timer *timer, |
| 1451 | u32 timer_next, |
| 1452 | u32 timer_period) |
| 1453 | { |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1454 | struct ath_common *common = ath9k_hw_common(ah); |
| 1455 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 1456 | |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1457 | ath9k_hw_gen_timer_start(ah, timer, timer_next, timer_period); |
| 1458 | |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1459 | if ((sc->imask & ATH9K_INT_GENTIMER) == 0) { |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1460 | ath9k_hw_set_interrupts(ah, 0); |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1461 | sc->imask |= ATH9K_INT_GENTIMER; |
| 1462 | ath9k_hw_set_interrupts(ah, sc->imask); |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | static void ath9k_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer) |
| 1467 | { |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1468 | struct ath_common *common = ath9k_hw_common(ah); |
| 1469 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1470 | struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers; |
| 1471 | |
| 1472 | ath9k_hw_gen_timer_stop(ah, timer); |
| 1473 | |
| 1474 | /* if no timer is enabled, turn off interrupt mask */ |
| 1475 | if (timer_table->timer_mask.val == 0) { |
| 1476 | ath9k_hw_set_interrupts(ah, 0); |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1477 | sc->imask &= ~ATH9K_INT_GENTIMER; |
| 1478 | ath9k_hw_set_interrupts(ah, sc->imask); |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1479 | } |
| 1480 | } |
| 1481 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1482 | /* |
| 1483 | * This is the master bt coex timer which runs for every |
| 1484 | * 45ms, bt traffic will be given priority during 55% of this |
| 1485 | * period while wlan gets remaining 45% |
| 1486 | */ |
| 1487 | static void ath_btcoex_period_timer(unsigned long data) |
| 1488 | { |
| 1489 | struct ath_softc *sc = (struct ath_softc *) data; |
| 1490 | struct ath_hw *ah = sc->sc_ah; |
| 1491 | struct ath_btcoex *btcoex = &sc->btcoex; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1492 | |
| 1493 | ath_detect_bt_priority(sc); |
| 1494 | |
| 1495 | spin_lock_bh(&btcoex->btcoex_lock); |
| 1496 | |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1497 | ath9k_btcoex_bt_stomp(sc, btcoex->bt_stomp_type); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1498 | |
| 1499 | spin_unlock_bh(&btcoex->btcoex_lock); |
| 1500 | |
| 1501 | if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) { |
| 1502 | if (btcoex->hw_timer_enabled) |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1503 | ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1504 | |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 1505 | ath9k_gen_timer_start(ah, |
| 1506 | btcoex->no_stomp_timer, |
| 1507 | (ath9k_hw_gettsf32(ah) + |
| 1508 | btcoex->btcoex_no_stomp), |
| 1509 | btcoex->btcoex_no_stomp * 10); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1510 | btcoex->hw_timer_enabled = true; |
| 1511 | } |
| 1512 | |
| 1513 | mod_timer(&btcoex->period_timer, jiffies + |
| 1514 | msecs_to_jiffies(ATH_BTCOEX_DEF_BT_PERIOD)); |
| 1515 | } |
| 1516 | |
| 1517 | /* |
| 1518 | * Generic tsf based hw timer which configures weight |
| 1519 | * registers to time slice between wlan and bt traffic |
| 1520 | */ |
| 1521 | static void ath_btcoex_no_stomp_timer(void *arg) |
| 1522 | { |
| 1523 | struct ath_softc *sc = (struct ath_softc *)arg; |
| 1524 | struct ath_hw *ah = sc->sc_ah; |
| 1525 | struct ath_btcoex *btcoex = &sc->btcoex; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1526 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1527 | ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX, |
| 1528 | "no stomp timer running \n"); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1529 | |
| 1530 | spin_lock_bh(&btcoex->btcoex_lock); |
| 1531 | |
Luis R. Rodriguez | e08a6ac | 2009-09-09 14:26:15 -0700 | [diff] [blame] | 1532 | if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_LOW) |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1533 | ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_NONE); |
Luis R. Rodriguez | e08a6ac | 2009-09-09 14:26:15 -0700 | [diff] [blame] | 1534 | else if (btcoex->bt_stomp_type == ATH_BTCOEX_STOMP_ALL) |
Luis R. Rodriguez | 269ad81 | 2009-09-09 15:05:00 -0700 | [diff] [blame] | 1535 | ath9k_btcoex_bt_stomp(sc, ATH_BTCOEX_STOMP_LOW); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1536 | |
| 1537 | spin_unlock_bh(&btcoex->btcoex_lock); |
| 1538 | } |
| 1539 | |
| 1540 | static int ath_init_btcoex_timer(struct ath_softc *sc) |
| 1541 | { |
| 1542 | struct ath_btcoex *btcoex = &sc->btcoex; |
| 1543 | |
| 1544 | btcoex->btcoex_period = ATH_BTCOEX_DEF_BT_PERIOD * 1000; |
| 1545 | btcoex->btcoex_no_stomp = (100 - ATH_BTCOEX_DEF_DUTY_CYCLE) * |
| 1546 | btcoex->btcoex_period / 100; |
| 1547 | |
| 1548 | setup_timer(&btcoex->period_timer, ath_btcoex_period_timer, |
| 1549 | (unsigned long) sc); |
| 1550 | |
| 1551 | spin_lock_init(&btcoex->btcoex_lock); |
| 1552 | |
| 1553 | btcoex->no_stomp_timer = ath_gen_timer_alloc(sc->sc_ah, |
| 1554 | ath_btcoex_no_stomp_timer, |
| 1555 | ath_btcoex_no_stomp_timer, |
| 1556 | (void *) sc, AR_FIRST_NDP_TIMER); |
| 1557 | |
| 1558 | if (!btcoex->no_stomp_timer) |
| 1559 | return -ENOMEM; |
| 1560 | |
| 1561 | return 0; |
| 1562 | } |
| 1563 | |
| 1564 | /* |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1565 | * Read and write, they both share the same lock. We do this to serialize |
| 1566 | * reads and writes on Atheros 802.11n PCI devices only. This is required |
| 1567 | * as the FIFO on these devices can only accept sanely 2 requests. After |
| 1568 | * that the device goes bananas. Serializing the reads/writes prevents this |
| 1569 | * from happening. |
| 1570 | */ |
| 1571 | |
| 1572 | static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 1573 | { |
| 1574 | struct ath_hw *ah = (struct ath_hw *) hw_priv; |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1575 | struct ath_common *common = ath9k_hw_common(ah); |
| 1576 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1577 | |
| 1578 | if (ah->config.serialize_regmode == SER_REG_MODE_ON) { |
| 1579 | unsigned long flags; |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1580 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 1581 | iowrite32(val, sc->mem + reg_offset); |
| 1582 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1583 | } else |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1584 | iowrite32(val, sc->mem + reg_offset); |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1585 | } |
| 1586 | |
| 1587 | static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset) |
| 1588 | { |
| 1589 | struct ath_hw *ah = (struct ath_hw *) hw_priv; |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1590 | struct ath_common *common = ath9k_hw_common(ah); |
| 1591 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1592 | u32 val; |
| 1593 | |
| 1594 | if (ah->config.serialize_regmode == SER_REG_MODE_ON) { |
| 1595 | unsigned long flags; |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1596 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 1597 | val = ioread32(sc->mem + reg_offset); |
| 1598 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1599 | } else |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1600 | val = ioread32(sc->mem + reg_offset); |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1601 | return val; |
| 1602 | } |
| 1603 | |
Luis R. Rodriguez | 2ddb5c8 | 2009-09-14 02:09:38 -0700 | [diff] [blame] | 1604 | static const struct ath_ops ath9k_common_ops = { |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1605 | .read = ath9k_ioread32, |
| 1606 | .write = ath9k_iowrite32, |
| 1607 | }; |
| 1608 | |
| 1609 | /* |
Luis R. Rodriguez | 1e40bcf | 2009-08-03 12:24:47 -0700 | [diff] [blame] | 1610 | * Initialize and fill ath_softc, ath_sofct is the |
| 1611 | * "Software Carrier" struct. Historically it has existed |
| 1612 | * to allow the separation between hardware specific |
| 1613 | * variables (now in ath_hw) and driver specific variables. |
| 1614 | */ |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1615 | static int ath_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid, |
| 1616 | const struct ath_bus_ops *bus_ops) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1617 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1618 | struct ath_hw *ah = NULL; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1619 | struct ath_common *common; |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1620 | int r = 0, i; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1621 | int csz = 0; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1622 | int qnum; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1623 | |
| 1624 | /* XXX: hardware will not be ready until ath_open() being called */ |
| 1625 | sc->sc_flags |= SC_OP_INVALID; |
Sujith | 88b126a | 2008-11-28 22:19:02 +0530 | [diff] [blame] | 1626 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1627 | spin_lock_init(&sc->wiphy_lock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1628 | spin_lock_init(&sc->sc_resetlock); |
Luis R. Rodriguez | 6158425 | 2009-03-12 18:18:49 -0400 | [diff] [blame] | 1629 | spin_lock_init(&sc->sc_serial_rw); |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 1630 | spin_lock_init(&sc->ani_lock); |
Gabor Juhos | 04717cc | 2009-07-14 20:17:13 -0400 | [diff] [blame] | 1631 | spin_lock_init(&sc->sc_pm_lock); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 1632 | mutex_init(&sc->mutex); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1633 | tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc); |
Sujith | 9fc9ab0 | 2009-03-03 10:16:51 +0530 | [diff] [blame] | 1634 | tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet, |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1635 | (unsigned long)sc); |
| 1636 | |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1637 | ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL); |
Luis R. Rodriguez | 211f585 | 2009-10-06 21:19:07 -0400 | [diff] [blame] | 1638 | if (!ah) |
| 1639 | return -ENOMEM; |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1640 | |
Luis R. Rodriguez | 8df5d1b | 2009-08-03 12:24:37 -0700 | [diff] [blame] | 1641 | ah->hw_version.devid = devid; |
Vasanthakumar Thiagarajan | aeac355 | 2009-09-09 15:25:49 +0530 | [diff] [blame] | 1642 | ah->hw_version.subsysid = subsysid; |
Luis R. Rodriguez | e1e2f93 | 2009-08-03 12:24:38 -0700 | [diff] [blame] | 1643 | sc->sc_ah = ah; |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1644 | |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 1645 | common = ath9k_hw_common(ah); |
Luis R. Rodriguez | 9e4bffd | 2009-09-10 16:11:21 -0700 | [diff] [blame] | 1646 | common->ops = &ath9k_common_ops; |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1647 | common->bus_ops = bus_ops; |
Luis R. Rodriguez | 13b8155 | 2009-09-10 17:52:45 -0700 | [diff] [blame] | 1648 | common->ah = ah; |
Luis R. Rodriguez | b002a4a | 2009-09-13 00:03:27 -0700 | [diff] [blame] | 1649 | common->hw = sc->hw; |
Luis R. Rodriguez | bc974f4 | 2009-09-28 02:54:40 -0400 | [diff] [blame] | 1650 | common->priv = sc; |
Luis R. Rodriguez | faa27fa | 2009-10-06 21:19:06 -0400 | [diff] [blame] | 1651 | common->debug_mask = ath9k_debug; |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 1652 | |
| 1653 | /* |
| 1654 | * Cache line size is used to size and align various |
| 1655 | * structures used to communicate with the hardware. |
| 1656 | */ |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1657 | ath_read_cachesize(common, &csz); |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 1658 | /* XXX assert csz is non-zero */ |
| 1659 | common->cachelsz = csz << 2; /* convert to bytes */ |
| 1660 | |
Luis R. Rodriguez | f637cfd | 2009-08-03 12:24:46 -0700 | [diff] [blame] | 1661 | r = ath9k_hw_init(ah); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1662 | if (r) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1663 | ath_print(common, ATH_DBG_FATAL, |
| 1664 | "Unable to initialize hardware; " |
| 1665 | "initialization status: %d\n", r); |
Luis R. Rodriguez | 211f585 | 2009-10-06 21:19:07 -0400 | [diff] [blame] | 1666 | goto bad_free_hw; |
| 1667 | } |
| 1668 | |
| 1669 | if (ath9k_init_debug(ah) < 0) { |
| 1670 | ath_print(common, ATH_DBG_FATAL, |
| 1671 | "Unable to create debugfs files\n"); |
| 1672 | goto bad_free_hw; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1673 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1674 | |
| 1675 | /* Get the hardware key cache size. */ |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1676 | sc->keymax = ah->caps.keycache_size; |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1677 | if (sc->keymax > ATH_KEYMAX) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1678 | ath_print(common, ATH_DBG_ANY, |
| 1679 | "Warning, using only %u entries in %u key cache\n", |
| 1680 | ATH_KEYMAX, sc->keymax); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1681 | sc->keymax = ATH_KEYMAX; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | /* |
| 1685 | * Reset the key cache since some parts do not |
| 1686 | * reset the contents on initial power up. |
| 1687 | */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1688 | for (i = 0; i < sc->keymax; i++) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1689 | ath9k_hw_keyreset(ah, (u16) i); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1690 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1691 | /* default to MONITOR mode */ |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1692 | sc->sc_ah->opmode = NL80211_IFTYPE_MONITOR; |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 1693 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1694 | /* Setup rate tables */ |
| 1695 | |
| 1696 | ath_rate_attach(sc); |
| 1697 | ath_setup_rates(sc, IEEE80211_BAND_2GHZ); |
| 1698 | ath_setup_rates(sc, IEEE80211_BAND_5GHZ); |
| 1699 | |
| 1700 | /* |
| 1701 | * Allocate hardware transmit queues: one queue for |
| 1702 | * beacon frames and one data queue for each QoS |
| 1703 | * priority. Note that the hal handles reseting |
| 1704 | * these queues at the needed time. |
| 1705 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1706 | sc->beacon.beaconq = ath_beaconq_setup(ah); |
| 1707 | if (sc->beacon.beaconq == -1) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1708 | ath_print(common, ATH_DBG_FATAL, |
| 1709 | "Unable to setup a beacon xmit queue\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1710 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1711 | goto bad2; |
| 1712 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1713 | sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); |
| 1714 | if (sc->beacon.cabq == NULL) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1715 | ath_print(common, ATH_DBG_FATAL, |
| 1716 | "Unable to setup CAB xmit queue\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1717 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1718 | goto bad2; |
| 1719 | } |
| 1720 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1721 | sc->config.cabqReadytime = ATH_CABQ_READY_TIME; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1722 | ath_cabq_update(sc); |
| 1723 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1724 | for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++) |
| 1725 | sc->tx.hwq_map[i] = -1; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1726 | |
| 1727 | /* Setup data queues */ |
| 1728 | /* NB: ensure BK queue is the lowest priority h/w queue */ |
| 1729 | if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1730 | ath_print(common, ATH_DBG_FATAL, |
| 1731 | "Unable to setup xmit queue for BK traffic\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1732 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1733 | goto bad2; |
| 1734 | } |
| 1735 | |
| 1736 | if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1737 | ath_print(common, ATH_DBG_FATAL, |
| 1738 | "Unable to setup xmit queue for BE traffic\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1739 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1740 | goto bad2; |
| 1741 | } |
| 1742 | if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1743 | ath_print(common, ATH_DBG_FATAL, |
| 1744 | "Unable to setup xmit queue for VI traffic\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1745 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1746 | goto bad2; |
| 1747 | } |
| 1748 | if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1749 | ath_print(common, ATH_DBG_FATAL, |
| 1750 | "Unable to setup xmit queue for VO traffic\n"); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1751 | r = -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1752 | goto bad2; |
| 1753 | } |
| 1754 | |
| 1755 | /* Initializes the noise floor to a reasonable default value. |
| 1756 | * Later on this will be updated during ANI processing. */ |
| 1757 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1758 | sc->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR; |
| 1759 | setup_timer(&sc->ani.timer, ath_ani_calibrate, (unsigned long)sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1760 | |
| 1761 | if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1762 | ATH9K_CIPHER_TKIP, NULL)) { |
| 1763 | /* |
| 1764 | * Whether we should enable h/w TKIP MIC. |
| 1765 | * XXX: if we don't support WME TKIP MIC, then we wouldn't |
| 1766 | * report WMM capable, so it's always safe to turn on |
| 1767 | * TKIP MIC in this case. |
| 1768 | */ |
| 1769 | ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC, |
| 1770 | 0, 1, NULL); |
| 1771 | } |
| 1772 | |
| 1773 | /* |
| 1774 | * Check whether the separate key cache entries |
| 1775 | * are required to handle both tx+rx MIC keys. |
| 1776 | * With split mic keys the number of stations is limited |
| 1777 | * to 27 otherwise 59. |
| 1778 | */ |
| 1779 | if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1780 | ATH9K_CIPHER_TKIP, NULL) |
| 1781 | && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1782 | ATH9K_CIPHER_MIC, NULL) |
| 1783 | && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT, |
| 1784 | 0, NULL)) |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1785 | sc->splitmic = 1; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1786 | |
| 1787 | /* turn on mcast key search if possible */ |
| 1788 | if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL)) |
| 1789 | (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1, |
| 1790 | 1, NULL); |
| 1791 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1792 | sc->config.txpowlimit = ATH_TXPOWER_MAX; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1793 | |
| 1794 | /* 11n Capabilities */ |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1795 | if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1796 | sc->sc_flags |= SC_OP_TXAGGR; |
| 1797 | sc->sc_flags |= SC_OP_RXAGGR; |
| 1798 | } |
| 1799 | |
Luis R. Rodriguez | 43c2761 | 2009-09-13 21:07:07 -0700 | [diff] [blame] | 1800 | common->tx_chainmask = ah->caps.tx_chainmask; |
| 1801 | common->rx_chainmask = ah->caps.rx_chainmask; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1802 | |
| 1803 | ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1804 | sc->rx.defant = ath9k_hw_getdefantenna(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1805 | |
Jouni Malinen | 8ca21f0 | 2009-03-03 19:23:27 +0200 | [diff] [blame] | 1806 | if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1807 | memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1808 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1809 | sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1810 | |
| 1811 | /* initialize beacon slots */ |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1812 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 1813 | sc->beacon.bslot[i] = NULL; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1814 | sc->beacon.bslot_aphy[i] = NULL; |
| 1815 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1816 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1817 | /* setup channels and rates */ |
| 1818 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1819 | sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1820 | sc->sbands[IEEE80211_BAND_2GHZ].bitrates = |
| 1821 | sc->rates[IEEE80211_BAND_2GHZ]; |
| 1822 | sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1823 | sc->sbands[IEEE80211_BAND_2GHZ].n_channels = |
| 1824 | ARRAY_SIZE(ath9k_2ghz_chantable); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1825 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1826 | if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1827 | sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1828 | sc->sbands[IEEE80211_BAND_5GHZ].bitrates = |
| 1829 | sc->rates[IEEE80211_BAND_5GHZ]; |
| 1830 | sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1831 | sc->sbands[IEEE80211_BAND_5GHZ].n_channels = |
| 1832 | ARRAY_SIZE(ath9k_5ghz_chantable); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1833 | } |
| 1834 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 1835 | switch (ah->btcoex_hw.scheme) { |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1836 | case ATH_BTCOEX_CFG_NONE: |
| 1837 | break; |
| 1838 | case ATH_BTCOEX_CFG_2WIRE: |
| 1839 | ath9k_hw_btcoex_init_2wire(ah); |
| 1840 | break; |
| 1841 | case ATH_BTCOEX_CFG_3WIRE: |
| 1842 | ath9k_hw_btcoex_init_3wire(ah); |
| 1843 | r = ath_init_btcoex_timer(sc); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 1844 | if (r) |
| 1845 | goto bad2; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1846 | qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE); |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 1847 | ath9k_hw_init_btcoex_hw(ah, qnum); |
Luis R. Rodriguez | e08a6ac | 2009-09-09 14:26:15 -0700 | [diff] [blame] | 1848 | sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW; |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 1849 | break; |
| 1850 | default: |
| 1851 | WARN_ON(1); |
| 1852 | break; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 1853 | } |
Vasanthakumar Thiagarajan | c97c92d | 2009-01-02 15:35:46 +0530 | [diff] [blame] | 1854 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1855 | return 0; |
| 1856 | bad2: |
| 1857 | /* cleanup tx queues */ |
| 1858 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1859 | if (ATH_TXQ_SETUP(sc, i)) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1860 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1861 | |
Luis R. Rodriguez | 211f585 | 2009-10-06 21:19:07 -0400 | [diff] [blame] | 1862 | bad_free_hw: |
Luis R. Rodriguez | 7fda166 | 2009-10-06 21:19:08 -0400 | [diff] [blame^] | 1863 | ath9k_uninit_hw(sc); |
Luis R. Rodriguez | 4f3acf8 | 2009-08-03 12:24:36 -0700 | [diff] [blame] | 1864 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1865 | } |
| 1866 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1867 | void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1868 | { |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1869 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 1870 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 1871 | IEEE80211_HW_SIGNAL_DBM | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1872 | IEEE80211_HW_AMPDU_AGGREGATION | |
| 1873 | IEEE80211_HW_SUPPORTS_PS | |
Sujith | eeee132 | 2009-03-10 10:39:53 +0530 | [diff] [blame] | 1874 | IEEE80211_HW_PS_NULLFUNC_STACK | |
| 1875 | IEEE80211_HW_SPECTRUM_MGMT; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1876 | |
Jouni Malinen | b3bd89c | 2009-02-24 13:42:01 +0200 | [diff] [blame] | 1877 | if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt) |
Jouni Malinen | 0ced0e1 | 2009-01-08 13:32:13 +0200 | [diff] [blame] | 1878 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 1879 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1880 | hw->wiphy->interface_modes = |
| 1881 | BIT(NL80211_IFTYPE_AP) | |
| 1882 | BIT(NL80211_IFTYPE_STATION) | |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 1883 | BIT(NL80211_IFTYPE_ADHOC) | |
| 1884 | BIT(NL80211_IFTYPE_MESH_POINT); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1885 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1886 | hw->queues = 4; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 1887 | hw->max_rates = 4; |
Sujith | 171387e | 2009-02-17 15:36:25 +0530 | [diff] [blame] | 1888 | hw->channel_change_time = 5000; |
Jouni Malinen | 465ca84 | 2009-03-03 19:23:34 +0200 | [diff] [blame] | 1889 | hw->max_listen_interval = 10; |
Luis R. Rodriguez | dd19018 | 2009-07-14 20:13:56 -0400 | [diff] [blame] | 1890 | /* Hardware supports 10 but we use 4 */ |
| 1891 | hw->max_rate_tries = 4; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1892 | hw->sta_data_size = sizeof(struct ath_node); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 1893 | hw->vif_data_size = sizeof(struct ath_vif); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1894 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1895 | hw->rate_control_algorithm = "ath9k_rate_control"; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1896 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1897 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 1898 | &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 1899 | if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) |
| 1900 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 1901 | &sc->sbands[IEEE80211_BAND_5GHZ]; |
| 1902 | } |
| 1903 | |
Luis R. Rodriguez | 1e40bcf | 2009-08-03 12:24:47 -0700 | [diff] [blame] | 1904 | /* Device driver core initialization */ |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1905 | int ath_init_device(u16 devid, struct ath_softc *sc, u16 subsysid, |
| 1906 | const struct ath_bus_ops *bus_ops) |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1907 | { |
| 1908 | struct ieee80211_hw *hw = sc->hw; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1909 | struct ath_common *common; |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1910 | struct ath_hw *ah; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1911 | int error = 0, i; |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 1912 | struct ath_regulatory *reg; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1913 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1914 | dev_dbg(sc->dev, "Attach ATH hw\n"); |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1915 | |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 1916 | error = ath_init_softc(devid, sc, subsysid, bus_ops); |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1917 | if (error != 0) |
| 1918 | return error; |
| 1919 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1920 | ah = sc->sc_ah; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1921 | common = ath9k_hw_common(ah); |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1922 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1923 | /* get mac address from hardware and set in mac80211 */ |
| 1924 | |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1925 | SET_IEEE80211_PERM_ADDR(hw, common->macaddr); |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 1926 | |
| 1927 | ath_set_hw_capab(sc, hw); |
| 1928 | |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1929 | error = ath_regd_init(&common->regulatory, sc->hw->wiphy, |
Luis R. Rodriguez | c26c2e5 | 2009-05-19 18:27:11 -0400 | [diff] [blame] | 1930 | ath9k_reg_notifier); |
| 1931 | if (error) |
| 1932 | return error; |
| 1933 | |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 1934 | reg = &common->regulatory; |
Luis R. Rodriguez | c26c2e5 | 2009-05-19 18:27:11 -0400 | [diff] [blame] | 1935 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1936 | if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) { |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 1937 | setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap); |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 1938 | if (test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) |
Sujith | eb2599c | 2009-01-23 11:20:44 +0530 | [diff] [blame] | 1939 | setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1940 | } |
| 1941 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1942 | /* initialize tx/rx engine */ |
| 1943 | error = ath_tx_init(sc, ATH_TXBUF); |
| 1944 | if (error != 0) |
Vasanthakumar Thiagarajan | 40b130a | 2009-02-16 13:55:07 +0530 | [diff] [blame] | 1945 | goto error_attach; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1946 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1947 | error = ath_rx_init(sc, ATH_RXBUF); |
| 1948 | if (error != 0) |
Vasanthakumar Thiagarajan | 40b130a | 2009-02-16 13:55:07 +0530 | [diff] [blame] | 1949 | goto error_attach; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1950 | |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 1951 | INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work); |
Jouni Malinen | f98c3bd | 2009-03-03 19:23:39 +0200 | [diff] [blame] | 1952 | INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work); |
| 1953 | sc->wiphy_scheduler_int = msecs_to_jiffies(500); |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 1954 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1955 | error = ieee80211_register_hw(hw); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1956 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 1957 | if (!ath_is_world_regd(reg)) { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 1958 | error = regulatory_hint(hw->wiphy, reg->alpha2); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1959 | if (error) |
| 1960 | goto error_attach; |
| 1961 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1962 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1963 | /* Initialize LED control */ |
| 1964 | ath_init_leds(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1965 | |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 1966 | ath_start_rfkill_poll(sc); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 1967 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1968 | return 0; |
Vasanthakumar Thiagarajan | 40b130a | 2009-02-16 13:55:07 +0530 | [diff] [blame] | 1969 | |
| 1970 | error_attach: |
| 1971 | /* cleanup tx queues */ |
| 1972 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1973 | if (ATH_TXQ_SETUP(sc, i)) |
| 1974 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
| 1975 | |
Luis R. Rodriguez | 7fda166 | 2009-10-06 21:19:08 -0400 | [diff] [blame^] | 1976 | ath9k_uninit_hw(sc); |
Vasanthakumar Thiagarajan | 40b130a | 2009-02-16 13:55:07 +0530 | [diff] [blame] | 1977 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1978 | return error; |
| 1979 | } |
| 1980 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1981 | int ath_reset(struct ath_softc *sc, bool retry_tx) |
| 1982 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1983 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1984 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 1985 | struct ieee80211_hw *hw = sc->hw; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1986 | int r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1987 | |
| 1988 | ath9k_hw_set_interrupts(ah, 0); |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 1989 | ath_drain_all_txq(sc, retry_tx); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1990 | ath_stoprecv(sc); |
| 1991 | ath_flushrecv(sc); |
| 1992 | |
| 1993 | spin_lock_bh(&sc->sc_resetlock); |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 1994 | r = ath9k_hw_reset(ah, sc->sc_ah->curchan, false); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1995 | if (r) |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 1996 | ath_print(common, ATH_DBG_FATAL, |
| 1997 | "Unable to reset hardware; reset status %d\n", r); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1998 | spin_unlock_bh(&sc->sc_resetlock); |
| 1999 | |
| 2000 | if (ath_startrecv(sc) != 0) |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2001 | ath_print(common, ATH_DBG_FATAL, |
| 2002 | "Unable to start recv logic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2003 | |
| 2004 | /* |
| 2005 | * We may be doing a reset in response to a request |
| 2006 | * that changes the channel so update any state that |
| 2007 | * might change as a result. |
| 2008 | */ |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 2009 | ath_cache_conf_rate(sc, &hw->conf); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2010 | |
| 2011 | ath_update_txpow(sc); |
| 2012 | |
| 2013 | if (sc->sc_flags & SC_OP_BEACONS) |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2014 | ath_beacon_config(sc, NULL); /* restart beacons */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2015 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2016 | ath9k_hw_set_interrupts(ah, sc->imask); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2017 | |
| 2018 | if (retry_tx) { |
| 2019 | int i; |
| 2020 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 2021 | if (ATH_TXQ_SETUP(sc, i)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2022 | spin_lock_bh(&sc->tx.txq[i].axq_lock); |
| 2023 | ath_txq_schedule(sc, &sc->tx.txq[i]); |
| 2024 | spin_unlock_bh(&sc->tx.txq[i].axq_lock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 2029 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2030 | } |
| 2031 | |
| 2032 | /* |
| 2033 | * This function will allocate both the DMA descriptor structure, and the |
| 2034 | * buffers it contains. These are used to contain the descriptors used |
| 2035 | * by the system. |
| 2036 | */ |
| 2037 | int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd, |
| 2038 | struct list_head *head, const char *name, |
| 2039 | int nbuf, int ndesc) |
| 2040 | { |
| 2041 | #define DS2PHYS(_dd, _ds) \ |
| 2042 | ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc)) |
| 2043 | #define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0) |
| 2044 | #define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096) |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2045 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2046 | struct ath_desc *ds; |
| 2047 | struct ath_buf *bf; |
| 2048 | int i, bsize, error; |
| 2049 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2050 | ath_print(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n", |
| 2051 | name, nbuf, ndesc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2052 | |
Senthil Balasubramanian | b03a9db | 2009-03-06 11:24:09 +0530 | [diff] [blame] | 2053 | INIT_LIST_HEAD(head); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2054 | /* ath_desc must be a multiple of DWORDs */ |
| 2055 | if ((sizeof(struct ath_desc) % 4) != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2056 | ath_print(common, ATH_DBG_FATAL, |
| 2057 | "ath_desc not DWORD aligned\n"); |
Luis R. Rodriguez | 9680e8a | 2009-09-13 23:28:00 -0700 | [diff] [blame] | 2058 | BUG_ON((sizeof(struct ath_desc) % 4) != 0); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2059 | error = -ENOMEM; |
| 2060 | goto fail; |
| 2061 | } |
| 2062 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2063 | dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc; |
| 2064 | |
| 2065 | /* |
| 2066 | * Need additional DMA memory because we can't use |
| 2067 | * descriptors that cross the 4K page boundary. Assume |
| 2068 | * one skipped descriptor per 4K page. |
| 2069 | */ |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 2070 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2071 | u32 ndesc_skipped = |
| 2072 | ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len); |
| 2073 | u32 dma_len; |
| 2074 | |
| 2075 | while (ndesc_skipped) { |
| 2076 | dma_len = ndesc_skipped * sizeof(struct ath_desc); |
| 2077 | dd->dd_desc_len += dma_len; |
| 2078 | |
| 2079 | ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len); |
| 2080 | }; |
| 2081 | } |
| 2082 | |
| 2083 | /* allocate descriptors */ |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 2084 | dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len, |
Senthil Balasubramanian | f0e6ce1 | 2009-03-06 11:24:08 +0530 | [diff] [blame] | 2085 | &dd->dd_desc_paddr, GFP_KERNEL); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2086 | if (dd->dd_desc == NULL) { |
| 2087 | error = -ENOMEM; |
| 2088 | goto fail; |
| 2089 | } |
| 2090 | ds = dd->dd_desc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2091 | ath_print(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", |
| 2092 | name, ds, (u32) dd->dd_desc_len, |
| 2093 | ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2094 | |
| 2095 | /* allocate buffers */ |
| 2096 | bsize = sizeof(struct ath_buf) * nbuf; |
Senthil Balasubramanian | f0e6ce1 | 2009-03-06 11:24:08 +0530 | [diff] [blame] | 2097 | bf = kzalloc(bsize, GFP_KERNEL); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2098 | if (bf == NULL) { |
| 2099 | error = -ENOMEM; |
| 2100 | goto fail2; |
| 2101 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2102 | dd->dd_bufptr = bf; |
| 2103 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2104 | for (i = 0; i < nbuf; i++, bf++, ds += ndesc) { |
| 2105 | bf->bf_desc = ds; |
| 2106 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 2107 | |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 2108 | if (!(sc->sc_ah->caps.hw_caps & |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2109 | ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 2110 | /* |
| 2111 | * Skip descriptor addresses which can cause 4KB |
| 2112 | * boundary crossing (addr + length) with a 32 dword |
| 2113 | * descriptor fetch. |
| 2114 | */ |
| 2115 | while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { |
Luis R. Rodriguez | 9680e8a | 2009-09-13 23:28:00 -0700 | [diff] [blame] | 2116 | BUG_ON((caddr_t) bf->bf_desc >= |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2117 | ((caddr_t) dd->dd_desc + |
| 2118 | dd->dd_desc_len)); |
| 2119 | |
| 2120 | ds += ndesc; |
| 2121 | bf->bf_desc = ds; |
| 2122 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 2123 | } |
| 2124 | } |
| 2125 | list_add_tail(&bf->list, head); |
| 2126 | } |
| 2127 | return 0; |
| 2128 | fail2: |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 2129 | dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, |
| 2130 | dd->dd_desc_paddr); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2131 | fail: |
| 2132 | memset(dd, 0, sizeof(*dd)); |
| 2133 | return error; |
| 2134 | #undef ATH_DESC_4KB_BOUND_CHECK |
| 2135 | #undef ATH_DESC_4KB_BOUND_NUM_SKIPPED |
| 2136 | #undef DS2PHYS |
| 2137 | } |
| 2138 | |
| 2139 | void ath_descdma_cleanup(struct ath_softc *sc, |
| 2140 | struct ath_descdma *dd, |
| 2141 | struct list_head *head) |
| 2142 | { |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 2143 | dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, |
| 2144 | dd->dd_desc_paddr); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2145 | |
| 2146 | INIT_LIST_HEAD(head); |
| 2147 | kfree(dd->dd_bufptr); |
| 2148 | memset(dd, 0, sizeof(*dd)); |
| 2149 | } |
| 2150 | |
| 2151 | int ath_get_hal_qnum(u16 queue, struct ath_softc *sc) |
| 2152 | { |
| 2153 | int qnum; |
| 2154 | |
| 2155 | switch (queue) { |
| 2156 | case 0: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2157 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2158 | break; |
| 2159 | case 1: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2160 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2161 | break; |
| 2162 | case 2: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2163 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2164 | break; |
| 2165 | case 3: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2166 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2167 | break; |
| 2168 | default: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2169 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2170 | break; |
| 2171 | } |
| 2172 | |
| 2173 | return qnum; |
| 2174 | } |
| 2175 | |
| 2176 | int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc) |
| 2177 | { |
| 2178 | int qnum; |
| 2179 | |
| 2180 | switch (queue) { |
| 2181 | case ATH9K_WME_AC_VO: |
| 2182 | qnum = 0; |
| 2183 | break; |
| 2184 | case ATH9K_WME_AC_VI: |
| 2185 | qnum = 1; |
| 2186 | break; |
| 2187 | case ATH9K_WME_AC_BE: |
| 2188 | qnum = 2; |
| 2189 | break; |
| 2190 | case ATH9K_WME_AC_BK: |
| 2191 | qnum = 3; |
| 2192 | break; |
| 2193 | default: |
| 2194 | qnum = -1; |
| 2195 | break; |
| 2196 | } |
| 2197 | |
| 2198 | return qnum; |
| 2199 | } |
| 2200 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2201 | /* XXX: Remove me once we don't depend on ath9k_channel for all |
| 2202 | * this redundant data */ |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 2203 | void ath9k_update_ichannel(struct ath_softc *sc, struct ieee80211_hw *hw, |
| 2204 | struct ath9k_channel *ichan) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2205 | { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2206 | struct ieee80211_channel *chan = hw->conf.channel; |
| 2207 | struct ieee80211_conf *conf = &hw->conf; |
| 2208 | |
| 2209 | ichan->channel = chan->center_freq; |
| 2210 | ichan->chan = chan; |
| 2211 | |
| 2212 | if (chan->band == IEEE80211_BAND_2GHZ) { |
| 2213 | ichan->chanmode = CHANNEL_G; |
Sujith | 8813262 | 2009-09-03 12:08:53 +0530 | [diff] [blame] | 2214 | ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM | CHANNEL_G; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2215 | } else { |
| 2216 | ichan->chanmode = CHANNEL_A; |
| 2217 | ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM; |
| 2218 | } |
| 2219 | |
Luis R. Rodriguez | 25c56ee | 2009-09-13 23:04:44 -0700 | [diff] [blame] | 2220 | if (conf_is_ht(conf)) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2221 | ichan->chanmode = ath_get_extchanmode(sc, chan, |
| 2222 | conf->channel_type); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2223 | } |
| 2224 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2225 | /**********************/ |
| 2226 | /* mac80211 callbacks */ |
| 2227 | /**********************/ |
| 2228 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2229 | /* |
| 2230 | * (Re)start btcoex timers |
| 2231 | */ |
| 2232 | static void ath9k_btcoex_timer_resume(struct ath_softc *sc) |
| 2233 | { |
| 2234 | struct ath_btcoex *btcoex = &sc->btcoex; |
| 2235 | struct ath_hw *ah = sc->sc_ah; |
| 2236 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2237 | ath_print(ath9k_hw_common(ah), ATH_DBG_BTCOEX, |
| 2238 | "Starting btcoex timers"); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2239 | |
| 2240 | /* make sure duty cycle timer is also stopped when resuming */ |
| 2241 | if (btcoex->hw_timer_enabled) |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 2242 | ath9k_gen_timer_stop(sc->sc_ah, btcoex->no_stomp_timer); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2243 | |
| 2244 | btcoex->bt_priority_cnt = 0; |
| 2245 | btcoex->bt_priority_time = jiffies; |
| 2246 | sc->sc_flags &= ~SC_OP_BT_PRIORITY_DETECTED; |
| 2247 | |
| 2248 | mod_timer(&btcoex->period_timer, jiffies); |
| 2249 | } |
| 2250 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2251 | static int ath9k_start(struct ieee80211_hw *hw) |
| 2252 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2253 | struct ath_wiphy *aphy = hw->priv; |
| 2254 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2255 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2256 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2257 | struct ieee80211_channel *curchan = hw->conf.channel; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2258 | struct ath9k_channel *init_channel; |
Vasanthakumar Thiagarajan | 82880a7 | 2009-06-13 14:50:24 +0530 | [diff] [blame] | 2259 | int r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2260 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2261 | ath_print(common, ATH_DBG_CONFIG, |
| 2262 | "Starting driver with initial channel: %d MHz\n", |
| 2263 | curchan->center_freq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2264 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2265 | mutex_lock(&sc->mutex); |
| 2266 | |
Jouni Malinen | 9580a22 | 2009-03-03 19:23:33 +0200 | [diff] [blame] | 2267 | if (ath9k_wiphy_started(sc)) { |
| 2268 | if (sc->chan_idx == curchan->hw_value) { |
| 2269 | /* |
| 2270 | * Already on the operational channel, the new wiphy |
| 2271 | * can be marked active. |
| 2272 | */ |
| 2273 | aphy->state = ATH_WIPHY_ACTIVE; |
| 2274 | ieee80211_wake_queues(hw); |
| 2275 | } else { |
| 2276 | /* |
| 2277 | * Another wiphy is on another channel, start the new |
| 2278 | * wiphy in paused state. |
| 2279 | */ |
| 2280 | aphy->state = ATH_WIPHY_PAUSED; |
| 2281 | ieee80211_stop_queues(hw); |
| 2282 | } |
| 2283 | mutex_unlock(&sc->mutex); |
| 2284 | return 0; |
| 2285 | } |
| 2286 | aphy->state = ATH_WIPHY_ACTIVE; |
| 2287 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2288 | /* setup initial channel */ |
| 2289 | |
Vasanthakumar Thiagarajan | 82880a7 | 2009-06-13 14:50:24 +0530 | [diff] [blame] | 2290 | sc->chan_idx = curchan->hw_value; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2291 | |
Vasanthakumar Thiagarajan | 82880a7 | 2009-06-13 14:50:24 +0530 | [diff] [blame] | 2292 | init_channel = ath_get_curchannel(sc, hw); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2293 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2294 | /* Reset SERDES registers */ |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2295 | ath9k_hw_configpcipowersave(ah, 0, 0); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2296 | |
| 2297 | /* |
| 2298 | * The basic interface to setting the hardware in a good |
| 2299 | * state is ``reset''. On return the hardware is known to |
| 2300 | * be powered up and with interrupts disabled. This must |
| 2301 | * be followed by initialization of the appropriate bits |
| 2302 | * and then setup of the interrupt mask. |
| 2303 | */ |
| 2304 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2305 | r = ath9k_hw_reset(ah, init_channel, false); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 2306 | if (r) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2307 | ath_print(common, ATH_DBG_FATAL, |
| 2308 | "Unable to reset hardware; reset status %d " |
| 2309 | "(freq %u MHz)\n", r, |
| 2310 | curchan->center_freq); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2311 | spin_unlock_bh(&sc->sc_resetlock); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2312 | goto mutex_unlock; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2313 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2314 | spin_unlock_bh(&sc->sc_resetlock); |
| 2315 | |
| 2316 | /* |
| 2317 | * This is needed only to setup initial state |
| 2318 | * but it's best done after a reset. |
| 2319 | */ |
| 2320 | ath_update_txpow(sc); |
| 2321 | |
| 2322 | /* |
| 2323 | * Setup the hardware after reset: |
| 2324 | * The receive engine is set going. |
| 2325 | * Frame transmit is handled entirely |
| 2326 | * in the frame output path; there's nothing to do |
| 2327 | * here except setup the interrupt mask. |
| 2328 | */ |
| 2329 | if (ath_startrecv(sc) != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2330 | ath_print(common, ATH_DBG_FATAL, |
| 2331 | "Unable to start recv logic\n"); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2332 | r = -EIO; |
| 2333 | goto mutex_unlock; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2334 | } |
| 2335 | |
| 2336 | /* Setup our intr mask. */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2337 | sc->imask = ATH9K_INT_RX | ATH9K_INT_TX |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2338 | | ATH9K_INT_RXEOL | ATH9K_INT_RXORN |
| 2339 | | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL; |
| 2340 | |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2341 | if (ah->caps.hw_caps & ATH9K_HW_CAP_GTT) |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2342 | sc->imask |= ATH9K_INT_GTT; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2343 | |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2344 | if (ah->caps.hw_caps & ATH9K_HW_CAP_HT) |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2345 | sc->imask |= ATH9K_INT_CST; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2346 | |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 2347 | ath_cache_conf_rate(sc, &hw->conf); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2348 | |
| 2349 | sc->sc_flags &= ~SC_OP_INVALID; |
| 2350 | |
| 2351 | /* Disable BMISS interrupt when we're not associated */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2352 | sc->imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2353 | ath9k_hw_set_interrupts(ah, sc->imask); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2354 | |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2355 | ieee80211_wake_queues(hw); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2356 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2357 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0); |
Senthil Balasubramanian | 164ace3 | 2009-07-14 20:17:09 -0400 | [diff] [blame] | 2358 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 2359 | if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) && |
| 2360 | !ah->btcoex_hw.enabled) { |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame] | 2361 | ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, |
| 2362 | AR_STOMP_LOW_WLAN_WGHT); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2363 | ath9k_hw_btcoex_enable(ah); |
Vasanthakumar Thiagarajan | f985ad1 | 2009-08-26 21:08:43 +0530 | [diff] [blame] | 2364 | |
Luis R. Rodriguez | 5bb1279 | 2009-09-14 00:55:09 -0700 | [diff] [blame] | 2365 | if (common->bus_ops->bt_coex_prep) |
| 2366 | common->bus_ops->bt_coex_prep(common); |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 2367 | if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE) |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2368 | ath9k_btcoex_timer_resume(sc); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 2369 | } |
| 2370 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2371 | mutex_unlock: |
| 2372 | mutex_unlock(&sc->mutex); |
| 2373 | |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 2374 | return r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2375 | } |
| 2376 | |
| 2377 | static int ath9k_tx(struct ieee80211_hw *hw, |
| 2378 | struct sk_buff *skb) |
| 2379 | { |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 2380 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2381 | struct ath_wiphy *aphy = hw->priv; |
| 2382 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2383 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2384 | struct ath_tx_control txctl; |
| 2385 | int hdrlen, padsize; |
| 2386 | |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 2387 | if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2388 | ath_print(common, ATH_DBG_XMIT, |
| 2389 | "ath9k: %s: TX in unexpected wiphy state " |
| 2390 | "%d\n", wiphy_name(hw->wiphy), aphy->state); |
Jouni Malinen | ee166a0 | 2009-03-03 19:23:36 +0200 | [diff] [blame] | 2391 | goto exit; |
| 2392 | } |
| 2393 | |
Gabor Juhos | 9614832 | 2009-07-24 17:27:21 +0200 | [diff] [blame] | 2394 | if (sc->ps_enabled) { |
Jouni Malinen | dc8c458 | 2009-05-19 17:01:42 +0300 | [diff] [blame] | 2395 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 2396 | /* |
| 2397 | * mac80211 does not set PM field for normal data frames, so we |
| 2398 | * need to update that based on the current PS mode. |
| 2399 | */ |
| 2400 | if (ieee80211_is_data(hdr->frame_control) && |
| 2401 | !ieee80211_is_nullfunc(hdr->frame_control) && |
| 2402 | !ieee80211_has_pm(hdr->frame_control)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2403 | ath_print(common, ATH_DBG_PS, "Add PM=1 for a TX frame " |
| 2404 | "while in PS mode\n"); |
Jouni Malinen | dc8c458 | 2009-05-19 17:01:42 +0300 | [diff] [blame] | 2405 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); |
| 2406 | } |
| 2407 | } |
| 2408 | |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 2409 | if (unlikely(sc->sc_ah->power_mode != ATH9K_PM_AWAKE)) { |
| 2410 | /* |
| 2411 | * We are using PS-Poll and mac80211 can request TX while in |
| 2412 | * power save mode. Need to wake up hardware for the TX to be |
| 2413 | * completed and if needed, also for RX of buffered frames. |
| 2414 | */ |
| 2415 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 2416 | ath9k_ps_wakeup(sc); |
| 2417 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
| 2418 | if (ieee80211_is_pspoll(hdr->frame_control)) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2419 | ath_print(common, ATH_DBG_PS, |
| 2420 | "Sending PS-Poll to pick a buffered frame\n"); |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 2421 | sc->sc_flags |= SC_OP_WAIT_FOR_PSPOLL_DATA; |
| 2422 | } else { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2423 | ath_print(common, ATH_DBG_PS, |
| 2424 | "Wake up to complete TX\n"); |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 2425 | sc->sc_flags |= SC_OP_WAIT_FOR_TX_ACK; |
| 2426 | } |
| 2427 | /* |
| 2428 | * The actual restore operation will happen only after |
| 2429 | * the sc_flags bit is cleared. We are just dropping |
| 2430 | * the ps_usecount here. |
| 2431 | */ |
| 2432 | ath9k_ps_restore(sc); |
| 2433 | } |
| 2434 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2435 | memset(&txctl, 0, sizeof(struct ath_tx_control)); |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 2436 | |
| 2437 | /* |
| 2438 | * As a temporary workaround, assign seq# here; this will likely need |
| 2439 | * to be cleaned up to work better with Beacon transmission and virtual |
| 2440 | * BSSes. |
| 2441 | */ |
| 2442 | if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
| 2443 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 2444 | if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2445 | sc->tx.seq_no += 0x10; |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 2446 | hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2447 | hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no); |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 2448 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2449 | |
| 2450 | /* Add the padding after the header if this is not already done */ |
| 2451 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 2452 | if (hdrlen & 3) { |
| 2453 | padsize = hdrlen % 4; |
| 2454 | if (skb_headroom(skb) < padsize) |
| 2455 | return -1; |
| 2456 | skb_push(skb, padsize); |
| 2457 | memmove(skb->data, skb->data + padsize, hdrlen); |
| 2458 | } |
| 2459 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2460 | /* Check if a tx queue is available */ |
| 2461 | |
| 2462 | txctl.txq = ath_test_get_txq(sc, skb); |
| 2463 | if (!txctl.txq) |
| 2464 | goto exit; |
| 2465 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2466 | ath_print(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2467 | |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 2468 | if (ath_tx_start(hw, skb, &txctl) != 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2469 | ath_print(common, ATH_DBG_XMIT, "TX failed\n"); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2470 | goto exit; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2471 | } |
| 2472 | |
| 2473 | return 0; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2474 | exit: |
| 2475 | dev_kfree_skb_any(skb); |
| 2476 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2477 | } |
| 2478 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2479 | /* |
| 2480 | * Pause btcoex timer and bt duty cycle timer |
| 2481 | */ |
| 2482 | static void ath9k_btcoex_timer_pause(struct ath_softc *sc) |
| 2483 | { |
| 2484 | struct ath_btcoex *btcoex = &sc->btcoex; |
| 2485 | struct ath_hw *ah = sc->sc_ah; |
| 2486 | |
| 2487 | del_timer_sync(&btcoex->period_timer); |
| 2488 | |
| 2489 | if (btcoex->hw_timer_enabled) |
Luis R. Rodriguez | cd9bf68 | 2009-09-13 02:08:34 -0700 | [diff] [blame] | 2490 | ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2491 | |
| 2492 | btcoex->hw_timer_enabled = false; |
| 2493 | } |
| 2494 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2495 | static void ath9k_stop(struct ieee80211_hw *hw) |
| 2496 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2497 | struct ath_wiphy *aphy = hw->priv; |
| 2498 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2499 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2500 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 2501 | |
Sujith | 4c48381 | 2009-08-18 10:51:52 +0530 | [diff] [blame] | 2502 | mutex_lock(&sc->mutex); |
| 2503 | |
Jouni Malinen | 9580a22 | 2009-03-03 19:23:33 +0200 | [diff] [blame] | 2504 | aphy->state = ATH_WIPHY_INACTIVE; |
| 2505 | |
Luis R. Rodriguez | c94dbff | 2009-07-27 11:53:04 -0700 | [diff] [blame] | 2506 | cancel_delayed_work_sync(&sc->ath_led_blink_work); |
| 2507 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 2508 | |
| 2509 | if (!sc->num_sec_wiphy) { |
| 2510 | cancel_delayed_work_sync(&sc->wiphy_work); |
| 2511 | cancel_work_sync(&sc->chan_work); |
| 2512 | } |
| 2513 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 2514 | if (sc->sc_flags & SC_OP_INVALID) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2515 | ath_print(common, ATH_DBG_ANY, "Device not present\n"); |
Sujith | 4c48381 | 2009-08-18 10:51:52 +0530 | [diff] [blame] | 2516 | mutex_unlock(&sc->mutex); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 2517 | return; |
| 2518 | } |
| 2519 | |
Jouni Malinen | 9580a22 | 2009-03-03 19:23:33 +0200 | [diff] [blame] | 2520 | if (ath9k_wiphy_started(sc)) { |
| 2521 | mutex_unlock(&sc->mutex); |
| 2522 | return; /* another wiphy still in use */ |
| 2523 | } |
| 2524 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 2525 | if (ah->btcoex_hw.enabled) { |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2526 | ath9k_hw_btcoex_disable(ah); |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 2527 | if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE) |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 2528 | ath9k_btcoex_timer_pause(sc); |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 2529 | } |
| 2530 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2531 | /* make sure h/w will not generate any interrupt |
| 2532 | * before setting the invalid flag. */ |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2533 | ath9k_hw_set_interrupts(ah, 0); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2534 | |
| 2535 | if (!(sc->sc_flags & SC_OP_INVALID)) { |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 2536 | ath_drain_all_txq(sc, false); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2537 | ath_stoprecv(sc); |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2538 | ath9k_hw_phy_disable(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2539 | } else |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2540 | sc->rx.rxlink = NULL; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2541 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2542 | /* disable HAL and put h/w to sleep */ |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 2543 | ath9k_hw_disable(ah); |
| 2544 | ath9k_hw_configpcipowersave(ah, 1, 1); |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 2545 | ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2546 | |
| 2547 | sc->sc_flags |= SC_OP_INVALID; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2548 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2549 | mutex_unlock(&sc->mutex); |
| 2550 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2551 | ath_print(common, ATH_DBG_CONFIG, "Driver halt\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2552 | } |
| 2553 | |
| 2554 | static int ath9k_add_interface(struct ieee80211_hw *hw, |
| 2555 | struct ieee80211_if_init_conf *conf) |
| 2556 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2557 | struct ath_wiphy *aphy = hw->priv; |
| 2558 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2559 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2560 | struct ath_vif *avp = (void *)conf->vif->drv_priv; |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2561 | enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2562 | int ret = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2563 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2564 | mutex_lock(&sc->mutex); |
| 2565 | |
Jouni Malinen | 8ca21f0 | 2009-03-03 19:23:27 +0200 | [diff] [blame] | 2566 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) && |
| 2567 | sc->nvifs > 0) { |
| 2568 | ret = -ENOBUFS; |
| 2569 | goto out; |
| 2570 | } |
| 2571 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2572 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2573 | case NL80211_IFTYPE_STATION: |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2574 | ic_opmode = NL80211_IFTYPE_STATION; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2575 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2576 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2577 | case NL80211_IFTYPE_AP: |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 2578 | case NL80211_IFTYPE_MESH_POINT: |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2579 | if (sc->nbcnvifs >= ATH_BCBUF) { |
| 2580 | ret = -ENOBUFS; |
| 2581 | goto out; |
| 2582 | } |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 2583 | ic_opmode = conf->type; |
Jouni Malinen | 2ad67de | 2008-08-11 14:01:47 +0300 | [diff] [blame] | 2584 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2585 | default: |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2586 | ath_print(common, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2587 | "Interface type %d not yet supported\n", conf->type); |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2588 | ret = -EOPNOTSUPP; |
| 2589 | goto out; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2590 | } |
| 2591 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2592 | ath_print(common, ATH_DBG_CONFIG, |
| 2593 | "Attach a VIF of type: %d\n", ic_opmode); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2594 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2595 | /* Set the VIF opmode */ |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2596 | avp->av_opmode = ic_opmode; |
| 2597 | avp->av_bslot = -1; |
| 2598 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2599 | sc->nvifs++; |
Jouni Malinen | 8ca21f0 | 2009-03-03 19:23:27 +0200 | [diff] [blame] | 2600 | |
| 2601 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) |
| 2602 | ath9k_set_bssid_mask(hw); |
| 2603 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2604 | if (sc->nvifs > 1) |
| 2605 | goto out; /* skip global settings for secondary vif */ |
| 2606 | |
Sujith | b238e90 | 2009-03-03 10:16:56 +0530 | [diff] [blame] | 2607 | if (ic_opmode == NL80211_IFTYPE_AP) { |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2608 | ath9k_hw_set_tsfadjust(sc->sc_ah, 1); |
Sujith | b238e90 | 2009-03-03 10:16:56 +0530 | [diff] [blame] | 2609 | sc->sc_flags |= SC_OP_TSF_RESET; |
| 2610 | } |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2611 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2612 | /* Set the device opmode */ |
Sujith | 2660b81 | 2009-02-09 13:27:26 +0530 | [diff] [blame] | 2613 | sc->sc_ah->opmode = ic_opmode; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2614 | |
Vivek Natarajan | 4e30ffa | 2009-01-28 20:53:27 +0530 | [diff] [blame] | 2615 | /* |
| 2616 | * Enable MIB interrupts when there are hardware phy counters. |
| 2617 | * Note we only do this (at the moment) for station mode. |
| 2618 | */ |
Sujith | 4af9cf4 | 2009-02-12 10:06:47 +0530 | [diff] [blame] | 2619 | if ((conf->type == NL80211_IFTYPE_STATION) || |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 2620 | (conf->type == NL80211_IFTYPE_ADHOC) || |
| 2621 | (conf->type == NL80211_IFTYPE_MESH_POINT)) { |
Sujith | 1aa8e84 | 2009-08-13 09:34:25 +0530 | [diff] [blame] | 2622 | sc->imask |= ATH9K_INT_MIB; |
Sujith | 4af9cf4 | 2009-02-12 10:06:47 +0530 | [diff] [blame] | 2623 | sc->imask |= ATH9K_INT_TSFOOR; |
| 2624 | } |
| 2625 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2626 | ath9k_hw_set_interrupts(sc->sc_ah, sc->imask); |
Vivek Natarajan | 4e30ffa | 2009-01-28 20:53:27 +0530 | [diff] [blame] | 2627 | |
Senthil Balasubramanian | f38faa3 | 2009-06-24 18:56:40 +0530 | [diff] [blame] | 2628 | if (conf->type == NL80211_IFTYPE_AP || |
| 2629 | conf->type == NL80211_IFTYPE_ADHOC || |
| 2630 | conf->type == NL80211_IFTYPE_MONITOR) |
Sujith | 415f738 | 2009-04-13 21:56:46 +0530 | [diff] [blame] | 2631 | ath_start_ani(sc); |
Luis R. Rodriguez | 6f25542 | 2008-10-03 15:45:27 -0700 | [diff] [blame] | 2632 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2633 | out: |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2634 | mutex_unlock(&sc->mutex); |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2635 | return ret; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2636 | } |
| 2637 | |
| 2638 | static void ath9k_remove_interface(struct ieee80211_hw *hw, |
| 2639 | struct ieee80211_if_init_conf *conf) |
| 2640 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2641 | struct ath_wiphy *aphy = hw->priv; |
| 2642 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2643 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2644 | struct ath_vif *avp = (void *)conf->vif->drv_priv; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2645 | int i; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2646 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2647 | ath_print(common, ATH_DBG_CONFIG, "Detach Interface\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2648 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2649 | mutex_lock(&sc->mutex); |
| 2650 | |
Luis R. Rodriguez | 6f25542 | 2008-10-03 15:45:27 -0700 | [diff] [blame] | 2651 | /* Stop ANI */ |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2652 | del_timer_sync(&sc->ani.timer); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2653 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2654 | /* Reclaim beacon resources */ |
Pat Erley | 9cb5412 | 2009-03-20 22:59:59 -0400 | [diff] [blame] | 2655 | if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) || |
| 2656 | (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) || |
| 2657 | (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2658 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2659 | ath_beacon_return(sc, avp); |
| 2660 | } |
| 2661 | |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2662 | sc->sc_flags &= ~SC_OP_BEACONS; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2663 | |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2664 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { |
| 2665 | if (sc->beacon.bslot[i] == conf->vif) { |
| 2666 | printk(KERN_DEBUG "%s: vif had allocated beacon " |
| 2667 | "slot\n", __func__); |
| 2668 | sc->beacon.bslot[i] = NULL; |
Jouni Malinen | c52f33d | 2009-03-03 19:23:29 +0200 | [diff] [blame] | 2669 | sc->beacon.bslot_aphy[i] = NULL; |
Jouni Malinen | 2c3db3d | 2009-03-03 19:23:26 +0200 | [diff] [blame] | 2670 | } |
| 2671 | } |
| 2672 | |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2673 | sc->nvifs--; |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2674 | |
| 2675 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2676 | } |
| 2677 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2678 | static int ath9k_config(struct ieee80211_hw *hw, u32 changed) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2679 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2680 | struct ath_wiphy *aphy = hw->priv; |
| 2681 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2682 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2683 | struct ieee80211_conf *conf = &hw->conf; |
Vivek Natarajan | 8782b41 | 2009-03-30 14:17:00 +0530 | [diff] [blame] | 2684 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 2685 | bool all_wiphys_idle = false, disable_radio = false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2686 | |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2687 | mutex_lock(&sc->mutex); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2688 | |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 2689 | /* Leave this as the first check */ |
| 2690 | if (changed & IEEE80211_CONF_CHANGE_IDLE) { |
| 2691 | |
| 2692 | spin_lock_bh(&sc->wiphy_lock); |
| 2693 | all_wiphys_idle = ath9k_all_wiphys_idle(sc); |
| 2694 | spin_unlock_bh(&sc->wiphy_lock); |
| 2695 | |
| 2696 | if (conf->flags & IEEE80211_CONF_IDLE){ |
| 2697 | if (all_wiphys_idle) |
| 2698 | disable_radio = true; |
| 2699 | } |
| 2700 | else if (all_wiphys_idle) { |
| 2701 | ath_radio_enable(sc); |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2702 | ath_print(common, ATH_DBG_CONFIG, |
| 2703 | "not-idle: enabling radio\n"); |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 2704 | } |
| 2705 | } |
| 2706 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2707 | if (changed & IEEE80211_CONF_CHANGE_PS) { |
| 2708 | if (conf->flags & IEEE80211_CONF_PS) { |
Vivek Natarajan | 8782b41 | 2009-03-30 14:17:00 +0530 | [diff] [blame] | 2709 | if (!(ah->caps.hw_caps & |
| 2710 | ATH9K_HW_CAP_AUTOSLEEP)) { |
| 2711 | if ((sc->imask & ATH9K_INT_TIM_TIMER) == 0) { |
| 2712 | sc->imask |= ATH9K_INT_TIM_TIMER; |
| 2713 | ath9k_hw_set_interrupts(sc->sc_ah, |
| 2714 | sc->imask); |
| 2715 | } |
| 2716 | ath9k_hw_setrxabort(sc->sc_ah, 1); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2717 | } |
Gabor Juhos | 9614832 | 2009-07-24 17:27:21 +0200 | [diff] [blame] | 2718 | sc->ps_enabled = true; |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2719 | } else { |
Gabor Juhos | 9614832 | 2009-07-24 17:27:21 +0200 | [diff] [blame] | 2720 | sc->ps_enabled = false; |
Luis R. Rodriguez | 9ecdef4 | 2009-09-09 21:10:09 -0700 | [diff] [blame] | 2721 | ath9k_setpower(sc, ATH9K_PM_AWAKE); |
Vivek Natarajan | 8782b41 | 2009-03-30 14:17:00 +0530 | [diff] [blame] | 2722 | if (!(ah->caps.hw_caps & |
| 2723 | ATH9K_HW_CAP_AUTOSLEEP)) { |
| 2724 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 2725 | sc->sc_flags &= ~(SC_OP_WAIT_FOR_BEACON | |
| 2726 | SC_OP_WAIT_FOR_CAB | |
| 2727 | SC_OP_WAIT_FOR_PSPOLL_DATA | |
| 2728 | SC_OP_WAIT_FOR_TX_ACK); |
Vivek Natarajan | 8782b41 | 2009-03-30 14:17:00 +0530 | [diff] [blame] | 2729 | if (sc->imask & ATH9K_INT_TIM_TIMER) { |
| 2730 | sc->imask &= ~ATH9K_INT_TIM_TIMER; |
| 2731 | ath9k_hw_set_interrupts(sc->sc_ah, |
| 2732 | sc->imask); |
| 2733 | } |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2734 | } |
| 2735 | } |
| 2736 | } |
| 2737 | |
Johannes Berg | 4797938 | 2009-01-07 10:13:27 +0100 | [diff] [blame] | 2738 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 2739 | struct ieee80211_channel *curchan = hw->conf.channel; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2740 | int pos = curchan->hw_value; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2741 | |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 2742 | aphy->chan_idx = pos; |
| 2743 | aphy->chan_is_ht = conf_is_ht(conf); |
| 2744 | |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 2745 | if (aphy->state == ATH_WIPHY_SCAN || |
| 2746 | aphy->state == ATH_WIPHY_ACTIVE) |
| 2747 | ath9k_wiphy_pause_all_forced(sc, aphy); |
| 2748 | else { |
| 2749 | /* |
| 2750 | * Do not change operational channel based on a paused |
| 2751 | * wiphy changes. |
| 2752 | */ |
| 2753 | goto skip_chan_change; |
| 2754 | } |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 2755 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2756 | ath_print(common, ATH_DBG_CONFIG, "Set channel: %d MHz\n", |
| 2757 | curchan->center_freq); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 2758 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 2759 | /* XXX: remove me eventualy */ |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 2760 | ath9k_update_ichannel(sc, hw, &sc->sc_ah->channels[pos]); |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2761 | |
Luis R. Rodriguez | ecf7044 | 2008-12-23 15:58:43 -0800 | [diff] [blame] | 2762 | ath_update_chainmask(sc, conf_is_ht(conf)); |
Sujith | 86060f0 | 2009-01-07 14:25:29 +0530 | [diff] [blame] | 2763 | |
Jouni Malinen | 0e2dedf | 2009-03-03 19:23:32 +0200 | [diff] [blame] | 2764 | if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2765 | ath_print(common, ATH_DBG_FATAL, |
| 2766 | "Unable to set channel\n"); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2767 | mutex_unlock(&sc->mutex); |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2768 | return -EINVAL; |
| 2769 | } |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 2770 | } |
Sujith | 86b89ee | 2008-08-07 10:54:57 +0530 | [diff] [blame] | 2771 | |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 2772 | skip_chan_change: |
Luis R. Rodriguez | 5c020dc | 2008-10-22 13:28:45 -0700 | [diff] [blame] | 2773 | if (changed & IEEE80211_CONF_CHANGE_POWER) |
Sujith | 17d7904 | 2009-02-09 13:27:03 +0530 | [diff] [blame] | 2774 | sc->config.txpowlimit = 2 * conf->power_level; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2775 | |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 2776 | if (disable_radio) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2777 | ath_print(common, ATH_DBG_CONFIG, "idle: disabling radio\n"); |
Luis R. Rodriguez | 6483917 | 2009-07-14 20:22:53 -0400 | [diff] [blame] | 2778 | ath_radio_disable(sc); |
| 2779 | } |
| 2780 | |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2781 | mutex_unlock(&sc->mutex); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2782 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2783 | return 0; |
| 2784 | } |
| 2785 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2786 | #define SUPPORTED_FILTERS \ |
| 2787 | (FIF_PROMISC_IN_BSS | \ |
| 2788 | FIF_ALLMULTI | \ |
| 2789 | FIF_CONTROL | \ |
Luis R. Rodriguez | af6a3fc | 2009-08-08 21:55:16 -0400 | [diff] [blame] | 2790 | FIF_PSPOLL | \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2791 | FIF_OTHER_BSS | \ |
| 2792 | FIF_BCN_PRBRESP_PROMISC | \ |
| 2793 | FIF_FCSFAIL) |
| 2794 | |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2795 | /* FIXME: sc->sc_full_reset ? */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2796 | static void ath9k_configure_filter(struct ieee80211_hw *hw, |
| 2797 | unsigned int changed_flags, |
| 2798 | unsigned int *total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2799 | u64 multicast) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2800 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2801 | struct ath_wiphy *aphy = hw->priv; |
| 2802 | struct ath_softc *sc = aphy->sc; |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2803 | u32 rfilt; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2804 | |
| 2805 | changed_flags &= SUPPORTED_FILTERS; |
| 2806 | *total_flags &= SUPPORTED_FILTERS; |
| 2807 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2808 | sc->rx.rxfilter = *total_flags; |
Jouni Malinen | aa68aea | 2009-05-19 17:01:41 +0300 | [diff] [blame] | 2809 | ath9k_ps_wakeup(sc); |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2810 | rfilt = ath_calcrxfilter(sc); |
| 2811 | ath9k_hw_setrxfilter(sc->sc_ah, rfilt); |
Jouni Malinen | aa68aea | 2009-05-19 17:01:41 +0300 | [diff] [blame] | 2812 | ath9k_ps_restore(sc); |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2813 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2814 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG, |
| 2815 | "Set HW RX filter: 0x%x\n", rfilt); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2816 | } |
| 2817 | |
| 2818 | static void ath9k_sta_notify(struct ieee80211_hw *hw, |
| 2819 | struct ieee80211_vif *vif, |
| 2820 | enum sta_notify_cmd cmd, |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 2821 | struct ieee80211_sta *sta) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2822 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2823 | struct ath_wiphy *aphy = hw->priv; |
| 2824 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2825 | |
| 2826 | switch (cmd) { |
| 2827 | case STA_NOTIFY_ADD: |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2828 | ath_node_attach(sc, sta); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2829 | break; |
| 2830 | case STA_NOTIFY_REMOVE: |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2831 | ath_node_detach(sc, sta); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2832 | break; |
| 2833 | default: |
| 2834 | break; |
| 2835 | } |
| 2836 | } |
| 2837 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2838 | static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2839 | const struct ieee80211_tx_queue_params *params) |
| 2840 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2841 | struct ath_wiphy *aphy = hw->priv; |
| 2842 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2843 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2844 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2845 | int ret = 0, qnum; |
| 2846 | |
| 2847 | if (queue >= WME_NUM_AC) |
| 2848 | return 0; |
| 2849 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2850 | mutex_lock(&sc->mutex); |
| 2851 | |
Sujith | 1ffb061 | 2009-03-30 15:28:46 +0530 | [diff] [blame] | 2852 | memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); |
| 2853 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2854 | qi.tqi_aifs = params->aifs; |
| 2855 | qi.tqi_cwmin = params->cw_min; |
| 2856 | qi.tqi_cwmax = params->cw_max; |
| 2857 | qi.tqi_burstTime = params->txop; |
| 2858 | qnum = ath_get_hal_qnum(queue, sc); |
| 2859 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2860 | ath_print(common, ATH_DBG_CONFIG, |
| 2861 | "Configure tx [queue/halq] [%d/%d], " |
| 2862 | "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
| 2863 | queue, qnum, params->aifs, params->cw_min, |
| 2864 | params->cw_max, params->txop); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2865 | |
| 2866 | ret = ath_txq_update(sc, qnum, &qi); |
| 2867 | if (ret) |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2868 | ath_print(common, ATH_DBG_FATAL, "TXQ Update failed\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2869 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2870 | mutex_unlock(&sc->mutex); |
| 2871 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2872 | return ret; |
| 2873 | } |
| 2874 | |
| 2875 | static int ath9k_set_key(struct ieee80211_hw *hw, |
| 2876 | enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 2877 | struct ieee80211_vif *vif, |
| 2878 | struct ieee80211_sta *sta, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2879 | struct ieee80211_key_conf *key) |
| 2880 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2881 | struct ath_wiphy *aphy = hw->priv; |
| 2882 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2883 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2884 | int ret = 0; |
| 2885 | |
Jouni Malinen | b3bd89c | 2009-02-24 13:42:01 +0200 | [diff] [blame] | 2886 | if (modparam_nohwcrypt) |
| 2887 | return -ENOSPC; |
| 2888 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2889 | mutex_lock(&sc->mutex); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2890 | ath9k_ps_wakeup(sc); |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2891 | ath_print(common, ATH_DBG_CONFIG, "Set HW Key\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2892 | |
| 2893 | switch (cmd) { |
| 2894 | case SET_KEY: |
Jouni Malinen | 3f53dd6 | 2009-02-26 11:18:46 +0200 | [diff] [blame] | 2895 | ret = ath_key_config(sc, vif, sta, key); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 2896 | if (ret >= 0) { |
| 2897 | key->hw_key_idx = ret; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2898 | /* push IV and Michael MIC generation to stack */ |
| 2899 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
Senthil Balasubramanian | 1b96175 | 2008-09-01 19:45:21 +0530 | [diff] [blame] | 2900 | if (key->alg == ALG_TKIP) |
| 2901 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
Jouni Malinen | 0ced0e1 | 2009-01-08 13:32:13 +0200 | [diff] [blame] | 2902 | if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP) |
| 2903 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 2904 | ret = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2905 | } |
| 2906 | break; |
| 2907 | case DISABLE_KEY: |
| 2908 | ath_key_delete(sc, key); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2909 | break; |
| 2910 | default: |
| 2911 | ret = -EINVAL; |
| 2912 | } |
| 2913 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2914 | ath9k_ps_restore(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2915 | mutex_unlock(&sc->mutex); |
| 2916 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2917 | return ret; |
| 2918 | } |
| 2919 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2920 | static void ath9k_bss_info_changed(struct ieee80211_hw *hw, |
| 2921 | struct ieee80211_vif *vif, |
| 2922 | struct ieee80211_bss_conf *bss_conf, |
| 2923 | u32 changed) |
| 2924 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 2925 | struct ath_wiphy *aphy = hw->priv; |
| 2926 | struct ath_softc *sc = aphy->sc; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2927 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 2928 | struct ath_common *common = ath9k_hw_common(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2929 | struct ath_vif *avp = (void *)vif->drv_priv; |
| 2930 | u32 rfilt = 0; |
| 2931 | int error, i; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2932 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 2933 | mutex_lock(&sc->mutex); |
| 2934 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2935 | /* |
| 2936 | * TODO: Need to decide which hw opmode to use for |
| 2937 | * multi-interface cases |
| 2938 | * XXX: This belongs into add_interface! |
| 2939 | */ |
| 2940 | if (vif->type == NL80211_IFTYPE_AP && |
| 2941 | ah->opmode != NL80211_IFTYPE_AP) { |
| 2942 | ah->opmode = NL80211_IFTYPE_STATION; |
| 2943 | ath9k_hw_setopmode(ah); |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 2944 | memcpy(common->curbssid, common->macaddr, ETH_ALEN); |
| 2945 | common->curaid = 0; |
Luis R. Rodriguez | f2b2143 | 2009-09-10 08:50:20 -0700 | [diff] [blame] | 2946 | ath9k_hw_write_associd(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2947 | /* Request full reset to get hw opmode changed properly */ |
| 2948 | sc->sc_flags |= SC_OP_FULL_RESET; |
| 2949 | } |
| 2950 | |
| 2951 | if ((changed & BSS_CHANGED_BSSID) && |
| 2952 | !is_zero_ether_addr(bss_conf->bssid)) { |
| 2953 | switch (vif->type) { |
| 2954 | case NL80211_IFTYPE_STATION: |
| 2955 | case NL80211_IFTYPE_ADHOC: |
| 2956 | case NL80211_IFTYPE_MESH_POINT: |
| 2957 | /* Set BSSID */ |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 2958 | memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2959 | memcpy(avp->bssid, bss_conf->bssid, ETH_ALEN); |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 2960 | common->curaid = 0; |
Luis R. Rodriguez | f2b2143 | 2009-09-10 08:50:20 -0700 | [diff] [blame] | 2961 | ath9k_hw_write_associd(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2962 | |
| 2963 | /* Set aggregation protection mode parameters */ |
| 2964 | sc->config.ath_aggr_prot = 0; |
| 2965 | |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 2966 | ath_print(common, ATH_DBG_CONFIG, |
| 2967 | "RX filter 0x%x bssid %pM aid 0x%x\n", |
| 2968 | rfilt, common->curbssid, common->curaid); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2969 | |
| 2970 | /* need to reconfigure the beacon */ |
| 2971 | sc->sc_flags &= ~SC_OP_BEACONS ; |
| 2972 | |
| 2973 | break; |
| 2974 | default: |
| 2975 | break; |
| 2976 | } |
| 2977 | } |
| 2978 | |
| 2979 | if ((vif->type == NL80211_IFTYPE_ADHOC) || |
| 2980 | (vif->type == NL80211_IFTYPE_AP) || |
| 2981 | (vif->type == NL80211_IFTYPE_MESH_POINT)) { |
| 2982 | if ((changed & BSS_CHANGED_BEACON) || |
| 2983 | (changed & BSS_CHANGED_BEACON_ENABLED && |
| 2984 | bss_conf->enable_beacon)) { |
| 2985 | /* |
| 2986 | * Allocate and setup the beacon frame. |
| 2987 | * |
| 2988 | * Stop any previous beacon DMA. This may be |
| 2989 | * necessary, for example, when an ibss merge |
| 2990 | * causes reconfiguration; we may be called |
| 2991 | * with beacon transmission active. |
| 2992 | */ |
| 2993 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
| 2994 | |
| 2995 | error = ath_beacon_alloc(aphy, vif); |
| 2996 | if (!error) |
| 2997 | ath_beacon_config(sc, vif); |
| 2998 | } |
| 2999 | } |
| 3000 | |
| 3001 | /* Check for WLAN_CAPABILITY_PRIVACY ? */ |
| 3002 | if ((avp->av_opmode != NL80211_IFTYPE_STATION)) { |
| 3003 | for (i = 0; i < IEEE80211_WEP_NKID; i++) |
| 3004 | if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i)) |
| 3005 | ath9k_hw_keysetmac(sc->sc_ah, |
| 3006 | (u16)i, |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 3007 | common->curbssid); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3008 | } |
| 3009 | |
| 3010 | /* Only legacy IBSS for now */ |
| 3011 | if (vif->type == NL80211_IFTYPE_ADHOC) |
| 3012 | ath_update_chainmask(sc, 0); |
| 3013 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3014 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 3015 | ath_print(common, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n", |
| 3016 | bss_conf->use_short_preamble); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3017 | if (bss_conf->use_short_preamble) |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 3018 | sc->sc_flags |= SC_OP_PREAMBLE_SHORT; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3019 | else |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 3020 | sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3021 | } |
| 3022 | |
| 3023 | if (changed & BSS_CHANGED_ERP_CTS_PROT) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 3024 | ath_print(common, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n", |
| 3025 | bss_conf->use_cts_prot); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3026 | if (bss_conf->use_cts_prot && |
| 3027 | hw->conf.channel->band != IEEE80211_BAND_5GHZ) |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 3028 | sc->sc_flags |= SC_OP_PROTECT_ENABLE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3029 | else |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 3030 | sc->sc_flags &= ~SC_OP_PROTECT_ENABLE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3031 | } |
| 3032 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3033 | if (changed & BSS_CHANGED_ASSOC) { |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 3034 | ath_print(common, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3035 | bss_conf->assoc); |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 3036 | ath9k_bss_assoc_info(sc, vif, bss_conf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3037 | } |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3038 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 3039 | /* |
| 3040 | * The HW TSF has to be reset when the beacon interval changes. |
| 3041 | * We set the flag here, and ath_beacon_config_ap() would take this |
| 3042 | * into account when it gets called through the subsequent |
| 3043 | * config_interface() call - with IFCC_BEACON in the changed field. |
| 3044 | */ |
| 3045 | |
| 3046 | if (changed & BSS_CHANGED_BEACON_INT) { |
| 3047 | sc->sc_flags |= SC_OP_TSF_RESET; |
| 3048 | sc->beacon_interval = bss_conf->beacon_int; |
| 3049 | } |
| 3050 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3051 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3052 | } |
| 3053 | |
| 3054 | static u64 ath9k_get_tsf(struct ieee80211_hw *hw) |
| 3055 | { |
| 3056 | u64 tsf; |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3057 | struct ath_wiphy *aphy = hw->priv; |
| 3058 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3059 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3060 | mutex_lock(&sc->mutex); |
| 3061 | tsf = ath9k_hw_gettsf64(sc->sc_ah); |
| 3062 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3063 | |
| 3064 | return tsf; |
| 3065 | } |
| 3066 | |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3067 | static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf) |
| 3068 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3069 | struct ath_wiphy *aphy = hw->priv; |
| 3070 | struct ath_softc *sc = aphy->sc; |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3071 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3072 | mutex_lock(&sc->mutex); |
| 3073 | ath9k_hw_settsf64(sc->sc_ah, tsf); |
| 3074 | mutex_unlock(&sc->mutex); |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3075 | } |
| 3076 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3077 | static void ath9k_reset_tsf(struct ieee80211_hw *hw) |
| 3078 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3079 | struct ath_wiphy *aphy = hw->priv; |
| 3080 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3081 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3082 | mutex_lock(&sc->mutex); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 3083 | |
| 3084 | ath9k_ps_wakeup(sc); |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3085 | ath9k_hw_reset_tsf(sc->sc_ah); |
Luis R. Rodriguez | 21526d5 | 2009-09-09 20:05:39 -0700 | [diff] [blame] | 3086 | ath9k_ps_restore(sc); |
| 3087 | |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3088 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3089 | } |
| 3090 | |
| 3091 | static int ath9k_ampdu_action(struct ieee80211_hw *hw, |
Sujith | 141b38b | 2009-02-04 08:10:07 +0530 | [diff] [blame] | 3092 | enum ieee80211_ampdu_mlme_action action, |
| 3093 | struct ieee80211_sta *sta, |
| 3094 | u16 tid, u16 *ssn) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3095 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3096 | struct ath_wiphy *aphy = hw->priv; |
| 3097 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3098 | int ret = 0; |
| 3099 | |
| 3100 | switch (action) { |
| 3101 | case IEEE80211_AMPDU_RX_START: |
Sujith | dca3edb | 2008-10-29 10:19:01 +0530 | [diff] [blame] | 3102 | if (!(sc->sc_flags & SC_OP_RXAGGR)) |
| 3103 | ret = -ENOTSUPP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3104 | break; |
| 3105 | case IEEE80211_AMPDU_RX_STOP: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3106 | break; |
| 3107 | case IEEE80211_AMPDU_TX_START: |
Sujith | f83da96 | 2009-07-23 15:32:37 +0530 | [diff] [blame] | 3108 | ath_tx_aggr_start(sc, sta, tid, ssn); |
| 3109 | ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3110 | break; |
| 3111 | case IEEE80211_AMPDU_TX_STOP: |
Sujith | f83da96 | 2009-07-23 15:32:37 +0530 | [diff] [blame] | 3112 | ath_tx_aggr_stop(sc, sta, tid); |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 3113 | ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3114 | break; |
Johannes Berg | b172023 | 2009-03-23 17:28:39 +0100 | [diff] [blame] | 3115 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Sujith | 8469cde | 2008-10-29 10:19:28 +0530 | [diff] [blame] | 3116 | ath_tx_aggr_resume(sc, sta, tid); |
| 3117 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3118 | default: |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 3119 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL, |
| 3120 | "Unknown AMPDU action\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3121 | } |
| 3122 | |
| 3123 | return ret; |
| 3124 | } |
| 3125 | |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3126 | static void ath9k_sw_scan_start(struct ieee80211_hw *hw) |
| 3127 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3128 | struct ath_wiphy *aphy = hw->priv; |
| 3129 | struct ath_softc *sc = aphy->sc; |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3130 | |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 3131 | mutex_lock(&sc->mutex); |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 3132 | if (ath9k_wiphy_scanning(sc)) { |
| 3133 | printk(KERN_DEBUG "ath9k: Two wiphys trying to scan at the " |
| 3134 | "same time\n"); |
| 3135 | /* |
| 3136 | * Do not allow the concurrent scanning state for now. This |
| 3137 | * could be improved with scanning control moved into ath9k. |
| 3138 | */ |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 3139 | mutex_unlock(&sc->mutex); |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 3140 | return; |
| 3141 | } |
| 3142 | |
| 3143 | aphy->state = ATH_WIPHY_SCAN; |
| 3144 | ath9k_wiphy_pause_all_forced(sc, aphy); |
| 3145 | |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 3146 | spin_lock_bh(&sc->ani_lock); |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3147 | sc->sc_flags |= SC_OP_SCANNING; |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 3148 | spin_unlock_bh(&sc->ani_lock); |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 3149 | mutex_unlock(&sc->mutex); |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3150 | } |
| 3151 | |
| 3152 | static void ath9k_sw_scan_complete(struct ieee80211_hw *hw) |
| 3153 | { |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 3154 | struct ath_wiphy *aphy = hw->priv; |
| 3155 | struct ath_softc *sc = aphy->sc; |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3156 | |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 3157 | mutex_lock(&sc->mutex); |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 3158 | spin_lock_bh(&sc->ani_lock); |
Jouni Malinen | 8089cc4 | 2009-03-03 19:23:38 +0200 | [diff] [blame] | 3159 | aphy->state = ATH_WIPHY_ACTIVE; |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3160 | sc->sc_flags &= ~SC_OP_SCANNING; |
Sujith | 9c07a77 | 2009-04-13 21:56:36 +0530 | [diff] [blame] | 3161 | sc->sc_flags |= SC_OP_FULL_RESET; |
Senthil Balasubramanian | e5f0921 | 2009-06-24 18:56:41 +0530 | [diff] [blame] | 3162 | spin_unlock_bh(&sc->ani_lock); |
Vivek Natarajan | d0bec34 | 2009-09-02 15:50:55 +0530 | [diff] [blame] | 3163 | ath_beacon_config(sc, NULL); |
Sujith | 3d83261 | 2009-08-21 12:00:28 +0530 | [diff] [blame] | 3164 | mutex_unlock(&sc->mutex); |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3165 | } |
| 3166 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3167 | struct ieee80211_ops ath9k_ops = { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3168 | .tx = ath9k_tx, |
| 3169 | .start = ath9k_start, |
| 3170 | .stop = ath9k_stop, |
| 3171 | .add_interface = ath9k_add_interface, |
| 3172 | .remove_interface = ath9k_remove_interface, |
| 3173 | .config = ath9k_config, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3174 | .configure_filter = ath9k_configure_filter, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3175 | .sta_notify = ath9k_sta_notify, |
| 3176 | .conf_tx = ath9k_conf_tx, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3177 | .bss_info_changed = ath9k_bss_info_changed, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3178 | .set_key = ath9k_set_key, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3179 | .get_tsf = ath9k_get_tsf, |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3180 | .set_tsf = ath9k_set_tsf, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3181 | .reset_tsf = ath9k_reset_tsf, |
Johannes Berg | 4233df6 | 2008-10-13 13:35:05 +0200 | [diff] [blame] | 3182 | .ampdu_action = ath9k_ampdu_action, |
Sujith | 0c98de6 | 2009-03-03 10:16:45 +0530 | [diff] [blame] | 3183 | .sw_scan_start = ath9k_sw_scan_start, |
| 3184 | .sw_scan_complete = ath9k_sw_scan_complete, |
Johannes Berg | 3b319aa | 2009-06-13 14:50:26 +0530 | [diff] [blame] | 3185 | .rfkill_poll = ath9k_rfkill_poll_state, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3186 | }; |
| 3187 | |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 3188 | static struct { |
| 3189 | u32 version; |
| 3190 | const char * name; |
| 3191 | } ath_mac_bb_names[] = { |
| 3192 | { AR_SREV_VERSION_5416_PCI, "5416" }, |
| 3193 | { AR_SREV_VERSION_5416_PCIE, "5418" }, |
| 3194 | { AR_SREV_VERSION_9100, "9100" }, |
| 3195 | { AR_SREV_VERSION_9160, "9160" }, |
| 3196 | { AR_SREV_VERSION_9280, "9280" }, |
Vivek Natarajan | ac88b6e | 2009-07-23 10:59:57 +0530 | [diff] [blame] | 3197 | { AR_SREV_VERSION_9285, "9285" }, |
| 3198 | { AR_SREV_VERSION_9287, "9287" } |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 3199 | }; |
| 3200 | |
| 3201 | static struct { |
| 3202 | u16 version; |
| 3203 | const char * name; |
| 3204 | } ath_rf_names[] = { |
| 3205 | { 0, "5133" }, |
| 3206 | { AR_RAD5133_SREV_MAJOR, "5133" }, |
| 3207 | { AR_RAD5122_SREV_MAJOR, "5122" }, |
| 3208 | { AR_RAD2133_SREV_MAJOR, "2133" }, |
| 3209 | { AR_RAD2122_SREV_MAJOR, "2122" } |
| 3210 | }; |
| 3211 | |
| 3212 | /* |
| 3213 | * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown. |
| 3214 | */ |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3215 | const char * |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 3216 | ath_mac_bb_name(u32 mac_bb_version) |
| 3217 | { |
| 3218 | int i; |
| 3219 | |
| 3220 | for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) { |
| 3221 | if (ath_mac_bb_names[i].version == mac_bb_version) { |
| 3222 | return ath_mac_bb_names[i].name; |
| 3223 | } |
| 3224 | } |
| 3225 | |
| 3226 | return "????"; |
| 3227 | } |
| 3228 | |
| 3229 | /* |
| 3230 | * Return the RF name. "????" is returned if the RF is unknown. |
| 3231 | */ |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3232 | const char * |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 3233 | ath_rf_name(u16 rf_version) |
| 3234 | { |
| 3235 | int i; |
| 3236 | |
| 3237 | for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) { |
| 3238 | if (ath_rf_names[i].version == rf_version) { |
| 3239 | return ath_rf_names[i].name; |
| 3240 | } |
| 3241 | } |
| 3242 | |
| 3243 | return "????"; |
| 3244 | } |
| 3245 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3246 | static int __init ath9k_init(void) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3247 | { |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 3248 | int error; |
| 3249 | |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 3250 | /* Register rate control algorithm */ |
| 3251 | error = ath_rate_control_register(); |
| 3252 | if (error != 0) { |
| 3253 | printk(KERN_ERR |
Luis R. Rodriguez | b51bb3c | 2009-01-26 07:30:03 -0800 | [diff] [blame] | 3254 | "ath9k: Unable to register rate control " |
| 3255 | "algorithm: %d\n", |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 3256 | error); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3257 | goto err_out; |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 3258 | } |
| 3259 | |
Gabor Juhos | 19d8bc2 | 2009-03-05 16:55:18 +0100 | [diff] [blame] | 3260 | error = ath9k_debug_create_root(); |
| 3261 | if (error) { |
| 3262 | printk(KERN_ERR |
| 3263 | "ath9k: Unable to create debugfs root: %d\n", |
| 3264 | error); |
| 3265 | goto err_rate_unregister; |
| 3266 | } |
| 3267 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3268 | error = ath_pci_init(); |
| 3269 | if (error < 0) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3270 | printk(KERN_ERR |
Luis R. Rodriguez | b51bb3c | 2009-01-26 07:30:03 -0800 | [diff] [blame] | 3271 | "ath9k: No PCI devices found, driver not installed.\n"); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3272 | error = -ENODEV; |
Gabor Juhos | 19d8bc2 | 2009-03-05 16:55:18 +0100 | [diff] [blame] | 3273 | goto err_remove_root; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3274 | } |
| 3275 | |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 3276 | error = ath_ahb_init(); |
| 3277 | if (error < 0) { |
| 3278 | error = -ENODEV; |
| 3279 | goto err_pci_exit; |
| 3280 | } |
| 3281 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3282 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3283 | |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 3284 | err_pci_exit: |
| 3285 | ath_pci_exit(); |
| 3286 | |
Gabor Juhos | 19d8bc2 | 2009-03-05 16:55:18 +0100 | [diff] [blame] | 3287 | err_remove_root: |
| 3288 | ath9k_debug_remove_root(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3289 | err_rate_unregister: |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 3290 | ath_rate_control_unregister(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3291 | err_out: |
| 3292 | return error; |
| 3293 | } |
| 3294 | module_init(ath9k_init); |
| 3295 | |
| 3296 | static void __exit ath9k_exit(void) |
| 3297 | { |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 3298 | ath_ahb_exit(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3299 | ath_pci_exit(); |
Gabor Juhos | 19d8bc2 | 2009-03-05 16:55:18 +0100 | [diff] [blame] | 3300 | ath9k_debug_remove_root(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3301 | ath_rate_control_unregister(); |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 3302 | printk(KERN_INFO "%s: Driver unloaded\n", dev_info); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3303 | } |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 3304 | module_exit(ath9k_exit); |