iwlwifi: Tune radio to prevent unexpected behavior
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-6000.c
CommitLineData
e1228374
JS
1/******************************************************************************
2 *
1f447808 3 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
e1228374
JS
4 *
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"
45#include "iwl-helpers.h"
46#include "iwl-5000-hw.h"
f3a2a424 47#include "iwl-6000-hw.h"
e932a609 48#include "iwl-agn-led.h"
e1228374
JS
49
50/* Highest firmware API version supported */
fcbaf8b0
WYG
51#define IWL6000_UCODE_API_MAX 4
52#define IWL6050_UCODE_API_MAX 4
e1228374
JS
53
54/* Lowest firmware API version supported */
44246421
WYG
55#define IWL6000_UCODE_API_MIN 4
56#define IWL6050_UCODE_API_MIN 4
e1228374
JS
57
58#define IWL6000_FW_PRE "iwlwifi-6000-"
59#define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
60#define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api)
61
62#define IWL6050_FW_PRE "iwlwifi-6050-"
63#define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
64#define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api)
65
672639de
WYG
66static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
67{
68 /* want Celsius */
69 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
70 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
71}
72
65b7998a
WYG
73/* NIC configuration for 6000 series */
74static void iwl6000_nic_config(struct iwl_priv *priv)
75{
9371d4ed
WYG
76 u16 radio_cfg;
77
78 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
79
80 /* write radio config values to register */
81 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
82 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
83 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
84 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
85 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
86
87 /* set CSR_HW_CONFIG_REG for uCode use */
88 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
89 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
90 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
65b7998a
WYG
91
92 /* no locking required for register write */
740e7f51 93 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
65b7998a
WYG
94 /* 2x2 IPA phy type */
95 iwl_write32(priv, CSR_GP_DRIVER_REG,
96 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
97 }
98 /* else do nothing, uCode configured */
99}
100
f3a2a424
WYG
101static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
102 .min_nrg_cck = 97,
103 .max_nrg_cck = 0, /* not used, set to 0 */
104 .auto_corr_min_ofdm = 80,
105 .auto_corr_min_ofdm_mrc = 128,
106 .auto_corr_min_ofdm_x1 = 105,
107 .auto_corr_min_ofdm_mrc_x1 = 192,
108
109 .auto_corr_max_ofdm = 145,
110 .auto_corr_max_ofdm_mrc = 232,
111 .auto_corr_max_ofdm_x1 = 145,
112 .auto_corr_max_ofdm_mrc_x1 = 232,
113
114 .auto_corr_min_cck = 125,
115 .auto_corr_max_cck = 175,
116 .auto_corr_min_cck_mrc = 160,
117 .auto_corr_max_cck_mrc = 310,
118 .nrg_th_cck = 97,
119 .nrg_th_ofdm = 100,
55036d66
WYG
120
121 .barker_corr_th_min = 190,
122 .barker_corr_th_min_mrc = 390,
123 .nrg_th_cca = 62,
f3a2a424
WYG
124};
125
126static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
127{
88804e2b
WYG
128 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
129 priv->cfg->mod_params->num_of_queues <= IWL50_NUM_QUEUES)
130 priv->cfg->num_of_queues =
131 priv->cfg->mod_params->num_of_queues;
f3a2a424 132
88804e2b 133 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
f3a2a424
WYG
134 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
135 priv->hw_params.scd_bc_tbls_size =
88804e2b
WYG
136 priv->cfg->num_of_queues *
137 sizeof(struct iwl5000_scd_bc_tbl);
f3a2a424
WYG
138 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
139 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
140 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
141
142 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
143 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
144
145 priv->hw_params.max_bsm_size = 0;
146 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
147 BIT(IEEE80211_BAND_5GHZ);
148 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
149
150 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
151 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
152 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
153 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
154
155 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
156 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
157
158 /* Set initial sensitivity parameters */
159 /* Set initial calibration set */
160 priv->hw_params.sens = &iwl6000_sensitivity;
161 priv->hw_params.calib_init_cfg =
162 BIT(IWL_CALIB_XTAL) |
163 BIT(IWL_CALIB_LO) |
164 BIT(IWL_CALIB_TX_IQ) |
f3a2a424 165 BIT(IWL_CALIB_BASE_BAND);
f3a2a424
WYG
166 return 0;
167}
168
4a56e965
WYG
169static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel)
170{
171 struct iwl6000_channel_switch_cmd cmd;
172 const struct iwl_channel_info *ch_info;
173 struct iwl_host_cmd hcmd = {
174 .id = REPLY_CHANNEL_SWITCH,
175 .len = sizeof(cmd),
176 .flags = CMD_SIZE_HUGE,
177 .data = &cmd,
178 };
179
180 IWL_DEBUG_11H(priv, "channel switch from %d to %d\n",
181 priv->active_rxon.channel, channel);
182
183 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
184 cmd.channel = cpu_to_le16(channel);
0924e519
WYG
185 cmd.rxon_flags = priv->staging_rxon.flags;
186 cmd.rxon_filter_flags = priv->staging_rxon.filter_flags;
4a56e965
WYG
187 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
188 ch_info = iwl_get_channel_info(priv, priv->band, channel);
189 if (ch_info)
190 cmd.expect_beacon = is_channel_radar(ch_info);
191 else {
192 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
193 priv->active_rxon.channel, channel);
194 return -EFAULT;
195 }
0924e519
WYG
196 priv->switch_rxon.channel = cpu_to_le16(channel);
197 priv->switch_rxon.switch_in_progress = true;
4a56e965
WYG
198
199 return iwl_send_cmd_sync(priv, &hcmd);
200}
201
672639de 202static struct iwl_lib_ops iwl6000_lib = {
f3a2a424 203 .set_hw_params = iwl6000_hw_set_hw_params,
672639de
WYG
204 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
205 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
206 .txq_set_sched = iwl5000_txq_set_sched,
207 .txq_agg_enable = iwl5000_txq_agg_enable,
208 .txq_agg_disable = iwl5000_txq_agg_disable,
209 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
210 .txq_free_tfd = iwl_hw_txq_free_tfd,
211 .txq_init = iwl_hw_tx_queue_init,
212 .rx_handler_setup = iwl5000_rx_handler_setup,
213 .setup_deferred_work = iwl5000_setup_deferred_work,
214 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
215 .load_ucode = iwl5000_load_ucode,
b7a79404
RC
216 .dump_nic_event_log = iwl_dump_nic_event_log,
217 .dump_nic_error_log = iwl_dump_nic_error_log,
696bdee3 218 .dump_csr = iwl_dump_csr,
1b3eb823 219 .dump_fh = iwl_dump_fh,
672639de
WYG
220 .init_alive_start = iwl5000_init_alive_start,
221 .alive_notify = iwl5000_alive_notify,
222 .send_tx_power = iwl5000_send_tx_power,
223 .update_chain_flags = iwl_update_chain_flags,
4a56e965 224 .set_channel_switch = iwl6000_hw_channel_switch,
672639de 225 .apm_ops = {
fadb3582 226 .init = iwl_apm_init,
d68b603c 227 .stop = iwl_apm_stop,
65b7998a 228 .config = iwl6000_nic_config,
672639de
WYG
229 .set_pwr_src = iwl_set_pwr_src,
230 },
231 .eeprom_ops = {
232 .regulatory_bands = {
233 EEPROM_5000_REG_BAND_1_CHANNELS,
234 EEPROM_5000_REG_BAND_2_CHANNELS,
235 EEPROM_5000_REG_BAND_3_CHANNELS,
236 EEPROM_5000_REG_BAND_4_CHANNELS,
237 EEPROM_5000_REG_BAND_5_CHANNELS,
7aafef1c
WYG
238 EEPROM_5000_REG_BAND_24_HT40_CHANNELS,
239 EEPROM_5000_REG_BAND_52_HT40_CHANNELS
672639de
WYG
240 },
241 .verify_signature = iwlcore_eeprom_verify_signature,
242 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
243 .release_semaphore = iwlcore_eeprom_release_semaphore,
244 .calib_version = iwl5000_eeprom_calib_version,
245 .query_addr = iwl5000_eeprom_query_addr,
ab9fd1bf 246 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
672639de
WYG
247 },
248 .post_associate = iwl_post_associate,
249 .isr = iwl_isr_ict,
250 .config_ap = iwl_config_ap,
251 .temp_ops = {
252 .temperature = iwl5000_temperature,
253 .set_ct_kill = iwl6000_set_ct_threshold,
254 },
255};
256
45d5d805 257static const struct iwl_ops iwl6000_ops = {
cc0f555d 258 .ucode = &iwl5000_ucode,
672639de 259 .lib = &iwl6000_lib,
29f35c14 260 .hcmd = &iwl5000_hcmd,
d8c07e7a 261 .utils = &iwl5000_hcmd_utils,
e932a609 262 .led = &iwlagn_led_ops,
29f35c14
JS
263};
264
9444b188
WYG
265static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = {
266 .get_hcmd_size = iwl5000_get_hcmd_size,
267 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
268 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
269 .calc_rssi = iwl5000_calc_rssi,
270};
271
45d5d805 272static const struct iwl_ops iwl6050_ops = {
9444b188
WYG
273 .ucode = &iwl5000_ucode,
274 .lib = &iwl6000_lib,
275 .hcmd = &iwl5000_hcmd,
276 .utils = &iwl6050_hcmd_utils,
277 .led = &iwlagn_led_ops,
278};
279
65b7998a
WYG
280/*
281 * "i": Internal configuration, use internal Power Amplifier
282 */
283struct iwl_cfg iwl6000i_2agn_cfg = {
284 .name = "6000 Series 2x2 AGN",
285 .fw_name_pre = IWL6000_FW_PRE,
286 .ucode_api_max = IWL6000_UCODE_API_MAX,
287 .ucode_api_min = IWL6000_UCODE_API_MIN,
288 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
289 .ops = &iwl6000_ops,
415e4993 290 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1f4b9665 291 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
65b7998a 292 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
293 .num_of_queues = IWL50_NUM_QUEUES,
294 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
65b7998a
WYG
295 .mod_params = &iwl50_mod_params,
296 .valid_tx_ant = ANT_BC,
297 .valid_rx_ant = ANT_BC,
fadb3582 298 .pll_cfg_val = 0,
a6c5c731 299 .set_l0s = true,
fadb3582 300 .use_bsm = false,
65b7998a 301 .pa_type = IWL_PA_INTERNAL,
415e4993
WYG
302 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
303 .shadow_ram_support = true,
b261793d 304 .ht_greenfield_support = true,
f2d0d0e2 305 .led_compensation = 51,
47eef9bd 306 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 307 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 308 .supports_idle = true,
6047b4f9 309 .adv_thermal_throttle = true,
480e8407 310 .support_ct_kill_exit = true,
3e4fb5fa 311 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
e1228374
JS
312};
313
5953a62e
WYG
314struct iwl_cfg iwl6000i_2abg_cfg = {
315 .name = "6000 Series 2x2 ABG",
316 .fw_name_pre = IWL6000_FW_PRE,
317 .ucode_api_max = IWL6000_UCODE_API_MAX,
318 .ucode_api_min = IWL6000_UCODE_API_MIN,
319 .sku = IWL_SKU_A|IWL_SKU_G,
320 .ops = &iwl6000_ops,
321 .eeprom_size = OTP_LOW_IMAGE_SIZE,
322 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
323 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
324 .num_of_queues = IWL50_NUM_QUEUES,
325 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
5953a62e
WYG
326 .mod_params = &iwl50_mod_params,
327 .valid_tx_ant = ANT_BC,
328 .valid_rx_ant = ANT_BC,
fadb3582 329 .pll_cfg_val = 0,
a6c5c731 330 .set_l0s = true,
fadb3582 331 .use_bsm = false,
5953a62e
WYG
332 .pa_type = IWL_PA_INTERNAL,
333 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
334 .shadow_ram_support = true,
335 .ht_greenfield_support = true,
336 .led_compensation = 51,
d8c07e7a 337 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 338 .supports_idle = true,
6047b4f9 339 .adv_thermal_throttle = true,
480e8407 340 .support_ct_kill_exit = true,
3e4fb5fa 341 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
5953a62e
WYG
342};
343
344struct iwl_cfg iwl6000i_2bg_cfg = {
345 .name = "6000 Series 2x2 BG",
346 .fw_name_pre = IWL6000_FW_PRE,
347 .ucode_api_max = IWL6000_UCODE_API_MAX,
348 .ucode_api_min = IWL6000_UCODE_API_MIN,
349 .sku = IWL_SKU_G,
350 .ops = &iwl6000_ops,
351 .eeprom_size = OTP_LOW_IMAGE_SIZE,
352 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
353 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
354 .num_of_queues = IWL50_NUM_QUEUES,
355 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
5953a62e
WYG
356 .mod_params = &iwl50_mod_params,
357 .valid_tx_ant = ANT_BC,
358 .valid_rx_ant = ANT_BC,
fadb3582 359 .pll_cfg_val = 0,
a6c5c731 360 .set_l0s = true,
fadb3582 361 .use_bsm = false,
5953a62e
WYG
362 .pa_type = IWL_PA_INTERNAL,
363 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
364 .shadow_ram_support = true,
365 .ht_greenfield_support = true,
366 .led_compensation = 51,
d8c07e7a 367 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 368 .supports_idle = true,
6047b4f9 369 .adv_thermal_throttle = true,
480e8407 370 .support_ct_kill_exit = true,
3e4fb5fa 371 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
5953a62e
WYG
372};
373
e1228374
JS
374struct iwl_cfg iwl6050_2agn_cfg = {
375 .name = "6050 Series 2x2 AGN",
376 .fw_name_pre = IWL6050_FW_PRE,
377 .ucode_api_max = IWL6050_UCODE_API_MAX,
378 .ucode_api_min = IWL6050_UCODE_API_MIN,
379 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
9444b188 380 .ops = &iwl6050_ops,
415e4993 381 .eeprom_size = OTP_LOW_IMAGE_SIZE,
32b7e244 382 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
e1228374 383 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
384 .num_of_queues = IWL50_NUM_QUEUES,
385 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
e1228374 386 .mod_params = &iwl50_mod_params,
542cc793
JS
387 .valid_tx_ant = ANT_AB,
388 .valid_rx_ant = ANT_AB,
fadb3582 389 .pll_cfg_val = 0,
a6c5c731 390 .set_l0s = true,
fadb3582 391 .use_bsm = false,
65b7998a 392 .pa_type = IWL_PA_SYSTEM,
3ab312a8 393 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
415e4993 394 .shadow_ram_support = true,
b261793d 395 .ht_greenfield_support = true,
f2d0d0e2 396 .led_compensation = 51,
47eef9bd 397 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 398 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 399 .supports_idle = true,
6047b4f9 400 .adv_thermal_throttle = true,
480e8407 401 .support_ct_kill_exit = true,
3e4fb5fa 402 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
e1228374
JS
403};
404
5953a62e
WYG
405struct iwl_cfg iwl6050_2abg_cfg = {
406 .name = "6050 Series 2x2 ABG",
407 .fw_name_pre = IWL6050_FW_PRE,
408 .ucode_api_max = IWL6050_UCODE_API_MAX,
409 .ucode_api_min = IWL6050_UCODE_API_MIN,
410 .sku = IWL_SKU_A|IWL_SKU_G,
9444b188 411 .ops = &iwl6050_ops,
5953a62e 412 .eeprom_size = OTP_LOW_IMAGE_SIZE,
32b7e244 413 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
5953a62e 414 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
415 .num_of_queues = IWL50_NUM_QUEUES,
416 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
5953a62e
WYG
417 .mod_params = &iwl50_mod_params,
418 .valid_tx_ant = ANT_AB,
419 .valid_rx_ant = ANT_AB,
fadb3582 420 .pll_cfg_val = 0,
a6c5c731 421 .set_l0s = true,
fadb3582 422 .use_bsm = false,
5953a62e 423 .pa_type = IWL_PA_SYSTEM,
3ab312a8 424 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
5953a62e
WYG
425 .shadow_ram_support = true,
426 .ht_greenfield_support = true,
427 .led_compensation = 51,
d8c07e7a 428 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 429 .supports_idle = true,
6047b4f9 430 .adv_thermal_throttle = true,
480e8407 431 .support_ct_kill_exit = true,
3e4fb5fa 432 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
5953a62e
WYG
433};
434
e1228374
JS
435struct iwl_cfg iwl6000_3agn_cfg = {
436 .name = "6000 Series 3x3 AGN",
437 .fw_name_pre = IWL6000_FW_PRE,
438 .ucode_api_max = IWL6000_UCODE_API_MAX,
439 .ucode_api_min = IWL6000_UCODE_API_MIN,
440 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
29f35c14 441 .ops = &iwl6000_ops,
415e4993 442 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1f4b9665 443 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
e1228374 444 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88804e2b
WYG
445 .num_of_queues = IWL50_NUM_QUEUES,
446 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
e1228374 447 .mod_params = &iwl50_mod_params,
c0bac76a
JS
448 .valid_tx_ant = ANT_ABC,
449 .valid_rx_ant = ANT_ABC,
fadb3582 450 .pll_cfg_val = 0,
a6c5c731 451 .set_l0s = true,
fadb3582 452 .use_bsm = false,
65b7998a 453 .pa_type = IWL_PA_SYSTEM,
415e4993
WYG
454 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
455 .shadow_ram_support = true,
b261793d 456 .ht_greenfield_support = true,
f2d0d0e2 457 .led_compensation = 51,
47eef9bd 458 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 459 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 460 .supports_idle = true,
6047b4f9 461 .adv_thermal_throttle = true,
480e8407 462 .support_ct_kill_exit = true,
3e4fb5fa 463 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
e1228374
JS
464};
465
e1228374
JS
466MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
467MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
This page took 1.098327 seconds and 5 git commands to generate.