iwlwifi: Execute runtime calibration always
authorVenkataraman, Meenakshi <meenakshi.venkataraman@intel.com>
Thu, 15 Dec 2011 00:54:21 +0000 (16:54 -0800)
committerWey-Yi Guy <wey-yi.w.guy@intel.com>
Mon, 19 Dec 2011 21:33:57 +0000 (13:33 -0800)
Runtime DC calibration was previously conditional. Remove this
behaviour, as new devices support runtime DC calibration,
while older devices ignore the runtime DC calibration request.

This patch addresses low TX throughput issues seen with the 6205.

Signed-off-by: Meenakshi Venkataraman <meenakshi.venkataraman@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
drivers/net/wireless/iwlwifi/iwl-agn.c
drivers/net/wireless/iwlwifi/iwl-shared.h

index 9daa4d970d02b0b58ea89ed9498f290740332807..b5c7c5f0a753f4da5520982f16b0ca8292958691 100644 (file)
@@ -1253,9 +1253,10 @@ int iwl_alive_start(struct iwl_priv *priv)
                iwl_send_bt_config(priv);
        }
 
-       if (hw_params(priv).calib_rt_cfg)
-               iwlagn_send_calib_cfg_rt(priv,
-                                        hw_params(priv).calib_rt_cfg);
+       /*
+        * Perform runtime calibrations, including DC calibration.
+        */
+       iwlagn_send_calib_cfg_rt(priv, IWL_CALIB_CFG_DC_IDX);
 
        ieee80211_wake_queues(priv->hw);
 
index 66c62580b63cc5f415556e1fea1c19b1db8dfb1f..dc55cc4a8108191fbdb84ccdb7296cd25d394d98 100644 (file)
@@ -179,7 +179,6 @@ struct iwl_mod_params {
  * @ct_kill_exit_threshold: when to reeable the device - in hw dependent unit
  *     relevant for 1000, 6000 and up
  * @wd_timeout: TX queues watchdog timeout
- * @calib_rt_cfg: setup runtime calibrations for the hw
  * @struct iwl_sensitivity_ranges: range of sensitivity values
  */
 struct iwl_hw_params {
@@ -199,7 +198,6 @@ struct iwl_hw_params {
        u32 ct_kill_exit_threshold;
        unsigned int wd_timeout;
 
-       u32 calib_rt_cfg;
        const struct iwl_sensitivity_ranges *sens;
 };