]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/net/wireless/iwlwifi/iwl-6000.c
iwlwifi: remove iwl-wifi.h
[karo-tx-linux.git] / drivers / net / wireless / iwlwifi / iwl-6000.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved.
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/delay.h>
31 #include <linux/skbuff.h>
32 #include <linux/netdevice.h>
33 #include <net/mac80211.h>
34 #include <linux/etherdevice.h>
35 #include <asm/unaligned.h>
36 #include <linux/stringify.h>
37
38 #include "iwl-eeprom.h"
39 #include "iwl-dev.h"
40 #include "iwl-core.h"
41 #include "iwl-io.h"
42 #include "iwl-agn.h"
43 #include "iwl-agn-hw.h"
44 #include "iwl-trans.h"
45 #include "iwl-shared.h"
46 #include "iwl-cfg.h"
47
48 /* Highest firmware API version supported */
49 #define IWL6000_UCODE_API_MAX 6
50 #define IWL6050_UCODE_API_MAX 5
51 #define IWL6000G2_UCODE_API_MAX 6
52
53 /* Oldest version we won't warn about */
54 #define IWL6000_UCODE_API_OK 4
55 #define IWL6000G2_UCODE_API_OK 5
56
57 /* Lowest firmware API version supported */
58 #define IWL6000_UCODE_API_MIN 4
59 #define IWL6050_UCODE_API_MIN 4
60 #define IWL6000G2_UCODE_API_MIN 4
61
62 #define IWL6000_FW_PRE "iwlwifi-6000-"
63 #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE __stringify(api) ".ucode"
64
65 #define IWL6050_FW_PRE "iwlwifi-6050-"
66 #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE __stringify(api) ".ucode"
67
68 #define IWL6005_FW_PRE "iwlwifi-6000g2a-"
69 #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE __stringify(api) ".ucode"
70
71 #define IWL6030_FW_PRE "iwlwifi-6000g2b-"
72 #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE __stringify(api) ".ucode"
73
74 static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
75 {
76         /* want Celsius */
77         hw_params(priv).ct_kill_threshold = CT_KILL_THRESHOLD;
78         hw_params(priv).ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
79 }
80
81 static void iwl6050_additional_nic_config(struct iwl_priv *priv)
82 {
83         /* Indicate calibration version to uCode. */
84         if (iwl_eeprom_calib_version(priv->shrd) >= 6)
85                 iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG,
86                                 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
87 }
88
89 static void iwl6150_additional_nic_config(struct iwl_priv *priv)
90 {
91         /* Indicate calibration version to uCode. */
92         if (iwl_eeprom_calib_version(priv->shrd) >= 6)
93                 iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG,
94                                 CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6);
95         iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG,
96                     CSR_GP_DRIVER_REG_BIT_6050_1x2);
97 }
98
99 /* NIC configuration for 6000 series */
100 static void iwl6000_nic_config(struct iwl_priv *priv)
101 {
102         iwl_rf_config(priv);
103
104         /* no locking required for register write */
105         if (cfg(priv)->pa_type == IWL_PA_INTERNAL) {
106                 /* 2x2 IPA phy type */
107                 iwl_write32(trans(priv), CSR_GP_DRIVER_REG,
108                              CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
109         }
110         /* do additional nic configuration if needed */
111         if (cfg(priv)->additional_nic_config)
112                         cfg(priv)->additional_nic_config(priv);
113 }
114
115 static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
116         .min_nrg_cck = 110,
117         .max_nrg_cck = 0, /* not used, set to 0 */
118         .auto_corr_min_ofdm = 80,
119         .auto_corr_min_ofdm_mrc = 128,
120         .auto_corr_min_ofdm_x1 = 105,
121         .auto_corr_min_ofdm_mrc_x1 = 192,
122
123         .auto_corr_max_ofdm = 145,
124         .auto_corr_max_ofdm_mrc = 232,
125         .auto_corr_max_ofdm_x1 = 110,
126         .auto_corr_max_ofdm_mrc_x1 = 232,
127
128         .auto_corr_min_cck = 125,
129         .auto_corr_max_cck = 175,
130         .auto_corr_min_cck_mrc = 160,
131         .auto_corr_max_cck_mrc = 310,
132         .nrg_th_cck = 110,
133         .nrg_th_ofdm = 110,
134
135         .barker_corr_th_min = 190,
136         .barker_corr_th_min_mrc = 336,
137         .nrg_th_cca = 62,
138 };
139
140 static void iwl6000_hw_set_hw_params(struct iwl_priv *priv)
141 {
142         if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES &&
143             iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES)
144                 cfg(priv)->base_params->num_of_queues =
145                         iwlagn_mod_params.num_of_queues;
146
147         hw_params(priv).max_txq_num = cfg(priv)->base_params->num_of_queues;
148
149         hw_params(priv).ht40_channel =  BIT(IEEE80211_BAND_2GHZ) |
150                                         BIT(IEEE80211_BAND_5GHZ);
151
152         hw_params(priv).tx_chains_num =
153                 num_of_ant(hw_params(priv).valid_tx_ant);
154         if (cfg(priv)->rx_with_siso_diversity)
155                 hw_params(priv).rx_chains_num = 1;
156         else
157                 hw_params(priv).rx_chains_num =
158                         num_of_ant(hw_params(priv).valid_rx_ant);
159
160         iwl6000_set_ct_threshold(priv);
161
162         /* Set initial sensitivity parameters */
163         hw_params(priv).sens = &iwl6000_sensitivity;
164
165 }
166
167 static int iwl6000_hw_channel_switch(struct iwl_priv *priv,
168                                      struct ieee80211_channel_switch *ch_switch)
169 {
170         /*
171          * MULTI-FIXME
172          * See iwlagn_mac_channel_switch.
173          */
174         struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
175         struct iwl6000_channel_switch_cmd cmd;
176         const struct iwl_channel_info *ch_info;
177         u32 switch_time_in_usec, ucode_switch_time;
178         u16 ch;
179         u32 tsf_low;
180         u8 switch_count;
181         u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval);
182         struct ieee80211_vif *vif = ctx->vif;
183         struct iwl_host_cmd hcmd = {
184                 .id = REPLY_CHANNEL_SWITCH,
185                 .len = { sizeof(cmd), },
186                 .flags = CMD_SYNC,
187                 .data = { &cmd, },
188         };
189
190         cmd.band = priv->band == IEEE80211_BAND_2GHZ;
191         ch = ch_switch->channel->hw_value;
192         IWL_DEBUG_11H(priv, "channel switch from %u to %u\n",
193                       ctx->active.channel, ch);
194         cmd.channel = cpu_to_le16(ch);
195         cmd.rxon_flags = ctx->staging.flags;
196         cmd.rxon_filter_flags = ctx->staging.filter_flags;
197         switch_count = ch_switch->count;
198         tsf_low = ch_switch->timestamp & 0x0ffffffff;
199         /*
200          * calculate the ucode channel switch time
201          * adding TSF as one of the factor for when to switch
202          */
203         if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) {
204                 if (switch_count > ((priv->ucode_beacon_time - tsf_low) /
205                     beacon_interval)) {
206                         switch_count -= (priv->ucode_beacon_time -
207                                 tsf_low) / beacon_interval;
208                 } else
209                         switch_count = 0;
210         }
211         if (switch_count <= 1)
212                 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
213         else {
214                 switch_time_in_usec =
215                         vif->bss_conf.beacon_int * switch_count * TIME_UNIT;
216                 ucode_switch_time = iwl_usecs_to_beacons(priv,
217                                                          switch_time_in_usec,
218                                                          beacon_interval);
219                 cmd.switch_time = iwl_add_beacon_time(priv,
220                                                       priv->ucode_beacon_time,
221                                                       ucode_switch_time,
222                                                       beacon_interval);
223         }
224         IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n",
225                       cmd.switch_time);
226         ch_info = iwl_get_channel_info(priv, priv->band, ch);
227         if (ch_info)
228                 cmd.expect_beacon = is_channel_radar(ch_info);
229         else {
230                 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
231                         ctx->active.channel, ch);
232                 return -EFAULT;
233         }
234
235         return iwl_trans_send_cmd(trans(priv), &hcmd);
236 }
237
238 static struct iwl_lib_ops iwl6000_lib = {
239         .set_hw_params = iwl6000_hw_set_hw_params,
240         .set_channel_switch = iwl6000_hw_channel_switch,
241         .nic_config = iwl6000_nic_config,
242         .eeprom_ops = {
243                 .regulatory_bands = {
244                         EEPROM_REG_BAND_1_CHANNELS,
245                         EEPROM_REG_BAND_2_CHANNELS,
246                         EEPROM_REG_BAND_3_CHANNELS,
247                         EEPROM_REG_BAND_4_CHANNELS,
248                         EEPROM_REG_BAND_5_CHANNELS,
249                         EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
250                         EEPROM_REG_BAND_52_HT40_CHANNELS
251                 },
252                 .update_enhanced_txpower = iwl_eeprom_enhanced_txpower,
253         },
254         .temperature = iwlagn_temperature,
255 };
256
257 static struct iwl_lib_ops iwl6030_lib = {
258         .set_hw_params = iwl6000_hw_set_hw_params,
259         .bt_rx_handler_setup = iwlagn_bt_rx_handler_setup,
260         .bt_setup_deferred_work = iwlagn_bt_setup_deferred_work,
261         .cancel_deferred_work = iwlagn_bt_cancel_deferred_work,
262         .set_channel_switch = iwl6000_hw_channel_switch,
263         .nic_config = iwl6000_nic_config,
264         .eeprom_ops = {
265                 .regulatory_bands = {
266                         EEPROM_REG_BAND_1_CHANNELS,
267                         EEPROM_REG_BAND_2_CHANNELS,
268                         EEPROM_REG_BAND_3_CHANNELS,
269                         EEPROM_REG_BAND_4_CHANNELS,
270                         EEPROM_REG_BAND_5_CHANNELS,
271                         EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
272                         EEPROM_REG_BAND_52_HT40_CHANNELS
273                 },
274                 .update_enhanced_txpower = iwl_eeprom_enhanced_txpower,
275         },
276         .temperature = iwlagn_temperature,
277 };
278
279 static struct iwl_base_params iwl6000_base_params = {
280         .eeprom_size = OTP_LOW_IMAGE_SIZE,
281         .num_of_queues = IWLAGN_NUM_QUEUES,
282         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
283         .pll_cfg_val = 0,
284         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
285         .shadow_ram_support = true,
286         .led_compensation = 51,
287         .adv_thermal_throttle = true,
288         .support_ct_kill_exit = true,
289         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
290         .chain_noise_scale = 1000,
291         .wd_timeout = IWL_DEF_WD_TIMEOUT,
292         .max_event_log_size = 512,
293         .shadow_reg_enable = true,
294 };
295
296 static struct iwl_base_params iwl6050_base_params = {
297         .eeprom_size = OTP_LOW_IMAGE_SIZE,
298         .num_of_queues = IWLAGN_NUM_QUEUES,
299         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
300         .pll_cfg_val = 0,
301         .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
302         .shadow_ram_support = true,
303         .led_compensation = 51,
304         .adv_thermal_throttle = true,
305         .support_ct_kill_exit = true,
306         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
307         .chain_noise_scale = 1500,
308         .wd_timeout = IWL_DEF_WD_TIMEOUT,
309         .max_event_log_size = 1024,
310         .shadow_reg_enable = true,
311 };
312 static struct iwl_base_params iwl6000_g2_base_params = {
313         .eeprom_size = OTP_LOW_IMAGE_SIZE,
314         .num_of_queues = IWLAGN_NUM_QUEUES,
315         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
316         .pll_cfg_val = 0,
317         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
318         .shadow_ram_support = true,
319         .led_compensation = 57,
320         .adv_thermal_throttle = true,
321         .support_ct_kill_exit = true,
322         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
323         .chain_noise_scale = 1000,
324         .wd_timeout = IWL_LONG_WD_TIMEOUT,
325         .max_event_log_size = 512,
326         .shadow_reg_enable = true,
327 };
328
329 static struct iwl_ht_params iwl6000_ht_params = {
330         .ht_greenfield_support = true,
331         .use_rts_for_aggregation = true, /* use rts/cts protection */
332 };
333
334 static struct iwl_bt_params iwl6000_bt_params = {
335         /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
336         .advanced_bt_coexist = true,
337         .agg_time_limit = BT_AGG_THRESHOLD_DEF,
338         .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
339         .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
340         .bt_sco_disable = true,
341 };
342
343 #define IWL_DEVICE_6005                                         \
344         .fw_name_pre = IWL6005_FW_PRE,                          \
345         .ucode_api_max = IWL6000G2_UCODE_API_MAX,               \
346         .ucode_api_ok = IWL6000G2_UCODE_API_OK,                 \
347         .ucode_api_min = IWL6000G2_UCODE_API_MIN,               \
348         .max_inst_size = IWL60_RTC_INST_SIZE,                   \
349         .max_data_size = IWL60_RTC_DATA_SIZE,                   \
350         .eeprom_ver = EEPROM_6005_EEPROM_VERSION,               \
351         .eeprom_calib_ver = EEPROM_6005_TX_POWER_VERSION,       \
352         .lib = &iwl6000_lib,                                    \
353         .base_params = &iwl6000_g2_base_params,                 \
354         .need_temp_offset_calib = true,                         \
355         .led_mode = IWL_LED_RF_STATE
356
357 const struct iwl_cfg iwl6005_2agn_cfg = {
358         .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN",
359         IWL_DEVICE_6005,
360         .ht_params = &iwl6000_ht_params,
361 };
362
363 const struct iwl_cfg iwl6005_2abg_cfg = {
364         .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG",
365         IWL_DEVICE_6005,
366 };
367
368 const struct iwl_cfg iwl6005_2bg_cfg = {
369         .name = "Intel(R) Centrino(R) Advanced-N 6205 BG",
370         IWL_DEVICE_6005,
371 };
372
373 const struct iwl_cfg iwl6005_2agn_sff_cfg = {
374         .name = "Intel(R) Centrino(R) Advanced-N 6205S AGN",
375         IWL_DEVICE_6005,
376         .ht_params = &iwl6000_ht_params,
377 };
378
379 const struct iwl_cfg iwl6005_2agn_d_cfg = {
380         .name = "Intel(R) Centrino(R) Advanced-N 6205D AGN",
381         IWL_DEVICE_6005,
382         .ht_params = &iwl6000_ht_params,
383 };
384
385 const struct iwl_cfg iwl6005_2agn_mow1_cfg = {
386         .name = "Intel(R) Centrino(R) Advanced-N 6206 AGN",
387         IWL_DEVICE_6005,
388         .ht_params = &iwl6000_ht_params,
389 };
390
391 const struct iwl_cfg iwl6005_2agn_mow2_cfg = {
392         .name = "Intel(R) Centrino(R) Advanced-N 6207 AGN",
393         IWL_DEVICE_6005,
394         .ht_params = &iwl6000_ht_params,
395 };
396
397 #define IWL_DEVICE_6030                                         \
398         .fw_name_pre = IWL6030_FW_PRE,                          \
399         .ucode_api_max = IWL6000G2_UCODE_API_MAX,               \
400         .ucode_api_ok = IWL6000G2_UCODE_API_OK,                 \
401         .ucode_api_min = IWL6000G2_UCODE_API_MIN,               \
402         .max_inst_size = IWL60_RTC_INST_SIZE,                   \
403         .max_data_size = IWL60_RTC_DATA_SIZE,                   \
404         .eeprom_ver = EEPROM_6030_EEPROM_VERSION,               \
405         .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION,       \
406         .lib = &iwl6030_lib,                                    \
407         .base_params = &iwl6000_g2_base_params,                 \
408         .bt_params = &iwl6000_bt_params,                        \
409         .need_temp_offset_calib = true,                         \
410         .led_mode = IWL_LED_RF_STATE,                           \
411         .adv_pm = true                                          \
412
413 const struct iwl_cfg iwl6030_2agn_cfg = {
414         .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN",
415         IWL_DEVICE_6030,
416         .ht_params = &iwl6000_ht_params,
417 };
418
419 const struct iwl_cfg iwl6030_2abg_cfg = {
420         .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG",
421         IWL_DEVICE_6030,
422 };
423
424 const struct iwl_cfg iwl6030_2bgn_cfg = {
425         .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN",
426         IWL_DEVICE_6030,
427         .ht_params = &iwl6000_ht_params,
428 };
429
430 const struct iwl_cfg iwl6030_2bg_cfg = {
431         .name = "Intel(R) Centrino(R) Advanced-N 6230 BG",
432         IWL_DEVICE_6030,
433 };
434
435 const struct iwl_cfg iwl6035_2agn_cfg = {
436         .name = "Intel(R) Centrino(R) Advanced-N 6235 AGN",
437         IWL_DEVICE_6030,
438         .ht_params = &iwl6000_ht_params,
439 };
440
441 const struct iwl_cfg iwl1030_bgn_cfg = {
442         .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN",
443         IWL_DEVICE_6030,
444         .ht_params = &iwl6000_ht_params,
445 };
446
447 const struct iwl_cfg iwl1030_bg_cfg = {
448         .name = "Intel(R) Centrino(R) Wireless-N 1030 BG",
449         IWL_DEVICE_6030,
450 };
451
452 const struct iwl_cfg iwl130_bgn_cfg = {
453         .name = "Intel(R) Centrino(R) Wireless-N 130 BGN",
454         IWL_DEVICE_6030,
455         .ht_params = &iwl6000_ht_params,
456         .rx_with_siso_diversity = true,
457 };
458
459 const struct iwl_cfg iwl130_bg_cfg = {
460         .name = "Intel(R) Centrino(R) Wireless-N 130 BG",
461         IWL_DEVICE_6030,
462         .rx_with_siso_diversity = true,
463 };
464
465 /*
466  * "i": Internal configuration, use internal Power Amplifier
467  */
468 #define IWL_DEVICE_6000i                                        \
469         .fw_name_pre = IWL6000_FW_PRE,                          \
470         .ucode_api_max = IWL6000_UCODE_API_MAX,                 \
471         .ucode_api_ok = IWL6000_UCODE_API_OK,                   \
472         .ucode_api_min = IWL6000_UCODE_API_MIN,                 \
473         .max_inst_size = IWL60_RTC_INST_SIZE,                   \
474         .max_data_size = IWL60_RTC_DATA_SIZE,                   \
475         .valid_tx_ant = ANT_BC,         /* .cfg overwrite */    \
476         .valid_rx_ant = ANT_BC,         /* .cfg overwrite */    \
477         .eeprom_ver = EEPROM_6000_EEPROM_VERSION,               \
478         .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,       \
479         .lib = &iwl6000_lib,                                    \
480         .base_params = &iwl6000_base_params,                    \
481         .pa_type = IWL_PA_INTERNAL,                             \
482         .led_mode = IWL_LED_BLINK
483
484 const struct iwl_cfg iwl6000i_2agn_cfg = {
485         .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
486         IWL_DEVICE_6000i,
487         .ht_params = &iwl6000_ht_params,
488 };
489
490 const struct iwl_cfg iwl6000i_2abg_cfg = {
491         .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
492         IWL_DEVICE_6000i,
493 };
494
495 const struct iwl_cfg iwl6000i_2bg_cfg = {
496         .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
497         IWL_DEVICE_6000i,
498 };
499
500 #define IWL_DEVICE_6050                                         \
501         .fw_name_pre = IWL6050_FW_PRE,                          \
502         .ucode_api_max = IWL6050_UCODE_API_MAX,                 \
503         .ucode_api_min = IWL6050_UCODE_API_MIN,                 \
504         .max_inst_size = IWL60_RTC_INST_SIZE,                   \
505         .max_data_size = IWL60_RTC_DATA_SIZE,                   \
506         .valid_tx_ant = ANT_AB,         /* .cfg overwrite */    \
507         .valid_rx_ant = ANT_AB,         /* .cfg overwrite */    \
508         .lib = &iwl6000_lib,                                    \
509         .additional_nic_config = iwl6050_additional_nic_config, \
510         .eeprom_ver = EEPROM_6050_EEPROM_VERSION,               \
511         .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION,       \
512         .base_params = &iwl6050_base_params,                    \
513         .led_mode = IWL_LED_BLINK,                              \
514         .internal_wimax_coex = true
515
516 const struct iwl_cfg iwl6050_2agn_cfg = {
517         .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
518         IWL_DEVICE_6050,
519         .ht_params = &iwl6000_ht_params,
520 };
521
522 const struct iwl_cfg iwl6050_2abg_cfg = {
523         .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
524         IWL_DEVICE_6050,
525 };
526
527 #define IWL_DEVICE_6150                                         \
528         .fw_name_pre = IWL6050_FW_PRE,                          \
529         .ucode_api_max = IWL6050_UCODE_API_MAX,                 \
530         .ucode_api_min = IWL6050_UCODE_API_MIN,                 \
531         .max_inst_size = IWL60_RTC_INST_SIZE,                   \
532         .max_data_size = IWL60_RTC_DATA_SIZE,                   \
533         .lib = &iwl6000_lib,                                    \
534         .additional_nic_config = iwl6150_additional_nic_config, \
535         .eeprom_ver = EEPROM_6150_EEPROM_VERSION,               \
536         .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION,       \
537         .base_params = &iwl6050_base_params,                    \
538         .led_mode = IWL_LED_BLINK,                              \
539         .internal_wimax_coex = true
540
541 const struct iwl_cfg iwl6150_bgn_cfg = {
542         .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN",
543         IWL_DEVICE_6150,
544         .ht_params = &iwl6000_ht_params,
545 };
546
547 const struct iwl_cfg iwl6150_bg_cfg = {
548         .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG",
549         IWL_DEVICE_6150,
550 };
551
552 const struct iwl_cfg iwl6000_3agn_cfg = {
553         .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
554         .fw_name_pre = IWL6000_FW_PRE,
555         .ucode_api_max = IWL6000_UCODE_API_MAX,
556         .ucode_api_ok = IWL6000_UCODE_API_OK,
557         .ucode_api_min = IWL6000_UCODE_API_MIN,
558         .max_inst_size = IWL60_RTC_INST_SIZE,
559         .max_data_size = IWL60_RTC_DATA_SIZE,
560         .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
561         .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION,
562         .lib = &iwl6000_lib,
563         .base_params = &iwl6000_base_params,
564         .ht_params = &iwl6000_ht_params,
565         .led_mode = IWL_LED_BLINK,
566 };
567
568 MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_OK));
569 MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
570 MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));
571 MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));