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