]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/iwlwifi/iwl-6000.c
Merge branch 'master' of git://dev.medozas.de/linux
[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
WYG
53#define IWL6000_UCODE_API_MAX 4
54#define IWL6050_UCODE_API_MAX 4
4b3e8062 55#define IWL6000G2_UCODE_API_MAX 4
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
4b3e8062
SZ
70#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
672639de
WYG
74static 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
d5755939
AK
81/* 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
65b7998a
WYG
89/* NIC configuration for 6000 series */
90static void iwl6000_nic_config(struct iwl_priv *priv)
91{
9371d4ed
WYG
92 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);
65b7998a
WYG
107
108 /* no locking required for register write */
740e7f51 109 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
65b7998a
WYG
110 /* 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 */
d5755939
AK
115 if (priv->cfg->ops->lib->temp_ops.set_calib_version)
116 priv->cfg->ops->lib->temp_ops.set_calib_version(priv);
65b7998a
WYG
117}
118
f3a2a424
WYG
119static 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,
2494f63c 129 .auto_corr_max_ofdm_x1 = 110,
f3a2a424
WYG
130 .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,
55036d66
WYG
138
139 .barker_corr_th_min = 190,
140 .barker_corr_th_min_mrc = 390,
141 .nrg_th_cca = 62,
f3a2a424
WYG
142};
143
144static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
145{
88804e2b 146 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
19e6cda0 147 priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES)
88804e2b
WYG
148 priv->cfg->num_of_queues =
149 priv->cfg->mod_params->num_of_queues;
f3a2a424 150
88804e2b 151 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
f3a2a424
WYG
152 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
153 priv->hw_params.scd_bc_tbls_size =
88804e2b 154 priv->cfg->num_of_queues *
19e6cda0 155 sizeof(struct iwlagn_scd_bc_tbl);
f3a2a424
WYG
156 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;
e517736a
WYG
179 priv->hw_params.calib_init_cfg =
180 BIT(IWL_CALIB_XTAL) |
181 BIT(IWL_CALIB_LO) |
182 BIT(IWL_CALIB_TX_IQ) |
183 BIT(IWL_CALIB_BASE_BAND);
184
185 return 0;
186}
187
188static int iwl6050_hw_set_hw_params(struct iwl_priv *priv)
189{
190 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
191 priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES)
192 priv->cfg->num_of_queues =
193 priv->cfg->mod_params->num_of_queues;
194
195 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
196 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
197 priv->hw_params.scd_bc_tbls_size =
198 priv->cfg->num_of_queues *
199 sizeof(struct iwlagn_scd_bc_tbl);
200 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
201 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
202 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
203
204 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
205 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
206
207 priv->hw_params.max_bsm_size = 0;
208 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
209 BIT(IEEE80211_BAND_5GHZ);
210 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
211
212 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
213 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
214 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
215 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
216
217 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
218 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
219
220 /* Set initial sensitivity parameters */
221 /* Set initial calibration set */
222 priv->hw_params.sens = &iwl6000_sensitivity;
223 priv->hw_params.calib_init_cfg =
224 BIT(IWL_CALIB_XTAL) |
225 BIT(IWL_CALIB_DC) |
226 BIT(IWL_CALIB_LO) |
227 BIT(IWL_CALIB_TX_IQ) |
228 BIT(IWL_CALIB_BASE_BAND);
07f33f92 229
f3a2a424
WYG
230 return 0;
231}
232
4a56e965
WYG
233static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel)
234{
235 struct iwl6000_channel_switch_cmd cmd;
236 const struct iwl_channel_info *ch_info;
237 struct iwl_host_cmd hcmd = {
238 .id = REPLY_CHANNEL_SWITCH,
239 .len = sizeof(cmd),
240 .flags = CMD_SIZE_HUGE,
241 .data = &cmd,
242 };
243
244 IWL_DEBUG_11H(priv, "channel switch from %d to %d\n",
245 priv->active_rxon.channel, channel);
246
247 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
248 cmd.channel = cpu_to_le16(channel);
0924e519
WYG
249 cmd.rxon_flags = priv->staging_rxon.flags;
250 cmd.rxon_filter_flags = priv->staging_rxon.filter_flags;
4a56e965
WYG
251 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
252 ch_info = iwl_get_channel_info(priv, priv->band, channel);
253 if (ch_info)
254 cmd.expect_beacon = is_channel_radar(ch_info);
255 else {
256 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
257 priv->active_rxon.channel, channel);
258 return -EFAULT;
259 }
0924e519
WYG
260 priv->switch_rxon.channel = cpu_to_le16(channel);
261 priv->switch_rxon.switch_in_progress = true;
4a56e965
WYG
262
263 return iwl_send_cmd_sync(priv, &hcmd);
264}
265
672639de 266static struct iwl_lib_ops iwl6000_lib = {
f3a2a424 267 .set_hw_params = iwl6000_hw_set_hw_params,
b305a080
WYG
268 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
269 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
270 .txq_set_sched = iwlagn_txq_set_sched,
271 .txq_agg_enable = iwlagn_txq_agg_enable,
272 .txq_agg_disable = iwlagn_txq_agg_disable,
672639de
WYG
273 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
274 .txq_free_tfd = iwl_hw_txq_free_tfd,
275 .txq_init = iwl_hw_tx_queue_init,
e04ed0a5
WYG
276 .rx_handler_setup = iwlagn_rx_handler_setup,
277 .setup_deferred_work = iwlagn_setup_deferred_work,
278 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
81b8176e 279 .load_ucode = iwlagn_load_ucode,
b7a79404
RC
280 .dump_nic_event_log = iwl_dump_nic_event_log,
281 .dump_nic_error_log = iwl_dump_nic_error_log,
696bdee3 282 .dump_csr = iwl_dump_csr,
1b3eb823 283 .dump_fh = iwl_dump_fh,
741a6266
WYG
284 .init_alive_start = iwlagn_init_alive_start,
285 .alive_notify = iwlagn_alive_notify,
e04ed0a5 286 .send_tx_power = iwlagn_send_tx_power,
672639de 287 .update_chain_flags = iwl_update_chain_flags,
4a56e965 288 .set_channel_switch = iwl6000_hw_channel_switch,
672639de 289 .apm_ops = {
fadb3582 290 .init = iwl_apm_init,
d68b603c 291 .stop = iwl_apm_stop,
65b7998a 292 .config = iwl6000_nic_config,
672639de
WYG
293 .set_pwr_src = iwl_set_pwr_src,
294 },
295 .eeprom_ops = {
296 .regulatory_bands = {
e04ed0a5
WYG
297 EEPROM_REG_BAND_1_CHANNELS,
298 EEPROM_REG_BAND_2_CHANNELS,
299 EEPROM_REG_BAND_3_CHANNELS,
300 EEPROM_REG_BAND_4_CHANNELS,
301 EEPROM_REG_BAND_5_CHANNELS,
f2fa1b01 302 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
e04ed0a5 303 EEPROM_REG_BAND_52_HT40_CHANNELS
672639de
WYG
304 },
305 .verify_signature = iwlcore_eeprom_verify_signature,
306 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
307 .release_semaphore = iwlcore_eeprom_release_semaphore,
e04ed0a5
WYG
308 .calib_version = iwlagn_eeprom_calib_version,
309 .query_addr = iwlagn_eeprom_query_addr,
ab9fd1bf 310 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
672639de
WYG
311 },
312 .post_associate = iwl_post_associate,
313 .isr = iwl_isr_ict,
314 .config_ap = iwl_config_ap,
315 .temp_ops = {
e04ed0a5 316 .temperature = iwlagn_temperature,
672639de
WYG
317 .set_ct_kill = iwl6000_set_ct_threshold,
318 },
3459ab5a 319 .add_bcast_station = iwl_add_bcast_station,
b8c76267
AK
320 .debugfs_ops = {
321 .rx_stats_read = iwl_ucode_rx_stats_read,
322 .tx_stats_read = iwl_ucode_tx_stats_read,
323 .general_stats_read = iwl_ucode_general_stats_read,
324 },
b74e31a9 325 .recover_from_tx_stall = iwl_bg_monitor_recover,
fa8f130c
WYG
326 .check_plcp_health = iwl_good_plcp_health,
327 .check_ack_health = iwl_good_ack_health,
672639de
WYG
328};
329
45d5d805 330static const struct iwl_ops iwl6000_ops = {
792bc3cb 331 .ucode = &iwlagn_ucode,
672639de 332 .lib = &iwl6000_lib,
7dc77dba
WYG
333 .hcmd = &iwlagn_hcmd,
334 .utils = &iwlagn_hcmd_utils,
e932a609 335 .led = &iwlagn_led_ops,
29f35c14
JS
336};
337
d5755939 338static struct iwl_lib_ops iwl6050_lib = {
e517736a 339 .set_hw_params = iwl6050_hw_set_hw_params,
b305a080
WYG
340 .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
341 .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
342 .txq_set_sched = iwlagn_txq_set_sched,
343 .txq_agg_enable = iwlagn_txq_agg_enable,
344 .txq_agg_disable = iwlagn_txq_agg_disable,
d5755939
AK
345 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
346 .txq_free_tfd = iwl_hw_txq_free_tfd,
347 .txq_init = iwl_hw_tx_queue_init,
e04ed0a5
WYG
348 .rx_handler_setup = iwlagn_rx_handler_setup,
349 .setup_deferred_work = iwlagn_setup_deferred_work,
350 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
81b8176e 351 .load_ucode = iwlagn_load_ucode,
d5755939
AK
352 .dump_nic_event_log = iwl_dump_nic_event_log,
353 .dump_nic_error_log = iwl_dump_nic_error_log,
354 .dump_csr = iwl_dump_csr,
355 .dump_fh = iwl_dump_fh,
741a6266
WYG
356 .init_alive_start = iwlagn_init_alive_start,
357 .alive_notify = iwlagn_alive_notify,
e04ed0a5 358 .send_tx_power = iwlagn_send_tx_power,
d5755939
AK
359 .update_chain_flags = iwl_update_chain_flags,
360 .set_channel_switch = iwl6000_hw_channel_switch,
361 .apm_ops = {
362 .init = iwl_apm_init,
363 .stop = iwl_apm_stop,
364 .config = iwl6000_nic_config,
365 .set_pwr_src = iwl_set_pwr_src,
366 },
367 .eeprom_ops = {
368 .regulatory_bands = {
e04ed0a5
WYG
369 EEPROM_REG_BAND_1_CHANNELS,
370 EEPROM_REG_BAND_2_CHANNELS,
371 EEPROM_REG_BAND_3_CHANNELS,
372 EEPROM_REG_BAND_4_CHANNELS,
373 EEPROM_REG_BAND_5_CHANNELS,
f2fa1b01 374 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
e04ed0a5 375 EEPROM_REG_BAND_52_HT40_CHANNELS
d5755939
AK
376 },
377 .verify_signature = iwlcore_eeprom_verify_signature,
378 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
379 .release_semaphore = iwlcore_eeprom_release_semaphore,
e04ed0a5
WYG
380 .calib_version = iwlagn_eeprom_calib_version,
381 .query_addr = iwlagn_eeprom_query_addr,
d5755939
AK
382 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
383 },
384 .post_associate = iwl_post_associate,
385 .isr = iwl_isr_ict,
386 .config_ap = iwl_config_ap,
387 .temp_ops = {
e04ed0a5 388 .temperature = iwlagn_temperature,
d5755939
AK
389 .set_ct_kill = iwl6000_set_ct_threshold,
390 .set_calib_version = iwl6050_set_calib_version,
391 },
392 .add_bcast_station = iwl_add_bcast_station,
b8c76267
AK
393 .debugfs_ops = {
394 .rx_stats_read = iwl_ucode_rx_stats_read,
395 .tx_stats_read = iwl_ucode_tx_stats_read,
396 .general_stats_read = iwl_ucode_general_stats_read,
397 },
b74e31a9 398 .recover_from_tx_stall = iwl_bg_monitor_recover,
fa8f130c
WYG
399 .check_plcp_health = iwl_good_plcp_health,
400 .check_ack_health = iwl_good_ack_health,
d5755939
AK
401};
402
403static const struct iwl_ops iwl6050_ops = {
792bc3cb 404 .ucode = &iwlagn_ucode,
d5755939 405 .lib = &iwl6050_lib,
7dc77dba
WYG
406 .hcmd = &iwlagn_hcmd,
407 .utils = &iwlagn_hcmd_utils,
d5755939
AK
408 .led = &iwlagn_led_ops,
409};
410
65b7998a
WYG
411/*
412 * "i": Internal configuration, use internal Power Amplifier
413 */
33e6f816 414struct iwl_cfg iwl6000g2_2agn_cfg = {
0b5af201 415 .name = "6000 Series 2x2 AGN Gen2",
4b3e8062
SZ
416 .fw_name_pre = IWL6000G2_FW_PRE,
417 .ucode_api_max = IWL6000G2_UCODE_API_MAX,
418 .ucode_api_min = IWL6000G2_UCODE_API_MIN,
0b5af201
JS
419 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
420 .ops = &iwl6000_ops,
421 .eeprom_size = OTP_LOW_IMAGE_SIZE,
4b3e8062
SZ
422 .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION,
423 .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION,
0b5af201
JS
424 .num_of_queues = IWLAGN_NUM_QUEUES,
425 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
426 .mod_params = &iwlagn_mod_params,
427 .valid_tx_ant = ANT_AB,
428 .valid_rx_ant = ANT_AB,
429 .pll_cfg_val = 0,
430 .set_l0s = true,
431 .use_bsm = false,
33e6f816 432 .pa_type = IWL_PA_SYSTEM,
0b5af201
JS
433 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
434 .shadow_ram_support = true,
435 .ht_greenfield_support = true,
436 .led_compensation = 51,
437 .use_rts_for_ht = true, /* use rts/cts protection */
438 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
439 .supports_idle = true,
440 .adv_thermal_throttle = true,
441 .support_ct_kill_exit = true,
442 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
443 .chain_noise_scale = 1000,
444 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 445 .max_event_log_size = 1024,
0b5af201
JS
446};
447
65b7998a 448struct iwl_cfg iwl6000i_2agn_cfg = {
c11362c0 449 .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
65b7998a
WYG
450 .fw_name_pre = IWL6000_FW_PRE,
451 .ucode_api_max = IWL6000_UCODE_API_MAX,
452 .ucode_api_min = IWL6000_UCODE_API_MIN,
453 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
454 .ops = &iwl6000_ops,
415e4993 455 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1f4b9665 456 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 457 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
19e6cda0
WYG
458 .num_of_queues = IWLAGN_NUM_QUEUES,
459 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 460 .mod_params = &iwlagn_mod_params,
65b7998a
WYG
461 .valid_tx_ant = ANT_BC,
462 .valid_rx_ant = ANT_BC,
fadb3582 463 .pll_cfg_val = 0,
a6c5c731 464 .set_l0s = true,
fadb3582 465 .use_bsm = false,
65b7998a 466 .pa_type = IWL_PA_INTERNAL,
415e4993
WYG
467 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
468 .shadow_ram_support = true,
b261793d 469 .ht_greenfield_support = true,
f2d0d0e2 470 .led_compensation = 51,
47eef9bd 471 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 472 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 473 .supports_idle = true,
6047b4f9 474 .adv_thermal_throttle = true,
480e8407 475 .support_ct_kill_exit = true,
3e4fb5fa 476 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 477 .chain_noise_scale = 1000,
b74e31a9 478 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 479 .max_event_log_size = 1024,
e1228374
JS
480};
481
5953a62e 482struct iwl_cfg iwl6000i_2abg_cfg = {
c11362c0 483 .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
5953a62e
WYG
484 .fw_name_pre = IWL6000_FW_PRE,
485 .ucode_api_max = IWL6000_UCODE_API_MAX,
486 .ucode_api_min = IWL6000_UCODE_API_MIN,
487 .sku = IWL_SKU_A|IWL_SKU_G,
488 .ops = &iwl6000_ops,
489 .eeprom_size = OTP_LOW_IMAGE_SIZE,
490 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 491 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
19e6cda0
WYG
492 .num_of_queues = IWLAGN_NUM_QUEUES,
493 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 494 .mod_params = &iwlagn_mod_params,
5953a62e
WYG
495 .valid_tx_ant = ANT_BC,
496 .valid_rx_ant = ANT_BC,
fadb3582 497 .pll_cfg_val = 0,
a6c5c731 498 .set_l0s = true,
fadb3582 499 .use_bsm = false,
5953a62e
WYG
500 .pa_type = IWL_PA_INTERNAL,
501 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
502 .shadow_ram_support = true,
5953a62e 503 .led_compensation = 51,
d8c07e7a 504 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 505 .supports_idle = true,
6047b4f9 506 .adv_thermal_throttle = true,
480e8407 507 .support_ct_kill_exit = true,
3e4fb5fa 508 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 509 .chain_noise_scale = 1000,
b74e31a9 510 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 511 .max_event_log_size = 1024,
5953a62e
WYG
512};
513
514struct iwl_cfg iwl6000i_2bg_cfg = {
c11362c0 515 .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
5953a62e
WYG
516 .fw_name_pre = IWL6000_FW_PRE,
517 .ucode_api_max = IWL6000_UCODE_API_MAX,
518 .ucode_api_min = IWL6000_UCODE_API_MIN,
519 .sku = IWL_SKU_G,
520 .ops = &iwl6000_ops,
521 .eeprom_size = OTP_LOW_IMAGE_SIZE,
522 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 523 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
19e6cda0
WYG
524 .num_of_queues = IWLAGN_NUM_QUEUES,
525 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 526 .mod_params = &iwlagn_mod_params,
5953a62e
WYG
527 .valid_tx_ant = ANT_BC,
528 .valid_rx_ant = ANT_BC,
fadb3582 529 .pll_cfg_val = 0,
a6c5c731 530 .set_l0s = true,
fadb3582 531 .use_bsm = false,
5953a62e
WYG
532 .pa_type = IWL_PA_INTERNAL,
533 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
534 .shadow_ram_support = true,
5953a62e 535 .led_compensation = 51,
d8c07e7a 536 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 537 .supports_idle = true,
6047b4f9 538 .adv_thermal_throttle = true,
480e8407 539 .support_ct_kill_exit = true,
3e4fb5fa 540 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 541 .chain_noise_scale = 1000,
b74e31a9 542 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 543 .max_event_log_size = 1024,
5953a62e
WYG
544};
545
e1228374 546struct iwl_cfg iwl6050_2agn_cfg = {
c11362c0 547 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
e1228374
JS
548 .fw_name_pre = IWL6050_FW_PRE,
549 .ucode_api_max = IWL6050_UCODE_API_MAX,
550 .ucode_api_min = IWL6050_UCODE_API_MIN,
551 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
d5755939 552 .ops = &iwl6050_ops,
415e4993 553 .eeprom_size = OTP_LOW_IMAGE_SIZE,
32b7e244 554 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
00e70590 555 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
19e6cda0
WYG
556 .num_of_queues = IWLAGN_NUM_QUEUES,
557 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 558 .mod_params = &iwlagn_mod_params,
542cc793
JS
559 .valid_tx_ant = ANT_AB,
560 .valid_rx_ant = ANT_AB,
fadb3582 561 .pll_cfg_val = 0,
a6c5c731 562 .set_l0s = true,
fadb3582 563 .use_bsm = false,
65b7998a 564 .pa_type = IWL_PA_SYSTEM,
3ab312a8 565 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
415e4993 566 .shadow_ram_support = true,
b261793d 567 .ht_greenfield_support = true,
f2d0d0e2 568 .led_compensation = 51,
47eef9bd 569 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 570 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 571 .supports_idle = true,
6047b4f9 572 .adv_thermal_throttle = true,
480e8407 573 .support_ct_kill_exit = true,
3e4fb5fa 574 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 575 .chain_noise_scale = 1500,
b74e31a9 576 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 577 .max_event_log_size = 1024,
e1228374
JS
578};
579
5953a62e 580struct iwl_cfg iwl6050_2abg_cfg = {
c11362c0 581 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
5953a62e
WYG
582 .fw_name_pre = IWL6050_FW_PRE,
583 .ucode_api_max = IWL6050_UCODE_API_MAX,
584 .ucode_api_min = IWL6050_UCODE_API_MIN,
585 .sku = IWL_SKU_A|IWL_SKU_G,
d5755939 586 .ops = &iwl6050_ops,
5953a62e 587 .eeprom_size = OTP_LOW_IMAGE_SIZE,
32b7e244 588 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
00e70590 589 .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,
19e6cda0
WYG
590 .num_of_queues = IWLAGN_NUM_QUEUES,
591 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 592 .mod_params = &iwlagn_mod_params,
5953a62e
WYG
593 .valid_tx_ant = ANT_AB,
594 .valid_rx_ant = ANT_AB,
fadb3582 595 .pll_cfg_val = 0,
a6c5c731 596 .set_l0s = true,
fadb3582 597 .use_bsm = false,
5953a62e 598 .pa_type = IWL_PA_SYSTEM,
3ab312a8 599 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
5953a62e 600 .shadow_ram_support = true,
5953a62e 601 .led_compensation = 51,
d8c07e7a 602 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 603 .supports_idle = true,
6047b4f9 604 .adv_thermal_throttle = true,
480e8407 605 .support_ct_kill_exit = true,
3e4fb5fa 606 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 607 .chain_noise_scale = 1500,
b74e31a9 608 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 609 .max_event_log_size = 1024,
5953a62e
WYG
610};
611
e1228374 612struct iwl_cfg iwl6000_3agn_cfg = {
c11362c0 613 .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
e1228374
JS
614 .fw_name_pre = IWL6000_FW_PRE,
615 .ucode_api_max = IWL6000_UCODE_API_MAX,
616 .ucode_api_min = IWL6000_UCODE_API_MIN,
617 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
29f35c14 618 .ops = &iwl6000_ops,
415e4993 619 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1f4b9665 620 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
00e70590 621 .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
19e6cda0
WYG
622 .num_of_queues = IWLAGN_NUM_QUEUES,
623 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
348ee7cd 624 .mod_params = &iwlagn_mod_params,
c0bac76a
JS
625 .valid_tx_ant = ANT_ABC,
626 .valid_rx_ant = ANT_ABC,
fadb3582 627 .pll_cfg_val = 0,
a6c5c731 628 .set_l0s = true,
fadb3582 629 .use_bsm = false,
65b7998a 630 .pa_type = IWL_PA_SYSTEM,
415e4993
WYG
631 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
632 .shadow_ram_support = true,
b261793d 633 .ht_greenfield_support = true,
f2d0d0e2 634 .led_compensation = 51,
47eef9bd 635 .use_rts_for_ht = true, /* use rts/cts protection */
d8c07e7a 636 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
78f5fb7f 637 .supports_idle = true,
6047b4f9 638 .adv_thermal_throttle = true,
480e8407 639 .support_ct_kill_exit = true,
3e4fb5fa 640 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
d4fe5ac9 641 .chain_noise_scale = 1000,
b74e31a9 642 .monitor_recover_period = IWL_MONITORING_PERIOD,
678b385d 643 .max_event_log_size = 1024,
e1228374
JS
644};
645
e1228374
JS
646MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
647MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
4b3e8062 648MODULE_FIRMWARE(IWL6000G2_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));