]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/iwlwifi/iwl-6000.c
iwlagn: use 6000g2b uCode for 130 series devices
[net-next-2.6.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"
a1175124 45#include "iwl-agn.h"
e1228374 46#include "iwl-helpers.h"
19e6cda0 47#include "iwl-agn-hw.h"
f3a2a424 48#include "iwl-6000-hw.h"
e932a609 49#include "iwl-agn-led.h"
b8c76267 50#include "iwl-agn-debugfs.h"
e1228374
JS
51
52/* Highest firmware API version supported */
fcbaf8b0 53#define IWL6000_UCODE_API_MAX 4
62cb3c6a 54#define IWL6050_UCODE_API_MAX 5
670245ed 55#define IWL6000G2_UCODE_API_MAX 5
e1228374
JS
56
57/* Lowest firmware API version supported */
44246421
WYG
58#define IWL6000_UCODE_API_MIN 4
59#define IWL6050_UCODE_API_MIN 4
4b3e8062 60#define IWL6000G2_UCODE_API_MIN 4
e1228374
JS
61
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
95b13014
SZ
70#define IWL6000G2A_FW_PRE "iwlwifi-6000g2a-"
71#define _IWL6000G2A_MODULE_FIRMWARE(api) IWL6000G2A_FW_PRE #api ".ucode"
72#define IWL6000G2A_MODULE_FIRMWARE(api) _IWL6000G2A_MODULE_FIRMWARE(api)
73
1808972f
SZ
74#define IWL6000G2B_FW_PRE "iwlwifi-6000g2b-"
75#define _IWL6000G2B_MODULE_FIRMWARE(api) IWL6000G2B_FW_PRE #api ".ucode"
76#define IWL6000G2B_MODULE_FIRMWARE(api) _IWL6000G2B_MODULE_FIRMWARE(api)
77
672639de
WYG
78static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
79{
80 /* want Celsius */
81 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
82 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
83}
84
6b5ce501 85static void iwl6050_additional_nic_config(struct iwl_priv *priv)
d5755939 86{
6b5ce501
SZ
87 /* Indicate calibration version to uCode. */
88 if (priv->cfg->ops->lib->eeprom_ops.calib_version(priv) >= 6)
d5755939
AK
89 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
90 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
91}
92
02796d77
SZ
93static void iwl6050g2_additional_nic_config(struct iwl_priv *priv)
94{
95 /* Indicate calibration version to uCode. */
96 if (priv->cfg->ops->lib->eeprom_ops.calib_version(priv) >= 6)
97 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
98 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
99 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
100 CSR_GP_DRIVER_REG_BIT_6050_1x2);
101}
102
65b7998a
WYG
103/* NIC configuration for 6000 series */
104static void iwl6000_nic_config(struct iwl_priv *priv)
105{
9371d4ed
WYG
106 u16 radio_cfg;
107
108 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
109
110 /* write radio config values to register */
111 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
112 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
113 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
114 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
115 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
116
117 /* set CSR_HW_CONFIG_REG for uCode use */
118 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
119 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
120 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
65b7998a
WYG
121
122 /* no locking required for register write */
740e7f51 123 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
65b7998a
WYG
124 /* 2x2 IPA phy type */
125 iwl_write32(priv, CSR_GP_DRIVER_REG,
126 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
127 }
6b5ce501
SZ
128 /* do additional nic configuration if needed */
129 if (priv->cfg->ops->nic &&
130 priv->cfg->ops->nic->additional_nic_config) {
131 priv->cfg->ops->nic->additional_nic_config(priv);
132 }
65b7998a
WYG
133}
134
f3a2a424
WYG
135static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
136 .min_nrg_cck = 97,
137 .max_nrg_cck = 0, /* not used, set to 0 */
138 .auto_corr_min_ofdm = 80,
139 .auto_corr_min_ofdm_mrc = 128,
140 .auto_corr_min_ofdm_x1 = 105,
141 .auto_corr_min_ofdm_mrc_x1 = 192,
142
143 .auto_corr_max_ofdm = 145,
144 .auto_corr_max_ofdm_mrc = 232,
2494f63c 145 .auto_corr_max_ofdm_x1 = 110,
f3a2a424
WYG
146 .auto_corr_max_ofdm_mrc_x1 = 232,
147
148 .auto_corr_min_cck = 125,
149 .auto_corr_max_cck = 175,
150 .auto_corr_min_cck_mrc = 160,
151 .auto_corr_max_cck_mrc = 310,
152 .nrg_th_cck = 97,
153 .nrg_th_ofdm = 100,
55036d66
WYG
154
155 .barker_corr_th_min = 190,
156 .barker_corr_th_min_mrc = 390,
157 .nrg_th_cca = 62,
f3a2a424
WYG
158};
159
160static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
161{
88804e2b 162 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
19e6cda0 163 priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES)
7cb1b088 164 priv->cfg->base_params->num_of_queues =
88804e2b 165 priv->cfg->mod_params->num_of_queues;
f3a2a424 166
7cb1b088 167 priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
f3a2a424
WYG
168 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
169 priv->hw_params.scd_bc_tbls_size =
7cb1b088 170 priv->cfg->base_params->num_of_queues *
19e6cda0 171 sizeof(struct iwlagn_scd_bc_tbl);
f3a2a424 172 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
bf3c7fdd 173 priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
a194e324 174 priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
f3a2a424
WYG
175
176 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
177 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
178
179 priv->hw_params.max_bsm_size = 0;
180 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
181 BIT(IEEE80211_BAND_5GHZ);
182 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
183
184 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
185 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
186 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
187 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
188
0453674c 189 iwl6000_set_ct_threshold(priv);
f3a2a424
WYG
190
191 /* Set initial sensitivity parameters */
192 /* Set initial calibration set */
193 priv->hw_params.sens = &iwl6000_sensitivity;
e517736a
WYG
194 priv->hw_params.calib_init_cfg =
195 BIT(IWL_CALIB_XTAL) |
196 BIT(IWL_CALIB_LO) |
197 BIT(IWL_CALIB_TX_IQ) |
198 BIT(IWL_CALIB_BASE_BAND);
178d1596 199 if (priv->cfg->need_dc_calib)
6d6a1afd 200 priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX);
bf53f939
SZ
201 if (priv->cfg->need_temp_offset_calib)
202 priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET);
07f33f92 203
a0ee74cf
WYG
204 priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS;
205
f3a2a424
WYG
206 return 0;
207}
208
79d07325
WYG
209static int iwl6000_hw_channel_switch(struct iwl_priv *priv,
210 struct ieee80211_channel_switch *ch_switch)
4a56e965 211{
246ed355
JB
212 /*
213 * MULTI-FIXME
214 * See iwl_mac_channel_switch.
215 */
216 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
4a56e965
WYG
217 struct iwl6000_channel_switch_cmd cmd;
218 const struct iwl_channel_info *ch_info;
79d07325
WYG
219 u32 switch_time_in_usec, ucode_switch_time;
220 u16 ch;
221 u32 tsf_low;
222 u8 switch_count;
246ed355 223 u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval);
8bd413e6 224 struct ieee80211_vif *vif = ctx->vif;
4a56e965
WYG
225 struct iwl_host_cmd hcmd = {
226 .id = REPLY_CHANNEL_SWITCH,
227 .len = sizeof(cmd),
3839f7ce 228 .flags = CMD_SYNC,
4a56e965
WYG
229 .data = &cmd,
230 };
231
4a56e965 232 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
81e95430 233 ch = ch_switch->channel->hw_value;
79d07325 234 IWL_DEBUG_11H(priv, "channel switch from %u to %u\n",
246ed355 235 ctx->active.channel, ch);
79d07325 236 cmd.channel = cpu_to_le16(ch);
246ed355
JB
237 cmd.rxon_flags = ctx->staging.flags;
238 cmd.rxon_filter_flags = ctx->staging.filter_flags;
79d07325
WYG
239 switch_count = ch_switch->count;
240 tsf_low = ch_switch->timestamp & 0x0ffffffff;
241 /*
242 * calculate the ucode channel switch time
243 * adding TSF as one of the factor for when to switch
244 */
245 if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) {
246 if (switch_count > ((priv->ucode_beacon_time - tsf_low) /
247 beacon_interval)) {
248 switch_count -= (priv->ucode_beacon_time -
249 tsf_low) / beacon_interval;
250 } else
251 switch_count = 0;
252 }
253 if (switch_count <= 1)
254 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
255 else {
256 switch_time_in_usec =
257 vif->bss_conf.beacon_int * switch_count * TIME_UNIT;
258 ucode_switch_time = iwl_usecs_to_beacons(priv,
259 switch_time_in_usec,
260 beacon_interval);
261 cmd.switch_time = iwl_add_beacon_time(priv,
262 priv->ucode_beacon_time,
263 ucode_switch_time,
264 beacon_interval);
265 }
266 IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n",
267 cmd.switch_time);
268 ch_info = iwl_get_channel_info(priv, priv->band, ch);
4a56e965
WYG
269 if (ch_info)
270 cmd.expect_beacon = is_channel_radar(ch_info);
271 else {
272 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
246ed355 273 ctx->active.channel, ch);
4a56e965
WYG
274 return -EFAULT;
275 }
79d07325 276 priv->switch_rxon.channel = cmd.channel;
0924e519 277 priv->switch_rxon.switch_in_progress = true;
4a56e965
WYG
278
279 return iwl_send_cmd_sync(priv, &hcmd);
280}
281
672639de 282static struct iwl_lib_ops iwl6000_lib = {
f3a2a424 283 .set_hw_params = iwl6000_hw_set_hw_params,
b305a080
WYG
284 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
285 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
286 .txq_set_sched = iwlagn_txq_set_sched,
287 .txq_agg_enable = iwlagn_txq_agg_enable,
288 .txq_agg_disable = iwlagn_txq_agg_disable,
672639de
WYG
289 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
290 .txq_free_tfd = iwl_hw_txq_free_tfd,
291 .txq_init = iwl_hw_tx_queue_init,
e04ed0a5
WYG
292 .rx_handler_setup = iwlagn_rx_handler_setup,
293 .setup_deferred_work = iwlagn_setup_deferred_work,
294 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
81b8176e 295 .load_ucode = iwlagn_load_ucode,
b7a79404
RC
296 .dump_nic_event_log = iwl_dump_nic_event_log,
297 .dump_nic_error_log = iwl_dump_nic_error_log,
696bdee3 298 .dump_csr = iwl_dump_csr,
1b3eb823 299 .dump_fh = iwl_dump_fh,
741a6266
WYG
300 .init_alive_start = iwlagn_init_alive_start,
301 .alive_notify = iwlagn_alive_notify,
e04ed0a5 302 .send_tx_power = iwlagn_send_tx_power,
672639de 303 .update_chain_flags = iwl_update_chain_flags,
4a56e965 304 .set_channel_switch = iwl6000_hw_channel_switch,
672639de 305 .apm_ops = {
fadb3582 306 .init = iwl_apm_init,
65b7998a 307 .config = iwl6000_nic_config,
672639de
WYG
308 },
309 .eeprom_ops = {
310 .regulatory_bands = {
e04ed0a5
WYG
311 EEPROM_REG_BAND_1_CHANNELS,
312 EEPROM_REG_BAND_2_CHANNELS,
313 EEPROM_REG_BAND_3_CHANNELS,
314 EEPROM_REG_BAND_4_CHANNELS,
315 EEPROM_REG_BAND_5_CHANNELS,
f2fa1b01 316 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
e04ed0a5 317 EEPROM_REG_BAND_52_HT40_CHANNELS
672639de 318 },
672639de
WYG
319 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
320 .release_semaphore = iwlcore_eeprom_release_semaphore,
e04ed0a5
WYG
321 .calib_version = iwlagn_eeprom_calib_version,
322 .query_addr = iwlagn_eeprom_query_addr,
ab9fd1bf 323 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
672639de 324 },
672639de 325 .isr = iwl_isr_ict,
672639de 326 .temp_ops = {
e04ed0a5 327 .temperature = iwlagn_temperature,
672639de 328 },
b8c76267
AK
329 .debugfs_ops = {
330 .rx_stats_read = iwl_ucode_rx_stats_read,
331 .tx_stats_read = iwl_ucode_tx_stats_read,
332 .general_stats_read = iwl_ucode_general_stats_read,
ffb7d896 333 .bt_stats_read = iwl_ucode_bt_stats_read,
54a9aa65 334 .reply_tx_error = iwl_reply_tx_error_read,
b8c76267 335 },
b74e31a9 336 .recover_from_tx_stall = iwl_bg_monitor_recover,
fa8f130c
WYG
337 .check_plcp_health = iwl_good_plcp_health,
338 .check_ack_health = iwl_good_ack_health,
716c74b0 339 .txfifo_flush = iwlagn_txfifo_flush,
65550636 340 .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
0975cc8f
WYG
341 .tt_ops = {
342 .lower_power_detection = iwl_tt_is_low_power_state,
343 .tt_power_mode = iwl_tt_current_power_mode,
344 .ct_kill_check = iwl_check_for_ct_kill,
345 }
672639de
WYG
346};
347
9e4afc21
JB
348static struct iwl_lib_ops iwl6000g2b_lib = {
349 .set_hw_params = iwl6000_hw_set_hw_params,
350 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
351 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
352 .txq_set_sched = iwlagn_txq_set_sched,
353 .txq_agg_enable = iwlagn_txq_agg_enable,
354 .txq_agg_disable = iwlagn_txq_agg_disable,
355 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
356 .txq_free_tfd = iwl_hw_txq_free_tfd,
357 .txq_init = iwl_hw_tx_queue_init,
b6e116e8
WYG
358 .rx_handler_setup = iwlagn_bt_rx_handler_setup,
359 .setup_deferred_work = iwlagn_bt_setup_deferred_work,
360 .cancel_deferred_work = iwlagn_bt_cancel_deferred_work,
9e4afc21
JB
361 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
362 .load_ucode = iwlagn_load_ucode,
363 .dump_nic_event_log = iwl_dump_nic_event_log,
364 .dump_nic_error_log = iwl_dump_nic_error_log,
365 .dump_csr = iwl_dump_csr,
366 .dump_fh = iwl_dump_fh,
367 .init_alive_start = iwlagn_init_alive_start,
368 .alive_notify = iwlagn_alive_notify,
369 .send_tx_power = iwlagn_send_tx_power,
370 .update_chain_flags = iwl_update_chain_flags,
371 .set_channel_switch = iwl6000_hw_channel_switch,
372 .apm_ops = {
373 .init = iwl_apm_init,
9e4afc21 374 .config = iwl6000_nic_config,
9e4afc21
JB
375 },
376 .eeprom_ops = {
377 .regulatory_bands = {
378 EEPROM_REG_BAND_1_CHANNELS,
379 EEPROM_REG_BAND_2_CHANNELS,
380 EEPROM_REG_BAND_3_CHANNELS,
381 EEPROM_REG_BAND_4_CHANNELS,
382 EEPROM_REG_BAND_5_CHANNELS,
383 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
384 EEPROM_REG_BAND_52_HT40_CHANNELS
385 },
9e4afc21
JB
386 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
387 .release_semaphore = iwlcore_eeprom_release_semaphore,
388 .calib_version = iwlagn_eeprom_calib_version,
389 .query_addr = iwlagn_eeprom_query_addr,
390 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
391 },
9e4afc21 392 .isr = iwl_isr_ict,
9e4afc21
JB
393 .temp_ops = {
394 .temperature = iwlagn_temperature,
9e4afc21 395 },
9e4afc21
JB
396 .debugfs_ops = {
397 .rx_stats_read = iwl_ucode_rx_stats_read,
398 .tx_stats_read = iwl_ucode_tx_stats_read,
399 .general_stats_read = iwl_ucode_general_stats_read,
400 .bt_stats_read = iwl_ucode_bt_stats_read,
54a9aa65 401 .reply_tx_error = iwl_reply_tx_error_read,
9e4afc21
JB
402 },
403 .recover_from_tx_stall = iwl_bg_monitor_recover,
404 .check_plcp_health = iwl_good_plcp_health,
405 .check_ack_health = iwl_good_ack_health,
406 .txfifo_flush = iwlagn_txfifo_flush,
407 .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
408 .tt_ops = {
409 .lower_power_detection = iwl_tt_is_low_power_state,
410 .tt_power_mode = iwl_tt_current_power_mode,
411 .ct_kill_check = iwl_check_for_ct_kill,
412 }
413};
414
6b5ce501
SZ
415static struct iwl_nic_ops iwl6050_nic_ops = {
416 .additional_nic_config = &iwl6050_additional_nic_config,
417};
418
02796d77
SZ
419static struct iwl_nic_ops iwl6050g2_nic_ops = {
420 .additional_nic_config = &iwl6050g2_additional_nic_config,
421};
422
45d5d805 423static const struct iwl_ops iwl6000_ops = {
672639de 424 .lib = &iwl6000_lib,
7dc77dba
WYG
425 .hcmd = &iwlagn_hcmd,
426 .utils = &iwlagn_hcmd_utils,
e932a609 427 .led = &iwlagn_led_ops,
dc21b545 428 .ieee80211_ops = &iwlagn_hw_ops,
29f35c14
JS
429};
430
6b5ce501
SZ
431static const struct iwl_ops iwl6050_ops = {
432 .lib = &iwl6000_lib,
433 .hcmd = &iwlagn_hcmd,
434 .utils = &iwlagn_hcmd_utils,
435 .led = &iwlagn_led_ops,
436 .nic = &iwl6050_nic_ops,
dc21b545 437 .ieee80211_ops = &iwlagn_hw_ops,
6b5ce501
SZ
438};
439
02796d77
SZ
440static const struct iwl_ops iwl6050g2_ops = {
441 .lib = &iwl6000_lib,
442 .hcmd = &iwlagn_hcmd,
443 .utils = &iwlagn_hcmd_utils,
444 .led = &iwlagn_led_ops,
445 .nic = &iwl6050g2_nic_ops,
dc21b545 446 .ieee80211_ops = &iwlagn_hw_ops,
02796d77
SZ
447};
448
1808972f 449static const struct iwl_ops iwl6000g2b_ops = {
9e4afc21 450 .lib = &iwl6000g2b_lib,
b6e116e8 451 .hcmd = &iwlagn_bt_hcmd,
1808972f
SZ
452 .utils = &iwlagn_hcmd_utils,
453 .led = &iwlagn_led_ops,
dc21b545 454 .ieee80211_ops = &iwlagn_hw_ops,
1808972f
SZ
455};
456
7cb1b088 457static struct iwl_base_params iwl6000_base_params = {
0b5af201 458 .eeprom_size = OTP_LOW_IMAGE_SIZE,
0b5af201
JS
459 .num_of_queues = IWLAGN_NUM_QUEUES,
460 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
0b5af201
JS
461 .pll_cfg_val = 0,
462 .set_l0s = true,
463 .use_bsm = false,
0b5af201
JS
464 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
465 .shadow_ram_support = true,
0b5af201 466 .led_compensation = 51,
0b5af201
JS
467 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
468 .supports_idle = true,
469 .adv_thermal_throttle = true,
470 .support_ct_kill_exit = true,
471 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
472 .chain_noise_scale = 1000,
ce60659a 473 .monitor_recover_period = IWL_DEF_MONITORING_PERIOD,
95b13014 474 .max_event_log_size = 512,
6e5c800e 475 .ucode_tracing = true,
65d1f896
WYG
476 .sensitivity_calib_by_driver = true,
477 .chain_noise_calib_by_driver = true,
0b5af201
JS
478};
479
7cb1b088 480static struct iwl_base_params iwl6050_base_params = {
1808972f 481 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1808972f
SZ
482 .num_of_queues = IWLAGN_NUM_QUEUES,
483 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
1808972f
SZ
484 .pll_cfg_val = 0,
485 .set_l0s = true,
486 .use_bsm = false,
7cb1b088 487 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
1808972f
SZ
488 .shadow_ram_support = true,
489 .led_compensation = 51,
490 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
491 .supports_idle = true,
492 .adv_thermal_throttle = true,
493 .support_ct_kill_exit = true,
494 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
7cb1b088 495 .chain_noise_scale = 1500,
ce60659a 496 .monitor_recover_period = IWL_DEF_MONITORING_PERIOD,
7cb1b088
WYG
497 .max_event_log_size = 1024,
498 .ucode_tracing = true,
679db794
WYG
499 .sensitivity_calib_by_driver = true,
500 .chain_noise_calib_by_driver = true,
7cb1b088 501};
de05ead8
WYG
502static struct iwl_base_params iwl6000_coex_base_params = {
503 .eeprom_size = OTP_LOW_IMAGE_SIZE,
504 .num_of_queues = IWLAGN_NUM_QUEUES,
505 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
506 .pll_cfg_val = 0,
507 .set_l0s = true,
508 .use_bsm = false,
509 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
510 .shadow_ram_support = true,
511 .led_compensation = 51,
512 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
513 .supports_idle = true,
514 .adv_thermal_throttle = true,
515 .support_ct_kill_exit = true,
516 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
517 .chain_noise_scale = 1000,
518 .monitor_recover_period = IWL_LONG_MONITORING_PERIOD,
519 .max_event_log_size = 512,
520 .ucode_tracing = true,
521 .sensitivity_calib_by_driver = true,
522 .chain_noise_calib_by_driver = true,
523};
7cb1b088
WYG
524
525static struct iwl_ht_params iwl6000_ht_params = {
526 .ht_greenfield_support = true,
527 .use_rts_for_aggregation = true, /* use rts/cts protection */
528};
529
530static struct iwl_bt_params iwl6000_bt_params = {
531 .bt_statistics = true,
532 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
533 .advanced_bt_coexist = true,
534 .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
535 .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
536};
537
538struct iwl_cfg iwl6000g2a_2agn_cfg = {
539 .name = "6000 Series 2x2 AGN Gen2a",
540 .fw_name_pre = IWL6000G2A_FW_PRE,
541 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
542 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
543 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
544 .valid_tx_ant = ANT_AB,
545 .valid_rx_ant = ANT_AB,
546 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
547 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
548 .ops = &iwl6000_ops,
549 .mod_params = &iwlagn_mod_params,
550 .base_params = &iwl6000_base_params,
551 .ht_params = &iwl6000_ht_params,
552 .need_dc_calib = true,
bf53f939 553 .need_temp_offset_calib = true,
7cb1b088
WYG
554};
555
556struct iwl_cfg iwl6000g2a_2abg_cfg = {
557 .name = "6000 Series 2x2 ABG Gen2a",
558 .fw_name_pre = IWL6000G2A_FW_PRE,
559 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
560 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
561 .sku = IWL_SKU_A|IWL_SKU_G,
562 .valid_tx_ant = ANT_AB,
563 .valid_rx_ant = ANT_AB,
564 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
565 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
566 .ops = &iwl6000_ops,
567 .mod_params = &iwlagn_mod_params,
568 .base_params = &iwl6000_base_params,
178d1596 569 .need_dc_calib = true,
bf53f939 570 .need_temp_offset_calib = true,
1808972f
SZ
571};
572
573struct iwl_cfg iwl6000g2a_2bg_cfg = {
574 .name = "6000 Series 2x2 BG Gen2a",
575 .fw_name_pre = IWL6000G2A_FW_PRE,
576 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
577 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
578 .sku = IWL_SKU_G,
7cb1b088
WYG
579 .valid_tx_ant = ANT_AB,
580 .valid_rx_ant = ANT_AB,
1808972f
SZ
581 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
582 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 583 .ops = &iwl6000_ops,
1808972f 584 .mod_params = &iwlagn_mod_params,
7cb1b088 585 .base_params = &iwl6000_base_params,
178d1596 586 .need_dc_calib = true,
bf53f939 587 .need_temp_offset_calib = true,
1808972f
SZ
588};
589
590struct iwl_cfg iwl6000g2b_2agn_cfg = {
591 .name = "6000 Series 2x2 AGN Gen2b",
592 .fw_name_pre = IWL6000G2B_FW_PRE,
593 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
594 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
595 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
596 .valid_tx_ant = ANT_AB,
597 .valid_rx_ant = ANT_AB,
1808972f
SZ
598 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
599 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 600 .ops = &iwl6000g2b_ops,
1808972f 601 .mod_params = &iwlagn_mod_params,
de05ead8 602 .base_params = &iwl6000_coex_base_params,
7cb1b088
WYG
603 .bt_params = &iwl6000_bt_params,
604 .ht_params = &iwl6000_ht_params,
178d1596 605 .need_dc_calib = true,
bf53f939 606 .need_temp_offset_calib = true,
670245ed
JB
607 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
608 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
1808972f
SZ
609};
610
611struct iwl_cfg iwl6000g2b_2abg_cfg = {
612 .name = "6000 Series 2x2 ABG Gen2b",
613 .fw_name_pre = IWL6000G2B_FW_PRE,
614 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
615 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
616 .sku = IWL_SKU_A|IWL_SKU_G,
7cb1b088
WYG
617 .valid_tx_ant = ANT_AB,
618 .valid_rx_ant = ANT_AB,
1808972f
SZ
619 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
620 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 621 .ops = &iwl6000g2b_ops,
1808972f 622 .mod_params = &iwlagn_mod_params,
de05ead8 623 .base_params = &iwl6000_coex_base_params,
7cb1b088 624 .bt_params = &iwl6000_bt_params,
178d1596 625 .need_dc_calib = true,
bf53f939 626 .need_temp_offset_calib = true,
670245ed
JB
627 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
628 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
1808972f
SZ
629};
630
9f6e1baf
SZ
631struct iwl_cfg iwl6000g2b_2bgn_cfg = {
632 .name = "6000 Series 2x2 BGN Gen2b",
633 .fw_name_pre = IWL6000G2B_FW_PRE,
634 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
635 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
636 .sku = IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
637 .valid_tx_ant = ANT_AB,
638 .valid_rx_ant = ANT_AB,
9f6e1baf
SZ
639 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
640 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 641 .ops = &iwl6000g2b_ops,
9f6e1baf 642 .mod_params = &iwlagn_mod_params,
de05ead8 643 .base_params = &iwl6000_coex_base_params,
7cb1b088
WYG
644 .bt_params = &iwl6000_bt_params,
645 .ht_params = &iwl6000_ht_params,
178d1596 646 .need_dc_calib = true,
bf53f939 647 .need_temp_offset_calib = true,
670245ed
JB
648 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
649 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
9f6e1baf
SZ
650};
651
1808972f
SZ
652struct iwl_cfg iwl6000g2b_2bg_cfg = {
653 .name = "6000 Series 2x2 BG Gen2b",
654 .fw_name_pre = IWL6000G2B_FW_PRE,
655 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
656 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
657 .sku = IWL_SKU_G,
7cb1b088
WYG
658 .valid_tx_ant = ANT_AB,
659 .valid_rx_ant = ANT_AB,
1808972f
SZ
660 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
661 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 662 .ops = &iwl6000g2b_ops,
1808972f 663 .mod_params = &iwlagn_mod_params,
de05ead8 664 .base_params = &iwl6000_coex_base_params,
7cb1b088 665 .bt_params = &iwl6000_bt_params,
178d1596 666 .need_dc_calib = true,
bf53f939 667 .need_temp_offset_calib = true,
670245ed
JB
668 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
669 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
1808972f
SZ
670};
671
672struct iwl_cfg iwl6000g2b_bgn_cfg = {
673 .name = "6000 Series 1x2 BGN Gen2b",
674 .fw_name_pre = IWL6000G2B_FW_PRE,
675 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
676 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
677 .sku = IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
678 .valid_tx_ant = ANT_A,
679 .valid_rx_ant = ANT_AB,
1808972f
SZ
680 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
681 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 682 .ops = &iwl6000g2b_ops,
1808972f 683 .mod_params = &iwlagn_mod_params,
de05ead8 684 .base_params = &iwl6000_coex_base_params,
7cb1b088
WYG
685 .bt_params = &iwl6000_bt_params,
686 .ht_params = &iwl6000_ht_params,
178d1596 687 .need_dc_calib = true,
bf53f939 688 .need_temp_offset_calib = true,
670245ed
JB
689 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
690 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
1808972f
SZ
691};
692
693struct iwl_cfg iwl6000g2b_bg_cfg = {
694 .name = "6000 Series 1x2 BG Gen2b",
695 .fw_name_pre = IWL6000G2B_FW_PRE,
696 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
697 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
698 .sku = IWL_SKU_G,
7cb1b088
WYG
699 .valid_tx_ant = ANT_A,
700 .valid_rx_ant = ANT_AB,
1808972f
SZ
701 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
702 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
7cb1b088 703 .ops = &iwl6000g2b_ops,
1808972f 704 .mod_params = &iwlagn_mod_params,
de05ead8 705 .base_params = &iwl6000_coex_base_params,
7cb1b088 706 .bt_params = &iwl6000_bt_params,
178d1596 707 .need_dc_calib = true,
bf53f939 708 .need_temp_offset_calib = true,
670245ed
JB
709 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
710 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
1808972f
SZ
711};
712
95b13014
SZ
713/*
714 * "i": Internal configuration, use internal Power Amplifier
715 */
65b7998a 716struct iwl_cfg iwl6000i_2agn_cfg = {
c11362c0 717 .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
65b7998a
WYG
718 .fw_name_pre = IWL6000_FW_PRE,
719 .ucode_api_max = IWL6000_UCODE_API_MAX,
720 .ucode_api_min = IWL6000_UCODE_API_MIN,
721 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
722 .valid_tx_ant = ANT_BC,
723 .valid_rx_ant = ANT_BC,
1f4b9665 724 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 725 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
7cb1b088 726 .ops = &iwl6000_ops,
348ee7cd 727 .mod_params = &iwlagn_mod_params,
7cb1b088
WYG
728 .base_params = &iwl6000_base_params,
729 .ht_params = &iwl6000_ht_params,
65b7998a 730 .pa_type = IWL_PA_INTERNAL,
e1228374
JS
731};
732
5953a62e 733struct iwl_cfg iwl6000i_2abg_cfg = {
c11362c0 734 .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
5953a62e
WYG
735 .fw_name_pre = IWL6000_FW_PRE,
736 .ucode_api_max = IWL6000_UCODE_API_MAX,
737 .ucode_api_min = IWL6000_UCODE_API_MIN,
738 .sku = IWL_SKU_A|IWL_SKU_G,
7cb1b088
WYG
739 .valid_tx_ant = ANT_BC,
740 .valid_rx_ant = ANT_BC,
5953a62e 741 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 742 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
7cb1b088 743 .ops = &iwl6000_ops,
348ee7cd 744 .mod_params = &iwlagn_mod_params,
7cb1b088 745 .base_params = &iwl6000_base_params,
5953a62e 746 .pa_type = IWL_PA_INTERNAL,
5953a62e
WYG
747};
748
749struct iwl_cfg iwl6000i_2bg_cfg = {
c11362c0 750 .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
5953a62e
WYG
751 .fw_name_pre = IWL6000_FW_PRE,
752 .ucode_api_max = IWL6000_UCODE_API_MAX,
753 .ucode_api_min = IWL6000_UCODE_API_MIN,
754 .sku = IWL_SKU_G,
7cb1b088
WYG
755 .valid_tx_ant = ANT_BC,
756 .valid_rx_ant = ANT_BC,
5953a62e 757 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 758 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
7cb1b088 759 .ops = &iwl6000_ops,
348ee7cd 760 .mod_params = &iwlagn_mod_params,
7cb1b088 761 .base_params = &iwl6000_base_params,
5953a62e 762 .pa_type = IWL_PA_INTERNAL,
5953a62e
WYG
763};
764
e1228374 765struct iwl_cfg iwl6050_2agn_cfg = {
c11362c0 766 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
e1228374
JS
767 .fw_name_pre = IWL6050_FW_PRE,
768 .ucode_api_max = IWL6050_UCODE_API_MAX,
769 .ucode_api_min = IWL6050_UCODE_API_MIN,
770 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
771 .valid_tx_ant = ANT_AB,
772 .valid_rx_ant = ANT_AB,
34f5a70c 773 .ops = &iwl6050_ops,
32b7e244 774 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
00e70590 775 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
348ee7cd 776 .mod_params = &iwlagn_mod_params,
7cb1b088
WYG
777 .base_params = &iwl6050_base_params,
778 .ht_params = &iwl6000_ht_params,
03264339
SZ
779 .need_dc_calib = true,
780};
781
782struct iwl_cfg iwl6050g2_bgn_cfg = {
783 .name = "6050 Series 1x2 BGN Gen2",
784 .fw_name_pre = IWL6050_FW_PRE,
785 .ucode_api_max = IWL6050_UCODE_API_MAX,
786 .ucode_api_min = IWL6050_UCODE_API_MIN,
787 .sku = IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
788 .valid_tx_ant = ANT_A,
789 .valid_rx_ant = ANT_AB,
03264339
SZ
790 .eeprom_ver = EEPROM_6050G2_EEPROM_VERSION,
791 .eeprom_calib_ver = EEPROM_6050G2_TX_POWER_VERSION,
7cb1b088 792 .ops = &iwl6050g2_ops,
03264339 793 .mod_params = &iwlagn_mod_params,
7cb1b088
WYG
794 .base_params = &iwl6050_base_params,
795 .ht_params = &iwl6000_ht_params,
178d1596 796 .need_dc_calib = true,
e1228374
JS
797};
798
5953a62e 799struct iwl_cfg iwl6050_2abg_cfg = {
c11362c0 800 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
5953a62e
WYG
801 .fw_name_pre = IWL6050_FW_PRE,
802 .ucode_api_max = IWL6050_UCODE_API_MAX,
803 .ucode_api_min = IWL6050_UCODE_API_MIN,
804 .sku = IWL_SKU_A|IWL_SKU_G,
7cb1b088
WYG
805 .valid_tx_ant = ANT_AB,
806 .valid_rx_ant = ANT_AB,
32b7e244 807 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
00e70590 808 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
7cb1b088 809 .ops = &iwl6050_ops,
348ee7cd 810 .mod_params = &iwlagn_mod_params,
7cb1b088 811 .base_params = &iwl6050_base_params,
178d1596 812 .need_dc_calib = true,
5953a62e
WYG
813};
814
e1228374 815struct iwl_cfg iwl6000_3agn_cfg = {
c11362c0 816 .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
e1228374
JS
817 .fw_name_pre = IWL6000_FW_PRE,
818 .ucode_api_max = IWL6000_UCODE_API_MAX,
819 .ucode_api_min = IWL6000_UCODE_API_MIN,
820 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
7cb1b088
WYG
821 .valid_tx_ant = ANT_ABC,
822 .valid_rx_ant = ANT_ABC,
1f4b9665 823 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 824 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
7cb1b088 825 .ops = &iwl6000_ops,
348ee7cd 826 .mod_params = &iwlagn_mod_params,
7cb1b088
WYG
827 .base_params = &iwl6000_base_params,
828 .ht_params = &iwl6000_ht_params,
829 .need_dc_calib = true,
e1228374
JS
830};
831
58a39090
WYG
832struct iwl_cfg iwl130_bgn_cfg = {
833 .name = "Intel(R) 130 Series 1x1 BGN",
834 .fw_name_pre = IWL6000G2B_FW_PRE,
34d59c07
WYG
835 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
836 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
58a39090
WYG
837 .sku = IWL_SKU_G|IWL_SKU_N,
838 .valid_tx_ant = ANT_A,
839 .valid_rx_ant = ANT_A,
840 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
841 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
842 .ops = &iwl6000g2b_ops,
843 .mod_params = &iwlagn_mod_params,
de05ead8 844 .base_params = &iwl6000_coex_base_params,
58a39090
WYG
845 .bt_params = &iwl6000_bt_params,
846 .ht_params = &iwl6000_ht_params,
847 .need_dc_calib = true,
848 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
849 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
850};
851
852struct iwl_cfg iwl130_bg_cfg = {
853 .name = "Intel(R) 130 Series 1x2 BG",
854 .fw_name_pre = IWL6000G2B_FW_PRE,
34d59c07
WYG
855 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
856 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
58a39090
WYG
857 .sku = IWL_SKU_G,
858 .valid_tx_ant = ANT_A,
859 .valid_rx_ant = ANT_A,
860 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
861 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
862 .ops = &iwl6000g2b_ops,
863 .mod_params = &iwlagn_mod_params,
de05ead8 864 .base_params = &iwl6000_coex_base_params,
58a39090
WYG
865 .bt_params = &iwl6000_bt_params,
866 .need_dc_calib = true,
867 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
868 .scan_tx_antennas[IEEE80211_BAND_2GHZ] = ANT_A,
869};
870
e1228374
JS
871MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
872MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
95b13014 873MODULE_FIRMWARE(IWL6000G2A_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));
1808972f 874MODULE_FIRMWARE(IWL6000G2B_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));