]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
iwlagn: define valid init calibration mask
authorWey-Yi Guy <wey-yi.w.guy@intel.com>
Fri, 8 Jul 2011 21:29:47 +0000 (14:29 -0700)
committerWey-Yi Guy <wey-yi.w.guy@intel.com>
Thu, 21 Jul 2011 14:28:51 +0000 (07:28 -0700)
Use the valid calibration mask for init calibration

Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
drivers/net/wireless/iwlwifi/iwl-commands.h

index 1c0dea2eeb24c903ce5ed764036fb39484703a03..d7f20c84eea0b23d674e3ef16e50ee9bf30382f3 100644 (file)
@@ -3167,9 +3167,6 @@ enum {
 
 #define IWL_MAX_PHY_CALIBRATE_TBL_SIZE         (253)
 
-#define IWL_CALIB_INIT_CFG_ALL                         cpu_to_le32(0xffffffff)
-#define IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK      cpu_to_le32(BIT(0))
-
 /* This enum defines the bitmap of various calibrations to enable in both
  * init ucode and runtime ucode through CALIBRATION_CFG_CMD.
  */
@@ -3187,6 +3184,19 @@ enum iwl_ucode_calib_cfg {
        IWL_CALIB_CFG_TX_PWR_IDX                = BIT(10),
 };
 
+#define IWL_CALIB_INIT_CFG_ALL cpu_to_le32(IWL_CALIB_CFG_RX_BB_IDX |   \
+                                       IWL_CALIB_CFG_DC_IDX |          \
+                                       IWL_CALIB_CFG_LO_IDX |          \
+                                       IWL_CALIB_CFG_TX_IQ_IDX |       \
+                                       IWL_CALIB_CFG_RX_IQ_IDX |       \
+                                       IWL_CALIB_CFG_NOISE_IDX |       \
+                                       IWL_CALIB_CFG_CRYSTAL_IDX |     \
+                                       IWL_CALIB_CFG_TEMPERATURE_IDX | \
+                                       IWL_CALIB_CFG_PAPD_IDX |        \
+                                       IWL_CALIB_CFG_SENSITIVITY_IDX | \
+                                       IWL_CALIB_CFG_TX_PWR_IDX)
+
+#define IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK      cpu_to_le32(BIT(0))
 
 struct iwl_calib_cfg_elmnt_s {
        __le32 is_enable;