Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008 Atheros Communications Inc. |
| 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> |
| 18 | #include "core.h" |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 19 | #include "reg.h" |
Sujith | 2a163c6 | 2008-11-28 22:21:08 +0530 | [diff] [blame] | 20 | #include "hw.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 21 | |
| 22 | #define ATH_PCI_VERSION "0.1" |
| 23 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 24 | static char *dev_info = "ath9k"; |
| 25 | |
| 26 | MODULE_AUTHOR("Atheros Communications"); |
| 27 | MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards."); |
| 28 | MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards"); |
| 29 | MODULE_LICENSE("Dual BSD/GPL"); |
| 30 | |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 31 | static void ath_cache_conf_rate(struct ath_softc *sc, |
| 32 | struct ieee80211_conf *conf) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 33 | { |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 34 | switch (conf->channel->band) { |
| 35 | case IEEE80211_BAND_2GHZ: |
| 36 | if (conf_is_ht20(conf)) |
| 37 | sc->cur_rate_table = |
| 38 | sc->hw_rate_table[ATH9K_MODE_11NG_HT20]; |
| 39 | else if (conf_is_ht40_minus(conf)) |
| 40 | sc->cur_rate_table = |
| 41 | sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS]; |
| 42 | else if (conf_is_ht40_plus(conf)) |
| 43 | sc->cur_rate_table = |
| 44 | sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS]; |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame] | 45 | else |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 46 | sc->cur_rate_table = |
| 47 | sc->hw_rate_table[ATH9K_MODE_11G]; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 48 | break; |
| 49 | case IEEE80211_BAND_5GHZ: |
| 50 | if (conf_is_ht20(conf)) |
| 51 | sc->cur_rate_table = |
| 52 | sc->hw_rate_table[ATH9K_MODE_11NA_HT20]; |
| 53 | else if (conf_is_ht40_minus(conf)) |
| 54 | sc->cur_rate_table = |
| 55 | sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS]; |
| 56 | else if (conf_is_ht40_plus(conf)) |
| 57 | sc->cur_rate_table = |
| 58 | sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS]; |
| 59 | else |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame] | 60 | sc->cur_rate_table = |
| 61 | sc->hw_rate_table[ATH9K_MODE_11A]; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 62 | break; |
| 63 | default: |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 64 | BUG_ON(1); |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 65 | break; |
| 66 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static void ath_update_txpow(struct ath_softc *sc) |
| 70 | { |
| 71 | struct ath_hal *ah = sc->sc_ah; |
| 72 | u32 txpow; |
| 73 | |
| 74 | if (sc->sc_curtxpow != sc->sc_config.txpowlimit) { |
| 75 | ath9k_hw_set_txpowerlimit(ah, sc->sc_config.txpowlimit); |
| 76 | /* read back in case value is clamped */ |
| 77 | ath9k_hw_getcapability(ah, ATH9K_CAP_TXPOW, 1, &txpow); |
| 78 | sc->sc_curtxpow = txpow; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | static u8 parse_mpdudensity(u8 mpdudensity) |
| 83 | { |
| 84 | /* |
| 85 | * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing": |
| 86 | * 0 for no restriction |
| 87 | * 1 for 1/4 us |
| 88 | * 2 for 1/2 us |
| 89 | * 3 for 1 us |
| 90 | * 4 for 2 us |
| 91 | * 5 for 4 us |
| 92 | * 6 for 8 us |
| 93 | * 7 for 16 us |
| 94 | */ |
| 95 | switch (mpdudensity) { |
| 96 | case 0: |
| 97 | return 0; |
| 98 | case 1: |
| 99 | case 2: |
| 100 | case 3: |
| 101 | /* Our lower layer calculations limit our precision to |
| 102 | 1 microsecond */ |
| 103 | return 1; |
| 104 | case 4: |
| 105 | return 2; |
| 106 | case 5: |
| 107 | return 4; |
| 108 | case 6: |
| 109 | return 8; |
| 110 | case 7: |
| 111 | return 16; |
| 112 | default: |
| 113 | return 0; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | static void ath_setup_rates(struct ath_softc *sc, enum ieee80211_band band) |
| 118 | { |
| 119 | struct ath_rate_table *rate_table = NULL; |
| 120 | struct ieee80211_supported_band *sband; |
| 121 | struct ieee80211_rate *rate; |
| 122 | int i, maxrates; |
| 123 | |
| 124 | switch (band) { |
| 125 | case IEEE80211_BAND_2GHZ: |
| 126 | rate_table = sc->hw_rate_table[ATH9K_MODE_11G]; |
| 127 | break; |
| 128 | case IEEE80211_BAND_5GHZ: |
| 129 | rate_table = sc->hw_rate_table[ATH9K_MODE_11A]; |
| 130 | break; |
| 131 | default: |
| 132 | break; |
| 133 | } |
| 134 | |
| 135 | if (rate_table == NULL) |
| 136 | return; |
| 137 | |
| 138 | sband = &sc->sbands[band]; |
| 139 | rate = sc->rates[band]; |
| 140 | |
| 141 | if (rate_table->rate_cnt > ATH_RATE_MAX) |
| 142 | maxrates = ATH_RATE_MAX; |
| 143 | else |
| 144 | maxrates = rate_table->rate_cnt; |
| 145 | |
| 146 | for (i = 0; i < maxrates; i++) { |
| 147 | rate[i].bitrate = rate_table->info[i].ratekbps / 100; |
| 148 | rate[i].hw_value = rate_table->info[i].ratecode; |
| 149 | sband->n_bitrates++; |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 150 | DPRINTF(sc, ATH_DBG_CONFIG, "Rate: %2dMbps, ratecode: %2d\n", |
| 151 | rate[i].bitrate / 10, rate[i].hw_value); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 152 | } |
| 153 | } |
| 154 | |
| 155 | static int ath_setup_channels(struct ath_softc *sc) |
| 156 | { |
| 157 | struct ath_hal *ah = sc->sc_ah; |
| 158 | int nchan, i, a = 0, b = 0; |
| 159 | u8 regclassids[ATH_REGCLASSIDS_MAX]; |
| 160 | u32 nregclass = 0; |
| 161 | struct ieee80211_supported_band *band_2ghz; |
| 162 | struct ieee80211_supported_band *band_5ghz; |
| 163 | struct ieee80211_channel *chan_2ghz; |
| 164 | struct ieee80211_channel *chan_5ghz; |
| 165 | struct ath9k_channel *c; |
| 166 | |
| 167 | /* Fill in ah->ah_channels */ |
| 168 | if (!ath9k_regd_init_channels(ah, ATH_CHAN_MAX, (u32 *)&nchan, |
| 169 | regclassids, ATH_REGCLASSIDS_MAX, |
| 170 | &nregclass, CTRY_DEFAULT, false, 1)) { |
| 171 | u32 rd = ah->ah_currentRD; |
| 172 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 173 | "Unable to collect channel list; " |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 174 | "regdomain likely %u country code %u\n", |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 175 | rd, CTRY_DEFAULT); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 176 | return -EINVAL; |
| 177 | } |
| 178 | |
| 179 | band_2ghz = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 180 | band_5ghz = &sc->sbands[IEEE80211_BAND_5GHZ]; |
| 181 | chan_2ghz = sc->channels[IEEE80211_BAND_2GHZ]; |
| 182 | chan_5ghz = sc->channels[IEEE80211_BAND_5GHZ]; |
| 183 | |
| 184 | for (i = 0; i < nchan; i++) { |
| 185 | c = &ah->ah_channels[i]; |
| 186 | if (IS_CHAN_2GHZ(c)) { |
| 187 | chan_2ghz[a].band = IEEE80211_BAND_2GHZ; |
| 188 | chan_2ghz[a].center_freq = c->channel; |
| 189 | chan_2ghz[a].max_power = c->maxTxPower; |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 190 | c->chan = &chan_2ghz[a]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 191 | |
| 192 | if (c->privFlags & CHANNEL_DISALLOW_ADHOC) |
| 193 | chan_2ghz[a].flags |= IEEE80211_CHAN_NO_IBSS; |
| 194 | if (c->channelFlags & CHANNEL_PASSIVE) |
| 195 | chan_2ghz[a].flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
| 196 | |
| 197 | band_2ghz->n_channels = ++a; |
| 198 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 199 | DPRINTF(sc, ATH_DBG_CONFIG, "2MHz channel: %d, " |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 200 | "channelFlags: 0x%x\n", |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 201 | c->channel, c->channelFlags); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 202 | } else if (IS_CHAN_5GHZ(c)) { |
| 203 | chan_5ghz[b].band = IEEE80211_BAND_5GHZ; |
| 204 | chan_5ghz[b].center_freq = c->channel; |
| 205 | chan_5ghz[b].max_power = c->maxTxPower; |
Luis R. Rodriguez | 76061ab | 2008-12-23 15:58:41 -0800 | [diff] [blame] | 206 | c->chan = &chan_5ghz[a]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 207 | |
| 208 | if (c->privFlags & CHANNEL_DISALLOW_ADHOC) |
| 209 | chan_5ghz[b].flags |= IEEE80211_CHAN_NO_IBSS; |
| 210 | if (c->channelFlags & CHANNEL_PASSIVE) |
| 211 | chan_5ghz[b].flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
| 212 | |
| 213 | band_5ghz->n_channels = ++b; |
| 214 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 215 | DPRINTF(sc, ATH_DBG_CONFIG, "5MHz channel: %d, " |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 216 | "channelFlags: 0x%x\n", |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 217 | c->channel, c->channelFlags); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 218 | } |
| 219 | } |
| 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Set/change channels. If the channel is really being changed, it's done |
| 226 | * by reseting the chip. To accomplish this we must first cleanup any pending |
| 227 | * DMA, then restart stuff. |
| 228 | */ |
| 229 | static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan) |
| 230 | { |
| 231 | struct ath_hal *ah = sc->sc_ah; |
| 232 | bool fastcc = true, stopped; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 233 | struct ieee80211_hw *hw = sc->hw; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 234 | struct ieee80211_channel *channel = hw->conf.channel; |
| 235 | int r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 236 | |
| 237 | if (sc->sc_flags & SC_OP_INVALID) |
| 238 | return -EIO; |
| 239 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 240 | ath9k_ps_wakeup(sc); |
| 241 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 242 | /* |
| 243 | * This is only performed if the channel settings have |
| 244 | * actually changed. |
| 245 | * |
| 246 | * To switch channels clear any pending DMA operations; |
| 247 | * wait long enough for the RX fifo to drain, reset the |
| 248 | * hardware at the new frequency, and then re-enable |
| 249 | * the relevant bits of the h/w. |
| 250 | */ |
| 251 | ath9k_hw_set_interrupts(ah, 0); |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 252 | ath_drain_all_txq(sc, false); |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 253 | stopped = ath_stoprecv(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 254 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 255 | /* XXX: do not flush receive queue here. We don't want |
| 256 | * to flush data frames already in queue because of |
| 257 | * changing channel. */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 258 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 259 | if (!stopped || (sc->sc_flags & SC_OP_FULL_RESET)) |
| 260 | fastcc = false; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 261 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 262 | DPRINTF(sc, ATH_DBG_CONFIG, |
| 263 | "(%u MHz) -> (%u MHz), chanwidth: %d\n", |
| 264 | sc->sc_ah->ah_curchan->channel, |
| 265 | channel->center_freq, sc->tx_chan_width); |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 266 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 267 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 268 | |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 269 | r = ath9k_hw_reset(ah, hchan, fastcc); |
| 270 | if (r) { |
| 271 | DPRINTF(sc, ATH_DBG_FATAL, |
| 272 | "Unable to reset channel (%u Mhz) " |
| 273 | "reset status %u\n", |
| 274 | channel->center_freq, r); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 275 | spin_unlock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 276 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 277 | } |
Luis R. Rodriguez | c0d7c7a | 2008-12-23 15:58:50 -0800 | [diff] [blame] | 278 | spin_unlock_bh(&sc->sc_resetlock); |
| 279 | |
| 280 | sc->sc_flags &= ~SC_OP_CHAINMASK_UPDATE; |
| 281 | sc->sc_flags &= ~SC_OP_FULL_RESET; |
| 282 | |
| 283 | if (ath_startrecv(sc) != 0) { |
| 284 | DPRINTF(sc, ATH_DBG_FATAL, |
| 285 | "Unable to restart recv logic\n"); |
| 286 | return -EIO; |
| 287 | } |
| 288 | |
| 289 | ath_cache_conf_rate(sc, &hw->conf); |
| 290 | ath_update_txpow(sc); |
| 291 | ath9k_hw_set_interrupts(ah, sc->sc_imask); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 292 | ath9k_ps_restore(sc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * This routine performs the periodic noise floor calibration function |
| 298 | * that is used to adjust and optimize the chip performance. This |
| 299 | * takes environmental changes (location, temperature) into account. |
| 300 | * When the task is complete, it reschedules itself depending on the |
| 301 | * appropriate interval that was calculated. |
| 302 | */ |
| 303 | static void ath_ani_calibrate(unsigned long data) |
| 304 | { |
| 305 | struct ath_softc *sc; |
| 306 | struct ath_hal *ah; |
| 307 | bool longcal = false; |
| 308 | bool shortcal = false; |
| 309 | bool aniflag = false; |
| 310 | unsigned int timestamp = jiffies_to_msecs(jiffies); |
| 311 | u32 cal_interval; |
| 312 | |
| 313 | sc = (struct ath_softc *)data; |
| 314 | ah = sc->sc_ah; |
| 315 | |
| 316 | /* |
| 317 | * don't calibrate when we're scanning. |
| 318 | * we are most likely not on our home channel. |
| 319 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 320 | if (sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 321 | return; |
| 322 | |
| 323 | /* Long calibration runs independently of short calibration. */ |
| 324 | if ((timestamp - sc->sc_ani.sc_longcal_timer) >= ATH_LONG_CALINTERVAL) { |
| 325 | longcal = true; |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 326 | DPRINTF(sc, ATH_DBG_ANI, "longcal @%lu\n", jiffies); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 327 | sc->sc_ani.sc_longcal_timer = timestamp; |
| 328 | } |
| 329 | |
| 330 | /* Short calibration applies only while sc_caldone is false */ |
| 331 | if (!sc->sc_ani.sc_caldone) { |
| 332 | if ((timestamp - sc->sc_ani.sc_shortcal_timer) >= |
| 333 | ATH_SHORT_CALINTERVAL) { |
| 334 | shortcal = true; |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 335 | DPRINTF(sc, ATH_DBG_ANI, "shortcal @%lu\n", jiffies); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 336 | sc->sc_ani.sc_shortcal_timer = timestamp; |
| 337 | sc->sc_ani.sc_resetcal_timer = timestamp; |
| 338 | } |
| 339 | } else { |
| 340 | if ((timestamp - sc->sc_ani.sc_resetcal_timer) >= |
| 341 | ATH_RESTART_CALINTERVAL) { |
Luis R. Rodriguez | c9e27d9 | 2008-12-23 15:58:42 -0800 | [diff] [blame] | 342 | sc->sc_ani.sc_caldone = ath9k_hw_reset_calvalid(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 343 | if (sc->sc_ani.sc_caldone) |
| 344 | sc->sc_ani.sc_resetcal_timer = timestamp; |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | /* Verify whether we must check ANI */ |
| 349 | if ((timestamp - sc->sc_ani.sc_checkani_timer) >= |
| 350 | ATH_ANI_POLLINTERVAL) { |
| 351 | aniflag = true; |
| 352 | sc->sc_ani.sc_checkani_timer = timestamp; |
| 353 | } |
| 354 | |
| 355 | /* Skip all processing if there's nothing to do. */ |
| 356 | if (longcal || shortcal || aniflag) { |
| 357 | /* Call ANI routine if necessary */ |
| 358 | if (aniflag) |
| 359 | ath9k_hw_ani_monitor(ah, &sc->sc_halstats, |
| 360 | ah->ah_curchan); |
| 361 | |
| 362 | /* Perform calibration if necessary */ |
| 363 | if (longcal || shortcal) { |
| 364 | bool iscaldone = false; |
| 365 | |
| 366 | if (ath9k_hw_calibrate(ah, ah->ah_curchan, |
| 367 | sc->sc_rx_chainmask, longcal, |
| 368 | &iscaldone)) { |
| 369 | if (longcal) |
| 370 | sc->sc_ani.sc_noise_floor = |
| 371 | ath9k_hw_getchan_noise(ah, |
| 372 | ah->ah_curchan); |
| 373 | |
| 374 | DPRINTF(sc, ATH_DBG_ANI, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 375 | "calibrate chan %u/%x nf: %d\n", |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 376 | ah->ah_curchan->channel, |
| 377 | ah->ah_curchan->channelFlags, |
| 378 | sc->sc_ani.sc_noise_floor); |
| 379 | } else { |
| 380 | DPRINTF(sc, ATH_DBG_ANY, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 381 | "calibrate chan %u/%x failed\n", |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 382 | ah->ah_curchan->channel, |
| 383 | ah->ah_curchan->channelFlags); |
| 384 | } |
| 385 | sc->sc_ani.sc_caldone = iscaldone; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | /* |
| 390 | * Set timer interval based on previous results. |
| 391 | * The interval must be the shortest necessary to satisfy ANI, |
| 392 | * short calibration and long calibration. |
| 393 | */ |
Sujith | aac9207 | 2008-12-02 18:37:54 +0530 | [diff] [blame] | 394 | cal_interval = ATH_LONG_CALINTERVAL; |
| 395 | if (sc->sc_ah->ah_config.enable_ani) |
| 396 | cal_interval = min(cal_interval, (u32)ATH_ANI_POLLINTERVAL); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 397 | if (!sc->sc_ani.sc_caldone) |
| 398 | cal_interval = min(cal_interval, (u32)ATH_SHORT_CALINTERVAL); |
| 399 | |
| 400 | mod_timer(&sc->sc_ani.timer, jiffies + msecs_to_jiffies(cal_interval)); |
| 401 | } |
| 402 | |
| 403 | /* |
| 404 | * Update tx/rx chainmask. For legacy association, |
| 405 | * hard code chainmask to 1x1, for 11n association, use |
Vasanthakumar Thiagarajan | c97c92d | 2009-01-02 15:35:46 +0530 | [diff] [blame] | 406 | * the chainmask configuration, for bt coexistence, use |
| 407 | * the chainmask configuration even in legacy mode. |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 408 | */ |
| 409 | static void ath_update_chainmask(struct ath_softc *sc, int is_ht) |
| 410 | { |
| 411 | sc->sc_flags |= SC_OP_CHAINMASK_UPDATE; |
Vasanthakumar Thiagarajan | c97c92d | 2009-01-02 15:35:46 +0530 | [diff] [blame] | 412 | if (is_ht || |
| 413 | (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX)) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 414 | sc->sc_tx_chainmask = sc->sc_ah->ah_caps.tx_chainmask; |
| 415 | sc->sc_rx_chainmask = sc->sc_ah->ah_caps.rx_chainmask; |
| 416 | } else { |
| 417 | sc->sc_tx_chainmask = 1; |
| 418 | sc->sc_rx_chainmask = 1; |
| 419 | } |
| 420 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 421 | DPRINTF(sc, ATH_DBG_CONFIG, "tx chmask: %d, rx chmask: %d\n", |
| 422 | sc->sc_tx_chainmask, sc->sc_rx_chainmask); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta) |
| 426 | { |
| 427 | struct ath_node *an; |
| 428 | |
| 429 | an = (struct ath_node *)sta->drv_priv; |
| 430 | |
| 431 | if (sc->sc_flags & SC_OP_TXAGGR) |
| 432 | ath_tx_node_init(sc, an); |
| 433 | |
| 434 | an->maxampdu = 1 << (IEEE80211_HTCAP_MAXRXAMPDU_FACTOR + |
| 435 | sta->ht_cap.ampdu_factor); |
| 436 | an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density); |
| 437 | } |
| 438 | |
| 439 | static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta) |
| 440 | { |
| 441 | struct ath_node *an = (struct ath_node *)sta->drv_priv; |
| 442 | |
| 443 | if (sc->sc_flags & SC_OP_TXAGGR) |
| 444 | ath_tx_node_cleanup(sc, an); |
| 445 | } |
| 446 | |
| 447 | static void ath9k_tasklet(unsigned long data) |
| 448 | { |
| 449 | struct ath_softc *sc = (struct ath_softc *)data; |
| 450 | u32 status = sc->sc_intrstatus; |
| 451 | |
| 452 | if (status & ATH9K_INT_FATAL) { |
| 453 | /* need a chip reset */ |
| 454 | ath_reset(sc, false); |
| 455 | return; |
| 456 | } else { |
| 457 | |
| 458 | if (status & |
| 459 | (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 460 | spin_lock_bh(&sc->rx.rxflushlock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 461 | ath_rx_tasklet(sc, 0); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 462 | spin_unlock_bh(&sc->rx.rxflushlock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 463 | } |
| 464 | /* XXX: optimize this */ |
| 465 | if (status & ATH9K_INT_TX) |
| 466 | ath_tx_tasklet(sc); |
| 467 | } |
| 468 | |
| 469 | /* re-enable hardware interrupt */ |
| 470 | ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask); |
| 471 | } |
| 472 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 473 | irqreturn_t ath_isr(int irq, void *dev) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 474 | { |
| 475 | struct ath_softc *sc = dev; |
| 476 | struct ath_hal *ah = sc->sc_ah; |
| 477 | enum ath9k_int status; |
| 478 | bool sched = false; |
| 479 | |
| 480 | do { |
| 481 | if (sc->sc_flags & SC_OP_INVALID) { |
| 482 | /* |
| 483 | * The hardware is not ready/present, don't |
| 484 | * touch anything. Note this can happen early |
| 485 | * on if the IRQ is shared. |
| 486 | */ |
| 487 | return IRQ_NONE; |
| 488 | } |
| 489 | if (!ath9k_hw_intrpend(ah)) { /* shared irq, not for us */ |
| 490 | return IRQ_NONE; |
| 491 | } |
| 492 | |
| 493 | /* |
| 494 | * Figure out the reason(s) for the interrupt. Note |
| 495 | * that the hal returns a pseudo-ISR that may include |
| 496 | * bits we haven't explicitly enabled so we mask the |
| 497 | * value to insure we only process bits we requested. |
| 498 | */ |
| 499 | ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */ |
| 500 | |
| 501 | status &= sc->sc_imask; /* discard unasked-for bits */ |
| 502 | |
| 503 | /* |
| 504 | * If there are no status bits set, then this interrupt was not |
| 505 | * for me (should have been caught above). |
| 506 | */ |
| 507 | if (!status) |
| 508 | return IRQ_NONE; |
| 509 | |
| 510 | sc->sc_intrstatus = status; |
| 511 | |
| 512 | if (status & ATH9K_INT_FATAL) { |
| 513 | /* need a chip reset */ |
| 514 | sched = true; |
| 515 | } else if (status & ATH9K_INT_RXORN) { |
| 516 | /* need a chip reset */ |
| 517 | sched = true; |
| 518 | } else { |
| 519 | if (status & ATH9K_INT_SWBA) { |
| 520 | /* schedule a tasklet for beacon handling */ |
| 521 | tasklet_schedule(&sc->bcon_tasklet); |
| 522 | } |
| 523 | if (status & ATH9K_INT_RXEOL) { |
| 524 | /* |
| 525 | * NB: the hardware should re-read the link when |
| 526 | * RXE bit is written, but it doesn't work |
| 527 | * at least on older hardware revs. |
| 528 | */ |
| 529 | sched = true; |
| 530 | } |
| 531 | |
| 532 | if (status & ATH9K_INT_TXURN) |
| 533 | /* bump tx trigger level */ |
| 534 | ath9k_hw_updatetxtriglevel(ah, true); |
| 535 | /* XXX: optimize this */ |
| 536 | if (status & ATH9K_INT_RX) |
| 537 | sched = true; |
| 538 | if (status & ATH9K_INT_TX) |
| 539 | sched = true; |
| 540 | if (status & ATH9K_INT_BMISS) |
| 541 | sched = true; |
| 542 | /* carrier sense timeout */ |
| 543 | if (status & ATH9K_INT_CST) |
| 544 | sched = true; |
| 545 | if (status & ATH9K_INT_MIB) { |
| 546 | /* |
| 547 | * Disable interrupts until we service the MIB |
| 548 | * interrupt; otherwise it will continue to |
| 549 | * fire. |
| 550 | */ |
| 551 | ath9k_hw_set_interrupts(ah, 0); |
| 552 | /* |
| 553 | * Let the hal handle the event. We assume |
| 554 | * it will clear whatever condition caused |
| 555 | * the interrupt. |
| 556 | */ |
| 557 | ath9k_hw_procmibevent(ah, &sc->sc_halstats); |
| 558 | ath9k_hw_set_interrupts(ah, sc->sc_imask); |
| 559 | } |
| 560 | if (status & ATH9K_INT_TIM_TIMER) { |
| 561 | if (!(ah->ah_caps.hw_caps & |
| 562 | ATH9K_HW_CAP_AUTOSLEEP)) { |
| 563 | /* Clear RxAbort bit so that we can |
| 564 | * receive frames */ |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 565 | ath9k_hw_setpower(ah, ATH9K_PM_AWAKE); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 566 | ath9k_hw_setrxabort(ah, 0); |
| 567 | sched = true; |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 568 | sc->sc_flags |= SC_OP_WAIT_FOR_BEACON; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | } |
| 572 | } while (0); |
| 573 | |
Sujith | 817e11d | 2008-12-07 21:42:44 +0530 | [diff] [blame] | 574 | ath_debug_stat_interrupt(sc, status); |
| 575 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 576 | if (sched) { |
| 577 | /* turn off every interrupt except SWBA */ |
| 578 | ath9k_hw_set_interrupts(ah, (sc->sc_imask & ATH9K_INT_SWBA)); |
| 579 | tasklet_schedule(&sc->intr_tq); |
| 580 | } |
| 581 | |
| 582 | return IRQ_HANDLED; |
| 583 | } |
| 584 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 585 | static int ath_get_channel(struct ath_softc *sc, |
| 586 | struct ieee80211_channel *chan) |
| 587 | { |
| 588 | int i; |
| 589 | |
| 590 | for (i = 0; i < sc->sc_ah->ah_nchan; i++) { |
| 591 | if (sc->sc_ah->ah_channels[i].channel == chan->center_freq) |
| 592 | return i; |
| 593 | } |
| 594 | |
| 595 | return -1; |
| 596 | } |
| 597 | |
| 598 | static u32 ath_get_extchanmode(struct ath_softc *sc, |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 599 | struct ieee80211_channel *chan, |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 600 | enum nl80211_channel_type channel_type) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 601 | { |
| 602 | u32 chanmode = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 603 | |
| 604 | switch (chan->band) { |
| 605 | case IEEE80211_BAND_2GHZ: |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 606 | switch(channel_type) { |
| 607 | case NL80211_CHAN_NO_HT: |
| 608 | case NL80211_CHAN_HT20: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 609 | chanmode = CHANNEL_G_HT20; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 610 | break; |
| 611 | case NL80211_CHAN_HT40PLUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 612 | chanmode = CHANNEL_G_HT40PLUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 613 | break; |
| 614 | case NL80211_CHAN_HT40MINUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 615 | chanmode = CHANNEL_G_HT40MINUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 616 | break; |
| 617 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 618 | break; |
| 619 | case IEEE80211_BAND_5GHZ: |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 620 | switch(channel_type) { |
| 621 | case NL80211_CHAN_NO_HT: |
| 622 | case NL80211_CHAN_HT20: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 623 | chanmode = CHANNEL_A_HT20; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 624 | break; |
| 625 | case NL80211_CHAN_HT40PLUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 626 | chanmode = CHANNEL_A_HT40PLUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 627 | break; |
| 628 | case NL80211_CHAN_HT40MINUS: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 629 | chanmode = CHANNEL_A_HT40MINUS; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 630 | break; |
| 631 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 632 | break; |
| 633 | default: |
| 634 | break; |
| 635 | } |
| 636 | |
| 637 | return chanmode; |
| 638 | } |
| 639 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 640 | static int ath_keyset(struct ath_softc *sc, u16 keyix, |
| 641 | struct ath9k_keyval *hk, const u8 mac[ETH_ALEN]) |
| 642 | { |
| 643 | bool status; |
| 644 | |
| 645 | status = ath9k_hw_set_keycache_entry(sc->sc_ah, |
| 646 | keyix, hk, mac, false); |
| 647 | |
| 648 | return status != false; |
| 649 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 650 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 651 | static int ath_setkey_tkip(struct ath_softc *sc, u16 keyix, const u8 *key, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 652 | struct ath9k_keyval *hk, |
| 653 | const u8 *addr) |
| 654 | { |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 655 | const u8 *key_rxmic; |
| 656 | const u8 *key_txmic; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 657 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 658 | key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY; |
| 659 | key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 660 | |
| 661 | if (addr == NULL) { |
| 662 | /* Group key installation */ |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 663 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 664 | return ath_keyset(sc, keyix, hk, addr); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 665 | } |
| 666 | if (!sc->sc_splitmic) { |
| 667 | /* |
| 668 | * data key goes at first index, |
| 669 | * the hal handles the MIC keys at index+64. |
| 670 | */ |
| 671 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 672 | memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic)); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 673 | return ath_keyset(sc, keyix, hk, addr); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 674 | } |
| 675 | /* |
| 676 | * TX key goes at first index, RX key at +32. |
| 677 | * The hal handles the MIC keys at index+64. |
| 678 | */ |
| 679 | memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic)); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 680 | if (!ath_keyset(sc, keyix, hk, NULL)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 681 | /* Txmic entry failed. No need to proceed further */ |
| 682 | DPRINTF(sc, ATH_DBG_KEYCACHE, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 683 | "Setting TX MIC Key Failed\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 684 | return 0; |
| 685 | } |
| 686 | |
| 687 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); |
| 688 | /* XXX delete tx key on failure? */ |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 689 | return ath_keyset(sc, keyix + 32, hk, addr); |
| 690 | } |
| 691 | |
| 692 | static int ath_reserve_key_cache_slot_tkip(struct ath_softc *sc) |
| 693 | { |
| 694 | int i; |
| 695 | |
| 696 | for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) { |
| 697 | if (test_bit(i, sc->sc_keymap) || |
| 698 | test_bit(i + 64, sc->sc_keymap)) |
| 699 | continue; /* At least one part of TKIP key allocated */ |
| 700 | if (sc->sc_splitmic && |
| 701 | (test_bit(i + 32, sc->sc_keymap) || |
| 702 | test_bit(i + 64 + 32, sc->sc_keymap))) |
| 703 | continue; /* At least one part of TKIP key allocated */ |
| 704 | |
| 705 | /* Found a free slot for a TKIP key */ |
| 706 | return i; |
| 707 | } |
| 708 | return -1; |
| 709 | } |
| 710 | |
| 711 | static int ath_reserve_key_cache_slot(struct ath_softc *sc) |
| 712 | { |
| 713 | int i; |
| 714 | |
| 715 | /* First, try to find slots that would not be available for TKIP. */ |
| 716 | if (sc->sc_splitmic) { |
| 717 | for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 4; i++) { |
| 718 | if (!test_bit(i, sc->sc_keymap) && |
| 719 | (test_bit(i + 32, sc->sc_keymap) || |
| 720 | test_bit(i + 64, sc->sc_keymap) || |
| 721 | test_bit(i + 64 + 32, sc->sc_keymap))) |
| 722 | return i; |
| 723 | if (!test_bit(i + 32, sc->sc_keymap) && |
| 724 | (test_bit(i, sc->sc_keymap) || |
| 725 | test_bit(i + 64, sc->sc_keymap) || |
| 726 | test_bit(i + 64 + 32, sc->sc_keymap))) |
| 727 | return i + 32; |
| 728 | if (!test_bit(i + 64, sc->sc_keymap) && |
| 729 | (test_bit(i , sc->sc_keymap) || |
| 730 | test_bit(i + 32, sc->sc_keymap) || |
| 731 | test_bit(i + 64 + 32, sc->sc_keymap))) |
Jouni Malinen | ea61213 | 2008-12-18 14:31:10 +0200 | [diff] [blame] | 732 | return i + 64; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 733 | if (!test_bit(i + 64 + 32, sc->sc_keymap) && |
| 734 | (test_bit(i, sc->sc_keymap) || |
| 735 | test_bit(i + 32, sc->sc_keymap) || |
| 736 | test_bit(i + 64, sc->sc_keymap))) |
Jouni Malinen | ea61213 | 2008-12-18 14:31:10 +0200 | [diff] [blame] | 737 | return i + 64 + 32; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 738 | } |
| 739 | } else { |
| 740 | for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax / 2; i++) { |
| 741 | if (!test_bit(i, sc->sc_keymap) && |
| 742 | test_bit(i + 64, sc->sc_keymap)) |
| 743 | return i; |
| 744 | if (test_bit(i, sc->sc_keymap) && |
| 745 | !test_bit(i + 64, sc->sc_keymap)) |
| 746 | return i + 64; |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | /* No partially used TKIP slots, pick any available slot */ |
| 751 | for (i = IEEE80211_WEP_NKID; i < sc->sc_keymax; i++) { |
Jouni Malinen | be2864c | 2008-12-18 14:33:00 +0200 | [diff] [blame] | 752 | /* Do not allow slots that could be needed for TKIP group keys |
| 753 | * to be used. This limitation could be removed if we know that |
| 754 | * TKIP will not be used. */ |
| 755 | if (i >= 64 && i < 64 + IEEE80211_WEP_NKID) |
| 756 | continue; |
| 757 | if (sc->sc_splitmic) { |
| 758 | if (i >= 32 && i < 32 + IEEE80211_WEP_NKID) |
| 759 | continue; |
| 760 | if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID) |
| 761 | continue; |
| 762 | } |
| 763 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 764 | if (!test_bit(i, sc->sc_keymap)) |
| 765 | return i; /* Found a free slot for a key */ |
| 766 | } |
| 767 | |
| 768 | /* No free slot found */ |
| 769 | return -1; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | static int ath_key_config(struct ath_softc *sc, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 773 | struct ieee80211_sta *sta, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 774 | struct ieee80211_key_conf *key) |
| 775 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 776 | struct ath9k_keyval hk; |
| 777 | const u8 *mac = NULL; |
| 778 | int ret = 0; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 779 | int idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 780 | |
| 781 | memset(&hk, 0, sizeof(hk)); |
| 782 | |
| 783 | switch (key->alg) { |
| 784 | case ALG_WEP: |
| 785 | hk.kv_type = ATH9K_CIPHER_WEP; |
| 786 | break; |
| 787 | case ALG_TKIP: |
| 788 | hk.kv_type = ATH9K_CIPHER_TKIP; |
| 789 | break; |
| 790 | case ALG_CCMP: |
| 791 | hk.kv_type = ATH9K_CIPHER_AES_CCM; |
| 792 | break; |
| 793 | default: |
Jouni Malinen | ca470b2 | 2009-01-08 13:32:12 +0200 | [diff] [blame] | 794 | return -EOPNOTSUPP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 797 | hk.kv_len = key->keylen; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 798 | memcpy(hk.kv_val, key->key, key->keylen); |
| 799 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 800 | if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
| 801 | /* For now, use the default keys for broadcast keys. This may |
| 802 | * need to change with virtual interfaces. */ |
| 803 | idx = key->keyidx; |
| 804 | } else if (key->keyidx) { |
| 805 | struct ieee80211_vif *vif; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 806 | |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 807 | if (WARN_ON(!sta)) |
| 808 | return -EOPNOTSUPP; |
| 809 | mac = sta->addr; |
| 810 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 811 | vif = sc->sc_vaps[0]; |
| 812 | if (vif->type != NL80211_IFTYPE_AP) { |
| 813 | /* Only keyidx 0 should be used with unicast key, but |
| 814 | * allow this for client mode for now. */ |
| 815 | idx = key->keyidx; |
| 816 | } else |
| 817 | return -EIO; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 818 | } else { |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 819 | if (WARN_ON(!sta)) |
| 820 | return -EOPNOTSUPP; |
| 821 | mac = sta->addr; |
| 822 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 823 | if (key->alg == ALG_TKIP) |
| 824 | idx = ath_reserve_key_cache_slot_tkip(sc); |
| 825 | else |
| 826 | idx = ath_reserve_key_cache_slot(sc); |
| 827 | if (idx < 0) |
Jouni Malinen | ca470b2 | 2009-01-08 13:32:12 +0200 | [diff] [blame] | 828 | return -ENOSPC; /* no free key cache entries */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | if (key->alg == ALG_TKIP) |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 832 | ret = ath_setkey_tkip(sc, idx, key->key, &hk, mac); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 833 | else |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 834 | ret = ath_keyset(sc, idx, &hk, mac); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 835 | |
| 836 | if (!ret) |
| 837 | return -EIO; |
| 838 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 839 | set_bit(idx, sc->sc_keymap); |
| 840 | if (key->alg == ALG_TKIP) { |
| 841 | set_bit(idx + 64, sc->sc_keymap); |
| 842 | if (sc->sc_splitmic) { |
| 843 | set_bit(idx + 32, sc->sc_keymap); |
| 844 | set_bit(idx + 64 + 32, sc->sc_keymap); |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | return idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | static void ath_key_delete(struct ath_softc *sc, struct ieee80211_key_conf *key) |
| 852 | { |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 853 | ath9k_hw_keyreset(sc->sc_ah, key->hw_key_idx); |
| 854 | if (key->hw_key_idx < IEEE80211_WEP_NKID) |
| 855 | return; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 856 | |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 857 | clear_bit(key->hw_key_idx, sc->sc_keymap); |
| 858 | if (key->alg != ALG_TKIP) |
| 859 | return; |
| 860 | |
| 861 | clear_bit(key->hw_key_idx + 64, sc->sc_keymap); |
| 862 | if (sc->sc_splitmic) { |
| 863 | clear_bit(key->hw_key_idx + 32, sc->sc_keymap); |
| 864 | clear_bit(key->hw_key_idx + 64 + 32, sc->sc_keymap); |
| 865 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 866 | } |
| 867 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 868 | static void setup_ht_cap(struct ieee80211_sta_ht_cap *ht_info) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 869 | { |
Sujith | 6065367 | 2008-08-14 13:28:02 +0530 | [diff] [blame] | 870 | #define ATH9K_HT_CAP_MAXRXAMPDU_65536 0x3 /* 2 ^ 16 */ |
| 871 | #define ATH9K_HT_CAP_MPDUDENSITY_8 0x6 /* 8 usec */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 872 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 873 | ht_info->ht_supported = true; |
| 874 | ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
| 875 | IEEE80211_HT_CAP_SM_PS | |
| 876 | IEEE80211_HT_CAP_SGI_40 | |
| 877 | IEEE80211_HT_CAP_DSSSCCK40; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 878 | |
Sujith | 6065367 | 2008-08-14 13:28:02 +0530 | [diff] [blame] | 879 | ht_info->ampdu_factor = ATH9K_HT_CAP_MAXRXAMPDU_65536; |
| 880 | ht_info->ampdu_density = ATH9K_HT_CAP_MPDUDENSITY_8; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 881 | /* set up supported mcs set */ |
| 882 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
| 883 | ht_info->mcs.rx_mask[0] = 0xff; |
| 884 | ht_info->mcs.rx_mask[1] = 0xff; |
| 885 | ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 886 | } |
| 887 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 888 | static void ath9k_bss_assoc_info(struct ath_softc *sc, |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 889 | struct ieee80211_vif *vif, |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 890 | struct ieee80211_bss_conf *bss_conf) |
| 891 | { |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 892 | struct ath_vap *avp = (void *)vif->drv_priv; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 893 | |
| 894 | if (bss_conf->assoc) { |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 895 | DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info ASSOC %d, bssid: %pM\n", |
| 896 | bss_conf->aid, sc->sc_curbssid); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 897 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 898 | /* New association, store aid */ |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 899 | if (avp->av_opmode == NL80211_IFTYPE_STATION) { |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 900 | sc->sc_curaid = bss_conf->aid; |
| 901 | ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid, |
| 902 | sc->sc_curaid); |
| 903 | } |
| 904 | |
| 905 | /* Configure the beacon */ |
| 906 | ath_beacon_config(sc, 0); |
| 907 | sc->sc_flags |= SC_OP_BEACONS; |
| 908 | |
| 909 | /* Reset rssi stats */ |
| 910 | sc->sc_halstats.ns_avgbrssi = ATH_RSSI_DUMMY_MARKER; |
| 911 | sc->sc_halstats.ns_avgrssi = ATH_RSSI_DUMMY_MARKER; |
| 912 | sc->sc_halstats.ns_avgtxrssi = ATH_RSSI_DUMMY_MARKER; |
| 913 | sc->sc_halstats.ns_avgtxrate = ATH_RATE_DUMMY_MARKER; |
| 914 | |
Luis R. Rodriguez | 6f25542 | 2008-10-03 15:45:27 -0700 | [diff] [blame] | 915 | /* Start ANI */ |
| 916 | mod_timer(&sc->sc_ani.timer, |
| 917 | jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL)); |
| 918 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 919 | } else { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 920 | DPRINTF(sc, ATH_DBG_CONFIG, "Bss Info DISSOC\n"); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 921 | sc->sc_curaid = 0; |
| 922 | } |
| 923 | } |
| 924 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 925 | /********************************/ |
| 926 | /* LED functions */ |
| 927 | /********************************/ |
| 928 | |
| 929 | static void ath_led_brightness(struct led_classdev *led_cdev, |
| 930 | enum led_brightness brightness) |
| 931 | { |
| 932 | struct ath_led *led = container_of(led_cdev, struct ath_led, led_cdev); |
| 933 | struct ath_softc *sc = led->sc; |
| 934 | |
| 935 | switch (brightness) { |
| 936 | case LED_OFF: |
| 937 | if (led->led_type == ATH_LED_ASSOC || |
| 938 | led->led_type == ATH_LED_RADIO) |
| 939 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
| 940 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, |
| 941 | (led->led_type == ATH_LED_RADIO) ? 1 : |
| 942 | !!(sc->sc_flags & SC_OP_LED_ASSOCIATED)); |
| 943 | break; |
| 944 | case LED_FULL: |
| 945 | if (led->led_type == ATH_LED_ASSOC) |
| 946 | sc->sc_flags |= SC_OP_LED_ASSOCIATED; |
| 947 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 0); |
| 948 | break; |
| 949 | default: |
| 950 | break; |
| 951 | } |
| 952 | } |
| 953 | |
| 954 | static int ath_register_led(struct ath_softc *sc, struct ath_led *led, |
| 955 | char *trigger) |
| 956 | { |
| 957 | int ret; |
| 958 | |
| 959 | led->sc = sc; |
| 960 | led->led_cdev.name = led->name; |
| 961 | led->led_cdev.default_trigger = trigger; |
| 962 | led->led_cdev.brightness_set = ath_led_brightness; |
| 963 | |
| 964 | ret = led_classdev_register(wiphy_dev(sc->hw->wiphy), &led->led_cdev); |
| 965 | if (ret) |
| 966 | DPRINTF(sc, ATH_DBG_FATAL, |
| 967 | "Failed to register led:%s", led->name); |
| 968 | else |
| 969 | led->registered = 1; |
| 970 | return ret; |
| 971 | } |
| 972 | |
| 973 | static void ath_unregister_led(struct ath_led *led) |
| 974 | { |
| 975 | if (led->registered) { |
| 976 | led_classdev_unregister(&led->led_cdev); |
| 977 | led->registered = 0; |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | static void ath_deinit_leds(struct ath_softc *sc) |
| 982 | { |
| 983 | ath_unregister_led(&sc->assoc_led); |
| 984 | sc->sc_flags &= ~SC_OP_LED_ASSOCIATED; |
| 985 | ath_unregister_led(&sc->tx_led); |
| 986 | ath_unregister_led(&sc->rx_led); |
| 987 | ath_unregister_led(&sc->radio_led); |
| 988 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); |
| 989 | } |
| 990 | |
| 991 | static void ath_init_leds(struct ath_softc *sc) |
| 992 | { |
| 993 | char *trigger; |
| 994 | int ret; |
| 995 | |
| 996 | /* Configure gpio 1 for output */ |
| 997 | ath9k_hw_cfg_output(sc->sc_ah, ATH_LED_PIN, |
| 998 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
| 999 | /* LED off, active low */ |
| 1000 | ath9k_hw_set_gpio(sc->sc_ah, ATH_LED_PIN, 1); |
| 1001 | |
| 1002 | trigger = ieee80211_get_radio_led_name(sc->hw); |
| 1003 | snprintf(sc->radio_led.name, sizeof(sc->radio_led.name), |
| 1004 | "ath9k-%s:radio", wiphy_name(sc->hw->wiphy)); |
| 1005 | ret = ath_register_led(sc, &sc->radio_led, trigger); |
| 1006 | sc->radio_led.led_type = ATH_LED_RADIO; |
| 1007 | if (ret) |
| 1008 | goto fail; |
| 1009 | |
| 1010 | trigger = ieee80211_get_assoc_led_name(sc->hw); |
| 1011 | snprintf(sc->assoc_led.name, sizeof(sc->assoc_led.name), |
| 1012 | "ath9k-%s:assoc", wiphy_name(sc->hw->wiphy)); |
| 1013 | ret = ath_register_led(sc, &sc->assoc_led, trigger); |
| 1014 | sc->assoc_led.led_type = ATH_LED_ASSOC; |
| 1015 | if (ret) |
| 1016 | goto fail; |
| 1017 | |
| 1018 | trigger = ieee80211_get_tx_led_name(sc->hw); |
| 1019 | snprintf(sc->tx_led.name, sizeof(sc->tx_led.name), |
| 1020 | "ath9k-%s:tx", wiphy_name(sc->hw->wiphy)); |
| 1021 | ret = ath_register_led(sc, &sc->tx_led, trigger); |
| 1022 | sc->tx_led.led_type = ATH_LED_TX; |
| 1023 | if (ret) |
| 1024 | goto fail; |
| 1025 | |
| 1026 | trigger = ieee80211_get_rx_led_name(sc->hw); |
| 1027 | snprintf(sc->rx_led.name, sizeof(sc->rx_led.name), |
| 1028 | "ath9k-%s:rx", wiphy_name(sc->hw->wiphy)); |
| 1029 | ret = ath_register_led(sc, &sc->rx_led, trigger); |
| 1030 | sc->rx_led.led_type = ATH_LED_RX; |
| 1031 | if (ret) |
| 1032 | goto fail; |
| 1033 | |
| 1034 | return; |
| 1035 | |
| 1036 | fail: |
| 1037 | ath_deinit_leds(sc); |
| 1038 | } |
| 1039 | |
Senthil Balasubramanian | e97275c | 2008-11-13 18:00:02 +0530 | [diff] [blame] | 1040 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1041 | |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1042 | /*******************/ |
| 1043 | /* Rfkill */ |
| 1044 | /*******************/ |
| 1045 | |
| 1046 | static void ath_radio_enable(struct ath_softc *sc) |
| 1047 | { |
| 1048 | struct ath_hal *ah = sc->sc_ah; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1049 | struct ieee80211_channel *channel = sc->hw->conf.channel; |
| 1050 | int r; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1051 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1052 | ath9k_ps_wakeup(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1053 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1054 | |
| 1055 | r = ath9k_hw_reset(ah, ah->ah_curchan, false); |
| 1056 | |
| 1057 | if (r) { |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1058 | DPRINTF(sc, ATH_DBG_FATAL, |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1059 | "Unable to reset channel %u (%uMhz) ", |
| 1060 | "reset status %u\n", |
| 1061 | channel->center_freq, r); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1062 | } |
| 1063 | spin_unlock_bh(&sc->sc_resetlock); |
| 1064 | |
| 1065 | ath_update_txpow(sc); |
| 1066 | if (ath_startrecv(sc) != 0) { |
| 1067 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1068 | "Unable to restart recv logic\n"); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1069 | return; |
| 1070 | } |
| 1071 | |
| 1072 | if (sc->sc_flags & SC_OP_BEACONS) |
| 1073 | ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */ |
| 1074 | |
| 1075 | /* Re-Enable interrupts */ |
| 1076 | ath9k_hw_set_interrupts(ah, sc->sc_imask); |
| 1077 | |
| 1078 | /* Enable LED */ |
| 1079 | ath9k_hw_cfg_output(ah, ATH_LED_PIN, |
| 1080 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
| 1081 | ath9k_hw_set_gpio(ah, ATH_LED_PIN, 0); |
| 1082 | |
| 1083 | ieee80211_wake_queues(sc->hw); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1084 | ath9k_ps_restore(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | static void ath_radio_disable(struct ath_softc *sc) |
| 1088 | { |
| 1089 | struct ath_hal *ah = sc->sc_ah; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1090 | struct ieee80211_channel *channel = sc->hw->conf.channel; |
| 1091 | int r; |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1092 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1093 | ath9k_ps_wakeup(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1094 | ieee80211_stop_queues(sc->hw); |
| 1095 | |
| 1096 | /* Disable LED */ |
| 1097 | ath9k_hw_set_gpio(ah, ATH_LED_PIN, 1); |
| 1098 | ath9k_hw_cfg_gpio_input(ah, ATH_LED_PIN); |
| 1099 | |
| 1100 | /* Disable interrupts */ |
| 1101 | ath9k_hw_set_interrupts(ah, 0); |
| 1102 | |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 1103 | ath_drain_all_txq(sc, false); /* clear pending tx frames */ |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1104 | ath_stoprecv(sc); /* turn off frame recv */ |
| 1105 | ath_flushrecv(sc); /* flush recv queue */ |
| 1106 | |
| 1107 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1108 | r = ath9k_hw_reset(ah, ah->ah_curchan, false); |
| 1109 | if (r) { |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1110 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1111 | "Unable to reset channel %u (%uMhz) " |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1112 | "reset status %u\n", |
| 1113 | channel->center_freq, r); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1114 | } |
| 1115 | spin_unlock_bh(&sc->sc_resetlock); |
| 1116 | |
| 1117 | ath9k_hw_phy_disable(ah); |
| 1118 | ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1119 | ath9k_ps_restore(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1120 | } |
| 1121 | |
| 1122 | static bool ath_is_rfkill_set(struct ath_softc *sc) |
| 1123 | { |
| 1124 | struct ath_hal *ah = sc->sc_ah; |
| 1125 | |
| 1126 | return ath9k_hw_gpio_get(ah, ah->ah_rfkill_gpio) == |
| 1127 | ah->ah_rfkill_polarity; |
| 1128 | } |
| 1129 | |
| 1130 | /* h/w rfkill poll function */ |
| 1131 | static void ath_rfkill_poll(struct work_struct *work) |
| 1132 | { |
| 1133 | struct ath_softc *sc = container_of(work, struct ath_softc, |
| 1134 | rf_kill.rfkill_poll.work); |
| 1135 | bool radio_on; |
| 1136 | |
| 1137 | if (sc->sc_flags & SC_OP_INVALID) |
| 1138 | return; |
| 1139 | |
| 1140 | radio_on = !ath_is_rfkill_set(sc); |
| 1141 | |
| 1142 | /* |
| 1143 | * enable/disable radio only when there is a |
| 1144 | * state change in RF switch |
| 1145 | */ |
| 1146 | if (radio_on == !!(sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED)) { |
| 1147 | enum rfkill_state state; |
| 1148 | |
| 1149 | if (sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED) { |
| 1150 | state = radio_on ? RFKILL_STATE_SOFT_BLOCKED |
| 1151 | : RFKILL_STATE_HARD_BLOCKED; |
| 1152 | } else if (radio_on) { |
| 1153 | ath_radio_enable(sc); |
| 1154 | state = RFKILL_STATE_UNBLOCKED; |
| 1155 | } else { |
| 1156 | ath_radio_disable(sc); |
| 1157 | state = RFKILL_STATE_HARD_BLOCKED; |
| 1158 | } |
| 1159 | |
| 1160 | if (state == RFKILL_STATE_HARD_BLOCKED) |
| 1161 | sc->sc_flags |= SC_OP_RFKILL_HW_BLOCKED; |
| 1162 | else |
| 1163 | sc->sc_flags &= ~SC_OP_RFKILL_HW_BLOCKED; |
| 1164 | |
| 1165 | rfkill_force_state(sc->rf_kill.rfkill, state); |
| 1166 | } |
| 1167 | |
| 1168 | queue_delayed_work(sc->hw->workqueue, &sc->rf_kill.rfkill_poll, |
| 1169 | msecs_to_jiffies(ATH_RFKILL_POLL_INTERVAL)); |
| 1170 | } |
| 1171 | |
| 1172 | /* s/w rfkill handler */ |
| 1173 | static int ath_sw_toggle_radio(void *data, enum rfkill_state state) |
| 1174 | { |
| 1175 | struct ath_softc *sc = data; |
| 1176 | |
| 1177 | switch (state) { |
| 1178 | case RFKILL_STATE_SOFT_BLOCKED: |
| 1179 | if (!(sc->sc_flags & (SC_OP_RFKILL_HW_BLOCKED | |
| 1180 | SC_OP_RFKILL_SW_BLOCKED))) |
| 1181 | ath_radio_disable(sc); |
| 1182 | sc->sc_flags |= SC_OP_RFKILL_SW_BLOCKED; |
| 1183 | return 0; |
| 1184 | case RFKILL_STATE_UNBLOCKED: |
| 1185 | if ((sc->sc_flags & SC_OP_RFKILL_SW_BLOCKED)) { |
| 1186 | sc->sc_flags &= ~SC_OP_RFKILL_SW_BLOCKED; |
| 1187 | if (sc->sc_flags & SC_OP_RFKILL_HW_BLOCKED) { |
| 1188 | DPRINTF(sc, ATH_DBG_FATAL, "Can't turn on the" |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1189 | "radio as it is disabled by h/w\n"); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1190 | return -EPERM; |
| 1191 | } |
| 1192 | ath_radio_enable(sc); |
| 1193 | } |
| 1194 | return 0; |
| 1195 | default: |
| 1196 | return -EINVAL; |
| 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | /* Init s/w rfkill */ |
| 1201 | static int ath_init_sw_rfkill(struct ath_softc *sc) |
| 1202 | { |
| 1203 | sc->rf_kill.rfkill = rfkill_allocate(wiphy_dev(sc->hw->wiphy), |
| 1204 | RFKILL_TYPE_WLAN); |
| 1205 | if (!sc->rf_kill.rfkill) { |
| 1206 | DPRINTF(sc, ATH_DBG_FATAL, "Failed to allocate rfkill\n"); |
| 1207 | return -ENOMEM; |
| 1208 | } |
| 1209 | |
| 1210 | snprintf(sc->rf_kill.rfkill_name, sizeof(sc->rf_kill.rfkill_name), |
| 1211 | "ath9k-%s:rfkill", wiphy_name(sc->hw->wiphy)); |
| 1212 | sc->rf_kill.rfkill->name = sc->rf_kill.rfkill_name; |
| 1213 | sc->rf_kill.rfkill->data = sc; |
| 1214 | sc->rf_kill.rfkill->toggle_radio = ath_sw_toggle_radio; |
| 1215 | sc->rf_kill.rfkill->state = RFKILL_STATE_UNBLOCKED; |
| 1216 | sc->rf_kill.rfkill->user_claim_unsupported = 1; |
| 1217 | |
| 1218 | return 0; |
| 1219 | } |
| 1220 | |
| 1221 | /* Deinitialize rfkill */ |
| 1222 | static void ath_deinit_rfkill(struct ath_softc *sc) |
| 1223 | { |
| 1224 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
| 1225 | cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll); |
| 1226 | |
| 1227 | if (sc->sc_flags & SC_OP_RFKILL_REGISTERED) { |
| 1228 | rfkill_unregister(sc->rf_kill.rfkill); |
| 1229 | sc->sc_flags &= ~SC_OP_RFKILL_REGISTERED; |
| 1230 | sc->rf_kill.rfkill = NULL; |
| 1231 | } |
| 1232 | } |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1233 | |
| 1234 | static int ath_start_rfkill_poll(struct ath_softc *sc) |
| 1235 | { |
| 1236 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
| 1237 | queue_delayed_work(sc->hw->workqueue, |
| 1238 | &sc->rf_kill.rfkill_poll, 0); |
| 1239 | |
| 1240 | if (!(sc->sc_flags & SC_OP_RFKILL_REGISTERED)) { |
| 1241 | if (rfkill_register(sc->rf_kill.rfkill)) { |
| 1242 | DPRINTF(sc, ATH_DBG_FATAL, |
| 1243 | "Unable to register rfkill\n"); |
| 1244 | rfkill_free(sc->rf_kill.rfkill); |
| 1245 | |
| 1246 | /* Deinitialize the device */ |
Gabor Juhos | 39c3c2f | 2009-01-14 20:17:05 +0100 | [diff] [blame] | 1247 | ath_cleanup(sc); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1248 | return -EIO; |
| 1249 | } else { |
| 1250 | sc->sc_flags |= SC_OP_RFKILL_REGISTERED; |
| 1251 | } |
| 1252 | } |
| 1253 | |
| 1254 | return 0; |
| 1255 | } |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1256 | #endif /* CONFIG_RFKILL */ |
| 1257 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 1258 | void ath_cleanup(struct ath_softc *sc) |
Gabor Juhos | 39c3c2f | 2009-01-14 20:17:05 +0100 | [diff] [blame] | 1259 | { |
| 1260 | ath_detach(sc); |
| 1261 | free_irq(sc->irq, sc); |
| 1262 | ath_bus_cleanup(sc); |
| 1263 | ieee80211_free_hw(sc->hw); |
| 1264 | } |
| 1265 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 1266 | void ath_detach(struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1267 | { |
| 1268 | struct ieee80211_hw *hw = sc->hw; |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1269 | int i = 0; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1270 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1271 | ath9k_ps_wakeup(sc); |
| 1272 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1273 | DPRINTF(sc, ATH_DBG_CONFIG, "Detach ATH hw\n"); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1274 | |
Senthil Balasubramanian | e97275c | 2008-11-13 18:00:02 +0530 | [diff] [blame] | 1275 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1276 | ath_deinit_rfkill(sc); |
| 1277 | #endif |
Vasanthakumar Thiagarajan | 3fcdfb4 | 2008-11-18 01:19:56 +0530 | [diff] [blame] | 1278 | ath_deinit_leds(sc); |
| 1279 | |
| 1280 | ieee80211_unregister_hw(hw); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1281 | ath_rx_cleanup(sc); |
| 1282 | ath_tx_cleanup(sc); |
| 1283 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1284 | tasklet_kill(&sc->intr_tq); |
| 1285 | tasklet_kill(&sc->bcon_tasklet); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1286 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1287 | if (!(sc->sc_flags & SC_OP_INVALID)) |
| 1288 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1289 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1290 | /* cleanup tx queues */ |
| 1291 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1292 | if (ATH_TXQ_SETUP(sc, i)) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1293 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1294 | |
| 1295 | ath9k_hw_detach(sc->sc_ah); |
Sujith | 826d268 | 2008-11-28 22:20:23 +0530 | [diff] [blame] | 1296 | ath9k_exit_debug(sc); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1297 | ath9k_ps_restore(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1298 | } |
| 1299 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1300 | static int ath_init(u16 devid, struct ath_softc *sc) |
| 1301 | { |
| 1302 | struct ath_hal *ah = NULL; |
| 1303 | int status; |
| 1304 | int error = 0, i; |
| 1305 | int csz = 0; |
| 1306 | |
| 1307 | /* XXX: hardware will not be ready until ath_open() being called */ |
| 1308 | sc->sc_flags |= SC_OP_INVALID; |
Sujith | 88b126a | 2008-11-28 22:19:02 +0530 | [diff] [blame] | 1309 | |
Sujith | 826d268 | 2008-11-28 22:20:23 +0530 | [diff] [blame] | 1310 | if (ath9k_init_debug(sc) < 0) |
| 1311 | printk(KERN_ERR "Unable to create debugfs files\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1312 | |
| 1313 | spin_lock_init(&sc->sc_resetlock); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 1314 | mutex_init(&sc->mutex); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1315 | tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc); |
| 1316 | tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet, |
| 1317 | (unsigned long)sc); |
| 1318 | |
| 1319 | /* |
| 1320 | * Cache line size is used to size and align various |
| 1321 | * structures used to communicate with the hardware. |
| 1322 | */ |
Gabor Juhos | 88d1570 | 2009-01-14 20:17:04 +0100 | [diff] [blame] | 1323 | ath_read_cachesize(sc, &csz); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1324 | /* XXX assert csz is non-zero */ |
| 1325 | sc->sc_cachelsz = csz << 2; /* convert to bytes */ |
| 1326 | |
| 1327 | ah = ath9k_hw_attach(devid, sc, sc->mem, &status); |
| 1328 | if (ah == NULL) { |
| 1329 | DPRINTF(sc, ATH_DBG_FATAL, |
Gabor Juhos | 295834f | 2008-12-29 21:07:42 +0100 | [diff] [blame] | 1330 | "Unable to attach hardware; HAL status %d\n", status); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1331 | error = -ENXIO; |
| 1332 | goto bad; |
| 1333 | } |
| 1334 | sc->sc_ah = ah; |
| 1335 | |
| 1336 | /* Get the hardware key cache size. */ |
| 1337 | sc->sc_keymax = ah->ah_caps.keycache_size; |
| 1338 | if (sc->sc_keymax > ATH_KEYMAX) { |
| 1339 | DPRINTF(sc, ATH_DBG_KEYCACHE, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1340 | "Warning, using only %u entries in %u key cache\n", |
| 1341 | ATH_KEYMAX, sc->sc_keymax); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1342 | sc->sc_keymax = ATH_KEYMAX; |
| 1343 | } |
| 1344 | |
| 1345 | /* |
| 1346 | * Reset the key cache since some parts do not |
| 1347 | * reset the contents on initial power up. |
| 1348 | */ |
| 1349 | for (i = 0; i < sc->sc_keymax; i++) |
| 1350 | ath9k_hw_keyreset(ah, (u16) i); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1351 | |
| 1352 | /* Collect the channel list using the default country code */ |
| 1353 | |
| 1354 | error = ath_setup_channels(sc); |
| 1355 | if (error) |
| 1356 | goto bad; |
| 1357 | |
| 1358 | /* default to MONITOR mode */ |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 1359 | sc->sc_ah->ah_opmode = NL80211_IFTYPE_MONITOR; |
| 1360 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1361 | |
| 1362 | /* Setup rate tables */ |
| 1363 | |
| 1364 | ath_rate_attach(sc); |
| 1365 | ath_setup_rates(sc, IEEE80211_BAND_2GHZ); |
| 1366 | ath_setup_rates(sc, IEEE80211_BAND_5GHZ); |
| 1367 | |
| 1368 | /* |
| 1369 | * Allocate hardware transmit queues: one queue for |
| 1370 | * beacon frames and one data queue for each QoS |
| 1371 | * priority. Note that the hal handles reseting |
| 1372 | * these queues at the needed time. |
| 1373 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1374 | sc->beacon.beaconq = ath_beaconq_setup(ah); |
| 1375 | if (sc->beacon.beaconq == -1) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1376 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1377 | "Unable to setup a beacon xmit queue\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1378 | error = -EIO; |
| 1379 | goto bad2; |
| 1380 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1381 | sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); |
| 1382 | if (sc->beacon.cabq == NULL) { |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1383 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1384 | "Unable to setup CAB xmit queue\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1385 | error = -EIO; |
| 1386 | goto bad2; |
| 1387 | } |
| 1388 | |
| 1389 | sc->sc_config.cabqReadytime = ATH_CABQ_READY_TIME; |
| 1390 | ath_cabq_update(sc); |
| 1391 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1392 | for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++) |
| 1393 | sc->tx.hwq_map[i] = -1; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1394 | |
| 1395 | /* Setup data queues */ |
| 1396 | /* NB: ensure BK queue is the lowest priority h/w queue */ |
| 1397 | if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) { |
| 1398 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1399 | "Unable to setup xmit queue for BK traffic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1400 | error = -EIO; |
| 1401 | goto bad2; |
| 1402 | } |
| 1403 | |
| 1404 | if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) { |
| 1405 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1406 | "Unable to setup xmit queue for BE traffic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1407 | error = -EIO; |
| 1408 | goto bad2; |
| 1409 | } |
| 1410 | if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) { |
| 1411 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1412 | "Unable to setup xmit queue for VI traffic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1413 | error = -EIO; |
| 1414 | goto bad2; |
| 1415 | } |
| 1416 | if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) { |
| 1417 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1418 | "Unable to setup xmit queue for VO traffic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1419 | error = -EIO; |
| 1420 | goto bad2; |
| 1421 | } |
| 1422 | |
| 1423 | /* Initializes the noise floor to a reasonable default value. |
| 1424 | * Later on this will be updated during ANI processing. */ |
| 1425 | |
| 1426 | sc->sc_ani.sc_noise_floor = ATH_DEFAULT_NOISE_FLOOR; |
| 1427 | setup_timer(&sc->sc_ani.timer, ath_ani_calibrate, (unsigned long)sc); |
| 1428 | |
| 1429 | if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1430 | ATH9K_CIPHER_TKIP, NULL)) { |
| 1431 | /* |
| 1432 | * Whether we should enable h/w TKIP MIC. |
| 1433 | * XXX: if we don't support WME TKIP MIC, then we wouldn't |
| 1434 | * report WMM capable, so it's always safe to turn on |
| 1435 | * TKIP MIC in this case. |
| 1436 | */ |
| 1437 | ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC, |
| 1438 | 0, 1, NULL); |
| 1439 | } |
| 1440 | |
| 1441 | /* |
| 1442 | * Check whether the separate key cache entries |
| 1443 | * are required to handle both tx+rx MIC keys. |
| 1444 | * With split mic keys the number of stations is limited |
| 1445 | * to 27 otherwise 59. |
| 1446 | */ |
| 1447 | if (ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1448 | ATH9K_CIPHER_TKIP, NULL) |
| 1449 | && ath9k_hw_getcapability(ah, ATH9K_CAP_CIPHER, |
| 1450 | ATH9K_CIPHER_MIC, NULL) |
| 1451 | && ath9k_hw_getcapability(ah, ATH9K_CAP_TKIP_SPLIT, |
| 1452 | 0, NULL)) |
| 1453 | sc->sc_splitmic = 1; |
| 1454 | |
| 1455 | /* turn on mcast key search if possible */ |
| 1456 | if (!ath9k_hw_getcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL)) |
| 1457 | (void)ath9k_hw_setcapability(ah, ATH9K_CAP_MCAST_KEYSRCH, 1, |
| 1458 | 1, NULL); |
| 1459 | |
| 1460 | sc->sc_config.txpowlimit = ATH_TXPOWER_MAX; |
| 1461 | sc->sc_config.txpowlimit_override = 0; |
| 1462 | |
| 1463 | /* 11n Capabilities */ |
| 1464 | if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) { |
| 1465 | sc->sc_flags |= SC_OP_TXAGGR; |
| 1466 | sc->sc_flags |= SC_OP_RXAGGR; |
| 1467 | } |
| 1468 | |
| 1469 | sc->sc_tx_chainmask = ah->ah_caps.tx_chainmask; |
| 1470 | sc->sc_rx_chainmask = ah->ah_caps.rx_chainmask; |
| 1471 | |
| 1472 | ath9k_hw_setcapability(ah, ATH9K_CAP_DIVERSITY, 1, true, NULL); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1473 | sc->rx.defant = ath9k_hw_getdefantenna(ah); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1474 | |
| 1475 | ath9k_hw_getmac(ah, sc->sc_myaddr); |
| 1476 | if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) { |
| 1477 | ath9k_hw_getbssidmask(ah, sc->sc_bssidmask); |
| 1478 | ATH_SET_VAP_BSSID_MASK(sc->sc_bssidmask); |
| 1479 | ath9k_hw_setbssidmask(ah, sc->sc_bssidmask); |
| 1480 | } |
| 1481 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1482 | sc->beacon.slottime = ATH9K_SLOT_TIME_9; /* default to short slot time */ |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1483 | |
| 1484 | /* initialize beacon slots */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1485 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) |
| 1486 | sc->beacon.bslot[i] = ATH_IF_ID_ANY; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1487 | |
| 1488 | /* save MISC configurations */ |
| 1489 | sc->sc_config.swBeaconProcess = 1; |
| 1490 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1491 | /* setup channels and rates */ |
| 1492 | |
| 1493 | sc->sbands[IEEE80211_BAND_2GHZ].channels = |
| 1494 | sc->channels[IEEE80211_BAND_2GHZ]; |
| 1495 | sc->sbands[IEEE80211_BAND_2GHZ].bitrates = |
| 1496 | sc->rates[IEEE80211_BAND_2GHZ]; |
| 1497 | sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; |
| 1498 | |
| 1499 | if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) { |
| 1500 | sc->sbands[IEEE80211_BAND_5GHZ].channels = |
| 1501 | sc->channels[IEEE80211_BAND_5GHZ]; |
| 1502 | sc->sbands[IEEE80211_BAND_5GHZ].bitrates = |
| 1503 | sc->rates[IEEE80211_BAND_5GHZ]; |
| 1504 | sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; |
| 1505 | } |
| 1506 | |
Vasanthakumar Thiagarajan | c97c92d | 2009-01-02 15:35:46 +0530 | [diff] [blame] | 1507 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_BT_COEX) |
| 1508 | ath9k_hw_btcoex_enable(sc->sc_ah); |
| 1509 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1510 | return 0; |
| 1511 | bad2: |
| 1512 | /* cleanup tx queues */ |
| 1513 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1514 | if (ATH_TXQ_SETUP(sc, i)) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1515 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1516 | bad: |
| 1517 | if (ah) |
| 1518 | ath9k_hw_detach(ah); |
| 1519 | |
| 1520 | return error; |
| 1521 | } |
| 1522 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 1523 | int ath_attach(u16 devid, struct ath_softc *sc) |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1524 | { |
| 1525 | struct ieee80211_hw *hw = sc->hw; |
| 1526 | int error = 0; |
| 1527 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1528 | DPRINTF(sc, ATH_DBG_CONFIG, "Attach ATH hw\n"); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1529 | |
| 1530 | error = ath_init(devid, sc); |
| 1531 | if (error != 0) |
| 1532 | return error; |
| 1533 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1534 | /* get mac address from hardware and set in mac80211 */ |
| 1535 | |
| 1536 | SET_IEEE80211_PERM_ADDR(hw, sc->sc_myaddr); |
| 1537 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1538 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 1539 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 1540 | IEEE80211_HW_SIGNAL_DBM | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1541 | IEEE80211_HW_AMPDU_AGGREGATION | |
| 1542 | IEEE80211_HW_SUPPORTS_PS | |
| 1543 | IEEE80211_HW_PS_NULLFUNC_STACK; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1544 | |
Jouni Malinen | 0ced0e1 | 2009-01-08 13:32:13 +0200 | [diff] [blame] | 1545 | if (AR_SREV_9160_10_OR_LATER(sc->sc_ah)) |
| 1546 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 1547 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1548 | hw->wiphy->interface_modes = |
| 1549 | BIT(NL80211_IFTYPE_AP) | |
| 1550 | BIT(NL80211_IFTYPE_STATION) | |
| 1551 | BIT(NL80211_IFTYPE_ADHOC); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1552 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1553 | hw->queues = 4; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 1554 | hw->max_rates = 4; |
| 1555 | hw->max_rate_tries = ATH_11N_TXMAXTRY; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1556 | hw->sta_data_size = sizeof(struct ath_node); |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 1557 | hw->vif_data_size = sizeof(struct ath_vap); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1558 | |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1559 | hw->rate_control_algorithm = "ath9k_rate_control"; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1560 | |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1561 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) { |
| 1562 | setup_ht_cap(&sc->sbands[IEEE80211_BAND_2GHZ].ht_cap); |
| 1563 | if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) |
| 1564 | setup_ht_cap(&sc->sbands[IEEE80211_BAND_5GHZ].ht_cap); |
| 1565 | } |
| 1566 | |
| 1567 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 1568 | if (test_bit(ATH9K_MODE_11A, sc->sc_ah->ah_caps.wireless_modes)) |
| 1569 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 1570 | &sc->sbands[IEEE80211_BAND_5GHZ]; |
| 1571 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1572 | /* initialize tx/rx engine */ |
| 1573 | error = ath_tx_init(sc, ATH_TXBUF); |
| 1574 | if (error != 0) |
| 1575 | goto detach; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1576 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1577 | error = ath_rx_init(sc, ATH_RXBUF); |
| 1578 | if (error != 0) |
| 1579 | goto detach; |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1580 | |
Senthil Balasubramanian | e97275c | 2008-11-13 18:00:02 +0530 | [diff] [blame] | 1581 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1582 | /* Initialze h/w Rfkill */ |
| 1583 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
| 1584 | INIT_DELAYED_WORK(&sc->rf_kill.rfkill_poll, ath_rfkill_poll); |
| 1585 | |
| 1586 | /* Initialize s/w rfkill */ |
| 1587 | if (ath_init_sw_rfkill(sc)) |
| 1588 | goto detach; |
| 1589 | #endif |
| 1590 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1591 | error = ieee80211_register_hw(hw); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1592 | |
Senthil Balasubramanian | db93e7b | 2008-11-13 18:01:08 +0530 | [diff] [blame] | 1593 | /* Initialize LED control */ |
| 1594 | ath_init_leds(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1595 | |
| 1596 | return 0; |
| 1597 | detach: |
| 1598 | ath_detach(sc); |
Vasanthakumar Thiagarajan | 8feceb6 | 2008-09-10 18:49:27 +0530 | [diff] [blame] | 1599 | return error; |
| 1600 | } |
| 1601 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1602 | int ath_reset(struct ath_softc *sc, bool retry_tx) |
| 1603 | { |
| 1604 | struct ath_hal *ah = sc->sc_ah; |
Luis R. Rodriguez | 030bb49 | 2008-12-23 15:58:37 -0800 | [diff] [blame] | 1605 | struct ieee80211_hw *hw = sc->hw; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1606 | int r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1607 | |
| 1608 | ath9k_hw_set_interrupts(ah, 0); |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 1609 | ath_drain_all_txq(sc, retry_tx); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1610 | ath_stoprecv(sc); |
| 1611 | ath_flushrecv(sc); |
| 1612 | |
| 1613 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1614 | r = ath9k_hw_reset(ah, sc->sc_ah->ah_curchan, false); |
| 1615 | if (r) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1616 | DPRINTF(sc, ATH_DBG_FATAL, |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1617 | "Unable to reset hardware; reset status %u\n", r); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1618 | spin_unlock_bh(&sc->sc_resetlock); |
| 1619 | |
| 1620 | if (ath_startrecv(sc) != 0) |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1621 | DPRINTF(sc, ATH_DBG_FATAL, "Unable to start recv logic\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1622 | |
| 1623 | /* |
| 1624 | * We may be doing a reset in response to a request |
| 1625 | * that changes the channel so update any state that |
| 1626 | * might change as a result. |
| 1627 | */ |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 1628 | ath_cache_conf_rate(sc, &hw->conf); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1629 | |
| 1630 | ath_update_txpow(sc); |
| 1631 | |
| 1632 | if (sc->sc_flags & SC_OP_BEACONS) |
| 1633 | ath_beacon_config(sc, ATH_IF_ID_ANY); /* restart beacons */ |
| 1634 | |
| 1635 | ath9k_hw_set_interrupts(ah, sc->sc_imask); |
| 1636 | |
| 1637 | if (retry_tx) { |
| 1638 | int i; |
| 1639 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 1640 | if (ATH_TXQ_SETUP(sc, i)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1641 | spin_lock_bh(&sc->tx.txq[i].axq_lock); |
| 1642 | ath_txq_schedule(sc, &sc->tx.txq[i]); |
| 1643 | spin_unlock_bh(&sc->tx.txq[i].axq_lock); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1644 | } |
| 1645 | } |
| 1646 | } |
| 1647 | |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1648 | return r; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | /* |
| 1652 | * This function will allocate both the DMA descriptor structure, and the |
| 1653 | * buffers it contains. These are used to contain the descriptors used |
| 1654 | * by the system. |
| 1655 | */ |
| 1656 | int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd, |
| 1657 | struct list_head *head, const char *name, |
| 1658 | int nbuf, int ndesc) |
| 1659 | { |
| 1660 | #define DS2PHYS(_dd, _ds) \ |
| 1661 | ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc)) |
| 1662 | #define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0) |
| 1663 | #define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096) |
| 1664 | |
| 1665 | struct ath_desc *ds; |
| 1666 | struct ath_buf *bf; |
| 1667 | int i, bsize, error; |
| 1668 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1669 | DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n", |
| 1670 | name, nbuf, ndesc); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1671 | |
| 1672 | /* ath_desc must be a multiple of DWORDs */ |
| 1673 | if ((sizeof(struct ath_desc) % 4) != 0) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1674 | DPRINTF(sc, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1675 | ASSERT((sizeof(struct ath_desc) % 4) == 0); |
| 1676 | error = -ENOMEM; |
| 1677 | goto fail; |
| 1678 | } |
| 1679 | |
| 1680 | dd->dd_name = name; |
| 1681 | dd->dd_desc_len = sizeof(struct ath_desc) * nbuf * ndesc; |
| 1682 | |
| 1683 | /* |
| 1684 | * Need additional DMA memory because we can't use |
| 1685 | * descriptors that cross the 4K page boundary. Assume |
| 1686 | * one skipped descriptor per 4K page. |
| 1687 | */ |
| 1688 | if (!(sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 1689 | u32 ndesc_skipped = |
| 1690 | ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len); |
| 1691 | u32 dma_len; |
| 1692 | |
| 1693 | while (ndesc_skipped) { |
| 1694 | dma_len = ndesc_skipped * sizeof(struct ath_desc); |
| 1695 | dd->dd_desc_len += dma_len; |
| 1696 | |
| 1697 | ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len); |
| 1698 | }; |
| 1699 | } |
| 1700 | |
| 1701 | /* allocate descriptors */ |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1702 | dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len, |
| 1703 | &dd->dd_desc_paddr, GFP_ATOMIC); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1704 | if (dd->dd_desc == NULL) { |
| 1705 | error = -ENOMEM; |
| 1706 | goto fail; |
| 1707 | } |
| 1708 | ds = dd->dd_desc; |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1709 | DPRINTF(sc, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", |
| 1710 | dd->dd_name, ds, (u32) dd->dd_desc_len, |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1711 | ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); |
| 1712 | |
| 1713 | /* allocate buffers */ |
| 1714 | bsize = sizeof(struct ath_buf) * nbuf; |
| 1715 | bf = kmalloc(bsize, GFP_KERNEL); |
| 1716 | if (bf == NULL) { |
| 1717 | error = -ENOMEM; |
| 1718 | goto fail2; |
| 1719 | } |
| 1720 | memset(bf, 0, bsize); |
| 1721 | dd->dd_bufptr = bf; |
| 1722 | |
| 1723 | INIT_LIST_HEAD(head); |
| 1724 | for (i = 0; i < nbuf; i++, bf++, ds += ndesc) { |
| 1725 | bf->bf_desc = ds; |
| 1726 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 1727 | |
| 1728 | if (!(sc->sc_ah->ah_caps.hw_caps & |
| 1729 | ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 1730 | /* |
| 1731 | * Skip descriptor addresses which can cause 4KB |
| 1732 | * boundary crossing (addr + length) with a 32 dword |
| 1733 | * descriptor fetch. |
| 1734 | */ |
| 1735 | while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { |
| 1736 | ASSERT((caddr_t) bf->bf_desc < |
| 1737 | ((caddr_t) dd->dd_desc + |
| 1738 | dd->dd_desc_len)); |
| 1739 | |
| 1740 | ds += ndesc; |
| 1741 | bf->bf_desc = ds; |
| 1742 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 1743 | } |
| 1744 | } |
| 1745 | list_add_tail(&bf->list, head); |
| 1746 | } |
| 1747 | return 0; |
| 1748 | fail2: |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1749 | dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, |
| 1750 | dd->dd_desc_paddr); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1751 | fail: |
| 1752 | memset(dd, 0, sizeof(*dd)); |
| 1753 | return error; |
| 1754 | #undef ATH_DESC_4KB_BOUND_CHECK |
| 1755 | #undef ATH_DESC_4KB_BOUND_NUM_SKIPPED |
| 1756 | #undef DS2PHYS |
| 1757 | } |
| 1758 | |
| 1759 | void ath_descdma_cleanup(struct ath_softc *sc, |
| 1760 | struct ath_descdma *dd, |
| 1761 | struct list_head *head) |
| 1762 | { |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1763 | dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, |
| 1764 | dd->dd_desc_paddr); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1765 | |
| 1766 | INIT_LIST_HEAD(head); |
| 1767 | kfree(dd->dd_bufptr); |
| 1768 | memset(dd, 0, sizeof(*dd)); |
| 1769 | } |
| 1770 | |
| 1771 | int ath_get_hal_qnum(u16 queue, struct ath_softc *sc) |
| 1772 | { |
| 1773 | int qnum; |
| 1774 | |
| 1775 | switch (queue) { |
| 1776 | case 0: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1777 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_VO]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1778 | break; |
| 1779 | case 1: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1780 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_VI]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1781 | break; |
| 1782 | case 2: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1783 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1784 | break; |
| 1785 | case 3: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1786 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BK]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1787 | break; |
| 1788 | default: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1789 | qnum = sc->tx.hwq_map[ATH9K_WME_AC_BE]; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1790 | break; |
| 1791 | } |
| 1792 | |
| 1793 | return qnum; |
| 1794 | } |
| 1795 | |
| 1796 | int ath_get_mac80211_qnum(u32 queue, struct ath_softc *sc) |
| 1797 | { |
| 1798 | int qnum; |
| 1799 | |
| 1800 | switch (queue) { |
| 1801 | case ATH9K_WME_AC_VO: |
| 1802 | qnum = 0; |
| 1803 | break; |
| 1804 | case ATH9K_WME_AC_VI: |
| 1805 | qnum = 1; |
| 1806 | break; |
| 1807 | case ATH9K_WME_AC_BE: |
| 1808 | qnum = 2; |
| 1809 | break; |
| 1810 | case ATH9K_WME_AC_BK: |
| 1811 | qnum = 3; |
| 1812 | break; |
| 1813 | default: |
| 1814 | qnum = -1; |
| 1815 | break; |
| 1816 | } |
| 1817 | |
| 1818 | return qnum; |
| 1819 | } |
| 1820 | |
| 1821 | /**********************/ |
| 1822 | /* mac80211 callbacks */ |
| 1823 | /**********************/ |
| 1824 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1825 | static int ath9k_start(struct ieee80211_hw *hw) |
| 1826 | { |
| 1827 | struct ath_softc *sc = hw->priv; |
| 1828 | struct ieee80211_channel *curchan = hw->conf.channel; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1829 | struct ath9k_channel *init_channel; |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1830 | int r, pos; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1831 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1832 | DPRINTF(sc, ATH_DBG_CONFIG, "Starting driver with " |
| 1833 | "initial channel: %d MHz\n", curchan->center_freq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1834 | |
| 1835 | /* setup initial channel */ |
| 1836 | |
| 1837 | pos = ath_get_channel(sc, curchan); |
| 1838 | if (pos == -1) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1839 | DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", curchan->center_freq); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1840 | return -EINVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1841 | } |
| 1842 | |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 1843 | sc->tx_chan_width = ATH9K_HT_MACMODE_20; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1844 | sc->sc_ah->ah_channels[pos].chanmode = |
| 1845 | (curchan->band == IEEE80211_BAND_2GHZ) ? CHANNEL_G : CHANNEL_A; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1846 | init_channel = &sc->sc_ah->ah_channels[pos]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1847 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1848 | /* Reset SERDES registers */ |
| 1849 | ath9k_hw_configpcipowersave(sc->sc_ah, 0); |
| 1850 | |
| 1851 | /* |
| 1852 | * The basic interface to setting the hardware in a good |
| 1853 | * state is ``reset''. On return the hardware is known to |
| 1854 | * be powered up and with interrupts disabled. This must |
| 1855 | * be followed by initialization of the appropriate bits |
| 1856 | * and then setup of the interrupt mask. |
| 1857 | */ |
| 1858 | spin_lock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1859 | r = ath9k_hw_reset(sc->sc_ah, init_channel, false); |
| 1860 | if (r) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1861 | DPRINTF(sc, ATH_DBG_FATAL, |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1862 | "Unable to reset hardware; reset status %u " |
| 1863 | "(freq %u MHz)\n", r, |
| 1864 | curchan->center_freq); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1865 | spin_unlock_bh(&sc->sc_resetlock); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1866 | return r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1867 | } |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1868 | spin_unlock_bh(&sc->sc_resetlock); |
| 1869 | |
| 1870 | /* |
| 1871 | * This is needed only to setup initial state |
| 1872 | * but it's best done after a reset. |
| 1873 | */ |
| 1874 | ath_update_txpow(sc); |
| 1875 | |
| 1876 | /* |
| 1877 | * Setup the hardware after reset: |
| 1878 | * The receive engine is set going. |
| 1879 | * Frame transmit is handled entirely |
| 1880 | * in the frame output path; there's nothing to do |
| 1881 | * here except setup the interrupt mask. |
| 1882 | */ |
| 1883 | if (ath_startrecv(sc) != 0) { |
| 1884 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1885 | "Unable to start recv logic\n"); |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1886 | return -EIO; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | /* Setup our intr mask. */ |
| 1890 | sc->sc_imask = ATH9K_INT_RX | ATH9K_INT_TX |
| 1891 | | ATH9K_INT_RXEOL | ATH9K_INT_RXORN |
| 1892 | | ATH9K_INT_FATAL | ATH9K_INT_GLOBAL; |
| 1893 | |
| 1894 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_GTT) |
| 1895 | sc->sc_imask |= ATH9K_INT_GTT; |
| 1896 | |
| 1897 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) |
| 1898 | sc->sc_imask |= ATH9K_INT_CST; |
| 1899 | |
| 1900 | /* |
| 1901 | * Enable MIB interrupts when there are hardware phy counters. |
| 1902 | * Note we only do this (at the moment) for station mode. |
| 1903 | */ |
| 1904 | if (ath9k_hw_phycounters(sc->sc_ah) && |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 1905 | ((sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) || |
| 1906 | (sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC))) |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1907 | sc->sc_imask |= ATH9K_INT_MIB; |
| 1908 | /* |
| 1909 | * Some hardware processes the TIM IE and fires an |
| 1910 | * interrupt when the TIM bit is set. For hardware |
| 1911 | * that does, if not overridden by configuration, |
| 1912 | * enable the TIM interrupt when operating as station. |
| 1913 | */ |
| 1914 | if ((sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_ENHANCEDPM) && |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 1915 | (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION) && |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1916 | !sc->sc_config.swBeaconProcess) |
| 1917 | sc->sc_imask |= ATH9K_INT_TIM; |
| 1918 | |
Luis R. Rodriguez | ce111ba | 2008-12-23 15:58:39 -0800 | [diff] [blame] | 1919 | ath_cache_conf_rate(sc, &hw->conf); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1920 | |
| 1921 | sc->sc_flags &= ~SC_OP_INVALID; |
| 1922 | |
| 1923 | /* Disable BMISS interrupt when we're not associated */ |
| 1924 | sc->sc_imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS); |
| 1925 | ath9k_hw_set_interrupts(sc->sc_ah, sc->sc_imask); |
| 1926 | |
| 1927 | ieee80211_wake_queues(sc->hw); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1928 | |
Senthil Balasubramanian | e97275c | 2008-11-13 18:00:02 +0530 | [diff] [blame] | 1929 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1930 | r = ath_start_rfkill_poll(sc); |
Vasanthakumar Thiagarajan | 500c064 | 2008-09-10 18:50:17 +0530 | [diff] [blame] | 1931 | #endif |
Luis R. Rodriguez | ae8d285 | 2008-12-23 15:58:40 -0800 | [diff] [blame] | 1932 | return r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1933 | } |
| 1934 | |
| 1935 | static int ath9k_tx(struct ieee80211_hw *hw, |
| 1936 | struct sk_buff *skb) |
| 1937 | { |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 1938 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1939 | struct ath_softc *sc = hw->priv; |
| 1940 | struct ath_tx_control txctl; |
| 1941 | int hdrlen, padsize; |
| 1942 | |
| 1943 | memset(&txctl, 0, sizeof(struct ath_tx_control)); |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 1944 | |
| 1945 | /* |
| 1946 | * As a temporary workaround, assign seq# here; this will likely need |
| 1947 | * to be cleaned up to work better with Beacon transmission and virtual |
| 1948 | * BSSes. |
| 1949 | */ |
| 1950 | if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
| 1951 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 1952 | if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1953 | sc->tx.seq_no += 0x10; |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 1954 | hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1955 | hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no); |
Jouni Malinen | 147583c | 2008-08-11 14:01:50 +0300 | [diff] [blame] | 1956 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1957 | |
| 1958 | /* Add the padding after the header if this is not already done */ |
| 1959 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 1960 | if (hdrlen & 3) { |
| 1961 | padsize = hdrlen % 4; |
| 1962 | if (skb_headroom(skb) < padsize) |
| 1963 | return -1; |
| 1964 | skb_push(skb, padsize); |
| 1965 | memmove(skb->data, skb->data + padsize, hdrlen); |
| 1966 | } |
| 1967 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1968 | /* Check if a tx queue is available */ |
| 1969 | |
| 1970 | txctl.txq = ath_test_get_txq(sc, skb); |
| 1971 | if (!txctl.txq) |
| 1972 | goto exit; |
| 1973 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1974 | DPRINTF(sc, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1975 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1976 | if (ath_tx_start(sc, skb, &txctl) != 0) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1977 | DPRINTF(sc, ATH_DBG_XMIT, "TX failed\n"); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1978 | goto exit; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1979 | } |
| 1980 | |
| 1981 | return 0; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1982 | exit: |
| 1983 | dev_kfree_skb_any(skb); |
| 1984 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1985 | } |
| 1986 | |
| 1987 | static void ath9k_stop(struct ieee80211_hw *hw) |
| 1988 | { |
| 1989 | struct ath_softc *sc = hw->priv; |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1990 | |
| 1991 | if (sc->sc_flags & SC_OP_INVALID) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1992 | DPRINTF(sc, ATH_DBG_ANY, "Device not present\n"); |
Sujith | 9c84b79 | 2008-10-29 10:17:13 +0530 | [diff] [blame] | 1993 | return; |
| 1994 | } |
| 1995 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1996 | DPRINTF(sc, ATH_DBG_CONFIG, "Cleaning up\n"); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 1997 | |
| 1998 | ieee80211_stop_queues(sc->hw); |
| 1999 | |
| 2000 | /* make sure h/w will not generate any interrupt |
| 2001 | * before setting the invalid flag. */ |
| 2002 | ath9k_hw_set_interrupts(sc->sc_ah, 0); |
| 2003 | |
| 2004 | if (!(sc->sc_flags & SC_OP_INVALID)) { |
Sujith | 043a040 | 2009-01-16 21:38:47 +0530 | [diff] [blame] | 2005 | ath_drain_all_txq(sc, false); |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2006 | ath_stoprecv(sc); |
| 2007 | ath9k_hw_phy_disable(sc->sc_ah); |
| 2008 | } else |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2009 | sc->rx.rxlink = NULL; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 2010 | |
| 2011 | #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) |
| 2012 | if (sc->sc_ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT) |
| 2013 | cancel_delayed_work_sync(&sc->rf_kill.rfkill_poll); |
| 2014 | #endif |
| 2015 | /* disable HAL and put h/w to sleep */ |
| 2016 | ath9k_hw_disable(sc->sc_ah); |
| 2017 | ath9k_hw_configpcipowersave(sc->sc_ah, 1); |
| 2018 | |
| 2019 | sc->sc_flags |= SC_OP_INVALID; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2020 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2021 | DPRINTF(sc, ATH_DBG_CONFIG, "Driver halt\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | static int ath9k_add_interface(struct ieee80211_hw *hw, |
| 2025 | struct ieee80211_if_init_conf *conf) |
| 2026 | { |
| 2027 | struct ath_softc *sc = hw->priv; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2028 | struct ath_vap *avp = (void *)conf->vif->drv_priv; |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2029 | enum nl80211_iftype ic_opmode = NL80211_IFTYPE_UNSPECIFIED; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2030 | |
| 2031 | /* Support only vap for now */ |
| 2032 | |
| 2033 | if (sc->sc_nvaps) |
| 2034 | return -ENOBUFS; |
| 2035 | |
| 2036 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2037 | case NL80211_IFTYPE_STATION: |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2038 | ic_opmode = NL80211_IFTYPE_STATION; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2039 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2040 | case NL80211_IFTYPE_ADHOC: |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2041 | ic_opmode = NL80211_IFTYPE_ADHOC; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2042 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2043 | case NL80211_IFTYPE_AP: |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2044 | ic_opmode = NL80211_IFTYPE_AP; |
Jouni Malinen | 2ad67de | 2008-08-11 14:01:47 +0300 | [diff] [blame] | 2045 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2046 | default: |
| 2047 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2048 | "Interface type %d not yet supported\n", conf->type); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2049 | return -EOPNOTSUPP; |
| 2050 | } |
| 2051 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2052 | DPRINTF(sc, ATH_DBG_CONFIG, "Attach a VAP of type: %d\n", ic_opmode); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2053 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2054 | /* Set the VAP opmode */ |
| 2055 | avp->av_opmode = ic_opmode; |
| 2056 | avp->av_bslot = -1; |
| 2057 | |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2058 | if (ic_opmode == NL80211_IFTYPE_AP) |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2059 | ath9k_hw_set_tsfadjust(sc->sc_ah, 1); |
| 2060 | |
| 2061 | sc->sc_vaps[0] = conf->vif; |
| 2062 | sc->sc_nvaps++; |
| 2063 | |
| 2064 | /* Set the device opmode */ |
| 2065 | sc->sc_ah->ah_opmode = ic_opmode; |
| 2066 | |
Luis R. Rodriguez | 6f25542 | 2008-10-03 15:45:27 -0700 | [diff] [blame] | 2067 | if (conf->type == NL80211_IFTYPE_AP) { |
| 2068 | /* TODO: is this a suitable place to start ANI for AP mode? */ |
| 2069 | /* Start ANI */ |
| 2070 | mod_timer(&sc->sc_ani.timer, |
| 2071 | jiffies + msecs_to_jiffies(ATH_ANI_POLLINTERVAL)); |
| 2072 | } |
| 2073 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2074 | return 0; |
| 2075 | } |
| 2076 | |
| 2077 | static void ath9k_remove_interface(struct ieee80211_hw *hw, |
| 2078 | struct ieee80211_if_init_conf *conf) |
| 2079 | { |
| 2080 | struct ath_softc *sc = hw->priv; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2081 | struct ath_vap *avp = (void *)conf->vif->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2082 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2083 | DPRINTF(sc, ATH_DBG_CONFIG, "Detach Interface\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2084 | |
Luis R. Rodriguez | 6f25542 | 2008-10-03 15:45:27 -0700 | [diff] [blame] | 2085 | /* Stop ANI */ |
| 2086 | del_timer_sync(&sc->sc_ani.timer); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2087 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2088 | /* Reclaim beacon resources */ |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2089 | if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP || |
| 2090 | sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2091 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2092 | ath_beacon_return(sc, avp); |
| 2093 | } |
| 2094 | |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2095 | sc->sc_flags &= ~SC_OP_BEACONS; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2096 | |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2097 | sc->sc_vaps[0] = NULL; |
| 2098 | sc->sc_nvaps--; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2099 | } |
| 2100 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2101 | static int ath9k_config(struct ieee80211_hw *hw, u32 changed) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2102 | { |
| 2103 | struct ath_softc *sc = hw->priv; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2104 | struct ieee80211_conf *conf = &hw->conf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2105 | |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2106 | mutex_lock(&sc->mutex); |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2107 | if (changed & IEEE80211_CONF_CHANGE_PS) { |
| 2108 | if (conf->flags & IEEE80211_CONF_PS) { |
| 2109 | if ((sc->sc_imask & ATH9K_INT_TIM_TIMER) == 0) { |
| 2110 | sc->sc_imask |= ATH9K_INT_TIM_TIMER; |
| 2111 | ath9k_hw_set_interrupts(sc->sc_ah, |
| 2112 | sc->sc_imask); |
| 2113 | } |
| 2114 | ath9k_hw_setrxabort(sc->sc_ah, 1); |
| 2115 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP); |
| 2116 | } else { |
| 2117 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE); |
| 2118 | ath9k_hw_setrxabort(sc->sc_ah, 0); |
| 2119 | sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON; |
| 2120 | if (sc->sc_imask & ATH9K_INT_TIM_TIMER) { |
| 2121 | sc->sc_imask &= ~ATH9K_INT_TIM_TIMER; |
| 2122 | ath9k_hw_set_interrupts(sc->sc_ah, |
| 2123 | sc->sc_imask); |
| 2124 | } |
| 2125 | } |
| 2126 | } |
| 2127 | |
Johannes Berg | 4797938 | 2009-01-07 10:13:27 +0100 | [diff] [blame] | 2128 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 2129 | struct ieee80211_channel *curchan = hw->conf.channel; |
| 2130 | int pos; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2131 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2132 | DPRINTF(sc, ATH_DBG_CONFIG, "Set channel: %d MHz\n", |
| 2133 | curchan->center_freq); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 2134 | |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 2135 | pos = ath_get_channel(sc, curchan); |
| 2136 | if (pos == -1) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2137 | DPRINTF(sc, ATH_DBG_FATAL, "Invalid channel: %d\n", |
| 2138 | curchan->center_freq); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2139 | mutex_unlock(&sc->mutex); |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 2140 | return -EINVAL; |
| 2141 | } |
| 2142 | |
| 2143 | sc->tx_chan_width = ATH9K_HT_MACMODE_20; |
| 2144 | sc->sc_ah->ah_channels[pos].chanmode = |
| 2145 | (curchan->band == IEEE80211_BAND_2GHZ) ? |
| 2146 | CHANNEL_G : CHANNEL_A; |
| 2147 | |
Luis R. Rodriguez | ecf7044 | 2008-12-23 15:58:43 -0800 | [diff] [blame] | 2148 | if (conf_is_ht(conf)) { |
| 2149 | if (conf_is_ht40(conf)) |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 2150 | sc->tx_chan_width = ATH9K_HT_MACMODE_2040; |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2151 | |
| 2152 | sc->sc_ah->ah_channels[pos].chanmode = |
| 2153 | ath_get_extchanmode(sc, curchan, |
Johannes Berg | 4797938 | 2009-01-07 10:13:27 +0100 | [diff] [blame] | 2154 | conf->channel_type); |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2155 | } |
| 2156 | |
Luis R. Rodriguez | ecf7044 | 2008-12-23 15:58:43 -0800 | [diff] [blame] | 2157 | ath_update_chainmask(sc, conf_is_ht(conf)); |
Sujith | 86060f0 | 2009-01-07 14:25:29 +0530 | [diff] [blame] | 2158 | |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2159 | if (ath_set_channel(sc, &sc->sc_ah->ah_channels[pos]) < 0) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2160 | DPRINTF(sc, ATH_DBG_FATAL, "Unable to set channel\n"); |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2161 | mutex_unlock(&sc->mutex); |
Sujith | e11602b | 2008-11-27 09:46:27 +0530 | [diff] [blame] | 2162 | return -EINVAL; |
| 2163 | } |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 2164 | } |
Sujith | 86b89ee | 2008-08-07 10:54:57 +0530 | [diff] [blame] | 2165 | |
Luis R. Rodriguez | 5c020dc | 2008-10-22 13:28:45 -0700 | [diff] [blame] | 2166 | if (changed & IEEE80211_CONF_CHANGE_POWER) |
| 2167 | sc->sc_config.txpowlimit = 2 * conf->power_level; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2168 | |
Sujith | aa33de0 | 2008-12-18 11:40:16 +0530 | [diff] [blame] | 2169 | mutex_unlock(&sc->mutex); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2170 | return 0; |
| 2171 | } |
| 2172 | |
| 2173 | static int ath9k_config_interface(struct ieee80211_hw *hw, |
| 2174 | struct ieee80211_vif *vif, |
| 2175 | struct ieee80211_if_conf *conf) |
| 2176 | { |
| 2177 | struct ath_softc *sc = hw->priv; |
Jouni Malinen | 2ad67de | 2008-08-11 14:01:47 +0300 | [diff] [blame] | 2178 | struct ath_hal *ah = sc->sc_ah; |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2179 | struct ath_vap *avp = (void *)vif->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2180 | u32 rfilt = 0; |
| 2181 | int error, i; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2182 | |
Jouni Malinen | 2ad67de | 2008-08-11 14:01:47 +0300 | [diff] [blame] | 2183 | /* TODO: Need to decide which hw opmode to use for multi-interface |
| 2184 | * cases */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2185 | if (vif->type == NL80211_IFTYPE_AP && |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2186 | ah->ah_opmode != NL80211_IFTYPE_AP) { |
| 2187 | ah->ah_opmode = NL80211_IFTYPE_STATION; |
Jouni Malinen | 2ad67de | 2008-08-11 14:01:47 +0300 | [diff] [blame] | 2188 | ath9k_hw_setopmode(ah); |
| 2189 | ath9k_hw_write_associd(ah, sc->sc_myaddr, 0); |
| 2190 | /* Request full reset to get hw opmode changed properly */ |
| 2191 | sc->sc_flags |= SC_OP_FULL_RESET; |
| 2192 | } |
| 2193 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2194 | if ((conf->changed & IEEE80211_IFCC_BSSID) && |
| 2195 | !is_zero_ether_addr(conf->bssid)) { |
| 2196 | switch (vif->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2197 | case NL80211_IFTYPE_STATION: |
| 2198 | case NL80211_IFTYPE_ADHOC: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2199 | /* Set BSSID */ |
| 2200 | memcpy(sc->sc_curbssid, conf->bssid, ETH_ALEN); |
| 2201 | sc->sc_curaid = 0; |
| 2202 | ath9k_hw_write_associd(sc->sc_ah, sc->sc_curbssid, |
| 2203 | sc->sc_curaid); |
| 2204 | |
| 2205 | /* Set aggregation protection mode parameters */ |
| 2206 | sc->sc_config.ath_aggr_prot = 0; |
| 2207 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2208 | DPRINTF(sc, ATH_DBG_CONFIG, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2209 | "RX filter 0x%x bssid %pM aid 0x%x\n", |
| 2210 | rfilt, sc->sc_curbssid, sc->sc_curaid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2211 | |
| 2212 | /* need to reconfigure the beacon */ |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2213 | sc->sc_flags &= ~SC_OP_BEACONS ; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2214 | |
| 2215 | break; |
| 2216 | default: |
| 2217 | break; |
| 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | if ((conf->changed & IEEE80211_IFCC_BEACON) && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2222 | ((vif->type == NL80211_IFTYPE_ADHOC) || |
| 2223 | (vif->type == NL80211_IFTYPE_AP))) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2224 | /* |
| 2225 | * Allocate and setup the beacon frame. |
| 2226 | * |
| 2227 | * Stop any previous beacon DMA. This may be |
| 2228 | * necessary, for example, when an ibss merge |
| 2229 | * causes reconfiguration; we may be called |
| 2230 | * with beacon transmission active. |
| 2231 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2232 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2233 | |
| 2234 | error = ath_beacon_alloc(sc, 0); |
| 2235 | if (error != 0) |
| 2236 | return error; |
| 2237 | |
| 2238 | ath_beacon_sync(sc, 0); |
| 2239 | } |
| 2240 | |
| 2241 | /* Check for WLAN_CAPABILITY_PRIVACY ? */ |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 2242 | if ((avp->av_opmode != NL80211_IFTYPE_STATION)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2243 | for (i = 0; i < IEEE80211_WEP_NKID; i++) |
| 2244 | if (ath9k_hw_keyisvalid(sc->sc_ah, (u16)i)) |
| 2245 | ath9k_hw_keysetmac(sc->sc_ah, |
| 2246 | (u16)i, |
| 2247 | sc->sc_curbssid); |
| 2248 | } |
| 2249 | |
| 2250 | /* Only legacy IBSS for now */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2251 | if (vif->type == NL80211_IFTYPE_ADHOC) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2252 | ath_update_chainmask(sc, 0); |
| 2253 | |
| 2254 | return 0; |
| 2255 | } |
| 2256 | |
| 2257 | #define SUPPORTED_FILTERS \ |
| 2258 | (FIF_PROMISC_IN_BSS | \ |
| 2259 | FIF_ALLMULTI | \ |
| 2260 | FIF_CONTROL | \ |
| 2261 | FIF_OTHER_BSS | \ |
| 2262 | FIF_BCN_PRBRESP_PROMISC | \ |
| 2263 | FIF_FCSFAIL) |
| 2264 | |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2265 | /* FIXME: sc->sc_full_reset ? */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2266 | static void ath9k_configure_filter(struct ieee80211_hw *hw, |
| 2267 | unsigned int changed_flags, |
| 2268 | unsigned int *total_flags, |
| 2269 | int mc_count, |
| 2270 | struct dev_mc_list *mclist) |
| 2271 | { |
| 2272 | struct ath_softc *sc = hw->priv; |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2273 | u32 rfilt; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2274 | |
| 2275 | changed_flags &= SUPPORTED_FILTERS; |
| 2276 | *total_flags &= SUPPORTED_FILTERS; |
| 2277 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2278 | sc->rx.rxfilter = *total_flags; |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2279 | rfilt = ath_calcrxfilter(sc); |
| 2280 | ath9k_hw_setrxfilter(sc->sc_ah, rfilt); |
| 2281 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2282 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 2283 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2284 | ath9k_hw_write_associd(sc->sc_ah, ath_bcast_mac, 0); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2285 | } |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 2286 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2287 | DPRINTF(sc, ATH_DBG_CONFIG, "Set HW RX filter: 0x%x\n", sc->rx.rxfilter); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2288 | } |
| 2289 | |
| 2290 | static void ath9k_sta_notify(struct ieee80211_hw *hw, |
| 2291 | struct ieee80211_vif *vif, |
| 2292 | enum sta_notify_cmd cmd, |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 2293 | struct ieee80211_sta *sta) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2294 | { |
| 2295 | struct ath_softc *sc = hw->priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2296 | |
| 2297 | switch (cmd) { |
| 2298 | case STA_NOTIFY_ADD: |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2299 | ath_node_attach(sc, sta); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2300 | break; |
| 2301 | case STA_NOTIFY_REMOVE: |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2302 | ath_node_detach(sc, sta); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2303 | break; |
| 2304 | default: |
| 2305 | break; |
| 2306 | } |
| 2307 | } |
| 2308 | |
| 2309 | static int ath9k_conf_tx(struct ieee80211_hw *hw, |
| 2310 | u16 queue, |
| 2311 | const struct ieee80211_tx_queue_params *params) |
| 2312 | { |
| 2313 | struct ath_softc *sc = hw->priv; |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2314 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2315 | int ret = 0, qnum; |
| 2316 | |
| 2317 | if (queue >= WME_NUM_AC) |
| 2318 | return 0; |
| 2319 | |
| 2320 | qi.tqi_aifs = params->aifs; |
| 2321 | qi.tqi_cwmin = params->cw_min; |
| 2322 | qi.tqi_cwmax = params->cw_max; |
| 2323 | qi.tqi_burstTime = params->txop; |
| 2324 | qnum = ath_get_hal_qnum(queue, sc); |
| 2325 | |
| 2326 | DPRINTF(sc, ATH_DBG_CONFIG, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2327 | "Configure tx [queue/halq] [%d/%d], " |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2328 | "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2329 | queue, qnum, params->aifs, params->cw_min, |
| 2330 | params->cw_max, params->txop); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2331 | |
| 2332 | ret = ath_txq_update(sc, qnum, &qi); |
| 2333 | if (ret) |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2334 | DPRINTF(sc, ATH_DBG_FATAL, "TXQ Update failed\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2335 | |
| 2336 | return ret; |
| 2337 | } |
| 2338 | |
| 2339 | static int ath9k_set_key(struct ieee80211_hw *hw, |
| 2340 | enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 2341 | struct ieee80211_vif *vif, |
| 2342 | struct ieee80211_sta *sta, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2343 | struct ieee80211_key_conf *key) |
| 2344 | { |
| 2345 | struct ath_softc *sc = hw->priv; |
| 2346 | int ret = 0; |
| 2347 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2348 | ath9k_ps_wakeup(sc); |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2349 | DPRINTF(sc, ATH_DBG_KEYCACHE, "Set HW Key\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2350 | |
| 2351 | switch (cmd) { |
| 2352 | case SET_KEY: |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 2353 | ret = ath_key_config(sc, sta, key); |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 2354 | if (ret >= 0) { |
| 2355 | key->hw_key_idx = ret; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2356 | /* push IV and Michael MIC generation to stack */ |
| 2357 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
Senthil Balasubramanian | 1b96175 | 2008-09-01 19:45:21 +0530 | [diff] [blame] | 2358 | if (key->alg == ALG_TKIP) |
| 2359 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
Jouni Malinen | 0ced0e1 | 2009-01-08 13:32:13 +0200 | [diff] [blame] | 2360 | if (sc->sc_ah->sw_mgmt_crypto && key->alg == ALG_CCMP) |
| 2361 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT; |
Jouni Malinen | 6ace289 | 2008-12-17 13:32:17 +0200 | [diff] [blame] | 2362 | ret = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2363 | } |
| 2364 | break; |
| 2365 | case DISABLE_KEY: |
| 2366 | ath_key_delete(sc, key); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2367 | break; |
| 2368 | default: |
| 2369 | ret = -EINVAL; |
| 2370 | } |
| 2371 | |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 2372 | ath9k_ps_restore(sc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2373 | return ret; |
| 2374 | } |
| 2375 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2376 | static void ath9k_bss_info_changed(struct ieee80211_hw *hw, |
| 2377 | struct ieee80211_vif *vif, |
| 2378 | struct ieee80211_bss_conf *bss_conf, |
| 2379 | u32 changed) |
| 2380 | { |
| 2381 | struct ath_softc *sc = hw->priv; |
| 2382 | |
| 2383 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2384 | DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2385 | bss_conf->use_short_preamble); |
| 2386 | if (bss_conf->use_short_preamble) |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2387 | sc->sc_flags |= SC_OP_PREAMBLE_SHORT; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2388 | else |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2389 | sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2390 | } |
| 2391 | |
| 2392 | if (changed & BSS_CHANGED_ERP_CTS_PROT) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2393 | DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2394 | bss_conf->use_cts_prot); |
| 2395 | if (bss_conf->use_cts_prot && |
| 2396 | hw->conf.channel->band != IEEE80211_BAND_5GHZ) |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2397 | sc->sc_flags |= SC_OP_PROTECT_ENABLE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2398 | else |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2399 | sc->sc_flags &= ~SC_OP_PROTECT_ENABLE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2400 | } |
| 2401 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2402 | if (changed & BSS_CHANGED_ASSOC) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2403 | DPRINTF(sc, ATH_DBG_CONFIG, "BSS Changed ASSOC %d\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2404 | bss_conf->assoc); |
Sujith | 5640b08 | 2008-10-29 10:16:06 +0530 | [diff] [blame] | 2405 | ath9k_bss_assoc_info(sc, vif, bss_conf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2406 | } |
| 2407 | } |
| 2408 | |
| 2409 | static u64 ath9k_get_tsf(struct ieee80211_hw *hw) |
| 2410 | { |
| 2411 | u64 tsf; |
| 2412 | struct ath_softc *sc = hw->priv; |
| 2413 | struct ath_hal *ah = sc->sc_ah; |
| 2414 | |
| 2415 | tsf = ath9k_hw_gettsf64(ah); |
| 2416 | |
| 2417 | return tsf; |
| 2418 | } |
| 2419 | |
| 2420 | static void ath9k_reset_tsf(struct ieee80211_hw *hw) |
| 2421 | { |
| 2422 | struct ath_softc *sc = hw->priv; |
| 2423 | struct ath_hal *ah = sc->sc_ah; |
| 2424 | |
| 2425 | ath9k_hw_reset_tsf(ah); |
| 2426 | } |
| 2427 | |
| 2428 | static int ath9k_ampdu_action(struct ieee80211_hw *hw, |
| 2429 | enum ieee80211_ampdu_mlme_action action, |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 2430 | struct ieee80211_sta *sta, |
| 2431 | u16 tid, u16 *ssn) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2432 | { |
| 2433 | struct ath_softc *sc = hw->priv; |
| 2434 | int ret = 0; |
| 2435 | |
| 2436 | switch (action) { |
| 2437 | case IEEE80211_AMPDU_RX_START: |
Sujith | dca3edb | 2008-10-29 10:19:01 +0530 | [diff] [blame] | 2438 | if (!(sc->sc_flags & SC_OP_RXAGGR)) |
| 2439 | ret = -ENOTSUPP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2440 | break; |
| 2441 | case IEEE80211_AMPDU_RX_STOP: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2442 | break; |
| 2443 | case IEEE80211_AMPDU_TX_START: |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2444 | ret = ath_tx_aggr_start(sc, sta, tid, ssn); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2445 | if (ret < 0) |
| 2446 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2447 | "Unable to start TX aggregation\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2448 | else |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 2449 | ieee80211_start_tx_ba_cb_irqsafe(hw, sta->addr, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2450 | break; |
| 2451 | case IEEE80211_AMPDU_TX_STOP: |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2452 | ret = ath_tx_aggr_stop(sc, sta, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2453 | if (ret < 0) |
| 2454 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2455 | "Unable to stop TX aggregation\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2456 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 2457 | ieee80211_stop_tx_ba_cb_irqsafe(hw, sta->addr, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2458 | break; |
Sujith | 8469cde | 2008-10-29 10:19:28 +0530 | [diff] [blame] | 2459 | case IEEE80211_AMPDU_TX_RESUME: |
| 2460 | ath_tx_aggr_resume(sc, sta, tid); |
| 2461 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2462 | default: |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2463 | DPRINTF(sc, ATH_DBG_FATAL, "Unknown AMPDU action\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2464 | } |
| 2465 | |
| 2466 | return ret; |
| 2467 | } |
| 2468 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2469 | struct ieee80211_ops ath9k_ops = { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2470 | .tx = ath9k_tx, |
| 2471 | .start = ath9k_start, |
| 2472 | .stop = ath9k_stop, |
| 2473 | .add_interface = ath9k_add_interface, |
| 2474 | .remove_interface = ath9k_remove_interface, |
| 2475 | .config = ath9k_config, |
| 2476 | .config_interface = ath9k_config_interface, |
| 2477 | .configure_filter = ath9k_configure_filter, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2478 | .sta_notify = ath9k_sta_notify, |
| 2479 | .conf_tx = ath9k_conf_tx, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2480 | .bss_info_changed = ath9k_bss_info_changed, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2481 | .set_key = ath9k_set_key, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2482 | .get_tsf = ath9k_get_tsf, |
| 2483 | .reset_tsf = ath9k_reset_tsf, |
Johannes Berg | 4233df6 | 2008-10-13 13:35:05 +0200 | [diff] [blame] | 2484 | .ampdu_action = ath9k_ampdu_action, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2485 | }; |
| 2486 | |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 2487 | static struct { |
| 2488 | u32 version; |
| 2489 | const char * name; |
| 2490 | } ath_mac_bb_names[] = { |
| 2491 | { AR_SREV_VERSION_5416_PCI, "5416" }, |
| 2492 | { AR_SREV_VERSION_5416_PCIE, "5418" }, |
| 2493 | { AR_SREV_VERSION_9100, "9100" }, |
| 2494 | { AR_SREV_VERSION_9160, "9160" }, |
| 2495 | { AR_SREV_VERSION_9280, "9280" }, |
| 2496 | { AR_SREV_VERSION_9285, "9285" } |
| 2497 | }; |
| 2498 | |
| 2499 | static struct { |
| 2500 | u16 version; |
| 2501 | const char * name; |
| 2502 | } ath_rf_names[] = { |
| 2503 | { 0, "5133" }, |
| 2504 | { AR_RAD5133_SREV_MAJOR, "5133" }, |
| 2505 | { AR_RAD5122_SREV_MAJOR, "5122" }, |
| 2506 | { AR_RAD2133_SREV_MAJOR, "2133" }, |
| 2507 | { AR_RAD2122_SREV_MAJOR, "2122" } |
| 2508 | }; |
| 2509 | |
| 2510 | /* |
| 2511 | * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown. |
| 2512 | */ |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2513 | const char * |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 2514 | ath_mac_bb_name(u32 mac_bb_version) |
| 2515 | { |
| 2516 | int i; |
| 2517 | |
| 2518 | for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) { |
| 2519 | if (ath_mac_bb_names[i].version == mac_bb_version) { |
| 2520 | return ath_mac_bb_names[i].name; |
| 2521 | } |
| 2522 | } |
| 2523 | |
| 2524 | return "????"; |
| 2525 | } |
| 2526 | |
| 2527 | /* |
| 2528 | * Return the RF name. "????" is returned if the RF is unknown. |
| 2529 | */ |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2530 | const char * |
Benoit PAPILLAULT | 392dff8 | 2008-11-06 22:26:49 +0100 | [diff] [blame] | 2531 | ath_rf_name(u16 rf_version) |
| 2532 | { |
| 2533 | int i; |
| 2534 | |
| 2535 | for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) { |
| 2536 | if (ath_rf_names[i].version == rf_version) { |
| 2537 | return ath_rf_names[i].name; |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | return "????"; |
| 2542 | } |
| 2543 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2544 | static int __init ath9k_init(void) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2545 | { |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 2546 | int error; |
| 2547 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2548 | printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION); |
| 2549 | |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 2550 | /* Register rate control algorithm */ |
| 2551 | error = ath_rate_control_register(); |
| 2552 | if (error != 0) { |
| 2553 | printk(KERN_ERR |
| 2554 | "Unable to register rate control algorithm: %d\n", |
| 2555 | error); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2556 | goto err_out; |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 2557 | } |
| 2558 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2559 | error = ath_pci_init(); |
| 2560 | if (error < 0) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2561 | printk(KERN_ERR |
| 2562 | "ath_pci: No devices found, driver not installed.\n"); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2563 | error = -ENODEV; |
| 2564 | goto err_rate_unregister; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2565 | } |
| 2566 | |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 2567 | error = ath_ahb_init(); |
| 2568 | if (error < 0) { |
| 2569 | error = -ENODEV; |
| 2570 | goto err_pci_exit; |
| 2571 | } |
| 2572 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2573 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2574 | |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 2575 | err_pci_exit: |
| 2576 | ath_pci_exit(); |
| 2577 | |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2578 | err_rate_unregister: |
Vasanthakumar Thiagarajan | ca8a856 | 2008-12-16 12:37:38 +0530 | [diff] [blame] | 2579 | ath_rate_control_unregister(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2580 | err_out: |
| 2581 | return error; |
| 2582 | } |
| 2583 | module_init(ath9k_init); |
| 2584 | |
| 2585 | static void __exit ath9k_exit(void) |
| 2586 | { |
Gabor Juhos | 09329d3 | 2009-01-14 20:17:07 +0100 | [diff] [blame] | 2587 | ath_ahb_exit(); |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2588 | ath_pci_exit(); |
| 2589 | ath_rate_control_unregister(); |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2590 | printk(KERN_INFO "%s: Driver unloaded\n", dev_info); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2591 | } |
Gabor Juhos | 6baff7f | 2009-01-14 20:17:06 +0100 | [diff] [blame] | 2592 | module_exit(ath9k_exit); |