iwlagn: fix channel switch locking
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / iwlwifi / iwl-6000.c
blobfbe565c816e32ce367c09dad8ef5762e4c819d86
1 /******************************************************************************
3 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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.
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.
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *****************************************************************************/
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>
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-agn.h"
46 #include "iwl-helpers.h"
47 #include "iwl-agn-hw.h"
48 #include "iwl-6000-hw.h"
50 /* Highest firmware API version supported */
51 #define IWL6000_UCODE_API_MAX 4
52 #define IWL6050_UCODE_API_MAX 5
53 #define IWL6000G2_UCODE_API_MAX 5
55 /* Lowest firmware API version supported */
56 #define IWL6000_UCODE_API_MIN 4
57 #define IWL6050_UCODE_API_MIN 4
58 #define IWL6000G2_UCODE_API_MIN 4
60 #define IWL6000_FW_PRE "iwlwifi-6000-"
61 #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
63 #define IWL6050_FW_PRE "iwlwifi-6050-"
64 #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
66 #define IWL6005_FW_PRE "iwlwifi-6000g2a-"
67 #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE #api ".ucode"
69 #define IWL6030_FW_PRE "iwlwifi-6000g2b-"
70 #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE #api ".ucode"
72 static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
74 /* want Celsius */
75 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
76 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
79 static void iwl6050_additional_nic_config(struct iwl_priv *priv)
81 /* Indicate calibration version to uCode. */
82 if (iwlagn_eeprom_calib_version(priv) >= 6)
83 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
84 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
87 static void iwl6150_additional_nic_config(struct iwl_priv *priv)
89 /* Indicate calibration version to uCode. */
90 if (iwlagn_eeprom_calib_version(priv) >= 6)
91 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
92 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
93 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
94 CSR_GP_DRIVER_REG_BIT_6050_1x2);
97 /* NIC configuration for 6000 series */
98 static void iwl6000_nic_config(struct iwl_priv *priv)
100 u16 radio_cfg;
102 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
104 /* write radio config values to register */
105 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
106 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
107 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
108 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
109 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
111 /* set CSR_HW_CONFIG_REG for uCode use */
112 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
113 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
114 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
116 /* no locking required for register write */
117 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
118 /* 2x2 IPA phy type */
119 iwl_write32(priv, CSR_GP_DRIVER_REG,
120 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
122 /* do additional nic configuration if needed */
123 if (priv->cfg->ops->nic &&
124 priv->cfg->ops->nic->additional_nic_config) {
125 priv->cfg->ops->nic->additional_nic_config(priv);
129 static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
130 .min_nrg_cck = 97,
131 .max_nrg_cck = 0, /* not used, set to 0 */
132 .auto_corr_min_ofdm = 80,
133 .auto_corr_min_ofdm_mrc = 128,
134 .auto_corr_min_ofdm_x1 = 105,
135 .auto_corr_min_ofdm_mrc_x1 = 192,
137 .auto_corr_max_ofdm = 145,
138 .auto_corr_max_ofdm_mrc = 232,
139 .auto_corr_max_ofdm_x1 = 110,
140 .auto_corr_max_ofdm_mrc_x1 = 232,
142 .auto_corr_min_cck = 125,
143 .auto_corr_max_cck = 175,
144 .auto_corr_min_cck_mrc = 160,
145 .auto_corr_max_cck_mrc = 310,
146 .nrg_th_cck = 97,
147 .nrg_th_ofdm = 100,
149 .barker_corr_th_min = 190,
150 .barker_corr_th_min_mrc = 390,
151 .nrg_th_cca = 62,
154 static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
156 if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES &&
157 iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES)
158 priv->cfg->base_params->num_of_queues =
159 iwlagn_mod_params.num_of_queues;
161 priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
162 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
163 priv->hw_params.scd_bc_tbls_size =
164 priv->cfg->base_params->num_of_queues *
165 sizeof(struct iwlagn_scd_bc_tbl);
166 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
167 priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
168 priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
170 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
171 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
173 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
174 BIT(IEEE80211_BAND_5GHZ);
175 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
177 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
178 if (priv->cfg->rx_with_siso_diversity)
179 priv->hw_params.rx_chains_num = 1;
180 else
181 priv->hw_params.rx_chains_num =
182 num_of_ant(priv->cfg->valid_rx_ant);
183 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
184 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
186 iwl6000_set_ct_threshold(priv);
188 /* Set initial sensitivity parameters */
189 /* Set initial calibration set */
190 priv->hw_params.sens = &iwl6000_sensitivity;
191 priv->hw_params.calib_init_cfg =
192 BIT(IWL_CALIB_XTAL) |
193 BIT(IWL_CALIB_LO) |
194 BIT(IWL_CALIB_TX_IQ) |
195 BIT(IWL_CALIB_BASE_BAND);
196 if (priv->cfg->need_dc_calib)
197 priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX);
198 if (priv->cfg->need_temp_offset_calib)
199 priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET);
201 priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS;
203 return 0;
206 static int iwl6000_hw_channel_switch(struct iwl_priv *priv,
207 struct ieee80211_channel_switch *ch_switch)
210 * MULTI-FIXME
211 * See iwl_mac_channel_switch.
213 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
214 struct iwl6000_channel_switch_cmd cmd;
215 const struct iwl_channel_info *ch_info;
216 u32 switch_time_in_usec, ucode_switch_time;
217 u16 ch;
218 u32 tsf_low;
219 u8 switch_count;
220 u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval);
221 struct ieee80211_vif *vif = ctx->vif;
222 struct iwl_host_cmd hcmd = {
223 .id = REPLY_CHANNEL_SWITCH,
224 .len = { sizeof(cmd), },
225 .flags = CMD_SYNC,
226 .data = { &cmd, },
229 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
230 ch = ch_switch->channel->hw_value;
231 IWL_DEBUG_11H(priv, "channel switch from %u to %u\n",
232 ctx->active.channel, ch);
233 cmd.channel = cpu_to_le16(ch);
234 cmd.rxon_flags = ctx->staging.flags;
235 cmd.rxon_filter_flags = ctx->staging.filter_flags;
236 switch_count = ch_switch->count;
237 tsf_low = ch_switch->timestamp & 0x0ffffffff;
239 * calculate the ucode channel switch time
240 * adding TSF as one of the factor for when to switch
242 if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) {
243 if (switch_count > ((priv->ucode_beacon_time - tsf_low) /
244 beacon_interval)) {
245 switch_count -= (priv->ucode_beacon_time -
246 tsf_low) / beacon_interval;
247 } else
248 switch_count = 0;
250 if (switch_count <= 1)
251 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
252 else {
253 switch_time_in_usec =
254 vif->bss_conf.beacon_int * switch_count * TIME_UNIT;
255 ucode_switch_time = iwl_usecs_to_beacons(priv,
256 switch_time_in_usec,
257 beacon_interval);
258 cmd.switch_time = iwl_add_beacon_time(priv,
259 priv->ucode_beacon_time,
260 ucode_switch_time,
261 beacon_interval);
263 IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n",
264 cmd.switch_time);
265 ch_info = iwl_get_channel_info(priv, priv->band, ch);
266 if (ch_info)
267 cmd.expect_beacon = is_channel_radar(ch_info);
268 else {
269 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
270 ctx->active.channel, ch);
271 return -EFAULT;
274 return iwl_send_cmd_sync(priv, &hcmd);
277 static struct iwl_lib_ops iwl6000_lib = {
278 .set_hw_params = iwl6000_hw_set_hw_params,
279 .rx_handler_setup = iwlagn_rx_handler_setup,
280 .setup_deferred_work = iwlagn_setup_deferred_work,
281 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
282 .send_tx_power = iwlagn_send_tx_power,
283 .update_chain_flags = iwl_update_chain_flags,
284 .set_channel_switch = iwl6000_hw_channel_switch,
285 .apm_ops = {
286 .init = iwl_apm_init,
287 .config = iwl6000_nic_config,
289 .eeprom_ops = {
290 .regulatory_bands = {
291 EEPROM_REG_BAND_1_CHANNELS,
292 EEPROM_REG_BAND_2_CHANNELS,
293 EEPROM_REG_BAND_3_CHANNELS,
294 EEPROM_REG_BAND_4_CHANNELS,
295 EEPROM_REG_BAND_5_CHANNELS,
296 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
297 EEPROM_REG_BAND_52_HT40_CHANNELS
299 .query_addr = iwlagn_eeprom_query_addr,
300 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
302 .temp_ops = {
303 .temperature = iwlagn_temperature,
305 .txfifo_flush = iwlagn_txfifo_flush,
306 .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
309 static struct iwl_lib_ops iwl6030_lib = {
310 .set_hw_params = iwl6000_hw_set_hw_params,
311 .rx_handler_setup = iwlagn_bt_rx_handler_setup,
312 .setup_deferred_work = iwlagn_bt_setup_deferred_work,
313 .cancel_deferred_work = iwlagn_bt_cancel_deferred_work,
314 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
315 .send_tx_power = iwlagn_send_tx_power,
316 .update_chain_flags = iwl_update_chain_flags,
317 .set_channel_switch = iwl6000_hw_channel_switch,
318 .apm_ops = {
319 .init = iwl_apm_init,
320 .config = iwl6000_nic_config,
322 .eeprom_ops = {
323 .regulatory_bands = {
324 EEPROM_REG_BAND_1_CHANNELS,
325 EEPROM_REG_BAND_2_CHANNELS,
326 EEPROM_REG_BAND_3_CHANNELS,
327 EEPROM_REG_BAND_4_CHANNELS,
328 EEPROM_REG_BAND_5_CHANNELS,
329 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
330 EEPROM_REG_BAND_52_HT40_CHANNELS
332 .query_addr = iwlagn_eeprom_query_addr,
333 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
335 .temp_ops = {
336 .temperature = iwlagn_temperature,
338 .txfifo_flush = iwlagn_txfifo_flush,
339 .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
342 static struct iwl_nic_ops iwl6050_nic_ops = {
343 .additional_nic_config = &iwl6050_additional_nic_config,
346 static struct iwl_nic_ops iwl6150_nic_ops = {
347 .additional_nic_config = &iwl6150_additional_nic_config,
350 static const struct iwl_ops iwl6000_ops = {
351 .lib = &iwl6000_lib,
352 .hcmd = &iwlagn_hcmd,
353 .utils = &iwlagn_hcmd_utils,
356 static const struct iwl_ops iwl6050_ops = {
357 .lib = &iwl6000_lib,
358 .hcmd = &iwlagn_hcmd,
359 .utils = &iwlagn_hcmd_utils,
360 .nic = &iwl6050_nic_ops,
363 static const struct iwl_ops iwl6150_ops = {
364 .lib = &iwl6000_lib,
365 .hcmd = &iwlagn_hcmd,
366 .utils = &iwlagn_hcmd_utils,
367 .nic = &iwl6150_nic_ops,
370 static const struct iwl_ops iwl6030_ops = {
371 .lib = &iwl6030_lib,
372 .hcmd = &iwlagn_bt_hcmd,
373 .utils = &iwlagn_hcmd_utils,
376 static struct iwl_base_params iwl6000_base_params = {
377 .eeprom_size = OTP_LOW_IMAGE_SIZE,
378 .num_of_queues = IWLAGN_NUM_QUEUES,
379 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
380 .pll_cfg_val = 0,
381 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
382 .shadow_ram_support = true,
383 .led_compensation = 51,
384 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
385 .adv_thermal_throttle = true,
386 .support_ct_kill_exit = true,
387 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
388 .chain_noise_scale = 1000,
389 .wd_timeout = IWL_DEF_WD_TIMEOUT,
390 .max_event_log_size = 512,
391 .shadow_reg_enable = true,
394 static struct iwl_base_params iwl6050_base_params = {
395 .eeprom_size = OTP_LOW_IMAGE_SIZE,
396 .num_of_queues = IWLAGN_NUM_QUEUES,
397 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
398 .pll_cfg_val = 0,
399 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
400 .shadow_ram_support = true,
401 .led_compensation = 51,
402 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
403 .adv_thermal_throttle = true,
404 .support_ct_kill_exit = true,
405 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
406 .chain_noise_scale = 1500,
407 .wd_timeout = IWL_DEF_WD_TIMEOUT,
408 .max_event_log_size = 1024,
409 .shadow_reg_enable = true,
411 static struct iwl_base_params iwl6000_g2_base_params = {
412 .eeprom_size = OTP_LOW_IMAGE_SIZE,
413 .num_of_queues = IWLAGN_NUM_QUEUES,
414 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
415 .pll_cfg_val = 0,
416 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
417 .shadow_ram_support = true,
418 .led_compensation = 57,
419 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
420 .adv_thermal_throttle = true,
421 .support_ct_kill_exit = true,
422 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
423 .chain_noise_scale = 1000,
424 .wd_timeout = IWL_LONG_WD_TIMEOUT,
425 .max_event_log_size = 512,
426 .shadow_reg_enable = true,
429 static struct iwl_ht_params iwl6000_ht_params = {
430 .ht_greenfield_support = true,
431 .use_rts_for_aggregation = true, /* use rts/cts protection */
434 static struct iwl_bt_params iwl6000_bt_params = {
435 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
436 .advanced_bt_coexist = true,
437 .agg_time_limit = BT_AGG_THRESHOLD_DEF,
438 .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
439 .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
440 .bt_sco_disable = true,
443 #define IWL_DEVICE_6005 \
444 .fw_name_pre = IWL6005_FW_PRE, \
445 .ucode_api_max = IWL6000G2_UCODE_API_MAX, \
446 .ucode_api_min = IWL6000G2_UCODE_API_MIN, \
447 .eeprom_ver = EEPROM_6005_EEPROM_VERSION, \
448 .eeprom_calib_ver = EEPROM_6005_TX_POWER_VERSION, \
449 .ops = &iwl6000_ops, \
450 .base_params = &iwl6000_g2_base_params, \
451 .need_dc_calib = true, \
452 .need_temp_offset_calib = true, \
453 .led_mode = IWL_LED_RF_STATE
455 struct iwl_cfg iwl6005_2agn_cfg = {
456 .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN",
457 IWL_DEVICE_6005,
458 .ht_params = &iwl6000_ht_params,
461 struct iwl_cfg iwl6005_2abg_cfg = {
462 .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG",
463 IWL_DEVICE_6005,
466 struct iwl_cfg iwl6005_2bg_cfg = {
467 .name = "Intel(R) Centrino(R) Advanced-N 6205 BG",
468 IWL_DEVICE_6005,
471 #define IWL_DEVICE_6030 \
472 .fw_name_pre = IWL6030_FW_PRE, \
473 .ucode_api_max = IWL6000G2_UCODE_API_MAX, \
474 .ucode_api_min = IWL6000G2_UCODE_API_MIN, \
475 .eeprom_ver = EEPROM_6030_EEPROM_VERSION, \
476 .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION, \
477 .ops = &iwl6030_ops, \
478 .base_params = &iwl6000_g2_base_params, \
479 .bt_params = &iwl6000_bt_params, \
480 .need_dc_calib = true, \
481 .need_temp_offset_calib = true, \
482 .led_mode = IWL_LED_RF_STATE, \
483 .adv_pm = true \
485 struct iwl_cfg iwl6030_2agn_cfg = {
486 .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN",
487 IWL_DEVICE_6030,
488 .ht_params = &iwl6000_ht_params,
491 struct iwl_cfg iwl6030_2abg_cfg = {
492 .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG",
493 IWL_DEVICE_6030,
496 struct iwl_cfg iwl6030_2bgn_cfg = {
497 .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN",
498 IWL_DEVICE_6030,
499 .ht_params = &iwl6000_ht_params,
502 struct iwl_cfg iwl6030_2bg_cfg = {
503 .name = "Intel(R) Centrino(R) Advanced-N 6230 BG",
504 IWL_DEVICE_6030,
507 struct iwl_cfg iwl6035_2agn_cfg = {
508 .name = "6035 Series 2x2 AGN/BT",
509 IWL_DEVICE_6030,
510 .ht_params = &iwl6000_ht_params,
513 struct iwl_cfg iwl6035_2abg_cfg = {
514 .name = "6035 Series 2x2 ABG/BT",
515 IWL_DEVICE_6030,
518 struct iwl_cfg iwl6035_2bg_cfg = {
519 .name = "6035 Series 2x2 BG/BT",
520 IWL_DEVICE_6030,
523 struct iwl_cfg iwl1030_bgn_cfg = {
524 .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN",
525 IWL_DEVICE_6030,
526 .ht_params = &iwl6000_ht_params,
529 struct iwl_cfg iwl1030_bg_cfg = {
530 .name = "Intel(R) Centrino(R) Wireless-N 1030 BG",
531 IWL_DEVICE_6030,
534 struct iwl_cfg iwl130_bgn_cfg = {
535 .name = "Intel(R) Centrino(R) Wireless-N 130 BGN",
536 IWL_DEVICE_6030,
537 .ht_params = &iwl6000_ht_params,
538 .rx_with_siso_diversity = true,
541 struct iwl_cfg iwl130_bg_cfg = {
542 .name = "Intel(R) Centrino(R) Wireless-N 130 BG",
543 IWL_DEVICE_6030,
544 .rx_with_siso_diversity = true,
548 * "i": Internal configuration, use internal Power Amplifier
550 #define IWL_DEVICE_6000i \
551 .fw_name_pre = IWL6000_FW_PRE, \
552 .ucode_api_max = IWL6000_UCODE_API_MAX, \
553 .ucode_api_min = IWL6000_UCODE_API_MIN, \
554 .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \
555 .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \
556 .eeprom_ver = EEPROM_6000_EEPROM_VERSION, \
557 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, \
558 .ops = &iwl6000_ops, \
559 .base_params = &iwl6000_base_params, \
560 .pa_type = IWL_PA_INTERNAL, \
561 .led_mode = IWL_LED_BLINK
563 struct iwl_cfg iwl6000i_2agn_cfg = {
564 .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
565 IWL_DEVICE_6000i,
566 .ht_params = &iwl6000_ht_params,
569 struct iwl_cfg iwl6000i_2abg_cfg = {
570 .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
571 IWL_DEVICE_6000i,
574 struct iwl_cfg iwl6000i_2bg_cfg = {
575 .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
576 IWL_DEVICE_6000i,
579 #define IWL_DEVICE_6050 \
580 .fw_name_pre = IWL6050_FW_PRE, \
581 .ucode_api_max = IWL6050_UCODE_API_MAX, \
582 .ucode_api_min = IWL6050_UCODE_API_MIN, \
583 .valid_tx_ant = ANT_AB, /* .cfg overwrite */ \
584 .valid_rx_ant = ANT_AB, /* .cfg overwrite */ \
585 .ops = &iwl6050_ops, \
586 .eeprom_ver = EEPROM_6050_EEPROM_VERSION, \
587 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, \
588 .base_params = &iwl6050_base_params, \
589 .need_dc_calib = true, \
590 .led_mode = IWL_LED_BLINK, \
591 .internal_wimax_coex = true
593 struct iwl_cfg iwl6050_2agn_cfg = {
594 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
595 IWL_DEVICE_6050,
596 .ht_params = &iwl6000_ht_params,
599 struct iwl_cfg iwl6050_2abg_cfg = {
600 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
601 IWL_DEVICE_6050,
604 #define IWL_DEVICE_6150 \
605 .fw_name_pre = IWL6050_FW_PRE, \
606 .ucode_api_max = IWL6050_UCODE_API_MAX, \
607 .ucode_api_min = IWL6050_UCODE_API_MIN, \
608 .ops = &iwl6150_ops, \
609 .eeprom_ver = EEPROM_6150_EEPROM_VERSION, \
610 .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, \
611 .base_params = &iwl6050_base_params, \
612 .need_dc_calib = true, \
613 .led_mode = IWL_LED_BLINK, \
614 .internal_wimax_coex = true
616 struct iwl_cfg iwl6150_bgn_cfg = {
617 .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN",
618 IWL_DEVICE_6150,
619 .ht_params = &iwl6000_ht_params,
622 struct iwl_cfg iwl6150_bg_cfg = {
623 .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG",
624 IWL_DEVICE_6150,
627 struct iwl_cfg iwl6000_3agn_cfg = {
628 .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
629 .fw_name_pre = IWL6000_FW_PRE,
630 .ucode_api_max = IWL6000_UCODE_API_MAX,
631 .ucode_api_min = IWL6000_UCODE_API_MIN,
632 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
633 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
634 .ops = &iwl6000_ops,
635 .base_params = &iwl6000_base_params,
636 .ht_params = &iwl6000_ht_params,
637 .need_dc_calib = true,
638 .led_mode = IWL_LED_BLINK,
641 MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
642 MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
643 MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));
644 MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));