blob: 7b695e757a2ad95e595a22a00d035d43e54bbeed [file] [log] [blame]
Jay Sternberge1228372009-01-19 15:30:34 -08001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
Jay Sternberge1228372009-01-19 15:30:34 -08004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/dma-mapping.h>
32#include <linux/delay.h>
33#include <linux/skbuff.h>
34#include <linux/netdevice.h>
35#include <linux/wireless.h>
36#include <net/mac80211.h>
37#include <linux/etherdevice.h>
38#include <asm/unaligned.h>
39
40#include "iwl-eeprom.h"
41#include "iwl-dev.h"
42#include "iwl-core.h"
43#include "iwl-io.h"
44#include "iwl-sta.h"
Johannes Berga1175122010-01-21 06:21:10 -080045#include "iwl-agn.h"
Jay Sternberge1228372009-01-19 15:30:34 -080046#include "iwl-helpers.h"
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -070047#include "iwl-agn-hw.h"
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -070048#include "iwl-6000-hw.h"
Johannes Berge932a602009-10-02 13:44:03 -070049#include "iwl-agn-led.h"
Abhijeet Kolekarb8c76262010-04-08 15:29:07 -070050#include "iwl-agn-debugfs.h"
Jay Sternberge1228372009-01-19 15:30:34 -080051
52/* Highest firmware API version supported */
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -070053#define IWL6000_UCODE_API_MAX 4
54#define IWL6050_UCODE_API_MAX 4
Shanyu Zhao4b3e8062010-04-07 18:06:36 -070055#define IWL6000G2_UCODE_API_MAX 4
Jay Sternberge1228372009-01-19 15:30:34 -080056
57/* Lowest firmware API version supported */
Wey-Yi Guy44246422009-10-23 13:42:34 -070058#define IWL6000_UCODE_API_MIN 4
59#define IWL6050_UCODE_API_MIN 4
Shanyu Zhao4b3e8062010-04-07 18:06:36 -070060#define IWL6000G2_UCODE_API_MIN 4
Jay Sternberge1228372009-01-19 15:30:34 -080061
62#define IWL6000_FW_PRE "iwlwifi-6000-"
63#define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
64#define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api)
65
66#define IWL6050_FW_PRE "iwlwifi-6050-"
67#define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
68#define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api)
69
Shanyu Zhao4b3e8062010-04-07 18:06:36 -070070#define IWL6000G2_FW_PRE "iwlwifi-6005-"
71#define _IWL6000G2_MODULE_FIRMWARE(api) IWL6000G2_FW_PRE #api ".ucode"
72#define IWL6000G2_MODULE_FIRMWARE(api) _IWL6000G2_MODULE_FIRMWARE(api)
73
Wey-Yi Guy672639d2009-07-24 11:13:01 -070074static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
75{
76 /* want Celsius */
77 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
78 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
79}
80
Abhijeet Kolekard5755932010-02-18 22:03:05 -080081/* Indicate calibration version to uCode. */
82static void iwl6050_set_calib_version(struct iwl_priv *priv)
83{
84 if (priv->cfg->ops->lib->eeprom_ops.calib_version(priv) >= 6)
85 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
86 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
87}
88
Wey-Yi Guy65b79982009-07-31 14:28:07 -070089/* NIC configuration for 6000 series */
90static void iwl6000_nic_config(struct iwl_priv *priv)
91{
Wey-Yi Guy9371d4e2009-09-11 10:38:10 -070092 u16 radio_cfg;
93
94 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
95
96 /* write radio config values to register */
97 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
98 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
99 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
100 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
101 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
102
103 /* set CSR_HW_CONFIG_REG for uCode use */
104 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
105 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
106 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700107
108 /* no locking required for register write */
Wey-Yi Guy740e7f52009-11-06 14:52:55 -0800109 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700110 /* 2x2 IPA phy type */
111 iwl_write32(priv, CSR_GP_DRIVER_REG,
112 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
113 }
114 /* else do nothing, uCode configured */
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800115 if (priv->cfg->ops->lib->temp_ops.set_calib_version)
116 priv->cfg->ops->lib->temp_ops.set_calib_version(priv);
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700117}
118
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700119static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
120 .min_nrg_cck = 97,
121 .max_nrg_cck = 0, /* not used, set to 0 */
122 .auto_corr_min_ofdm = 80,
123 .auto_corr_min_ofdm_mrc = 128,
124 .auto_corr_min_ofdm_x1 = 105,
125 .auto_corr_min_ofdm_mrc_x1 = 192,
126
127 .auto_corr_max_ofdm = 145,
128 .auto_corr_max_ofdm_mrc = 232,
Wey-Yi Guy2494f632010-01-20 12:22:52 -0800129 .auto_corr_max_ofdm_x1 = 110,
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700130 .auto_corr_max_ofdm_mrc_x1 = 232,
131
132 .auto_corr_min_cck = 125,
133 .auto_corr_max_cck = 175,
134 .auto_corr_min_cck_mrc = 160,
135 .auto_corr_max_cck_mrc = 310,
136 .nrg_th_cck = 97,
137 .nrg_th_ofdm = 100,
Wey-Yi Guy55036d62009-10-09 13:20:24 -0700138
139 .barker_corr_th_min = 190,
140 .barker_corr_th_min_mrc = 390,
141 .nrg_th_cca = 62,
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700142};
143
144static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
145{
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700146 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700147 priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES)
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700148 priv->cfg->num_of_queues =
149 priv->cfg->mod_params->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700150
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700151 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700152 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
153 priv->hw_params.scd_bc_tbls_size =
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700154 priv->cfg->num_of_queues *
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700155 sizeof(struct iwlagn_scd_bc_tbl);
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700156 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
157 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
158 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
159
160 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
161 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
162
163 priv->hw_params.max_bsm_size = 0;
164 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
165 BIT(IEEE80211_BAND_5GHZ);
166 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
167
168 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
169 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
170 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
171 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
172
173 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
174 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
175
176 /* Set initial sensitivity parameters */
177 /* Set initial calibration set */
178 priv->hw_params.sens = &iwl6000_sensitivity;
Abhijeet Kolekar07f33f92010-01-22 14:22:47 -0800179 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
180 case CSR_HW_REV_TYPE_6x50:
181 priv->hw_params.calib_init_cfg =
182 BIT(IWL_CALIB_XTAL) |
183 BIT(IWL_CALIB_DC) |
184 BIT(IWL_CALIB_LO) |
185 BIT(IWL_CALIB_TX_IQ) |
186 BIT(IWL_CALIB_BASE_BAND);
187
188 break;
189 default:
190 priv->hw_params.calib_init_cfg =
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700191 BIT(IWL_CALIB_XTAL) |
192 BIT(IWL_CALIB_LO) |
193 BIT(IWL_CALIB_TX_IQ) |
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700194 BIT(IWL_CALIB_BASE_BAND);
Abhijeet Kolekar07f33f92010-01-22 14:22:47 -0800195 break;
196 }
197
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700198 return 0;
199}
200
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700201static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel)
202{
203 struct iwl6000_channel_switch_cmd cmd;
204 const struct iwl_channel_info *ch_info;
205 struct iwl_host_cmd hcmd = {
206 .id = REPLY_CHANNEL_SWITCH,
207 .len = sizeof(cmd),
208 .flags = CMD_SIZE_HUGE,
209 .data = &cmd,
210 };
211
212 IWL_DEBUG_11H(priv, "channel switch from %d to %d\n",
213 priv->active_rxon.channel, channel);
214
215 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
216 cmd.channel = cpu_to_le16(channel);
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800217 cmd.rxon_flags = priv->staging_rxon.flags;
218 cmd.rxon_filter_flags = priv->staging_rxon.filter_flags;
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700219 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
220 ch_info = iwl_get_channel_info(priv, priv->band, channel);
221 if (ch_info)
222 cmd.expect_beacon = is_channel_radar(ch_info);
223 else {
224 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
225 priv->active_rxon.channel, channel);
226 return -EFAULT;
227 }
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800228 priv->switch_rxon.channel = cpu_to_le16(channel);
229 priv->switch_rxon.switch_in_progress = true;
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700230
231 return iwl_send_cmd_sync(priv, &hcmd);
232}
233
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700234static struct iwl_lib_ops iwl6000_lib = {
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700235 .set_hw_params = iwl6000_hw_set_hw_params,
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700236 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
237 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
238 .txq_set_sched = iwlagn_txq_set_sched,
239 .txq_agg_enable = iwlagn_txq_agg_enable,
240 .txq_agg_disable = iwlagn_txq_agg_disable,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700241 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
242 .txq_free_tfd = iwl_hw_txq_free_tfd,
243 .txq_init = iwl_hw_tx_queue_init,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700244 .rx_handler_setup = iwlagn_rx_handler_setup,
245 .setup_deferred_work = iwlagn_setup_deferred_work,
246 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
Wey-Yi Guy81b81762010-03-16 10:23:30 -0700247 .load_ucode = iwlagn_load_ucode,
Reinette Chatreb7a79402009-09-25 14:24:23 -0700248 .dump_nic_event_log = iwl_dump_nic_event_log,
249 .dump_nic_error_log = iwl_dump_nic_error_log,
Wey-Yi Guy696bdee2009-12-10 14:37:25 -0800250 .dump_csr = iwl_dump_csr,
Wey-Yi Guy1b3eb822010-01-15 13:43:39 -0800251 .dump_fh = iwl_dump_fh,
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700252 .init_alive_start = iwlagn_init_alive_start,
253 .alive_notify = iwlagn_alive_notify,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700254 .send_tx_power = iwlagn_send_tx_power,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700255 .update_chain_flags = iwl_update_chain_flags,
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700256 .set_channel_switch = iwl6000_hw_channel_switch,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700257 .apm_ops = {
Ben Cahillfadb3582009-10-23 13:42:21 -0700258 .init = iwl_apm_init,
Abhijeet Kolekard68b6032009-10-02 13:44:04 -0700259 .stop = iwl_apm_stop,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700260 .config = iwl6000_nic_config,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700261 .set_pwr_src = iwl_set_pwr_src,
262 },
263 .eeprom_ops = {
264 .regulatory_bands = {
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700265 EEPROM_REG_BAND_1_CHANNELS,
266 EEPROM_REG_BAND_2_CHANNELS,
267 EEPROM_REG_BAND_3_CHANNELS,
268 EEPROM_REG_BAND_4_CHANNELS,
269 EEPROM_REG_BAND_5_CHANNELS,
Shanyu Zhaof2fa1b02010-04-07 18:37:52 -0700270 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700271 EEPROM_REG_BAND_52_HT40_CHANNELS
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700272 },
273 .verify_signature = iwlcore_eeprom_verify_signature,
274 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
275 .release_semaphore = iwlcore_eeprom_release_semaphore,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700276 .calib_version = iwlagn_eeprom_calib_version,
277 .query_addr = iwlagn_eeprom_query_addr,
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700278 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700279 },
280 .post_associate = iwl_post_associate,
281 .isr = iwl_isr_ict,
282 .config_ap = iwl_config_ap,
283 .temp_ops = {
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700284 .temperature = iwlagn_temperature,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700285 .set_ct_kill = iwl6000_set_ct_threshold,
286 },
Reinette Chatre3459ab52010-01-22 14:22:49 -0800287 .add_bcast_station = iwl_add_bcast_station,
Abhijeet Kolekarb8c76262010-04-08 15:29:07 -0700288 .debugfs_ops = {
289 .rx_stats_read = iwl_ucode_rx_stats_read,
290 .tx_stats_read = iwl_ucode_tx_stats_read,
291 .general_stats_read = iwl_ucode_general_stats_read,
292 },
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800293 .recover_from_tx_stall = iwl_bg_monitor_recover,
Wey-Yi Guyfa8f130c2010-03-05 14:22:46 -0800294 .check_plcp_health = iwl_good_plcp_health,
295 .check_ack_health = iwl_good_ack_health,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700296};
297
Emese Revfy45d5d802009-12-14 00:59:53 +0100298static const struct iwl_ops iwl6000_ops = {
Wey-Yi Guy792bc3c2010-03-16 10:23:29 -0700299 .ucode = &iwlagn_ucode,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700300 .lib = &iwl6000_lib,
Wey-Yi Guy7dc77db2010-03-16 10:23:31 -0700301 .hcmd = &iwlagn_hcmd,
302 .utils = &iwlagn_hcmd_utils,
Johannes Berge932a602009-10-02 13:44:03 -0700303 .led = &iwlagn_led_ops,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800304};
305
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800306static struct iwl_lib_ops iwl6050_lib = {
307 .set_hw_params = iwl6000_hw_set_hw_params,
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700308 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
309 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
310 .txq_set_sched = iwlagn_txq_set_sched,
311 .txq_agg_enable = iwlagn_txq_agg_enable,
312 .txq_agg_disable = iwlagn_txq_agg_disable,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800313 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
314 .txq_free_tfd = iwl_hw_txq_free_tfd,
315 .txq_init = iwl_hw_tx_queue_init,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700316 .rx_handler_setup = iwlagn_rx_handler_setup,
317 .setup_deferred_work = iwlagn_setup_deferred_work,
318 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
Wey-Yi Guy81b81762010-03-16 10:23:30 -0700319 .load_ucode = iwlagn_load_ucode,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800320 .dump_nic_event_log = iwl_dump_nic_event_log,
321 .dump_nic_error_log = iwl_dump_nic_error_log,
322 .dump_csr = iwl_dump_csr,
323 .dump_fh = iwl_dump_fh,
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700324 .init_alive_start = iwlagn_init_alive_start,
325 .alive_notify = iwlagn_alive_notify,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700326 .send_tx_power = iwlagn_send_tx_power,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800327 .update_chain_flags = iwl_update_chain_flags,
328 .set_channel_switch = iwl6000_hw_channel_switch,
329 .apm_ops = {
330 .init = iwl_apm_init,
331 .stop = iwl_apm_stop,
332 .config = iwl6000_nic_config,
333 .set_pwr_src = iwl_set_pwr_src,
334 },
335 .eeprom_ops = {
336 .regulatory_bands = {
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700337 EEPROM_REG_BAND_1_CHANNELS,
338 EEPROM_REG_BAND_2_CHANNELS,
339 EEPROM_REG_BAND_3_CHANNELS,
340 EEPROM_REG_BAND_4_CHANNELS,
341 EEPROM_REG_BAND_5_CHANNELS,
Shanyu Zhaof2fa1b02010-04-07 18:37:52 -0700342 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700343 EEPROM_REG_BAND_52_HT40_CHANNELS
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800344 },
345 .verify_signature = iwlcore_eeprom_verify_signature,
346 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
347 .release_semaphore = iwlcore_eeprom_release_semaphore,
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700348 .calib_version = iwlagn_eeprom_calib_version,
349 .query_addr = iwlagn_eeprom_query_addr,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800350 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
351 },
352 .post_associate = iwl_post_associate,
353 .isr = iwl_isr_ict,
354 .config_ap = iwl_config_ap,
355 .temp_ops = {
Wey-Yi Guye04ed0a2010-03-16 17:47:58 -0700356 .temperature = iwlagn_temperature,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800357 .set_ct_kill = iwl6000_set_ct_threshold,
358 .set_calib_version = iwl6050_set_calib_version,
359 },
360 .add_bcast_station = iwl_add_bcast_station,
Abhijeet Kolekarb8c76262010-04-08 15:29:07 -0700361 .debugfs_ops = {
362 .rx_stats_read = iwl_ucode_rx_stats_read,
363 .tx_stats_read = iwl_ucode_tx_stats_read,
364 .general_stats_read = iwl_ucode_general_stats_read,
365 },
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800366 .recover_from_tx_stall = iwl_bg_monitor_recover,
Wey-Yi Guyfa8f130c2010-03-05 14:22:46 -0800367 .check_plcp_health = iwl_good_plcp_health,
368 .check_ack_health = iwl_good_ack_health,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800369};
370
371static const struct iwl_ops iwl6050_ops = {
Wey-Yi Guy792bc3c2010-03-16 10:23:29 -0700372 .ucode = &iwlagn_ucode,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800373 .lib = &iwl6050_lib,
Wey-Yi Guy7dc77db2010-03-16 10:23:31 -0700374 .hcmd = &iwlagn_hcmd,
375 .utils = &iwlagn_hcmd_utils,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800376 .led = &iwlagn_led_ops,
377};
378
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700379/*
380 * "i": Internal configuration, use internal Power Amplifier
381 */
Shanyu Zhao4b3e8062010-04-07 18:06:36 -0700382struct iwl_cfg iwl6000g2i_2agn_cfg = {
Jay Sternberg0b5af202010-03-17 16:16:12 -0700383 .name = "6000 Series 2x2 AGN Gen2",
Shanyu Zhao4b3e8062010-04-07 18:06:36 -0700384 .fw_name_pre = IWL6000G2_FW_PRE,
385 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
386 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
Jay Sternberg0b5af202010-03-17 16:16:12 -0700387 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
388 .ops = &iwl6000_ops,
389 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Shanyu Zhao4b3e8062010-04-07 18:06:36 -0700390 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
391 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
Jay Sternberg0b5af202010-03-17 16:16:12 -0700392 .num_of_queues = IWLAGN_NUM_QUEUES,
393 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
394 .mod_params = &iwlagn_mod_params,
395 .valid_tx_ant = ANT_AB,
396 .valid_rx_ant = ANT_AB,
397 .pll_cfg_val = 0,
398 .set_l0s = true,
399 .use_bsm = false,
400 .pa_type = IWL_PA_INTERNAL,
401 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
402 .shadow_ram_support = true,
403 .ht_greenfield_support = true,
404 .led_compensation = 51,
405 .use_rts_for_ht = true, /* use rts/cts protection */
406 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
407 .supports_idle = true,
408 .adv_thermal_throttle = true,
409 .support_ct_kill_exit = true,
410 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
411 .chain_noise_scale = 1000,
412 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700413 .max_event_log_size = 1024,
Jay Sternberg0b5af202010-03-17 16:16:12 -0700414};
415
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700416struct iwl_cfg iwl6000i_2agn_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800417 .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700418 .fw_name_pre = IWL6000_FW_PRE,
419 .ucode_api_max = IWL6000_UCODE_API_MAX,
420 .ucode_api_min = IWL6000_UCODE_API_MIN,
421 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
422 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700423 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700424 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700425 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700426 .num_of_queues = IWLAGN_NUM_QUEUES,
427 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700428 .mod_params = &iwlagn_mod_params,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700429 .valid_tx_ant = ANT_BC,
430 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700431 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700432 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700433 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700434 .pa_type = IWL_PA_INTERNAL,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700435 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
436 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700437 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700438 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700439 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700440 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700441 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700442 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700443 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800444 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800445 .chain_noise_scale = 1000,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800446 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700447 .max_event_log_size = 1024,
Jay Sternberge1228372009-01-19 15:30:34 -0800448};
449
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700450struct iwl_cfg iwl6000i_2abg_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800451 .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700452 .fw_name_pre = IWL6000_FW_PRE,
453 .ucode_api_max = IWL6000_UCODE_API_MAX,
454 .ucode_api_min = IWL6000_UCODE_API_MIN,
455 .sku = IWL_SKU_A|IWL_SKU_G,
456 .ops = &iwl6000_ops,
457 .eeprom_size = OTP_LOW_IMAGE_SIZE,
458 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700459 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700460 .num_of_queues = IWLAGN_NUM_QUEUES,
461 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700462 .mod_params = &iwlagn_mod_params,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700463 .valid_tx_ant = ANT_BC,
464 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700465 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700466 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700467 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700468 .pa_type = IWL_PA_INTERNAL,
469 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
470 .shadow_ram_support = true,
471 .ht_greenfield_support = true,
472 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700473 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700474 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700475 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700476 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800477 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800478 .chain_noise_scale = 1000,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800479 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700480 .max_event_log_size = 1024,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700481};
482
483struct iwl_cfg iwl6000i_2bg_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800484 .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700485 .fw_name_pre = IWL6000_FW_PRE,
486 .ucode_api_max = IWL6000_UCODE_API_MAX,
487 .ucode_api_min = IWL6000_UCODE_API_MIN,
488 .sku = IWL_SKU_G,
489 .ops = &iwl6000_ops,
490 .eeprom_size = OTP_LOW_IMAGE_SIZE,
491 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700492 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700493 .num_of_queues = IWLAGN_NUM_QUEUES,
494 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700495 .mod_params = &iwlagn_mod_params,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700496 .valid_tx_ant = ANT_BC,
497 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700498 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700499 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700500 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700501 .pa_type = IWL_PA_INTERNAL,
502 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
503 .shadow_ram_support = true,
504 .ht_greenfield_support = true,
505 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700506 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700507 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700508 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700509 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800510 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800511 .chain_noise_scale = 1000,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800512 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700513 .max_event_log_size = 1024,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700514};
515
Jay Sternberge1228372009-01-19 15:30:34 -0800516struct iwl_cfg iwl6050_2agn_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800517 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
Jay Sternberge1228372009-01-19 15:30:34 -0800518 .fw_name_pre = IWL6050_FW_PRE,
519 .ucode_api_max = IWL6050_UCODE_API_MAX,
520 .ucode_api_min = IWL6050_UCODE_API_MIN,
521 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800522 .ops = &iwl6050_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700523 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700524 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700525 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700526 .num_of_queues = IWLAGN_NUM_QUEUES,
527 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700528 .mod_params = &iwlagn_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700529 .valid_tx_ant = ANT_AB,
530 .valid_rx_ant = ANT_AB,
Ben Cahillfadb3582009-10-23 13:42:21 -0700531 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700532 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700533 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700534 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700535 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700536 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700537 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700538 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700539 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700540 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700541 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700542 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700543 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800544 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800545 .chain_noise_scale = 1500,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800546 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700547 .max_event_log_size = 1024,
Jay Sternberge1228372009-01-19 15:30:34 -0800548};
549
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700550struct iwl_cfg iwl6050_2abg_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800551 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700552 .fw_name_pre = IWL6050_FW_PRE,
553 .ucode_api_max = IWL6050_UCODE_API_MAX,
554 .ucode_api_min = IWL6050_UCODE_API_MIN,
555 .sku = IWL_SKU_A|IWL_SKU_G,
Abhijeet Kolekard5755932010-02-18 22:03:05 -0800556 .ops = &iwl6050_ops,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700557 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700558 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700559 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700560 .num_of_queues = IWLAGN_NUM_QUEUES,
561 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700562 .mod_params = &iwlagn_mod_params,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700563 .valid_tx_ant = ANT_AB,
564 .valid_rx_ant = ANT_AB,
Ben Cahillfadb3582009-10-23 13:42:21 -0700565 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700566 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700567 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700568 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700569 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700570 .shadow_ram_support = true,
571 .ht_greenfield_support = true,
572 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700573 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700574 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700575 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700576 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800577 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800578 .chain_noise_scale = 1500,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800579 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700580 .max_event_log_size = 1024,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700581};
582
Jay Sternberge1228372009-01-19 15:30:34 -0800583struct iwl_cfg iwl6000_3agn_cfg = {
Shanyu Zhaoc11362c2010-03-05 17:05:20 -0800584 .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
Jay Sternberge1228372009-01-19 15:30:34 -0800585 .fw_name_pre = IWL6000_FW_PRE,
586 .ucode_api_max = IWL6000_UCODE_API_MAX,
587 .ucode_api_min = IWL6000_UCODE_API_MIN,
588 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800589 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700590 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700591 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy00e70592010-03-16 12:37:26 -0700592 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700593 .num_of_queues = IWLAGN_NUM_QUEUES,
594 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
Wey-Yi Guy348ee7cd2010-03-16 12:37:27 -0700595 .mod_params = &iwlagn_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800596 .valid_tx_ant = ANT_ABC,
597 .valid_rx_ant = ANT_ABC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700598 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700599 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700600 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700601 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700602 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
603 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700604 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700605 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700606 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700607 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700608 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700609 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700610 .support_ct_kill_exit = true,
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -0800611 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
Ben Cahilld4fe5ac2010-02-05 11:33:46 -0800612 .chain_noise_scale = 1000,
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -0800613 .monitor_recover_period = IWL_MONITORING_PERIOD,
Wey-Yi Guy678b3852010-03-26 12:54:37 -0700614 .max_event_log_size = 1024,
Jay Sternberge1228372009-01-19 15:30:34 -0800615};
616
Jay Sternberge1228372009-01-19 15:30:34 -0800617MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
618MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
Shanyu Zhao4b3e8062010-04-07 18:06:36 -0700619MODULE_FIRMWARE(IWL6000G2_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));