Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * GPL LICENSE SUMMARY |
| 4 | * |
| 5 | * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of version 2 of the GNU General Public License as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 19 | * USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution |
| 22 | * in the file called LICENSE.GPL. |
| 23 | * |
| 24 | * Contact Information: |
| 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 29 | #include <linux/etherdevice.h> |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/sched.h> |
| 34 | |
| 35 | #include "iwl-dev.h" |
| 36 | #include "iwl-core.h" |
| 37 | #include "iwl-io.h" |
| 38 | #include "iwl-helpers.h" |
| 39 | #include "iwl-agn-hw.h" |
| 40 | #include "iwl-agn.h" |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 41 | #include "iwl-sta.h" |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 42 | |
| 43 | static inline u32 iwlagn_get_scd_ssn(struct iwl5000_tx_resp *tx_resp) |
| 44 | { |
| 45 | return le32_to_cpup((__le32 *)&tx_resp->status + |
| 46 | tx_resp->frame_count) & MAX_SN; |
| 47 | } |
| 48 | |
| 49 | static int iwlagn_tx_status_reply_tx(struct iwl_priv *priv, |
| 50 | struct iwl_ht_agg *agg, |
| 51 | struct iwl5000_tx_resp *tx_resp, |
| 52 | int txq_id, u16 start_idx) |
| 53 | { |
| 54 | u16 status; |
| 55 | struct agg_tx_status *frame_status = &tx_resp->status; |
| 56 | struct ieee80211_tx_info *info = NULL; |
| 57 | struct ieee80211_hdr *hdr = NULL; |
| 58 | u32 rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags); |
| 59 | int i, sh, idx; |
| 60 | u16 seq; |
| 61 | |
| 62 | if (agg->wait_for_ba) |
| 63 | IWL_DEBUG_TX_REPLY(priv, "got tx response w/o block-ack\n"); |
| 64 | |
| 65 | agg->frame_count = tx_resp->frame_count; |
| 66 | agg->start_idx = start_idx; |
| 67 | agg->rate_n_flags = rate_n_flags; |
| 68 | agg->bitmap = 0; |
| 69 | |
| 70 | /* # frames attempted by Tx command */ |
| 71 | if (agg->frame_count == 1) { |
| 72 | /* Only one frame was attempted; no block-ack will arrive */ |
| 73 | status = le16_to_cpu(frame_status[0].status); |
| 74 | idx = start_idx; |
| 75 | |
| 76 | /* FIXME: code repetition */ |
| 77 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n", |
| 78 | agg->frame_count, agg->start_idx, idx); |
| 79 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 80 | info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 81 | info->status.rates[0].count = tx_resp->failure_frame + 1; |
| 82 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; |
| 83 | info->flags |= iwl_tx_status_to_mac80211(status); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 84 | iwlagn_hwrate_to_tx_control(priv, rate_n_flags, info); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 85 | |
| 86 | /* FIXME: code repetition end */ |
| 87 | |
| 88 | IWL_DEBUG_TX_REPLY(priv, "1 Frame 0x%x failure :%d\n", |
| 89 | status & 0xff, tx_resp->failure_frame); |
| 90 | IWL_DEBUG_TX_REPLY(priv, "Rate Info rate_n_flags=%x\n", rate_n_flags); |
| 91 | |
| 92 | agg->wait_for_ba = 0; |
| 93 | } else { |
| 94 | /* Two or more frames were attempted; expect block-ack */ |
| 95 | u64 bitmap = 0; |
| 96 | int start = agg->start_idx; |
| 97 | |
| 98 | /* Construct bit-map of pending frames within Tx window */ |
| 99 | for (i = 0; i < agg->frame_count; i++) { |
| 100 | u16 sc; |
| 101 | status = le16_to_cpu(frame_status[i].status); |
| 102 | seq = le16_to_cpu(frame_status[i].sequence); |
| 103 | idx = SEQ_TO_INDEX(seq); |
| 104 | txq_id = SEQ_TO_QUEUE(seq); |
| 105 | |
| 106 | if (status & (AGG_TX_STATE_FEW_BYTES_MSK | |
| 107 | AGG_TX_STATE_ABORT_MSK)) |
| 108 | continue; |
| 109 | |
| 110 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, txq_id=%d idx=%d\n", |
| 111 | agg->frame_count, txq_id, idx); |
| 112 | |
| 113 | hdr = iwl_tx_queue_get_hdr(priv, txq_id, idx); |
| 114 | if (!hdr) { |
| 115 | IWL_ERR(priv, |
| 116 | "BUG_ON idx doesn't point to valid skb" |
| 117 | " idx=%d, txq_id=%d\n", idx, txq_id); |
| 118 | return -1; |
| 119 | } |
| 120 | |
| 121 | sc = le16_to_cpu(hdr->seq_ctrl); |
| 122 | if (idx != (SEQ_TO_SN(sc) & 0xff)) { |
| 123 | IWL_ERR(priv, |
| 124 | "BUG_ON idx doesn't match seq control" |
| 125 | " idx=%d, seq_idx=%d, seq=%d\n", |
| 126 | idx, SEQ_TO_SN(sc), |
| 127 | hdr->seq_ctrl); |
| 128 | return -1; |
| 129 | } |
| 130 | |
| 131 | IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n", |
| 132 | i, idx, SEQ_TO_SN(sc)); |
| 133 | |
| 134 | sh = idx - start; |
| 135 | if (sh > 64) { |
| 136 | sh = (start - idx) + 0xff; |
| 137 | bitmap = bitmap << sh; |
| 138 | sh = 0; |
| 139 | start = idx; |
| 140 | } else if (sh < -64) |
| 141 | sh = 0xff - (start - idx); |
| 142 | else if (sh < 0) { |
| 143 | sh = start - idx; |
| 144 | start = idx; |
| 145 | bitmap = bitmap << sh; |
| 146 | sh = 0; |
| 147 | } |
| 148 | bitmap |= 1ULL << sh; |
| 149 | IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n", |
| 150 | start, (unsigned long long)bitmap); |
| 151 | } |
| 152 | |
| 153 | agg->bitmap = bitmap; |
| 154 | agg->start_idx = start; |
| 155 | IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n", |
| 156 | agg->frame_count, agg->start_idx, |
| 157 | (unsigned long long)agg->bitmap); |
| 158 | |
| 159 | if (bitmap) |
| 160 | agg->wait_for_ba = 1; |
| 161 | } |
| 162 | return 0; |
| 163 | } |
| 164 | |
Wey-Yi Guy | 04569cb | 2010-03-31 17:57:28 -0700 | [diff] [blame] | 165 | void iwl_check_abort_status(struct iwl_priv *priv, |
| 166 | u8 frame_count, u32 status) |
| 167 | { |
| 168 | if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) { |
| 169 | IWL_ERR(priv, "TODO: Implement Tx flush command!!!\n"); |
| 170 | } |
| 171 | } |
| 172 | |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 173 | static void iwlagn_rx_reply_tx(struct iwl_priv *priv, |
| 174 | struct iwl_rx_mem_buffer *rxb) |
| 175 | { |
| 176 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 177 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); |
| 178 | int txq_id = SEQ_TO_QUEUE(sequence); |
| 179 | int index = SEQ_TO_INDEX(sequence); |
| 180 | struct iwl_tx_queue *txq = &priv->txq[txq_id]; |
| 181 | struct ieee80211_tx_info *info; |
| 182 | struct iwl5000_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; |
| 183 | u32 status = le16_to_cpu(tx_resp->status.status); |
| 184 | int tid; |
| 185 | int sta_id; |
| 186 | int freed; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 187 | unsigned long flags; |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 188 | |
| 189 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { |
| 190 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " |
| 191 | "is out of range [0-%d] %d %d\n", txq_id, |
| 192 | index, txq->q.n_bd, txq->q.write_ptr, |
| 193 | txq->q.read_ptr); |
| 194 | return; |
| 195 | } |
| 196 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 197 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 198 | memset(&info->status, 0, sizeof(info->status)); |
| 199 | |
| 200 | tid = (tx_resp->ra_tid & IWL50_TX_RES_TID_MSK) >> IWL50_TX_RES_TID_POS; |
| 201 | sta_id = (tx_resp->ra_tid & IWL50_TX_RES_RA_MSK) >> IWL50_TX_RES_RA_POS; |
| 202 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 203 | spin_lock_irqsave(&priv->sta_lock, flags); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 204 | if (txq->sched_retry) { |
| 205 | const u32 scd_ssn = iwlagn_get_scd_ssn(tx_resp); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 206 | struct iwl_ht_agg *agg; |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 207 | |
| 208 | agg = &priv->stations[sta_id].tid[tid].agg; |
| 209 | |
| 210 | iwlagn_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index); |
| 211 | |
| 212 | /* check if BAR is needed */ |
| 213 | if ((tx_resp->frame_count == 1) && !iwl_is_tx_success(status)) |
| 214 | info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK; |
| 215 | |
| 216 | if (txq->q.read_ptr != (scd_ssn & 0xff)) { |
| 217 | index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd); |
| 218 | IWL_DEBUG_TX_REPLY(priv, "Retry scheduler reclaim " |
| 219 | "scd_ssn=%d idx=%d txq=%d swq=%d\n", |
| 220 | scd_ssn , index, txq_id, txq->swq_id); |
| 221 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 222 | freed = iwlagn_tx_queue_reclaim(priv, txq_id, index); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 223 | iwl_free_tfds_in_queue(priv, sta_id, tid, freed); |
| 224 | |
| 225 | if (priv->mac80211_registered && |
| 226 | (iwl_queue_space(&txq->q) > txq->q.low_mark) && |
| 227 | (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)) { |
| 228 | if (agg->state == IWL_AGG_OFF) |
| 229 | iwl_wake_queue(priv, txq_id); |
| 230 | else |
| 231 | iwl_wake_queue(priv, txq->swq_id); |
| 232 | } |
| 233 | } |
| 234 | } else { |
| 235 | BUG_ON(txq_id != txq->swq_id); |
| 236 | |
| 237 | info->status.rates[0].count = tx_resp->failure_frame + 1; |
| 238 | info->flags |= iwl_tx_status_to_mac80211(status); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 239 | iwlagn_hwrate_to_tx_control(priv, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 240 | le32_to_cpu(tx_resp->rate_n_flags), |
| 241 | info); |
| 242 | |
| 243 | IWL_DEBUG_TX_REPLY(priv, "TXQ %d status %s (0x%08x) rate_n_flags " |
| 244 | "0x%x retries %d\n", |
| 245 | txq_id, |
| 246 | iwl_get_tx_fail_reason(status), status, |
| 247 | le32_to_cpu(tx_resp->rate_n_flags), |
| 248 | tx_resp->failure_frame); |
| 249 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 250 | freed = iwlagn_tx_queue_reclaim(priv, txq_id, index); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 251 | iwl_free_tfds_in_queue(priv, sta_id, tid, freed); |
| 252 | |
| 253 | if (priv->mac80211_registered && |
| 254 | (iwl_queue_space(&txq->q) > txq->q.low_mark)) |
| 255 | iwl_wake_queue(priv, txq_id); |
| 256 | } |
| 257 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 258 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 259 | |
Wey-Yi Guy | 04569cb | 2010-03-31 17:57:28 -0700 | [diff] [blame] | 260 | iwl_check_abort_status(priv, tx_resp->frame_count, status); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 261 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | void iwlagn_rx_handler_setup(struct iwl_priv *priv) |
| 265 | { |
| 266 | /* init calibration handlers */ |
| 267 | priv->rx_handlers[CALIBRATION_RES_NOTIFICATION] = |
| 268 | iwlagn_rx_calib_result; |
| 269 | priv->rx_handlers[CALIBRATION_COMPLETE_NOTIFICATION] = |
| 270 | iwlagn_rx_calib_complete; |
| 271 | priv->rx_handlers[REPLY_TX] = iwlagn_rx_reply_tx; |
| 272 | } |
| 273 | |
| 274 | void iwlagn_setup_deferred_work(struct iwl_priv *priv) |
| 275 | { |
| 276 | /* in agn, the tx power calibration is done in uCode */ |
| 277 | priv->disable_tx_power_cal = 1; |
| 278 | } |
| 279 | |
| 280 | int iwlagn_hw_valid_rtc_data_addr(u32 addr) |
| 281 | { |
| 282 | return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) && |
| 283 | (addr < IWLAGN_RTC_DATA_UPPER_BOUND); |
| 284 | } |
| 285 | |
| 286 | int iwlagn_send_tx_power(struct iwl_priv *priv) |
| 287 | { |
| 288 | struct iwl5000_tx_power_dbm_cmd tx_power_cmd; |
| 289 | u8 tx_ant_cfg_cmd; |
| 290 | |
| 291 | /* half dBm need to multiply */ |
| 292 | tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt); |
| 293 | |
| 294 | if (priv->tx_power_lmt_in_half_dbm && |
| 295 | priv->tx_power_lmt_in_half_dbm < tx_power_cmd.global_lmt) { |
| 296 | /* |
| 297 | * For the newer devices which using enhanced/extend tx power |
| 298 | * table in EEPROM, the format is in half dBm. driver need to |
| 299 | * convert to dBm format before report to mac80211. |
| 300 | * By doing so, there is a possibility of 1/2 dBm resolution |
| 301 | * lost. driver will perform "round-up" operation before |
| 302 | * reporting, but it will cause 1/2 dBm tx power over the |
| 303 | * regulatory limit. Perform the checking here, if the |
| 304 | * "tx_power_user_lmt" is higher than EEPROM value (in |
| 305 | * half-dBm format), lower the tx power based on EEPROM |
| 306 | */ |
| 307 | tx_power_cmd.global_lmt = priv->tx_power_lmt_in_half_dbm; |
| 308 | } |
| 309 | tx_power_cmd.flags = IWL50_TX_POWER_NO_CLOSED; |
| 310 | tx_power_cmd.srv_chan_lmt = IWL50_TX_POWER_AUTO; |
| 311 | |
| 312 | if (IWL_UCODE_API(priv->ucode_ver) == 1) |
| 313 | tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1; |
| 314 | else |
| 315 | tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD; |
| 316 | |
| 317 | return iwl_send_cmd_pdu_async(priv, tx_ant_cfg_cmd, |
| 318 | sizeof(tx_power_cmd), &tx_power_cmd, |
| 319 | NULL); |
| 320 | } |
| 321 | |
| 322 | void iwlagn_temperature(struct iwl_priv *priv) |
| 323 | { |
| 324 | /* store temperature from statistics (in Celsius) */ |
John W. Linville | 2daf6c1 | 2010-06-03 13:55:37 -0400 | [diff] [blame] | 325 | priv->temperature = le32_to_cpu(priv->statistics.general.temperature); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 326 | iwl_tt_handler(priv); |
| 327 | } |
| 328 | |
| 329 | u16 iwlagn_eeprom_calib_version(struct iwl_priv *priv) |
| 330 | { |
| 331 | struct iwl_eeprom_calib_hdr { |
| 332 | u8 version; |
| 333 | u8 pa_type; |
| 334 | u16 voltage; |
| 335 | } *hdr; |
| 336 | |
| 337 | hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv, |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 338 | EEPROM_CALIB_ALL); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 339 | return hdr->version; |
| 340 | |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | * EEPROM |
| 345 | */ |
| 346 | static u32 eeprom_indirect_address(const struct iwl_priv *priv, u32 address) |
| 347 | { |
| 348 | u16 offset = 0; |
| 349 | |
| 350 | if ((address & INDIRECT_ADDRESS) == 0) |
| 351 | return address; |
| 352 | |
| 353 | switch (address & INDIRECT_TYPE_MSK) { |
| 354 | case INDIRECT_HOST: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 355 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_HOST); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 356 | break; |
| 357 | case INDIRECT_GENERAL: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 358 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_GENERAL); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 359 | break; |
| 360 | case INDIRECT_REGULATORY: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 361 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_REGULATORY); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 362 | break; |
| 363 | case INDIRECT_CALIBRATION: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 364 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_CALIBRATION); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 365 | break; |
| 366 | case INDIRECT_PROCESS_ADJST: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 367 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_PROCESS_ADJST); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 368 | break; |
| 369 | case INDIRECT_OTHERS: |
Wey-Yi Guy | 7944f8e | 2010-04-06 21:10:33 -0700 | [diff] [blame] | 370 | offset = iwl_eeprom_query16(priv, EEPROM_LINK_OTHERS); |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 371 | break; |
| 372 | default: |
| 373 | IWL_ERR(priv, "illegal indirect type: 0x%X\n", |
| 374 | address & INDIRECT_TYPE_MSK); |
| 375 | break; |
| 376 | } |
| 377 | |
| 378 | /* translate the offset from words to byte */ |
| 379 | return (address & ADDRESS_MSK) + (offset << 1); |
| 380 | } |
| 381 | |
| 382 | const u8 *iwlagn_eeprom_query_addr(const struct iwl_priv *priv, |
| 383 | size_t offset) |
| 384 | { |
| 385 | u32 address = eeprom_indirect_address(priv, offset); |
| 386 | BUG_ON(address >= priv->cfg->eeprom_size); |
| 387 | return &priv->eeprom[address]; |
| 388 | } |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 389 | |
| 390 | struct iwl_mod_params iwlagn_mod_params = { |
| 391 | .amsdu_size_8K = 1, |
| 392 | .restart_fw = 1, |
| 393 | /* the rest are 0 by default */ |
| 394 | }; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 395 | |
| 396 | void iwlagn_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq) |
| 397 | { |
| 398 | unsigned long flags; |
| 399 | int i; |
| 400 | spin_lock_irqsave(&rxq->lock, flags); |
| 401 | INIT_LIST_HEAD(&rxq->rx_free); |
| 402 | INIT_LIST_HEAD(&rxq->rx_used); |
| 403 | /* Fill the rx_used queue with _all_ of the Rx buffers */ |
| 404 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) { |
| 405 | /* In the reset function, these buffers may have been allocated |
| 406 | * to an SKB, so we need to unmap and free potential storage */ |
| 407 | if (rxq->pool[i].page != NULL) { |
| 408 | pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma, |
| 409 | PAGE_SIZE << priv->hw_params.rx_page_order, |
| 410 | PCI_DMA_FROMDEVICE); |
| 411 | __iwl_free_pages(priv, rxq->pool[i].page); |
| 412 | rxq->pool[i].page = NULL; |
| 413 | } |
| 414 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); |
| 415 | } |
| 416 | |
Zhu Yi | 6aac74b | 2010-03-22 19:33:41 -0700 | [diff] [blame] | 417 | for (i = 0; i < RX_QUEUE_SIZE; i++) |
| 418 | rxq->queue[i] = NULL; |
| 419 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 420 | /* Set us so that we have processed and used all buffers, but have |
| 421 | * not restocked the Rx queue with fresh buffers */ |
| 422 | rxq->read = rxq->write = 0; |
| 423 | rxq->write_actual = 0; |
| 424 | rxq->free_count = 0; |
| 425 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 426 | } |
| 427 | |
| 428 | int iwlagn_rx_init(struct iwl_priv *priv, struct iwl_rx_queue *rxq) |
| 429 | { |
| 430 | u32 rb_size; |
| 431 | const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */ |
| 432 | u32 rb_timeout = 0; /* FIXME: RX_RB_TIMEOUT for all devices? */ |
| 433 | |
| 434 | if (!priv->cfg->use_isr_legacy) |
| 435 | rb_timeout = RX_RB_TIMEOUT; |
| 436 | |
| 437 | if (priv->cfg->mod_params->amsdu_size_8K) |
| 438 | rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K; |
| 439 | else |
| 440 | rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K; |
| 441 | |
| 442 | /* Stop Rx DMA */ |
| 443 | iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0); |
| 444 | |
| 445 | /* Reset driver's Rx queue write index */ |
| 446 | iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_WPTR_REG, 0); |
| 447 | |
| 448 | /* Tell device where to find RBD circular buffer in DRAM */ |
| 449 | iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_BASE_REG, |
| 450 | (u32)(rxq->dma_addr >> 8)); |
| 451 | |
| 452 | /* Tell device where in DRAM to update its Rx status */ |
| 453 | iwl_write_direct32(priv, FH_RSCSR_CHNL0_STTS_WPTR_REG, |
| 454 | rxq->rb_stts_dma >> 4); |
| 455 | |
| 456 | /* Enable Rx DMA |
| 457 | * FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY is set because of HW bug in |
| 458 | * the credit mechanism in 5000 HW RX FIFO |
| 459 | * Direct rx interrupts to hosts |
| 460 | * Rx buffer size 4 or 8k |
| 461 | * RB timeout 0x10 |
| 462 | * 256 RBDs |
| 463 | */ |
| 464 | iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, |
| 465 | FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL | |
| 466 | FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY | |
| 467 | FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL | |
| 468 | FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK | |
| 469 | rb_size| |
| 470 | (rb_timeout << FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS)| |
| 471 | (rfdnlog << FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS)); |
| 472 | |
| 473 | /* Set interrupt coalescing timer to default (2048 usecs) */ |
| 474 | iwl_write8(priv, CSR_INT_COALESCING, IWL_HOST_INT_TIMEOUT_DEF); |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | int iwlagn_hw_nic_init(struct iwl_priv *priv) |
| 480 | { |
| 481 | unsigned long flags; |
| 482 | struct iwl_rx_queue *rxq = &priv->rxq; |
| 483 | int ret; |
| 484 | |
| 485 | /* nic_init */ |
| 486 | spin_lock_irqsave(&priv->lock, flags); |
| 487 | priv->cfg->ops->lib->apm_ops.init(priv); |
| 488 | |
| 489 | /* Set interrupt coalescing calibration timer to default (512 usecs) */ |
| 490 | iwl_write8(priv, CSR_INT_COALESCING, IWL_HOST_INT_CALIB_TIMEOUT_DEF); |
| 491 | |
| 492 | spin_unlock_irqrestore(&priv->lock, flags); |
| 493 | |
| 494 | ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN); |
| 495 | |
| 496 | priv->cfg->ops->lib->apm_ops.config(priv); |
| 497 | |
| 498 | /* Allocate the RX queue, or reset if it is already allocated */ |
| 499 | if (!rxq->bd) { |
| 500 | ret = iwl_rx_queue_alloc(priv); |
| 501 | if (ret) { |
| 502 | IWL_ERR(priv, "Unable to initialize Rx queue\n"); |
| 503 | return -ENOMEM; |
| 504 | } |
| 505 | } else |
| 506 | iwlagn_rx_queue_reset(priv, rxq); |
| 507 | |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 508 | iwlagn_rx_replenish(priv); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 509 | |
| 510 | iwlagn_rx_init(priv, rxq); |
| 511 | |
| 512 | spin_lock_irqsave(&priv->lock, flags); |
| 513 | |
| 514 | rxq->need_update = 1; |
| 515 | iwl_rx_queue_update_write_ptr(priv, rxq); |
| 516 | |
| 517 | spin_unlock_irqrestore(&priv->lock, flags); |
| 518 | |
Zhu Yi | 470058e | 2010-04-02 13:38:54 -0700 | [diff] [blame] | 519 | /* Allocate or reset and init all Tx and Command queues */ |
| 520 | if (!priv->txq) { |
| 521 | ret = iwlagn_txq_ctx_alloc(priv); |
| 522 | if (ret) |
| 523 | return ret; |
| 524 | } else |
| 525 | iwlagn_txq_ctx_reset(priv); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 526 | |
| 527 | set_bit(STATUS_INIT, &priv->status); |
| 528 | |
| 529 | return 0; |
| 530 | } |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 531 | |
| 532 | /** |
| 533 | * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr |
| 534 | */ |
| 535 | static inline __le32 iwlagn_dma_addr2rbd_ptr(struct iwl_priv *priv, |
| 536 | dma_addr_t dma_addr) |
| 537 | { |
| 538 | return cpu_to_le32((u32)(dma_addr >> 8)); |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool |
| 543 | * |
| 544 | * If there are slots in the RX queue that need to be restocked, |
| 545 | * and we have free pre-allocated buffers, fill the ranks as much |
| 546 | * as we can, pulling from rx_free. |
| 547 | * |
| 548 | * This moves the 'write' index forward to catch up with 'processed', and |
| 549 | * also updates the memory address in the firmware to reference the new |
| 550 | * target buffer. |
| 551 | */ |
| 552 | void iwlagn_rx_queue_restock(struct iwl_priv *priv) |
| 553 | { |
| 554 | struct iwl_rx_queue *rxq = &priv->rxq; |
| 555 | struct list_head *element; |
| 556 | struct iwl_rx_mem_buffer *rxb; |
| 557 | unsigned long flags; |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 558 | |
| 559 | spin_lock_irqsave(&rxq->lock, flags); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 560 | while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) { |
Zhu Yi | 6aac74b | 2010-03-22 19:33:41 -0700 | [diff] [blame] | 561 | /* The overwritten rxb must be a used one */ |
| 562 | rxb = rxq->queue[rxq->write]; |
| 563 | BUG_ON(rxb && rxb->page); |
| 564 | |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 565 | /* Get next free Rx buffer, remove from free list */ |
| 566 | element = rxq->rx_free.next; |
| 567 | rxb = list_entry(element, struct iwl_rx_mem_buffer, list); |
| 568 | list_del(element); |
| 569 | |
| 570 | /* Point to Rx buffer via next RBD in circular buffer */ |
| 571 | rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(priv, |
| 572 | rxb->page_dma); |
| 573 | rxq->queue[rxq->write] = rxb; |
| 574 | rxq->write = (rxq->write + 1) & RX_QUEUE_MASK; |
| 575 | rxq->free_count--; |
| 576 | } |
| 577 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 578 | /* If the pre-allocated buffer pool is dropping low, schedule to |
| 579 | * refill it */ |
| 580 | if (rxq->free_count <= RX_LOW_WATERMARK) |
| 581 | queue_work(priv->workqueue, &priv->rx_replenish); |
| 582 | |
| 583 | |
| 584 | /* If we've added more space for the firmware to place data, tell it. |
| 585 | * Increment device's write pointer in multiples of 8. */ |
| 586 | if (rxq->write_actual != (rxq->write & ~0x7)) { |
| 587 | spin_lock_irqsave(&rxq->lock, flags); |
| 588 | rxq->need_update = 1; |
| 589 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 590 | iwl_rx_queue_update_write_ptr(priv, rxq); |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | /** |
| 595 | * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free |
| 596 | * |
| 597 | * When moving to rx_free an SKB is allocated for the slot. |
| 598 | * |
| 599 | * Also restock the Rx queue via iwl_rx_queue_restock. |
| 600 | * This is called as a scheduled work item (except for during initialization) |
| 601 | */ |
| 602 | void iwlagn_rx_allocate(struct iwl_priv *priv, gfp_t priority) |
| 603 | { |
| 604 | struct iwl_rx_queue *rxq = &priv->rxq; |
| 605 | struct list_head *element; |
| 606 | struct iwl_rx_mem_buffer *rxb; |
| 607 | struct page *page; |
| 608 | unsigned long flags; |
| 609 | gfp_t gfp_mask = priority; |
| 610 | |
| 611 | while (1) { |
| 612 | spin_lock_irqsave(&rxq->lock, flags); |
| 613 | if (list_empty(&rxq->rx_used)) { |
| 614 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 615 | return; |
| 616 | } |
| 617 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 618 | |
| 619 | if (rxq->free_count > RX_LOW_WATERMARK) |
| 620 | gfp_mask |= __GFP_NOWARN; |
| 621 | |
| 622 | if (priv->hw_params.rx_page_order > 0) |
| 623 | gfp_mask |= __GFP_COMP; |
| 624 | |
| 625 | /* Alloc a new receive buffer */ |
| 626 | page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order); |
| 627 | if (!page) { |
| 628 | if (net_ratelimit()) |
| 629 | IWL_DEBUG_INFO(priv, "alloc_pages failed, " |
| 630 | "order: %d\n", |
| 631 | priv->hw_params.rx_page_order); |
| 632 | |
| 633 | if ((rxq->free_count <= RX_LOW_WATERMARK) && |
| 634 | net_ratelimit()) |
| 635 | IWL_CRIT(priv, "Failed to alloc_pages with %s. Only %u free buffers remaining.\n", |
| 636 | priority == GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL", |
| 637 | rxq->free_count); |
| 638 | /* We don't reschedule replenish work here -- we will |
| 639 | * call the restock method and if it still needs |
| 640 | * more buffers it will schedule replenish */ |
| 641 | return; |
| 642 | } |
| 643 | |
| 644 | spin_lock_irqsave(&rxq->lock, flags); |
| 645 | |
| 646 | if (list_empty(&rxq->rx_used)) { |
| 647 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 648 | __free_pages(page, priv->hw_params.rx_page_order); |
| 649 | return; |
| 650 | } |
| 651 | element = rxq->rx_used.next; |
| 652 | rxb = list_entry(element, struct iwl_rx_mem_buffer, list); |
| 653 | list_del(element); |
| 654 | |
| 655 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 656 | |
Zhu Yi | 6aac74b | 2010-03-22 19:33:41 -0700 | [diff] [blame] | 657 | BUG_ON(rxb->page); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 658 | rxb->page = page; |
| 659 | /* Get physical address of the RB */ |
| 660 | rxb->page_dma = pci_map_page(priv->pci_dev, page, 0, |
| 661 | PAGE_SIZE << priv->hw_params.rx_page_order, |
| 662 | PCI_DMA_FROMDEVICE); |
| 663 | /* dma address must be no more than 36 bits */ |
| 664 | BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36)); |
| 665 | /* and also 256 byte aligned! */ |
| 666 | BUG_ON(rxb->page_dma & DMA_BIT_MASK(8)); |
| 667 | |
| 668 | spin_lock_irqsave(&rxq->lock, flags); |
| 669 | |
| 670 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 671 | rxq->free_count++; |
| 672 | priv->alloc_rxb_page++; |
| 673 | |
| 674 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | void iwlagn_rx_replenish(struct iwl_priv *priv) |
| 679 | { |
| 680 | unsigned long flags; |
| 681 | |
| 682 | iwlagn_rx_allocate(priv, GFP_KERNEL); |
| 683 | |
| 684 | spin_lock_irqsave(&priv->lock, flags); |
| 685 | iwlagn_rx_queue_restock(priv); |
| 686 | spin_unlock_irqrestore(&priv->lock, flags); |
| 687 | } |
| 688 | |
| 689 | void iwlagn_rx_replenish_now(struct iwl_priv *priv) |
| 690 | { |
| 691 | iwlagn_rx_allocate(priv, GFP_ATOMIC); |
| 692 | |
| 693 | iwlagn_rx_queue_restock(priv); |
| 694 | } |
| 695 | |
| 696 | /* Assumes that the skb field of the buffers in 'pool' is kept accurate. |
| 697 | * If an SKB has been detached, the POOL needs to have its SKB set to NULL |
| 698 | * This free routine walks the list of POOL entries and if SKB is set to |
| 699 | * non NULL it is unmapped and freed |
| 700 | */ |
| 701 | void iwlagn_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq) |
| 702 | { |
| 703 | int i; |
| 704 | for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) { |
| 705 | if (rxq->pool[i].page != NULL) { |
| 706 | pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma, |
| 707 | PAGE_SIZE << priv->hw_params.rx_page_order, |
| 708 | PCI_DMA_FROMDEVICE); |
| 709 | __iwl_free_pages(priv, rxq->pool[i].page); |
| 710 | rxq->pool[i].page = NULL; |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | dma_free_coherent(&priv->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd, |
| 715 | rxq->dma_addr); |
| 716 | dma_free_coherent(&priv->pci_dev->dev, sizeof(struct iwl_rb_status), |
| 717 | rxq->rb_stts, rxq->rb_stts_dma); |
| 718 | rxq->bd = NULL; |
| 719 | rxq->rb_stts = NULL; |
| 720 | } |
| 721 | |
| 722 | int iwlagn_rxq_stop(struct iwl_priv *priv) |
| 723 | { |
| 724 | |
| 725 | /* stop Rx DMA */ |
| 726 | iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0); |
| 727 | iwl_poll_direct_bit(priv, FH_MEM_RSSR_RX_STATUS_REG, |
| 728 | FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000); |
| 729 | |
| 730 | return 0; |
| 731 | } |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 732 | |
| 733 | int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band) |
| 734 | { |
| 735 | int idx = 0; |
| 736 | int band_offset = 0; |
| 737 | |
| 738 | /* HT rate format: mac80211 wants an MCS number, which is just LSB */ |
| 739 | if (rate_n_flags & RATE_MCS_HT_MSK) { |
| 740 | idx = (rate_n_flags & 0xff); |
| 741 | return idx; |
| 742 | /* Legacy rate format, search for match in table */ |
| 743 | } else { |
| 744 | if (band == IEEE80211_BAND_5GHZ) |
| 745 | band_offset = IWL_FIRST_OFDM_RATE; |
| 746 | for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++) |
| 747 | if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF)) |
| 748 | return idx - band_offset; |
| 749 | } |
| 750 | |
| 751 | return -1; |
| 752 | } |
| 753 | |
| 754 | /* Calc max signal level (dBm) among 3 possible receivers */ |
| 755 | static inline int iwlagn_calc_rssi(struct iwl_priv *priv, |
| 756 | struct iwl_rx_phy_res *rx_resp) |
| 757 | { |
| 758 | return priv->cfg->ops->utils->calc_rssi(priv, rx_resp); |
| 759 | } |
| 760 | |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 761 | static u32 iwlagn_translate_rx_status(struct iwl_priv *priv, u32 decrypt_in) |
| 762 | { |
| 763 | u32 decrypt_out = 0; |
| 764 | |
| 765 | if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) == |
| 766 | RX_RES_STATUS_STATION_FOUND) |
| 767 | decrypt_out |= (RX_RES_STATUS_STATION_FOUND | |
| 768 | RX_RES_STATUS_NO_STATION_INFO_MISMATCH); |
| 769 | |
| 770 | decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK); |
| 771 | |
| 772 | /* packet was not encrypted */ |
| 773 | if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) == |
| 774 | RX_RES_STATUS_SEC_TYPE_NONE) |
| 775 | return decrypt_out; |
| 776 | |
| 777 | /* packet was encrypted with unknown alg */ |
| 778 | if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) == |
| 779 | RX_RES_STATUS_SEC_TYPE_ERR) |
| 780 | return decrypt_out; |
| 781 | |
| 782 | /* decryption was not done in HW */ |
| 783 | if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) != |
| 784 | RX_MPDU_RES_STATUS_DEC_DONE_MSK) |
| 785 | return decrypt_out; |
| 786 | |
| 787 | switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) { |
| 788 | |
| 789 | case RX_RES_STATUS_SEC_TYPE_CCMP: |
| 790 | /* alg is CCM: check MIC only */ |
| 791 | if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK)) |
| 792 | /* Bad MIC */ |
| 793 | decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC; |
| 794 | else |
| 795 | decrypt_out |= RX_RES_STATUS_DECRYPT_OK; |
| 796 | |
| 797 | break; |
| 798 | |
| 799 | case RX_RES_STATUS_SEC_TYPE_TKIP: |
| 800 | if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) { |
| 801 | /* Bad TTAK */ |
| 802 | decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK; |
| 803 | break; |
| 804 | } |
| 805 | /* fall through if TTAK OK */ |
| 806 | default: |
| 807 | if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK)) |
| 808 | decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC; |
| 809 | else |
| 810 | decrypt_out |= RX_RES_STATUS_DECRYPT_OK; |
| 811 | break; |
Joe Perches | ee289b6 | 2010-05-17 22:47:34 -0700 | [diff] [blame] | 812 | } |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 813 | |
| 814 | IWL_DEBUG_RX(priv, "decrypt_in:0x%x decrypt_out = 0x%x\n", |
| 815 | decrypt_in, decrypt_out); |
| 816 | |
| 817 | return decrypt_out; |
| 818 | } |
| 819 | |
| 820 | static void iwlagn_pass_packet_to_mac80211(struct iwl_priv *priv, |
| 821 | struct ieee80211_hdr *hdr, |
| 822 | u16 len, |
| 823 | u32 ampdu_status, |
| 824 | struct iwl_rx_mem_buffer *rxb, |
| 825 | struct ieee80211_rx_status *stats) |
| 826 | { |
| 827 | struct sk_buff *skb; |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 828 | __le16 fc = hdr->frame_control; |
| 829 | |
| 830 | /* We only process data packets if the interface is open */ |
| 831 | if (unlikely(!priv->is_open)) { |
| 832 | IWL_DEBUG_DROP_LIMIT(priv, |
| 833 | "Dropping packet while interface is not open.\n"); |
| 834 | return; |
| 835 | } |
| 836 | |
| 837 | /* In case of HW accelerated crypto and bad decryption, drop */ |
| 838 | if (!priv->cfg->mod_params->sw_crypto && |
| 839 | iwl_set_decrypted_flag(priv, hdr, ampdu_status, stats)) |
| 840 | return; |
| 841 | |
Zhu Yi | ecdf94b | 2010-03-29 16:42:26 +0800 | [diff] [blame] | 842 | skb = dev_alloc_skb(128); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 843 | if (!skb) { |
Zhu Yi | ecdf94b | 2010-03-29 16:42:26 +0800 | [diff] [blame] | 844 | IWL_ERR(priv, "dev_alloc_skb failed\n"); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 845 | return; |
| 846 | } |
| 847 | |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 848 | skb_add_rx_frag(skb, 0, rxb->page, (void *)hdr - rxb_addr(rxb), len); |
| 849 | |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 850 | iwl_update_stats(priv, false, fc, len); |
| 851 | memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats)); |
| 852 | |
| 853 | ieee80211_rx(priv->hw, skb); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 854 | priv->alloc_rxb_page--; |
| 855 | rxb->page = NULL; |
| 856 | } |
| 857 | |
| 858 | /* Called for REPLY_RX (legacy ABG frames), or |
| 859 | * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */ |
| 860 | void iwlagn_rx_reply_rx(struct iwl_priv *priv, |
| 861 | struct iwl_rx_mem_buffer *rxb) |
| 862 | { |
| 863 | struct ieee80211_hdr *header; |
| 864 | struct ieee80211_rx_status rx_status; |
| 865 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 866 | struct iwl_rx_phy_res *phy_res; |
| 867 | __le32 rx_pkt_status; |
| 868 | struct iwl4965_rx_mpdu_res_start *amsdu; |
| 869 | u32 len; |
| 870 | u32 ampdu_status; |
| 871 | u32 rate_n_flags; |
| 872 | |
| 873 | /** |
| 874 | * REPLY_RX and REPLY_RX_MPDU_CMD are handled differently. |
| 875 | * REPLY_RX: physical layer info is in this buffer |
| 876 | * REPLY_RX_MPDU_CMD: physical layer info was sent in separate |
| 877 | * command and cached in priv->last_phy_res |
| 878 | * |
| 879 | * Here we set up local variables depending on which command is |
| 880 | * received. |
| 881 | */ |
| 882 | if (pkt->hdr.cmd == REPLY_RX) { |
| 883 | phy_res = (struct iwl_rx_phy_res *)pkt->u.raw; |
| 884 | header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res) |
| 885 | + phy_res->cfg_phy_cnt); |
| 886 | |
| 887 | len = le16_to_cpu(phy_res->byte_count); |
| 888 | rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*phy_res) + |
| 889 | phy_res->cfg_phy_cnt + len); |
| 890 | ampdu_status = le32_to_cpu(rx_pkt_status); |
| 891 | } else { |
Johannes Berg | 05d5752 | 2010-03-31 08:59:17 -0700 | [diff] [blame] | 892 | if (!priv->_agn.last_phy_res_valid) { |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 893 | IWL_ERR(priv, "MPDU frame without cached PHY data\n"); |
| 894 | return; |
| 895 | } |
Johannes Berg | 05d5752 | 2010-03-31 08:59:17 -0700 | [diff] [blame] | 896 | phy_res = &priv->_agn.last_phy_res; |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 897 | amsdu = (struct iwl4965_rx_mpdu_res_start *)pkt->u.raw; |
| 898 | header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*amsdu)); |
| 899 | len = le16_to_cpu(amsdu->byte_count); |
| 900 | rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*amsdu) + len); |
| 901 | ampdu_status = iwlagn_translate_rx_status(priv, |
| 902 | le32_to_cpu(rx_pkt_status)); |
| 903 | } |
| 904 | |
| 905 | if ((unlikely(phy_res->cfg_phy_cnt > 20))) { |
| 906 | IWL_DEBUG_DROP(priv, "dsp size out of range [0,20]: %d/n", |
| 907 | phy_res->cfg_phy_cnt); |
| 908 | return; |
| 909 | } |
| 910 | |
| 911 | if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) || |
| 912 | !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) { |
| 913 | IWL_DEBUG_RX(priv, "Bad CRC or FIFO: 0x%08X.\n", |
| 914 | le32_to_cpu(rx_pkt_status)); |
| 915 | return; |
| 916 | } |
| 917 | |
| 918 | /* This will be used in several places later */ |
| 919 | rate_n_flags = le32_to_cpu(phy_res->rate_n_flags); |
| 920 | |
| 921 | /* rx_status carries information about the packet to mac80211 */ |
| 922 | rx_status.mactime = le64_to_cpu(phy_res->timestamp); |
| 923 | rx_status.freq = |
| 924 | ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel)); |
| 925 | rx_status.band = (phy_res->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? |
| 926 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; |
| 927 | rx_status.rate_idx = |
| 928 | iwlagn_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band); |
| 929 | rx_status.flag = 0; |
| 930 | |
| 931 | /* TSF isn't reliable. In order to allow smooth user experience, |
| 932 | * this W/A doesn't propagate it to the mac80211 */ |
| 933 | /*rx_status.flag |= RX_FLAG_TSFT;*/ |
| 934 | |
| 935 | priv->ucode_beacon_time = le32_to_cpu(phy_res->beacon_time_stamp); |
| 936 | |
| 937 | /* Find max signal strength (dBm) among 3 antenna/receiver chains */ |
| 938 | rx_status.signal = iwlagn_calc_rssi(priv, phy_res); |
| 939 | |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 940 | iwl_dbg_log_rx_data_frame(priv, len, header); |
Johannes Berg | ed1b6e9 | 2010-03-18 09:58:27 -0700 | [diff] [blame] | 941 | IWL_DEBUG_STATS_LIMIT(priv, "Rssi %d, TSF %llu\n", |
| 942 | rx_status.signal, (unsigned long long)rx_status.mactime); |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 943 | |
| 944 | /* |
| 945 | * "antenna number" |
| 946 | * |
| 947 | * It seems that the antenna field in the phy flags value |
| 948 | * is actually a bit field. This is undefined by radiotap, |
| 949 | * it wants an actual antenna number but I always get "7" |
| 950 | * for most legacy frames I receive indicating that the |
| 951 | * same frame was received on all three RX chains. |
| 952 | * |
| 953 | * I think this field should be removed in favor of a |
| 954 | * new 802.11n radiotap field "RX chains" that is defined |
| 955 | * as a bitmask. |
| 956 | */ |
| 957 | rx_status.antenna = |
| 958 | (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK) |
| 959 | >> RX_RES_PHY_FLAGS_ANTENNA_POS; |
| 960 | |
| 961 | /* set the preamble flag if appropriate */ |
| 962 | if (phy_res->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK) |
| 963 | rx_status.flag |= RX_FLAG_SHORTPRE; |
| 964 | |
| 965 | /* Set up the HT phy flags */ |
| 966 | if (rate_n_flags & RATE_MCS_HT_MSK) |
| 967 | rx_status.flag |= RX_FLAG_HT; |
| 968 | if (rate_n_flags & RATE_MCS_HT40_MSK) |
| 969 | rx_status.flag |= RX_FLAG_40MHZ; |
| 970 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 971 | rx_status.flag |= RX_FLAG_SHORT_GI; |
| 972 | |
| 973 | iwlagn_pass_packet_to_mac80211(priv, header, len, ampdu_status, |
| 974 | rxb, &rx_status); |
| 975 | } |
| 976 | |
| 977 | /* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD). |
| 978 | * This will be used later in iwl_rx_reply_rx() for REPLY_RX_MPDU_CMD. */ |
| 979 | void iwlagn_rx_reply_rx_phy(struct iwl_priv *priv, |
Johannes Berg | 05d5752 | 2010-03-31 08:59:17 -0700 | [diff] [blame] | 980 | struct iwl_rx_mem_buffer *rxb) |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 981 | { |
| 982 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Johannes Berg | 05d5752 | 2010-03-31 08:59:17 -0700 | [diff] [blame] | 983 | priv->_agn.last_phy_res_valid = true; |
| 984 | memcpy(&priv->_agn.last_phy_res, pkt->u.raw, |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 985 | sizeof(struct iwl_rx_phy_res)); |
| 986 | } |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 987 | |
| 988 | static int iwl_get_single_channel_for_scan(struct iwl_priv *priv, |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 989 | struct ieee80211_vif *vif, |
| 990 | enum ieee80211_band band, |
| 991 | struct iwl_scan_channel *scan_ch) |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 992 | { |
| 993 | const struct ieee80211_supported_band *sband; |
| 994 | const struct iwl_channel_info *ch_info; |
| 995 | u16 passive_dwell = 0; |
| 996 | u16 active_dwell = 0; |
| 997 | int i, added = 0; |
| 998 | u16 channel = 0; |
| 999 | |
| 1000 | sband = iwl_get_hw_mode(priv, band); |
| 1001 | if (!sband) { |
| 1002 | IWL_ERR(priv, "invalid band\n"); |
| 1003 | return added; |
| 1004 | } |
| 1005 | |
| 1006 | active_dwell = iwl_get_active_dwell_time(priv, band, 0); |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1007 | passive_dwell = iwl_get_passive_dwell_time(priv, band, vif); |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1008 | |
| 1009 | if (passive_dwell <= active_dwell) |
| 1010 | passive_dwell = active_dwell + 1; |
| 1011 | |
| 1012 | /* only scan single channel, good enough to reset the RF */ |
| 1013 | /* pick the first valid not in-use channel */ |
| 1014 | if (band == IEEE80211_BAND_5GHZ) { |
| 1015 | for (i = 14; i < priv->channel_count; i++) { |
| 1016 | if (priv->channel_info[i].channel != |
| 1017 | le16_to_cpu(priv->staging_rxon.channel)) { |
| 1018 | channel = priv->channel_info[i].channel; |
| 1019 | ch_info = iwl_get_channel_info(priv, |
| 1020 | band, channel); |
| 1021 | if (is_channel_valid(ch_info)) |
| 1022 | break; |
| 1023 | } |
| 1024 | } |
| 1025 | } else { |
| 1026 | for (i = 0; i < 14; i++) { |
| 1027 | if (priv->channel_info[i].channel != |
| 1028 | le16_to_cpu(priv->staging_rxon.channel)) { |
| 1029 | channel = |
| 1030 | priv->channel_info[i].channel; |
| 1031 | ch_info = iwl_get_channel_info(priv, |
| 1032 | band, channel); |
| 1033 | if (is_channel_valid(ch_info)) |
| 1034 | break; |
| 1035 | } |
| 1036 | } |
| 1037 | } |
| 1038 | if (channel) { |
| 1039 | scan_ch->channel = cpu_to_le16(channel); |
| 1040 | scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE; |
| 1041 | scan_ch->active_dwell = cpu_to_le16(active_dwell); |
| 1042 | scan_ch->passive_dwell = cpu_to_le16(passive_dwell); |
| 1043 | /* Set txpower levels to defaults */ |
| 1044 | scan_ch->dsp_atten = 110; |
| 1045 | if (band == IEEE80211_BAND_5GHZ) |
| 1046 | scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3; |
| 1047 | else |
| 1048 | scan_ch->tx_gain = ((1 << 5) | (5 << 3)); |
| 1049 | added++; |
| 1050 | } else |
| 1051 | IWL_ERR(priv, "no valid channel found\n"); |
| 1052 | return added; |
| 1053 | } |
| 1054 | |
| 1055 | static int iwl_get_channels_for_scan(struct iwl_priv *priv, |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1056 | struct ieee80211_vif *vif, |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1057 | enum ieee80211_band band, |
| 1058 | u8 is_active, u8 n_probes, |
| 1059 | struct iwl_scan_channel *scan_ch) |
| 1060 | { |
| 1061 | struct ieee80211_channel *chan; |
| 1062 | const struct ieee80211_supported_band *sband; |
| 1063 | const struct iwl_channel_info *ch_info; |
| 1064 | u16 passive_dwell = 0; |
| 1065 | u16 active_dwell = 0; |
| 1066 | int added, i; |
| 1067 | u16 channel; |
| 1068 | |
| 1069 | sband = iwl_get_hw_mode(priv, band); |
| 1070 | if (!sband) |
| 1071 | return 0; |
| 1072 | |
| 1073 | active_dwell = iwl_get_active_dwell_time(priv, band, n_probes); |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1074 | passive_dwell = iwl_get_passive_dwell_time(priv, band, vif); |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1075 | |
| 1076 | if (passive_dwell <= active_dwell) |
| 1077 | passive_dwell = active_dwell + 1; |
| 1078 | |
| 1079 | for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) { |
| 1080 | chan = priv->scan_request->channels[i]; |
| 1081 | |
| 1082 | if (chan->band != band) |
| 1083 | continue; |
| 1084 | |
| 1085 | channel = ieee80211_frequency_to_channel(chan->center_freq); |
| 1086 | scan_ch->channel = cpu_to_le16(channel); |
| 1087 | |
| 1088 | ch_info = iwl_get_channel_info(priv, band, channel); |
| 1089 | if (!is_channel_valid(ch_info)) { |
| 1090 | IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n", |
| 1091 | channel); |
| 1092 | continue; |
| 1093 | } |
| 1094 | |
| 1095 | if (!is_active || is_channel_passive(ch_info) || |
| 1096 | (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) |
| 1097 | scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE; |
| 1098 | else |
| 1099 | scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE; |
| 1100 | |
| 1101 | if (n_probes) |
| 1102 | scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes); |
| 1103 | |
| 1104 | scan_ch->active_dwell = cpu_to_le16(active_dwell); |
| 1105 | scan_ch->passive_dwell = cpu_to_le16(passive_dwell); |
| 1106 | |
| 1107 | /* Set txpower levels to defaults */ |
| 1108 | scan_ch->dsp_atten = 110; |
| 1109 | |
| 1110 | /* NOTE: if we were doing 6Mb OFDM for scans we'd use |
| 1111 | * power level: |
| 1112 | * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3; |
| 1113 | */ |
| 1114 | if (band == IEEE80211_BAND_5GHZ) |
| 1115 | scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3; |
| 1116 | else |
| 1117 | scan_ch->tx_gain = ((1 << 5) | (5 << 3)); |
| 1118 | |
| 1119 | IWL_DEBUG_SCAN(priv, "Scanning ch=%d prob=0x%X [%s %d]\n", |
| 1120 | channel, le32_to_cpu(scan_ch->type), |
| 1121 | (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ? |
| 1122 | "ACTIVE" : "PASSIVE", |
| 1123 | (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ? |
| 1124 | active_dwell : passive_dwell); |
| 1125 | |
| 1126 | scan_ch++; |
| 1127 | added++; |
| 1128 | } |
| 1129 | |
| 1130 | IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added); |
| 1131 | return added; |
| 1132 | } |
| 1133 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1134 | void iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif) |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1135 | { |
| 1136 | struct iwl_host_cmd cmd = { |
| 1137 | .id = REPLY_SCAN_CMD, |
| 1138 | .len = sizeof(struct iwl_scan_cmd), |
| 1139 | .flags = CMD_SIZE_HUGE, |
| 1140 | }; |
| 1141 | struct iwl_scan_cmd *scan; |
| 1142 | struct ieee80211_conf *conf = NULL; |
| 1143 | u32 rate_flags = 0; |
| 1144 | u16 cmd_len; |
| 1145 | u16 rx_chain = 0; |
| 1146 | enum ieee80211_band band; |
| 1147 | u8 n_probes = 0; |
| 1148 | u8 rx_ant = priv->hw_params.valid_rx_ant; |
| 1149 | u8 rate; |
| 1150 | bool is_active = false; |
| 1151 | int chan_mod; |
| 1152 | u8 active_chains; |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame^] | 1153 | u8 scan_tx_antennas = priv->hw_params.valid_tx_ant; |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1154 | |
| 1155 | conf = ieee80211_get_hw_conf(priv->hw); |
| 1156 | |
| 1157 | cancel_delayed_work(&priv->scan_check); |
| 1158 | |
| 1159 | if (!iwl_is_ready(priv)) { |
| 1160 | IWL_WARN(priv, "request scan called when driver not ready.\n"); |
| 1161 | goto done; |
| 1162 | } |
| 1163 | |
| 1164 | /* Make sure the scan wasn't canceled before this queued work |
| 1165 | * was given the chance to run... */ |
| 1166 | if (!test_bit(STATUS_SCANNING, &priv->status)) |
| 1167 | goto done; |
| 1168 | |
| 1169 | /* This should never be called or scheduled if there is currently |
| 1170 | * a scan active in the hardware. */ |
| 1171 | if (test_bit(STATUS_SCAN_HW, &priv->status)) { |
| 1172 | IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests in parallel. " |
| 1173 | "Ignoring second request.\n"); |
| 1174 | goto done; |
| 1175 | } |
| 1176 | |
| 1177 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 1178 | IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n"); |
| 1179 | goto done; |
| 1180 | } |
| 1181 | |
| 1182 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 1183 | IWL_DEBUG_HC(priv, "Scan request while abort pending. Queuing.\n"); |
| 1184 | goto done; |
| 1185 | } |
| 1186 | |
| 1187 | if (iwl_is_rfkill(priv)) { |
| 1188 | IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n"); |
| 1189 | goto done; |
| 1190 | } |
| 1191 | |
| 1192 | if (!test_bit(STATUS_READY, &priv->status)) { |
| 1193 | IWL_DEBUG_HC(priv, "Scan request while uninitialized. Queuing.\n"); |
| 1194 | goto done; |
| 1195 | } |
| 1196 | |
| 1197 | if (!priv->scan_cmd) { |
| 1198 | priv->scan_cmd = kmalloc(sizeof(struct iwl_scan_cmd) + |
| 1199 | IWL_MAX_SCAN_SIZE, GFP_KERNEL); |
| 1200 | if (!priv->scan_cmd) { |
| 1201 | IWL_DEBUG_SCAN(priv, |
| 1202 | "fail to allocate memory for scan\n"); |
| 1203 | goto done; |
| 1204 | } |
| 1205 | } |
| 1206 | scan = priv->scan_cmd; |
| 1207 | memset(scan, 0, sizeof(struct iwl_scan_cmd) + IWL_MAX_SCAN_SIZE); |
| 1208 | |
| 1209 | scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH; |
| 1210 | scan->quiet_time = IWL_ACTIVE_QUIET_TIME; |
| 1211 | |
| 1212 | if (iwl_is_associated(priv)) { |
| 1213 | u16 interval = 0; |
| 1214 | u32 extra; |
| 1215 | u32 suspend_time = 100; |
| 1216 | u32 scan_suspend_time = 100; |
| 1217 | unsigned long flags; |
| 1218 | |
| 1219 | IWL_DEBUG_INFO(priv, "Scanning while associated...\n"); |
| 1220 | spin_lock_irqsave(&priv->lock, flags); |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1221 | interval = vif ? vif->bss_conf.beacon_int : 0; |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1222 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1223 | |
| 1224 | scan->suspend_time = 0; |
| 1225 | scan->max_out_time = cpu_to_le32(200 * 1024); |
| 1226 | if (!interval) |
| 1227 | interval = suspend_time; |
| 1228 | |
| 1229 | extra = (suspend_time / interval) << 22; |
| 1230 | scan_suspend_time = (extra | |
| 1231 | ((suspend_time % interval) * 1024)); |
| 1232 | scan->suspend_time = cpu_to_le32(scan_suspend_time); |
| 1233 | IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n", |
| 1234 | scan_suspend_time, interval); |
| 1235 | } |
| 1236 | |
| 1237 | if (priv->is_internal_short_scan) { |
| 1238 | IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n"); |
| 1239 | } else if (priv->scan_request->n_ssids) { |
| 1240 | int i, p = 0; |
| 1241 | IWL_DEBUG_SCAN(priv, "Kicking off active scan\n"); |
| 1242 | for (i = 0; i < priv->scan_request->n_ssids; i++) { |
| 1243 | /* always does wildcard anyway */ |
| 1244 | if (!priv->scan_request->ssids[i].ssid_len) |
| 1245 | continue; |
| 1246 | scan->direct_scan[p].id = WLAN_EID_SSID; |
| 1247 | scan->direct_scan[p].len = |
| 1248 | priv->scan_request->ssids[i].ssid_len; |
| 1249 | memcpy(scan->direct_scan[p].ssid, |
| 1250 | priv->scan_request->ssids[i].ssid, |
| 1251 | priv->scan_request->ssids[i].ssid_len); |
| 1252 | n_probes++; |
| 1253 | p++; |
| 1254 | } |
| 1255 | is_active = true; |
| 1256 | } else |
| 1257 | IWL_DEBUG_SCAN(priv, "Start passive scan.\n"); |
| 1258 | |
| 1259 | scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK; |
| 1260 | scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id; |
| 1261 | scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 1262 | |
| 1263 | switch (priv->scan_band) { |
| 1264 | case IEEE80211_BAND_2GHZ: |
| 1265 | scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK; |
| 1266 | chan_mod = le32_to_cpu(priv->active_rxon.flags & RXON_FLG_CHANNEL_MODE_MSK) |
| 1267 | >> RXON_FLG_CHANNEL_MODE_POS; |
| 1268 | if (chan_mod == CHANNEL_MODE_PURE_40) { |
| 1269 | rate = IWL_RATE_6M_PLCP; |
| 1270 | } else { |
| 1271 | rate = IWL_RATE_1M_PLCP; |
| 1272 | rate_flags = RATE_MCS_CCK_MSK; |
| 1273 | } |
Reinette Chatre | ad41ee3 | 2010-04-30 15:13:00 -0700 | [diff] [blame] | 1274 | scan->good_CRC_th = IWL_GOOD_CRC_TH_DISABLED; |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1275 | break; |
| 1276 | case IEEE80211_BAND_5GHZ: |
| 1277 | rate = IWL_RATE_6M_PLCP; |
| 1278 | /* |
Reinette Chatre | ad41ee3 | 2010-04-30 15:13:00 -0700 | [diff] [blame] | 1279 | * If active scanning is requested but a certain channel is |
| 1280 | * marked passive, we can do active scanning if we detect |
| 1281 | * transmissions. |
| 1282 | * |
| 1283 | * There is an issue with some firmware versions that triggers |
| 1284 | * a sysassert on a "good CRC threshold" of zero (== disabled), |
| 1285 | * on a radar channel even though this means that we should NOT |
| 1286 | * send probes. |
| 1287 | * |
| 1288 | * The "good CRC threshold" is the number of frames that we |
| 1289 | * need to receive during our dwell time on a channel before |
| 1290 | * sending out probes -- setting this to a huge value will |
| 1291 | * mean we never reach it, but at the same time work around |
| 1292 | * the aforementioned issue. Thus use IWL_GOOD_CRC_TH_NEVER |
| 1293 | * here instead of IWL_GOOD_CRC_TH_DISABLED. |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1294 | */ |
Reinette Chatre | ad41ee3 | 2010-04-30 15:13:00 -0700 | [diff] [blame] | 1295 | scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT : |
| 1296 | IWL_GOOD_CRC_TH_NEVER; |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1297 | break; |
| 1298 | default: |
| 1299 | IWL_WARN(priv, "Invalid scan band count\n"); |
| 1300 | goto done; |
| 1301 | } |
| 1302 | |
| 1303 | band = priv->scan_band; |
| 1304 | |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame^] | 1305 | if (priv->cfg->scan_rx_antennas[band]) |
| 1306 | rx_ant = priv->cfg->scan_rx_antennas[band]; |
Johannes Berg | e7cb495 | 2010-04-13 01:04:35 -0700 | [diff] [blame] | 1307 | |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame^] | 1308 | if (priv->cfg->scan_tx_antennas[band]) |
| 1309 | scan_tx_antennas = priv->cfg->scan_tx_antennas[band]; |
| 1310 | |
| 1311 | priv->scan_tx_ant[band] = iwl_toggle_tx_ant(priv, priv->scan_tx_ant[band], |
| 1312 | scan_tx_antennas); |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1313 | rate_flags |= iwl_ant_idx_to_flags(priv->scan_tx_ant[band]); |
| 1314 | scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags); |
| 1315 | |
| 1316 | /* In power save mode use one chain, otherwise use all chains */ |
| 1317 | if (test_bit(STATUS_POWER_PMI, &priv->status)) { |
| 1318 | /* rx_ant has been set to all valid chains previously */ |
| 1319 | active_chains = rx_ant & |
| 1320 | ((u8)(priv->chain_noise_data.active_chains)); |
| 1321 | if (!active_chains) |
| 1322 | active_chains = rx_ant; |
| 1323 | |
| 1324 | IWL_DEBUG_SCAN(priv, "chain_noise_data.active_chains: %u\n", |
| 1325 | priv->chain_noise_data.active_chains); |
| 1326 | |
| 1327 | rx_ant = first_antenna(active_chains); |
| 1328 | } |
| 1329 | /* MIMO is not used here, but value is required */ |
| 1330 | rx_chain |= priv->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS; |
| 1331 | rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS; |
| 1332 | rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS; |
| 1333 | rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS; |
| 1334 | scan->rx_chain = cpu_to_le16(rx_chain); |
| 1335 | if (!priv->is_internal_short_scan) { |
| 1336 | cmd_len = iwl_fill_probe_req(priv, |
| 1337 | (struct ieee80211_mgmt *)scan->data, |
Johannes Berg | 3a0b9aa | 2010-05-12 03:33:12 -0700 | [diff] [blame] | 1338 | vif->addr, |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1339 | priv->scan_request->ie, |
| 1340 | priv->scan_request->ie_len, |
| 1341 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); |
| 1342 | } else { |
Johannes Berg | 3a0b9aa | 2010-05-12 03:33:12 -0700 | [diff] [blame] | 1343 | /* use bcast addr, will not be transmitted but must be valid */ |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1344 | cmd_len = iwl_fill_probe_req(priv, |
| 1345 | (struct ieee80211_mgmt *)scan->data, |
Johannes Berg | 3a0b9aa | 2010-05-12 03:33:12 -0700 | [diff] [blame] | 1346 | iwl_bcast_addr, NULL, 0, |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1347 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); |
| 1348 | |
| 1349 | } |
| 1350 | scan->tx_cmd.len = cpu_to_le16(cmd_len); |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1351 | |
| 1352 | scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK | |
| 1353 | RXON_FILTER_BCON_AWARE_MSK); |
| 1354 | |
| 1355 | if (priv->is_internal_short_scan) { |
| 1356 | scan->channel_count = |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1357 | iwl_get_single_channel_for_scan(priv, vif, band, |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1358 | (void *)&scan->data[le16_to_cpu( |
| 1359 | scan->tx_cmd.len)]); |
| 1360 | } else { |
| 1361 | scan->channel_count = |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 1362 | iwl_get_channels_for_scan(priv, vif, band, |
Johannes Berg | b6e4c55 | 2010-04-06 04:12:42 -0700 | [diff] [blame] | 1363 | is_active, n_probes, |
| 1364 | (void *)&scan->data[le16_to_cpu( |
| 1365 | scan->tx_cmd.len)]); |
| 1366 | } |
| 1367 | if (scan->channel_count == 0) { |
| 1368 | IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count); |
| 1369 | goto done; |
| 1370 | } |
| 1371 | |
| 1372 | cmd.len += le16_to_cpu(scan->tx_cmd.len) + |
| 1373 | scan->channel_count * sizeof(struct iwl_scan_channel); |
| 1374 | cmd.data = scan; |
| 1375 | scan->len = cpu_to_le16(cmd.len); |
| 1376 | |
| 1377 | set_bit(STATUS_SCAN_HW, &priv->status); |
| 1378 | if (iwl_send_cmd_sync(priv, &cmd)) |
| 1379 | goto done; |
| 1380 | |
| 1381 | queue_delayed_work(priv->workqueue, &priv->scan_check, |
| 1382 | IWL_SCAN_CHECK_WATCHDOG); |
| 1383 | |
| 1384 | return; |
| 1385 | |
| 1386 | done: |
| 1387 | /* Cannot perform scan. Make sure we clear scanning |
| 1388 | * bits from status so next scan request can be performed. |
| 1389 | * If we don't clear scanning status bit here all next scan |
| 1390 | * will fail |
| 1391 | */ |
| 1392 | clear_bit(STATUS_SCAN_HW, &priv->status); |
| 1393 | clear_bit(STATUS_SCANNING, &priv->status); |
| 1394 | /* inform mac80211 scan aborted */ |
| 1395 | queue_work(priv->workqueue, &priv->scan_completed); |
| 1396 | } |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 1397 | |
| 1398 | int iwlagn_manage_ibss_station(struct iwl_priv *priv, |
| 1399 | struct ieee80211_vif *vif, bool add) |
| 1400 | { |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 1401 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 1402 | |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 1403 | if (add) |
Johannes Berg | 57f8db8 | 2010-04-30 11:30:49 -0700 | [diff] [blame] | 1404 | return iwl_add_bssid_station(priv, vif->bss_conf.bssid, true, |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 1405 | &vif_priv->ibss_bssid_sta_id); |
| 1406 | return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id, |
| 1407 | vif->bss_conf.bssid); |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 1408 | } |
Johannes Berg | 1ff504e | 2010-05-03 01:22:42 -0700 | [diff] [blame] | 1409 | |
| 1410 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, |
| 1411 | int sta_id, int tid, int freed) |
| 1412 | { |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1413 | WARN_ON(!spin_is_locked(&priv->sta_lock)); |
| 1414 | |
Johannes Berg | 1ff504e | 2010-05-03 01:22:42 -0700 | [diff] [blame] | 1415 | if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed) |
| 1416 | priv->stations[sta_id].tid[tid].tfds_in_queue -= freed; |
| 1417 | else { |
| 1418 | IWL_DEBUG_TX(priv, "free more than tfds_in_queue (%u:%d)\n", |
| 1419 | priv->stations[sta_id].tid[tid].tfds_in_queue, |
| 1420 | freed); |
| 1421 | priv->stations[sta_id].tid[tid].tfds_in_queue = 0; |
| 1422 | } |
| 1423 | } |