1 /******************************************************************************
3 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
30 #include <linux/etherdevice.h>
31 #include <linux/slab.h>
32 #include <linux/sched.h>
33 #include <net/mac80211.h>
34 #include <asm/unaligned.h>
35 #include "iwl-eeprom.h"
40 #include "iwl-helpers.h"
41 #include "iwl-agn-calib.h"
45 /******************************************************************************
47 * Generic RX handler implementations
49 ******************************************************************************/
51 static void iwl_rx_reply_error(struct iwl_priv
*priv
,
52 struct iwl_rx_mem_buffer
*rxb
)
54 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
56 IWL_ERR(priv
, "Error Reply type 0x%08X cmd %s (0x%02X) "
57 "seq 0x%04X ser 0x%08X\n",
58 le32_to_cpu(pkt
->u
.err_resp
.error_type
),
59 get_cmd_string(pkt
->u
.err_resp
.cmd_id
),
60 pkt
->u
.err_resp
.cmd_id
,
61 le16_to_cpu(pkt
->u
.err_resp
.bad_cmd_seq_num
),
62 le32_to_cpu(pkt
->u
.err_resp
.error_info
));
65 static void iwl_rx_csa(struct iwl_priv
*priv
, struct iwl_rx_mem_buffer
*rxb
)
67 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
68 struct iwl_csa_notification
*csa
= &(pkt
->u
.csa_notif
);
71 * See iwl_mac_channel_switch.
73 struct iwl_rxon_context
*ctx
= &priv
->contexts
[IWL_RXON_CTX_BSS
];
74 struct iwl_rxon_cmd
*rxon
= (void *)&ctx
->active
;
76 if (!test_bit(STATUS_CHANNEL_SWITCH_PENDING
, &priv
->status
))
79 if (!le32_to_cpu(csa
->status
) && csa
->channel
== priv
->switch_channel
) {
80 rxon
->channel
= csa
->channel
;
81 ctx
->staging
.channel
= csa
->channel
;
82 IWL_DEBUG_11H(priv
, "CSA notif: channel %d\n",
83 le16_to_cpu(csa
->channel
));
84 iwl_chswitch_done(priv
, true);
86 IWL_ERR(priv
, "CSA notif (fail) : channel %d\n",
87 le16_to_cpu(csa
->channel
));
88 iwl_chswitch_done(priv
, false);
93 static void iwl_rx_spectrum_measure_notif(struct iwl_priv
*priv
,
94 struct iwl_rx_mem_buffer
*rxb
)
96 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
97 struct iwl_spectrum_notification
*report
= &(pkt
->u
.spectrum_notif
);
101 "Spectrum Measure Notification: Start\n");
105 memcpy(&priv
->measure_report
, report
, sizeof(*report
));
106 priv
->measurement_status
|= MEASUREMENT_READY
;
109 static void iwl_rx_pm_sleep_notif(struct iwl_priv
*priv
,
110 struct iwl_rx_mem_buffer
*rxb
)
112 #ifdef CONFIG_IWLWIFI_DEBUG
113 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
114 struct iwl_sleep_notification
*sleep
= &(pkt
->u
.sleep_notif
);
115 IWL_DEBUG_RX(priv
, "sleep mode: %d, src: %d\n",
116 sleep
->pm_sleep_mode
, sleep
->pm_wakeup_src
);
120 static void iwl_rx_pm_debug_statistics_notif(struct iwl_priv
*priv
,
121 struct iwl_rx_mem_buffer
*rxb
)
123 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
124 u32 len
= le32_to_cpu(pkt
->len_n_flags
) & FH_RSCSR_FRAME_SIZE_MSK
;
125 IWL_DEBUG_RADIO(priv
, "Dumping %d bytes of unhandled "
126 "notification for %s:\n", len
,
127 get_cmd_string(pkt
->hdr
.cmd
));
128 iwl_print_hex_dump(priv
, IWL_DL_RADIO
, pkt
->u
.raw
, len
);
131 static void iwl_rx_beacon_notif(struct iwl_priv
*priv
,
132 struct iwl_rx_mem_buffer
*rxb
)
134 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
135 struct iwlagn_beacon_notif
*beacon
= (void *)pkt
->u
.raw
;
136 #ifdef CONFIG_IWLWIFI_DEBUG
137 u16 status
= le16_to_cpu(beacon
->beacon_notify_hdr
.status
.status
);
138 u8 rate
= iwl_hw_get_rate(beacon
->beacon_notify_hdr
.rate_n_flags
);
140 IWL_DEBUG_RX(priv
, "beacon status %#x, retries:%d ibssmgr:%d "
141 "tsf:0x%.8x%.8x rate:%d\n",
142 status
& TX_STATUS_MSK
,
143 beacon
->beacon_notify_hdr
.failure_frame
,
144 le32_to_cpu(beacon
->ibss_mgr_status
),
145 le32_to_cpu(beacon
->high_tsf
),
146 le32_to_cpu(beacon
->low_tsf
), rate
);
149 priv
->ibss_manager
= le32_to_cpu(beacon
->ibss_mgr_status
);
151 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
152 queue_work(priv
->workqueue
, &priv
->beacon_update
);
155 /* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
156 #define ACK_CNT_RATIO (50)
157 #define BA_TIMEOUT_CNT (5)
158 #define BA_TIMEOUT_MAX (16)
161 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
163 * When the ACK count ratio is low and aggregated BA timeout retries exceeding
164 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
167 static bool iwl_good_ack_health(struct iwl_priv
*priv
,
168 struct statistics_tx
*cur
)
170 int actual_delta
, expected_delta
, ba_timeout_delta
;
171 struct statistics_tx
*old
;
173 if (priv
->agg_tids_count
)
176 old
= &priv
->statistics
.tx
;
178 actual_delta
= le32_to_cpu(cur
->actual_ack_cnt
) -
179 le32_to_cpu(old
->actual_ack_cnt
);
180 expected_delta
= le32_to_cpu(cur
->expected_ack_cnt
) -
181 le32_to_cpu(old
->expected_ack_cnt
);
183 /* Values should not be negative, but we do not trust the firmware */
184 if (actual_delta
<= 0 || expected_delta
<= 0)
187 ba_timeout_delta
= le32_to_cpu(cur
->agg
.ba_timeout
) -
188 le32_to_cpu(old
->agg
.ba_timeout
);
190 if ((actual_delta
* 100 / expected_delta
) < ACK_CNT_RATIO
&&
191 ba_timeout_delta
> BA_TIMEOUT_CNT
) {
192 IWL_DEBUG_RADIO(priv
, "deltas: actual %d expected %d ba_timeout %d\n",
193 actual_delta
, expected_delta
, ba_timeout_delta
);
195 #ifdef CONFIG_IWLWIFI_DEBUGFS
197 * This is ifdef'ed on DEBUGFS because otherwise the
198 * statistics aren't available. If DEBUGFS is set but
199 * DEBUG is not, these will just compile out.
201 IWL_DEBUG_RADIO(priv
, "rx_detected_cnt delta %d\n",
202 priv
->delta_stats
.tx
.rx_detected_cnt
);
203 IWL_DEBUG_RADIO(priv
,
204 "ack_or_ba_timeout_collision delta %d\n",
205 priv
->delta_stats
.tx
.ack_or_ba_timeout_collision
);
208 if (ba_timeout_delta
>= BA_TIMEOUT_MAX
)
216 * iwl_good_plcp_health - checks for plcp error.
218 * When the plcp error is exceeding the thresholds, reset the radio
219 * to improve the throughput.
221 static bool iwl_good_plcp_health(struct iwl_priv
*priv
,
222 struct statistics_rx_phy
*cur_ofdm
,
223 struct statistics_rx_ht_phy
*cur_ofdm_ht
,
227 int threshold
= priv
->cfg
->base_params
->plcp_delta_threshold
;
229 if (threshold
== IWL_MAX_PLCP_ERR_THRESHOLD_DISABLE
) {
230 IWL_DEBUG_RADIO(priv
, "plcp_err check disabled\n");
234 delta
= le32_to_cpu(cur_ofdm
->plcp_err
) -
235 le32_to_cpu(priv
->statistics
.rx_ofdm
.plcp_err
) +
236 le32_to_cpu(cur_ofdm_ht
->plcp_err
) -
237 le32_to_cpu(priv
->statistics
.rx_ofdm_ht
.plcp_err
);
239 /* Can be negative if firmware reset statistics */
243 if ((delta
* 100 / msecs
) > threshold
) {
244 IWL_DEBUG_RADIO(priv
,
245 "plcp health threshold %u delta %d msecs %u\n",
246 threshold
, delta
, msecs
);
253 static void iwl_recover_from_statistics(struct iwl_priv
*priv
,
254 struct statistics_rx_phy
*cur_ofdm
,
255 struct statistics_rx_ht_phy
*cur_ofdm_ht
,
256 struct statistics_tx
*tx
,
261 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
264 msecs
= jiffies_to_msecs(stamp
- priv
->rx_statistics_jiffies
);
266 /* Only gather statistics and update time stamp when not associated */
267 if (!iwl_is_any_associated(priv
))
270 /* Do not check/recover when do not have enough statistics data */
274 if (iwlagn_mod_params
.ack_check
&& !iwl_good_ack_health(priv
, tx
)) {
275 IWL_ERR(priv
, "low ack count detected, restart firmware\n");
276 if (!iwl_force_reset(priv
, IWL_FW_RESET
, false))
280 if (iwlagn_mod_params
.plcp_check
&&
281 !iwl_good_plcp_health(priv
, cur_ofdm
, cur_ofdm_ht
, msecs
))
282 iwl_force_reset(priv
, IWL_RF_RESET
, false);
285 /* Calculate noise level, based on measurements during network silence just
286 * before arriving beacon. This measurement can be done only if we know
287 * exactly when to expect beacons, therefore only when we're associated. */
288 static void iwl_rx_calc_noise(struct iwl_priv
*priv
)
290 struct statistics_rx_non_phy
*rx_info
;
291 int num_active_rx
= 0;
292 int total_silence
= 0;
293 int bcn_silence_a
, bcn_silence_b
, bcn_silence_c
;
296 rx_info
= &priv
->statistics
.rx_non_phy
;
299 le32_to_cpu(rx_info
->beacon_silence_rssi_a
) & IN_BAND_FILTER
;
301 le32_to_cpu(rx_info
->beacon_silence_rssi_b
) & IN_BAND_FILTER
;
303 le32_to_cpu(rx_info
->beacon_silence_rssi_c
) & IN_BAND_FILTER
;
306 total_silence
+= bcn_silence_a
;
310 total_silence
+= bcn_silence_b
;
314 total_silence
+= bcn_silence_c
;
318 /* Average among active antennas */
320 last_rx_noise
= (total_silence
/ num_active_rx
) - 107;
322 last_rx_noise
= IWL_NOISE_MEAS_NOT_AVAILABLE
;
324 IWL_DEBUG_CALIB(priv
, "inband silence a %u, b %u, c %u, dBm %d\n",
325 bcn_silence_a
, bcn_silence_b
, bcn_silence_c
,
329 #ifdef CONFIG_IWLWIFI_DEBUGFS
331 * based on the assumption of all statistics counter are in DWORD
332 * FIXME: This function is for debugging, do not deal with
333 * the case of counters roll-over.
335 static void accum_stats(__le32
*prev
, __le32
*cur
, __le32
*delta
,
336 __le32
*max_delta
, __le32
*accum
, int size
)
341 i
< size
/ sizeof(__le32
);
342 i
++, prev
++, cur
++, delta
++, max_delta
++, accum
++) {
343 if (le32_to_cpu(*cur
) > le32_to_cpu(*prev
)) {
344 *delta
= cpu_to_le32(
345 le32_to_cpu(*cur
) - le32_to_cpu(*prev
));
346 le32_add_cpu(accum
, le32_to_cpu(*delta
));
347 if (le32_to_cpu(*delta
) > le32_to_cpu(*max_delta
))
354 iwl_accumulative_statistics(struct iwl_priv
*priv
,
355 struct statistics_general_common
*common
,
356 struct statistics_rx_non_phy
*rx_non_phy
,
357 struct statistics_rx_phy
*rx_ofdm
,
358 struct statistics_rx_ht_phy
*rx_ofdm_ht
,
359 struct statistics_rx_phy
*rx_cck
,
360 struct statistics_tx
*tx
,
361 struct statistics_bt_activity
*bt_activity
)
363 #define ACCUM(_name) \
364 accum_stats((__le32 *)&priv->statistics._name, \
366 (__le32 *)&priv->delta_stats._name, \
367 (__le32 *)&priv->max_delta_stats._name, \
368 (__le32 *)&priv->accum_stats._name, \
383 iwl_accumulative_statistics(struct iwl_priv
*priv
,
384 struct statistics_general_common
*common
,
385 struct statistics_rx_non_phy
*rx_non_phy
,
386 struct statistics_rx_phy
*rx_ofdm
,
387 struct statistics_rx_ht_phy
*rx_ofdm_ht
,
388 struct statistics_rx_phy
*rx_cck
,
389 struct statistics_tx
*tx
,
390 struct statistics_bt_activity
*bt_activity
)
395 static void iwl_rx_statistics(struct iwl_priv
*priv
,
396 struct iwl_rx_mem_buffer
*rxb
)
398 unsigned long stamp
= jiffies
;
399 const int reg_recalib_period
= 60;
401 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
402 u32 len
= le32_to_cpu(pkt
->len_n_flags
) & FH_RSCSR_FRAME_SIZE_MSK
;
404 struct statistics_general_common
*common
;
405 struct statistics_rx_non_phy
*rx_non_phy
;
406 struct statistics_rx_phy
*rx_ofdm
;
407 struct statistics_rx_ht_phy
*rx_ofdm_ht
;
408 struct statistics_rx_phy
*rx_cck
;
409 struct statistics_tx
*tx
;
410 struct statistics_bt_activity
*bt_activity
;
412 len
-= sizeof(struct iwl_cmd_header
); /* skip header */
414 IWL_DEBUG_RX(priv
, "Statistics notification received (%d bytes).\n",
417 if (len
== sizeof(struct iwl_bt_notif_statistics
)) {
418 struct iwl_bt_notif_statistics
*stats
;
419 stats
= &pkt
->u
.stats_bt
;
421 common
= &stats
->general
.common
;
422 rx_non_phy
= &stats
->rx
.general
.common
;
423 rx_ofdm
= &stats
->rx
.ofdm
;
424 rx_ofdm_ht
= &stats
->rx
.ofdm_ht
;
425 rx_cck
= &stats
->rx
.cck
;
427 bt_activity
= &stats
->general
.activity
;
429 #ifdef CONFIG_IWLWIFI_DEBUGFS
430 /* handle this exception directly */
431 priv
->statistics
.num_bt_kills
= stats
->rx
.general
.num_bt_kills
;
432 le32_add_cpu(&priv
->statistics
.accum_num_bt_kills
,
433 le32_to_cpu(stats
->rx
.general
.num_bt_kills
));
435 } else if (len
== sizeof(struct iwl_notif_statistics
)) {
436 struct iwl_notif_statistics
*stats
;
437 stats
= &pkt
->u
.stats
;
439 common
= &stats
->general
.common
;
440 rx_non_phy
= &stats
->rx
.general
;
441 rx_ofdm
= &stats
->rx
.ofdm
;
442 rx_ofdm_ht
= &stats
->rx
.ofdm_ht
;
443 rx_cck
= &stats
->rx
.cck
;
447 WARN_ONCE(1, "len %d doesn't match BT (%zu) or normal (%zu)\n",
448 len
, sizeof(struct iwl_bt_notif_statistics
),
449 sizeof(struct iwl_notif_statistics
));
453 change
= common
->temperature
!= priv
->statistics
.common
.temperature
||
454 (*flag
& STATISTICS_REPLY_FLG_HT40_MODE_MSK
) !=
455 (priv
->statistics
.flag
& STATISTICS_REPLY_FLG_HT40_MODE_MSK
);
457 iwl_accumulative_statistics(priv
, common
, rx_non_phy
, rx_ofdm
,
458 rx_ofdm_ht
, rx_cck
, tx
, bt_activity
);
460 iwl_recover_from_statistics(priv
, rx_ofdm
, rx_ofdm_ht
, tx
, stamp
);
462 priv
->statistics
.flag
= *flag
;
463 memcpy(&priv
->statistics
.common
, common
, sizeof(*common
));
464 memcpy(&priv
->statistics
.rx_non_phy
, rx_non_phy
, sizeof(*rx_non_phy
));
465 memcpy(&priv
->statistics
.rx_ofdm
, rx_ofdm
, sizeof(*rx_ofdm
));
466 memcpy(&priv
->statistics
.rx_ofdm_ht
, rx_ofdm_ht
, sizeof(*rx_ofdm_ht
));
467 memcpy(&priv
->statistics
.rx_cck
, rx_cck
, sizeof(*rx_cck
));
468 memcpy(&priv
->statistics
.tx
, tx
, sizeof(*tx
));
469 #ifdef CONFIG_IWLWIFI_DEBUGFS
471 memcpy(&priv
->statistics
.bt_activity
, bt_activity
,
472 sizeof(*bt_activity
));
475 priv
->rx_statistics_jiffies
= stamp
;
477 set_bit(STATUS_STATISTICS
, &priv
->status
);
479 /* Reschedule the statistics timer to occur in
480 * reg_recalib_period seconds to ensure we get a
481 * thermal update even if the uCode doesn't give
483 mod_timer(&priv
->statistics_periodic
, jiffies
+
484 msecs_to_jiffies(reg_recalib_period
* 1000));
486 if (unlikely(!test_bit(STATUS_SCANNING
, &priv
->status
)) &&
487 (pkt
->hdr
.cmd
== STATISTICS_NOTIFICATION
)) {
488 iwl_rx_calc_noise(priv
);
489 queue_work(priv
->workqueue
, &priv
->run_time_calib_work
);
491 if (priv
->cfg
->lib
->temperature
&& change
)
492 priv
->cfg
->lib
->temperature(priv
);
495 static void iwl_rx_reply_statistics(struct iwl_priv
*priv
,
496 struct iwl_rx_mem_buffer
*rxb
)
498 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
500 if (le32_to_cpu(pkt
->u
.stats
.flag
) & UCODE_STATISTICS_CLEAR_MSK
) {
501 #ifdef CONFIG_IWLWIFI_DEBUGFS
502 memset(&priv
->accum_stats
, 0,
503 sizeof(priv
->accum_stats
));
504 memset(&priv
->delta_stats
, 0,
505 sizeof(priv
->delta_stats
));
506 memset(&priv
->max_delta_stats
, 0,
507 sizeof(priv
->max_delta_stats
));
509 IWL_DEBUG_RX(priv
, "Statistics have been cleared\n");
511 iwl_rx_statistics(priv
, rxb
);
514 /* Handle notification from uCode that card's power state is changing
515 * due to software, hardware, or critical temperature RFKILL */
516 static void iwl_rx_card_state_notif(struct iwl_priv
*priv
,
517 struct iwl_rx_mem_buffer
*rxb
)
519 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
520 u32 flags
= le32_to_cpu(pkt
->u
.card_state_notif
.flags
);
521 unsigned long status
= priv
->status
;
523 IWL_DEBUG_RF_KILL(priv
, "Card state received: HW:%s SW:%s CT:%s\n",
524 (flags
& HW_CARD_DISABLED
) ? "Kill" : "On",
525 (flags
& SW_CARD_DISABLED
) ? "Kill" : "On",
526 (flags
& CT_CARD_DISABLED
) ?
527 "Reached" : "Not reached");
529 if (flags
& (SW_CARD_DISABLED
| HW_CARD_DISABLED
|
532 iwl_write32(priv
, CSR_UCODE_DRV_GP1_SET
,
533 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
535 iwl_write_direct32(priv
, HBUS_TARG_MBX_C
,
536 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED
);
538 if (!(flags
& RXON_CARD_DISABLED
)) {
539 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
,
540 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
541 iwl_write_direct32(priv
, HBUS_TARG_MBX_C
,
542 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED
);
544 if (flags
& CT_CARD_DISABLED
)
545 iwl_tt_enter_ct_kill(priv
);
547 if (!(flags
& CT_CARD_DISABLED
))
548 iwl_tt_exit_ct_kill(priv
);
550 if (flags
& HW_CARD_DISABLED
)
551 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
553 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
556 if (!(flags
& RXON_CARD_DISABLED
))
557 iwl_scan_cancel(priv
);
559 if ((test_bit(STATUS_RF_KILL_HW
, &status
) !=
560 test_bit(STATUS_RF_KILL_HW
, &priv
->status
)))
561 wiphy_rfkill_set_hw_state(priv
->hw
->wiphy
,
562 test_bit(STATUS_RF_KILL_HW
, &priv
->status
));
564 wake_up_interruptible(&priv
->wait_command_queue
);
567 static void iwl_rx_missed_beacon_notif(struct iwl_priv
*priv
,
568 struct iwl_rx_mem_buffer
*rxb
)
571 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
572 struct iwl_missed_beacon_notif
*missed_beacon
;
574 missed_beacon
= &pkt
->u
.missed_beacon
;
575 if (le32_to_cpu(missed_beacon
->consecutive_missed_beacons
) >
576 priv
->missed_beacon_threshold
) {
577 IWL_DEBUG_CALIB(priv
,
578 "missed bcn cnsq %d totl %d rcd %d expctd %d\n",
579 le32_to_cpu(missed_beacon
->consecutive_missed_beacons
),
580 le32_to_cpu(missed_beacon
->total_missed_becons
),
581 le32_to_cpu(missed_beacon
->num_recvd_beacons
),
582 le32_to_cpu(missed_beacon
->num_expected_beacons
));
583 if (!test_bit(STATUS_SCANNING
, &priv
->status
))
584 iwl_init_sensitivity(priv
);
588 /* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
589 * This will be used later in iwl_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
590 static void iwl_rx_reply_rx_phy(struct iwl_priv
*priv
,
591 struct iwl_rx_mem_buffer
*rxb
)
593 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
595 priv
->last_phy_res_valid
= true;
596 memcpy(&priv
->last_phy_res
, pkt
->u
.raw
,
597 sizeof(struct iwl_rx_phy_res
));
601 * returns non-zero if packet should be dropped
603 static int iwl_set_decrypted_flag(struct iwl_priv
*priv
,
604 struct ieee80211_hdr
*hdr
,
606 struct ieee80211_rx_status
*stats
)
608 u16 fc
= le16_to_cpu(hdr
->frame_control
);
611 * All contexts have the same setting here due to it being
612 * a module parameter, so OK to check any context.
614 if (priv
->contexts
[IWL_RXON_CTX_BSS
].active
.filter_flags
&
615 RXON_FILTER_DIS_DECRYPT_MSK
)
618 if (!(fc
& IEEE80211_FCTL_PROTECTED
))
621 IWL_DEBUG_RX(priv
, "decrypt_res:0x%x\n", decrypt_res
);
622 switch (decrypt_res
& RX_RES_STATUS_SEC_TYPE_MSK
) {
623 case RX_RES_STATUS_SEC_TYPE_TKIP
:
624 /* The uCode has got a bad phase 1 Key, pushes the packet.
625 * Decryption will be done in SW. */
626 if ((decrypt_res
& RX_RES_STATUS_DECRYPT_TYPE_MSK
) ==
627 RX_RES_STATUS_BAD_KEY_TTAK
)
630 case RX_RES_STATUS_SEC_TYPE_WEP
:
631 if ((decrypt_res
& RX_RES_STATUS_DECRYPT_TYPE_MSK
) ==
632 RX_RES_STATUS_BAD_ICV_MIC
) {
633 /* bad ICV, the packet is destroyed since the
634 * decryption is inplace, drop it */
635 IWL_DEBUG_RX(priv
, "Packet destroyed\n");
638 case RX_RES_STATUS_SEC_TYPE_CCMP
:
639 if ((decrypt_res
& RX_RES_STATUS_DECRYPT_TYPE_MSK
) ==
640 RX_RES_STATUS_DECRYPT_OK
) {
641 IWL_DEBUG_RX(priv
, "hw decrypt successfully!!!\n");
642 stats
->flag
|= RX_FLAG_DECRYPTED
;
652 static void iwl_pass_packet_to_mac80211(struct iwl_priv
*priv
,
653 struct ieee80211_hdr
*hdr
,
656 struct iwl_rx_mem_buffer
*rxb
,
657 struct ieee80211_rx_status
*stats
)
660 __le16 fc
= hdr
->frame_control
;
661 struct iwl_rxon_context
*ctx
;
663 /* We only process data packets if the interface is open */
664 if (unlikely(!priv
->is_open
)) {
665 IWL_DEBUG_DROP_LIMIT(priv
,
666 "Dropping packet while interface is not open.\n");
670 /* In case of HW accelerated crypto and bad decryption, drop */
671 if (!iwlagn_mod_params
.sw_crypto
&&
672 iwl_set_decrypted_flag(priv
, hdr
, ampdu_status
, stats
))
675 skb
= dev_alloc_skb(128);
677 IWL_ERR(priv
, "dev_alloc_skb failed\n");
681 skb_add_rx_frag(skb
, 0, rxb
->page
, (void *)hdr
- rxb_addr(rxb
), len
);
683 iwl_update_stats(priv
, false, fc
, len
);
686 * Wake any queues that were stopped due to a passive channel tx
687 * failure. This can happen because the regulatory enforcement in
688 * the device waits for a beacon before allowing transmission,
689 * sometimes even after already having transmitted frames for the
690 * association because the new RXON may reset the information.
692 if (unlikely(ieee80211_is_beacon(fc
))) {
693 for_each_context(priv
, ctx
) {
694 if (!ctx
->last_tx_rejected
)
696 if (compare_ether_addr(hdr
->addr3
,
697 ctx
->active
.bssid_addr
))
699 ctx
->last_tx_rejected
= false;
700 iwl_wake_any_queue(priv
, ctx
);
704 memcpy(IEEE80211_SKB_RXCB(skb
), stats
, sizeof(*stats
));
706 ieee80211_rx(priv
->hw
, skb
);
710 static u32
iwl_translate_rx_status(struct iwl_priv
*priv
, u32 decrypt_in
)
714 if ((decrypt_in
& RX_RES_STATUS_STATION_FOUND
) ==
715 RX_RES_STATUS_STATION_FOUND
)
716 decrypt_out
|= (RX_RES_STATUS_STATION_FOUND
|
717 RX_RES_STATUS_NO_STATION_INFO_MISMATCH
);
719 decrypt_out
|= (decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
);
721 /* packet was not encrypted */
722 if ((decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) ==
723 RX_RES_STATUS_SEC_TYPE_NONE
)
726 /* packet was encrypted with unknown alg */
727 if ((decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) ==
728 RX_RES_STATUS_SEC_TYPE_ERR
)
731 /* decryption was not done in HW */
732 if ((decrypt_in
& RX_MPDU_RES_STATUS_DEC_DONE_MSK
) !=
733 RX_MPDU_RES_STATUS_DEC_DONE_MSK
)
736 switch (decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) {
738 case RX_RES_STATUS_SEC_TYPE_CCMP
:
739 /* alg is CCM: check MIC only */
740 if (!(decrypt_in
& RX_MPDU_RES_STATUS_MIC_OK
))
742 decrypt_out
|= RX_RES_STATUS_BAD_ICV_MIC
;
744 decrypt_out
|= RX_RES_STATUS_DECRYPT_OK
;
748 case RX_RES_STATUS_SEC_TYPE_TKIP
:
749 if (!(decrypt_in
& RX_MPDU_RES_STATUS_TTAK_OK
)) {
751 decrypt_out
|= RX_RES_STATUS_BAD_KEY_TTAK
;
754 /* fall through if TTAK OK */
756 if (!(decrypt_in
& RX_MPDU_RES_STATUS_ICV_OK
))
757 decrypt_out
|= RX_RES_STATUS_BAD_ICV_MIC
;
759 decrypt_out
|= RX_RES_STATUS_DECRYPT_OK
;
763 IWL_DEBUG_RX(priv
, "decrypt_in:0x%x decrypt_out = 0x%x\n",
764 decrypt_in
, decrypt_out
);
769 /* Calc max signal level (dBm) among 3 possible receivers */
770 static int iwlagn_calc_rssi(struct iwl_priv
*priv
,
771 struct iwl_rx_phy_res
*rx_resp
)
773 /* data from PHY/DSP regarding signal strength, etc.,
774 * contents are always there, not configurable by host
776 struct iwlagn_non_cfg_phy
*ncphy
=
777 (struct iwlagn_non_cfg_phy
*)rx_resp
->non_cfg_phy_buf
;
778 u32 val
, rssi_a
, rssi_b
, rssi_c
, max_rssi
;
781 val
= le32_to_cpu(ncphy
->non_cfg_phy
[IWLAGN_RX_RES_AGC_IDX
]);
782 agc
= (val
& IWLAGN_OFDM_AGC_MSK
) >> IWLAGN_OFDM_AGC_BIT_POS
;
784 /* Find max rssi among 3 possible receivers.
785 * These values are measured by the digital signal processor (DSP).
786 * They should stay fairly constant even as the signal strength varies,
787 * if the radio's automatic gain control (AGC) is working right.
788 * AGC value (see below) will provide the "interesting" info.
790 val
= le32_to_cpu(ncphy
->non_cfg_phy
[IWLAGN_RX_RES_RSSI_AB_IDX
]);
791 rssi_a
= (val
& IWLAGN_OFDM_RSSI_INBAND_A_BITMSK
) >>
792 IWLAGN_OFDM_RSSI_A_BIT_POS
;
793 rssi_b
= (val
& IWLAGN_OFDM_RSSI_INBAND_B_BITMSK
) >>
794 IWLAGN_OFDM_RSSI_B_BIT_POS
;
795 val
= le32_to_cpu(ncphy
->non_cfg_phy
[IWLAGN_RX_RES_RSSI_C_IDX
]);
796 rssi_c
= (val
& IWLAGN_OFDM_RSSI_INBAND_C_BITMSK
) >>
797 IWLAGN_OFDM_RSSI_C_BIT_POS
;
799 max_rssi
= max_t(u32
, rssi_a
, rssi_b
);
800 max_rssi
= max_t(u32
, max_rssi
, rssi_c
);
802 IWL_DEBUG_STATS(priv
, "Rssi In A %d B %d C %d Max %d AGC dB %d\n",
803 rssi_a
, rssi_b
, rssi_c
, max_rssi
, agc
);
805 /* dBm = max_rssi dB - agc dB - constant.
806 * Higher AGC (higher radio gain) means lower signal. */
807 return max_rssi
- agc
- IWLAGN_RSSI_OFFSET
;
810 /* Called for REPLY_RX (legacy ABG frames), or
811 * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */
812 static void iwl_rx_reply_rx(struct iwl_priv
*priv
,
813 struct iwl_rx_mem_buffer
*rxb
)
815 struct ieee80211_hdr
*header
;
816 struct ieee80211_rx_status rx_status
;
817 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
818 struct iwl_rx_phy_res
*phy_res
;
819 __le32 rx_pkt_status
;
820 struct iwl_rx_mpdu_res_start
*amsdu
;
826 * REPLY_RX and REPLY_RX_MPDU_CMD are handled differently.
827 * REPLY_RX: physical layer info is in this buffer
828 * REPLY_RX_MPDU_CMD: physical layer info was sent in separate
829 * command and cached in priv->last_phy_res
831 * Here we set up local variables depending on which command is
834 if (pkt
->hdr
.cmd
== REPLY_RX
) {
835 phy_res
= (struct iwl_rx_phy_res
*)pkt
->u
.raw
;
836 header
= (struct ieee80211_hdr
*)(pkt
->u
.raw
+ sizeof(*phy_res
)
837 + phy_res
->cfg_phy_cnt
);
839 len
= le16_to_cpu(phy_res
->byte_count
);
840 rx_pkt_status
= *(__le32
*)(pkt
->u
.raw
+ sizeof(*phy_res
) +
841 phy_res
->cfg_phy_cnt
+ len
);
842 ampdu_status
= le32_to_cpu(rx_pkt_status
);
844 if (!priv
->last_phy_res_valid
) {
845 IWL_ERR(priv
, "MPDU frame without cached PHY data\n");
848 phy_res
= &priv
->last_phy_res
;
849 amsdu
= (struct iwl_rx_mpdu_res_start
*)pkt
->u
.raw
;
850 header
= (struct ieee80211_hdr
*)(pkt
->u
.raw
+ sizeof(*amsdu
));
851 len
= le16_to_cpu(amsdu
->byte_count
);
852 rx_pkt_status
= *(__le32
*)(pkt
->u
.raw
+ sizeof(*amsdu
) + len
);
853 ampdu_status
= iwl_translate_rx_status(priv
,
854 le32_to_cpu(rx_pkt_status
));
857 if ((unlikely(phy_res
->cfg_phy_cnt
> 20))) {
858 IWL_DEBUG_DROP(priv
, "dsp size out of range [0,20]: %d/n",
859 phy_res
->cfg_phy_cnt
);
863 if (!(rx_pkt_status
& RX_RES_STATUS_NO_CRC32_ERROR
) ||
864 !(rx_pkt_status
& RX_RES_STATUS_NO_RXE_OVERFLOW
)) {
865 IWL_DEBUG_RX(priv
, "Bad CRC or FIFO: 0x%08X.\n",
866 le32_to_cpu(rx_pkt_status
));
870 /* This will be used in several places later */
871 rate_n_flags
= le32_to_cpu(phy_res
->rate_n_flags
);
873 /* rx_status carries information about the packet to mac80211 */
874 rx_status
.mactime
= le64_to_cpu(phy_res
->timestamp
);
875 rx_status
.band
= (phy_res
->phy_flags
& RX_RES_PHY_FLAGS_BAND_24_MSK
) ?
876 IEEE80211_BAND_2GHZ
: IEEE80211_BAND_5GHZ
;
878 ieee80211_channel_to_frequency(le16_to_cpu(phy_res
->channel
),
881 iwlagn_hwrate_to_mac80211_idx(rate_n_flags
, rx_status
.band
);
884 /* TSF isn't reliable. In order to allow smooth user experience,
885 * this W/A doesn't propagate it to the mac80211 */
886 /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
888 priv
->ucode_beacon_time
= le32_to_cpu(phy_res
->beacon_time_stamp
);
890 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
891 rx_status
.signal
= iwlagn_calc_rssi(priv
, phy_res
);
893 iwl_dbg_log_rx_data_frame(priv
, len
, header
);
894 IWL_DEBUG_STATS_LIMIT(priv
, "Rssi %d, TSF %llu\n",
895 rx_status
.signal
, (unsigned long long)rx_status
.mactime
);
900 * It seems that the antenna field in the phy flags value
901 * is actually a bit field. This is undefined by radiotap,
902 * it wants an actual antenna number but I always get "7"
903 * for most legacy frames I receive indicating that the
904 * same frame was received on all three RX chains.
906 * I think this field should be removed in favor of a
907 * new 802.11n radiotap field "RX chains" that is defined
911 (le16_to_cpu(phy_res
->phy_flags
) & RX_RES_PHY_FLAGS_ANTENNA_MSK
)
912 >> RX_RES_PHY_FLAGS_ANTENNA_POS
;
914 /* set the preamble flag if appropriate */
915 if (phy_res
->phy_flags
& RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK
)
916 rx_status
.flag
|= RX_FLAG_SHORTPRE
;
918 /* Set up the HT phy flags */
919 if (rate_n_flags
& RATE_MCS_HT_MSK
)
920 rx_status
.flag
|= RX_FLAG_HT
;
921 if (rate_n_flags
& RATE_MCS_HT40_MSK
)
922 rx_status
.flag
|= RX_FLAG_40MHZ
;
923 if (rate_n_flags
& RATE_MCS_SGI_MSK
)
924 rx_status
.flag
|= RX_FLAG_SHORT_GI
;
926 iwl_pass_packet_to_mac80211(priv
, header
, len
, ampdu_status
,
931 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
933 * Setup the RX handlers for each of the reply types sent from the uCode
936 void iwl_setup_rx_handlers(struct iwl_priv
*priv
)
938 void (**handlers
)(struct iwl_priv
*priv
, struct iwl_rx_mem_buffer
*rxb
);
940 handlers
= priv
->rx_handlers
;
942 handlers
[REPLY_ERROR
] = iwl_rx_reply_error
;
943 handlers
[CHANNEL_SWITCH_NOTIFICATION
] = iwl_rx_csa
;
944 handlers
[SPECTRUM_MEASURE_NOTIFICATION
] = iwl_rx_spectrum_measure_notif
;
945 handlers
[PM_SLEEP_NOTIFICATION
] = iwl_rx_pm_sleep_notif
;
946 handlers
[PM_DEBUG_STATISTIC_NOTIFIC
] = iwl_rx_pm_debug_statistics_notif
;
947 handlers
[BEACON_NOTIFICATION
] = iwl_rx_beacon_notif
;
950 * The same handler is used for both the REPLY to a discrete
951 * statistics request from the host as well as for the periodic
952 * statistics notifications (after received beacons) from the uCode.
954 handlers
[REPLY_STATISTICS_CMD
] = iwl_rx_reply_statistics
;
955 handlers
[STATISTICS_NOTIFICATION
] = iwl_rx_statistics
;
957 iwl_setup_rx_scan_handlers(priv
);
959 handlers
[CARD_STATE_NOTIFICATION
] = iwl_rx_card_state_notif
;
960 handlers
[MISSED_BEACONS_NOTIFICATION
] = iwl_rx_missed_beacon_notif
;
963 handlers
[REPLY_RX_PHY_CMD
] = iwl_rx_reply_rx_phy
;
964 handlers
[REPLY_RX_MPDU_CMD
] = iwl_rx_reply_rx
;
967 handlers
[REPLY_COMPRESSED_BA
] = iwlagn_rx_reply_compressed_ba
;
969 /* init calibration handlers */
970 priv
->rx_handlers
[CALIBRATION_RES_NOTIFICATION
] =
971 iwlagn_rx_calib_result
;
972 priv
->rx_handlers
[REPLY_TX
] = iwlagn_rx_reply_tx
;
974 /* set up notification wait support */
975 spin_lock_init(&priv
->notif_wait_lock
);
976 INIT_LIST_HEAD(&priv
->notif_waits
);
977 init_waitqueue_head(&priv
->notif_waitq
);
979 /* Set up BT Rx handlers */
980 if (priv
->cfg
->lib
->bt_rx_handler_setup
)
981 priv
->cfg
->lib
->bt_rx_handler_setup(priv
);
985 void iwl_rx_dispatch(struct iwl_priv
*priv
, struct iwl_rx_mem_buffer
*rxb
)
987 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
990 * Do the notification wait before RX handlers so
991 * even if the RX handler consumes the RXB we have
992 * access to it in the notification wait entry.
994 if (!list_empty(&priv
->notif_waits
)) {
995 struct iwl_notification_wait
*w
;
997 spin_lock(&priv
->notif_wait_lock
);
998 list_for_each_entry(w
, &priv
->notif_waits
, list
) {
999 if (w
->cmd
!= pkt
->hdr
.cmd
)
1002 "Notif: %s, 0x%02x - wake the callers up\n",
1003 get_cmd_string(pkt
->hdr
.cmd
),
1005 w
->triggered
= true;
1007 w
->fn(priv
, pkt
, w
->fn_data
);
1009 spin_unlock(&priv
->notif_wait_lock
);
1011 wake_up_all(&priv
->notif_waitq
);
1014 if (priv
->pre_rx_handler
)
1015 priv
->pre_rx_handler(priv
, rxb
);
1017 /* Based on type of command response or notification,
1018 * handle those that need handling via function in
1019 * rx_handlers table. See iwl_setup_rx_handlers() */
1020 if (priv
->rx_handlers
[pkt
->hdr
.cmd
]) {
1021 priv
->isr_stats
.rx_handlers
[pkt
->hdr
.cmd
]++;
1022 priv
->rx_handlers
[pkt
->hdr
.cmd
] (priv
, rxb
);
1024 /* No handling needed */
1026 "No handler needed for %s, 0x%02x\n",
1027 get_cmd_string(pkt
->hdr
.cmd
), pkt
->hdr
.cmd
);