279 lines
9.9 KiB
Diff
279 lines
9.9 KiB
Diff
|
From 56cf16e34b896ac40c6707eb053d45d2cab18bbd Mon Sep 17 00:00:00 2001
|
||
|
From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
|
||
|
Date: Fri, 5 Mar 2010 14:22:46 -0800
|
||
|
Subject: [PATCH] iwlwifi: code cleanup for connectivity recovery
|
||
|
|
||
|
Split the connectivity check and recovery routine into separated
|
||
|
functions based on the types
|
||
|
1. iwl_good_ack_health() - check for ack count
|
||
|
2. iwl_good_plcp_health() - check for plcp error
|
||
|
|
||
|
Based on the type of errors being detected, different recovery methods
|
||
|
will be used to bring the system back to normal operational state.
|
||
|
|
||
|
Because different NIC has different HW and uCode, the behavior is also
|
||
|
different; these functions thus now form part of the ops infrastructure,
|
||
|
so we can have more control on how to monitor and recover from error condition
|
||
|
case per device.
|
||
|
|
||
|
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
|
||
|
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
|
||
|
---
|
||
|
drivers/net/wireless/iwlwifi/iwl-1000.c | 3 +-
|
||
|
drivers/net/wireless/iwlwifi/iwl-4965.c | 2 +-
|
||
|
drivers/net/wireless/iwlwifi/iwl-5000.c | 6 +-
|
||
|
drivers/net/wireless/iwlwifi/iwl-6000.c | 6 +-
|
||
|
drivers/net/wireless/iwlwifi/iwl-core.h | 11 +++-
|
||
|
drivers/net/wireless/iwlwifi/iwl-rx.c | 97 +++++++++++++++++++++----------
|
||
|
6 files changed, 85 insertions(+), 40 deletions(-)
|
||
|
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-1000.c b/drivers/net/wireless/iwlwifi/iwl-1000.c
|
||
|
index 2597574..7087631 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-1000.c
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-1000.c
|
||
|
@@ -212,7 +212,8 @@ static struct iwl_lib_ops iwl1000_lib = {
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
.recover_from_tx_stall = iwl_bg_monitor_recover,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
+ .check_ack_health = iwl_good_ack_health,
|
||
|
};
|
||
|
|
||
|
static const struct iwl_ops iwl1000_ops = {
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
|
||
|
index 6dd4328..dcca310 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
|
||
|
@@ -2217,7 +2217,7 @@ static struct iwl_lib_ops iwl4965_lib = {
|
||
|
.set_ct_kill = iwl4965_set_ct_threshold,
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
};
|
||
|
|
||
|
static const struct iwl_ops iwl4965_ops = {
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c
|
||
|
index 0c2469c..8e0dd13 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-5000.c
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-5000.c
|
||
|
@@ -1501,7 +1501,8 @@ struct iwl_lib_ops iwl5000_lib = {
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
.recover_from_tx_stall = iwl_bg_monitor_recover,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
+ .check_ack_health = iwl_good_ack_health,
|
||
|
};
|
||
|
|
||
|
static struct iwl_lib_ops iwl5150_lib = {
|
||
|
@@ -1557,7 +1558,8 @@ static struct iwl_lib_ops iwl5150_lib = {
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
.recover_from_tx_stall = iwl_bg_monitor_recover,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
+ .check_ack_health = iwl_good_ack_health,
|
||
|
};
|
||
|
|
||
|
static const struct iwl_ops iwl5000_ops = {
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c
|
||
|
index 189a8ce..1d4fea1 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-6000.c
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-6000.c
|
||
|
@@ -278,7 +278,8 @@ static struct iwl_lib_ops iwl6000_lib = {
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
.recover_from_tx_stall = iwl_bg_monitor_recover,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
+ .check_ack_health = iwl_good_ack_health,
|
||
|
};
|
||
|
|
||
|
static const struct iwl_ops iwl6000_ops = {
|
||
|
@@ -345,7 +346,8 @@ static struct iwl_lib_ops iwl6050_lib = {
|
||
|
},
|
||
|
.add_bcast_station = iwl_add_bcast_station,
|
||
|
.recover_from_tx_stall = iwl_bg_monitor_recover,
|
||
|
- .recover_from_statistics = iwl_recover_from_statistics,
|
||
|
+ .check_plcp_health = iwl_good_plcp_health,
|
||
|
+ .check_ack_health = iwl_good_ack_health,
|
||
|
};
|
||
|
|
||
|
static const struct iwl_ops iwl6050_ops = {
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h
|
||
|
index d67048e..5234a85 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-core.h
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-core.h
|
||
|
@@ -193,8 +193,11 @@ struct iwl_lib_ops {
|
||
|
void (*add_bcast_station)(struct iwl_priv *priv);
|
||
|
/* recover from tx queue stall */
|
||
|
void (*recover_from_tx_stall)(unsigned long data);
|
||
|
- /* recover from errors showed in statistics */
|
||
|
- void (*recover_from_statistics)(struct iwl_priv *priv,
|
||
|
+ /* check for plcp health */
|
||
|
+ bool (*check_plcp_health)(struct iwl_priv *priv,
|
||
|
+ struct iwl_rx_packet *pkt);
|
||
|
+ /* check for ack health */
|
||
|
+ bool (*check_ack_health)(struct iwl_priv *priv,
|
||
|
struct iwl_rx_packet *pkt);
|
||
|
};
|
||
|
|
||
|
@@ -438,7 +441,9 @@ void iwl_rx_missed_beacon_notif(struct iwl_priv *priv,
|
||
|
struct iwl_rx_mem_buffer *rxb);
|
||
|
void iwl_rx_spectrum_measure_notif(struct iwl_priv *priv,
|
||
|
struct iwl_rx_mem_buffer *rxb);
|
||
|
-void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
+bool iwl_good_plcp_health(struct iwl_priv *priv,
|
||
|
+ struct iwl_rx_packet *pkt);
|
||
|
+bool iwl_good_ack_health(struct iwl_priv *priv,
|
||
|
struct iwl_rx_packet *pkt);
|
||
|
void iwl_rx_statistics(struct iwl_priv *priv,
|
||
|
struct iwl_rx_mem_buffer *rxb);
|
||
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-rx.c b/drivers/net/wireless/iwlwifi/iwl-rx.c
|
||
|
index f48d685..506ccf7 100644
|
||
|
--- a/drivers/net/wireless/iwlwifi/iwl-rx.c
|
||
|
+++ b/drivers/net/wireless/iwlwifi/iwl-rx.c
|
||
|
@@ -622,24 +622,18 @@ static void iwl_accumulative_statistics(struct iwl_priv *priv,
|
||
|
#define BA_TIMEOUT_CNT (5)
|
||
|
#define BA_TIMEOUT_MAX (16)
|
||
|
|
||
|
-#define PLCP_MSG "plcp_err exceeded %u, %u, %u, %u, %u, %d, %u mSecs\n"
|
||
|
-/*
|
||
|
- * This function checks for plcp error, ACK count ratios, aggregated BA
|
||
|
- * timeout retries.
|
||
|
- * - When the ACK count ratio is 0 and aggregated BA timeout retries is
|
||
|
- * exceeding the BA_TIMEOUT_MAX, it will recover the failure by resetting
|
||
|
- * the firmware.
|
||
|
- * - When the plcp error is exceeding the thresholds, it will reset the radio
|
||
|
- * to improve the throughput.
|
||
|
+/**
|
||
|
+ * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
|
||
|
+ *
|
||
|
+ * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
|
||
|
+ * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
|
||
|
+ * operation state.
|
||
|
*/
|
||
|
-void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
- struct iwl_rx_packet *pkt)
|
||
|
+bool iwl_good_ack_health(struct iwl_priv *priv,
|
||
|
+ struct iwl_rx_packet *pkt)
|
||
|
{
|
||
|
- int combined_plcp_delta;
|
||
|
- unsigned int plcp_msec;
|
||
|
- unsigned long plcp_received_jiffies;
|
||
|
- int actual_ack_cnt_delta;
|
||
|
- int expected_ack_cnt_delta;
|
||
|
+ bool rc = true;
|
||
|
+ int actual_ack_cnt_delta, expected_ack_cnt_delta;
|
||
|
int ba_timeout_delta;
|
||
|
|
||
|
actual_ack_cnt_delta =
|
||
|
@@ -670,13 +664,27 @@ void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
#endif
|
||
|
IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
|
||
|
ba_timeout_delta);
|
||
|
- if ((actual_ack_cnt_delta == 0) &&
|
||
|
- (ba_timeout_delta >= BA_TIMEOUT_MAX)) {
|
||
|
- IWL_DEBUG_RADIO(priv,
|
||
|
- "call iwl_force_reset(IWL_FW_RESET)\n");
|
||
|
- iwl_force_reset(priv, IWL_FW_RESET);
|
||
|
- }
|
||
|
+ if (!actual_ack_cnt_delta &&
|
||
|
+ (ba_timeout_delta >= BA_TIMEOUT_MAX))
|
||
|
+ rc = false;
|
||
|
}
|
||
|
+ return rc;
|
||
|
+}
|
||
|
+EXPORT_SYMBOL(iwl_good_ack_health);
|
||
|
+
|
||
|
+/**
|
||
|
+ * iwl_good_plcp_health - checks for plcp error.
|
||
|
+ *
|
||
|
+ * When the plcp error is exceeding the thresholds, reset the radio
|
||
|
+ * to improve the throughput.
|
||
|
+ */
|
||
|
+bool iwl_good_plcp_health(struct iwl_priv *priv,
|
||
|
+ struct iwl_rx_packet *pkt)
|
||
|
+{
|
||
|
+ bool rc = true;
|
||
|
+ int combined_plcp_delta;
|
||
|
+ unsigned int plcp_msec;
|
||
|
+ unsigned long plcp_received_jiffies;
|
||
|
|
||
|
/*
|
||
|
* check for plcp_err and trigger radio reset if it exceeds
|
||
|
@@ -711,7 +719,8 @@ void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
* combined_plcp_delta,
|
||
|
* plcp_msec
|
||
|
*/
|
||
|
- IWL_DEBUG_RADIO(priv, PLCP_MSG,
|
||
|
+ IWL_DEBUG_RADIO(priv, "plcp_err exceeded %u, "
|
||
|
+ "%u, %u, %u, %u, %d, %u mSecs\n",
|
||
|
priv->cfg->plcp_delta_threshold,
|
||
|
le32_to_cpu(pkt->u.stats.rx.ofdm.plcp_err),
|
||
|
le32_to_cpu(priv->statistics.rx.ofdm.plcp_err),
|
||
|
@@ -719,15 +728,42 @@ void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
le32_to_cpu(
|
||
|
priv->statistics.rx.ofdm_ht.plcp_err),
|
||
|
combined_plcp_delta, plcp_msec);
|
||
|
- /*
|
||
|
- * Reset the RF radio due to the high plcp
|
||
|
- * error rate
|
||
|
- */
|
||
|
- iwl_force_reset(priv, IWL_RF_RESET);
|
||
|
+ rc = false;
|
||
|
+ }
|
||
|
+ }
|
||
|
+ return rc;
|
||
|
+}
|
||
|
+EXPORT_SYMBOL(iwl_good_plcp_health);
|
||
|
+
|
||
|
+static void iwl_recover_from_statistics(struct iwl_priv *priv,
|
||
|
+ struct iwl_rx_packet *pkt)
|
||
|
+{
|
||
|
+ if (test_bit(STATUS_EXIT_PENDING, &priv->status))
|
||
|
+ return;
|
||
|
+ if (iwl_is_associated(priv)) {
|
||
|
+ if (priv->cfg->ops->lib->check_ack_health) {
|
||
|
+ if (!priv->cfg->ops->lib->check_ack_health(
|
||
|
+ priv, pkt)) {
|
||
|
+ /*
|
||
|
+ * low ack count detected
|
||
|
+ * restart Firmware
|
||
|
+ */
|
||
|
+ IWL_ERR(priv, "low ack count detected, "
|
||
|
+ "restart firmware\n");
|
||
|
+ iwl_force_reset(priv, IWL_FW_RESET);
|
||
|
+ }
|
||
|
+ } else if (priv->cfg->ops->lib->check_plcp_health) {
|
||
|
+ if (!priv->cfg->ops->lib->check_plcp_health(
|
||
|
+ priv, pkt)) {
|
||
|
+ /*
|
||
|
+ * high plcp error detected
|
||
|
+ * reset Radio
|
||
|
+ */
|
||
|
+ iwl_force_reset(priv, IWL_RF_RESET);
|
||
|
+ }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
-EXPORT_SYMBOL(iwl_recover_from_statistics);
|
||
|
|
||
|
void iwl_rx_statistics(struct iwl_priv *priv,
|
||
|
struct iwl_rx_mem_buffer *rxb)
|
||
|
@@ -749,8 +785,7 @@ void iwl_rx_statistics(struct iwl_priv *priv,
|
||
|
#ifdef CONFIG_IWLWIFI_DEBUG
|
||
|
iwl_accumulative_statistics(priv, (__le32 *)&pkt->u.stats);
|
||
|
#endif
|
||
|
- if (priv->cfg->ops->lib->recover_from_statistics)
|
||
|
- priv->cfg->ops->lib->recover_from_statistics(priv, pkt);
|
||
|
+ iwl_recover_from_statistics(priv, pkt);
|
||
|
|
||
|
memcpy(&priv->statistics, &pkt->u.stats, sizeof(priv->statistics));
|
||
|
|
||
|
--
|
||
|
1.7.0.1
|
||
|
|