diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-05-29 04:35:05 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-03 15:00:23 -0400 |
commit | 7c616cba240cd0d579c996be3f3603456acfb0ad (patch) | |
tree | 9c0a4594423b12138c1c430dac8063b4a437e1cd /drivers/net/wireless/iwlwifi/iwl-dev.h | |
parent | c135475439f75e6eb29e7586d33f3e22a61c1bb4 (diff) |
iwlwifi-5000: implement initial calibration for 5000
This patch adds initial calibration framework for 5000 HW faimily.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 2c92e55850c5..291c1ec9b0de 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -876,6 +876,15 @@ struct statistics_general_data { | |||
876 | u32 beacon_energy_c; | 876 | u32 beacon_energy_c; |
877 | }; | 877 | }; |
878 | 878 | ||
879 | struct iwl_calib_results { | ||
880 | void *tx_iq_res; | ||
881 | void *tx_iq_perd_res; | ||
882 | void *lo_res; | ||
883 | u32 tx_iq_res_len; | ||
884 | u32 tx_iq_perd_res_len; | ||
885 | u32 lo_res_len; | ||
886 | }; | ||
887 | |||
879 | enum ucode_type { | 888 | enum ucode_type { |
880 | UCODE_NONE = 0, | 889 | UCODE_NONE = 0, |
881 | UCODE_INIT, | 890 | UCODE_INIT, |
@@ -983,6 +992,9 @@ struct iwl_priv { | |||
983 | s32 temperature; /* degrees Kelvin */ | 992 | s32 temperature; /* degrees Kelvin */ |
984 | s32 last_temperature; | 993 | s32 last_temperature; |
985 | 994 | ||
995 | /* init calibration results */ | ||
996 | struct iwl_calib_results calib_results; | ||
997 | |||
986 | /* Scan related variables */ | 998 | /* Scan related variables */ |
987 | unsigned long last_scan_jiffies; | 999 | unsigned long last_scan_jiffies; |
988 | unsigned long next_scan_jiffies; | 1000 | unsigned long next_scan_jiffies; |