]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/net/wireless/iwlwifi/iwl-2000.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[mv-sheeva.git] / drivers / net / wireless / iwlwifi / iwl-2000.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2008 - 2010 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-agn.h"
46 #include "iwl-helpers.h"
47 #include "iwl-agn-hw.h"
48 #include "iwl-6000-hw.h"
49 #include "iwl-agn-led.h"
50 #include "iwl-agn-debugfs.h"
51
52 /* Highest firmware API version supported */
53 #define IWL2030_UCODE_API_MAX 5
54 #define IWL2000_UCODE_API_MAX 5
55 #define IWL200_UCODE_API_MAX 5
56
57 /* Lowest firmware API version supported */
58 #define IWL2030_UCODE_API_MIN 5
59 #define IWL2000_UCODE_API_MIN 5
60 #define IWL200_UCODE_API_MIN 5
61
62 #define IWL2030_FW_PRE "iwlwifi-2030-"
63 #define _IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE #api ".ucode"
64 #define IWL2030_MODULE_FIRMWARE(api) _IWL2030_MODULE_FIRMWARE(api)
65
66 #define IWL2000_FW_PRE "iwlwifi-2000-"
67 #define _IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE #api ".ucode"
68 #define IWL2000_MODULE_FIRMWARE(api) _IWL2000_MODULE_FIRMWARE(api)
69
70 #define IWL200_FW_PRE "iwlwifi-200-"
71 #define _IWL200_MODULE_FIRMWARE(api) IWL200_FW_PRE #api ".ucode"
72 #define IWL200_MODULE_FIRMWARE(api) _IWL200_MODULE_FIRMWARE(api)
73
74 static void iwl2000_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
81 /* NIC configuration for 2000 series */
82 static void iwl2000_nic_config(struct iwl_priv *priv)
83 {
84         u16 radio_cfg;
85
86         radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
87
88         /* write radio config values to register */
89         if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
90         iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
91                         EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
92                         EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
93                         EEPROM_RF_CFG_DASH_MSK(radio_cfg));
94
95         /* set CSR_HW_CONFIG_REG for uCode use */
96         iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
97                     CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
98                     CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
99
100 }
101
102 static struct iwl_sensitivity_ranges iwl2000_sensitivity = {
103         .min_nrg_cck = 97,
104         .max_nrg_cck = 0, /* not used, set to 0 */
105         .auto_corr_min_ofdm = 80,
106         .auto_corr_min_ofdm_mrc = 128,
107         .auto_corr_min_ofdm_x1 = 105,
108         .auto_corr_min_ofdm_mrc_x1 = 192,
109
110         .auto_corr_max_ofdm = 145,
111         .auto_corr_max_ofdm_mrc = 232,
112         .auto_corr_max_ofdm_x1 = 110,
113         .auto_corr_max_ofdm_mrc_x1 = 232,
114
115         .auto_corr_min_cck = 125,
116         .auto_corr_max_cck = 175,
117         .auto_corr_min_cck_mrc = 160,
118         .auto_corr_max_cck_mrc = 310,
119         .nrg_th_cck = 97,
120         .nrg_th_ofdm = 100,
121
122         .barker_corr_th_min = 190,
123         .barker_corr_th_min_mrc = 390,
124         .nrg_th_cca = 62,
125 };
126
127 static int iwl2000_hw_set_hw_params(struct iwl_priv *priv)
128 {
129         if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
130             priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES)
131                 priv->cfg->base_params->num_of_queues =
132                         priv->cfg->mod_params->num_of_queues;
133
134         priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
135         priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
136         priv->hw_params.scd_bc_tbls_size =
137                 priv->cfg->base_params->num_of_queues *
138                 sizeof(struct iwlagn_scd_bc_tbl);
139         priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
140         priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
141         priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
142
143         priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
144         priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
145
146         priv->hw_params.max_bsm_size = 0;
147         priv->hw_params.ht40_channel =  BIT(IEEE80211_BAND_2GHZ) |
148                                         BIT(IEEE80211_BAND_5GHZ);
149         priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
150
151         priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
152         if (priv->cfg->rx_with_siso_diversity)
153                 priv->hw_params.rx_chains_num = 1;
154         else
155                 priv->hw_params.rx_chains_num =
156                         num_of_ant(priv->cfg->valid_rx_ant);
157         priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
158         priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
159
160         iwl2000_set_ct_threshold(priv);
161
162         /* Set initial sensitivity parameters */
163         /* Set initial calibration set */
164         priv->hw_params.sens = &iwl2000_sensitivity;
165         priv->hw_params.calib_init_cfg =
166                 BIT(IWL_CALIB_XTAL)             |
167                 BIT(IWL_CALIB_LO)               |
168                 BIT(IWL_CALIB_TX_IQ)            |
169                 BIT(IWL_CALIB_BASE_BAND);
170         if (priv->cfg->need_dc_calib)
171                 priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX);
172         if (priv->cfg->need_temp_offset_calib)
173                 priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET);
174
175         priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS;
176
177         return 0;
178 }
179
180 static int iwl2030_hw_channel_switch(struct iwl_priv *priv,
181                                     struct ieee80211_channel_switch *ch_switch)
182 {
183         /*
184          * MULTI-FIXME
185          * See iwl_mac_channel_switch.
186          */
187         struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
188         struct iwl6000_channel_switch_cmd cmd;
189         const struct iwl_channel_info *ch_info;
190         u32 switch_time_in_usec, ucode_switch_time;
191         u16 ch;
192         u32 tsf_low;
193         u8 switch_count;
194         u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval);
195         struct ieee80211_vif *vif = ctx->vif;
196         struct iwl_host_cmd hcmd = {
197                 .id = REPLY_CHANNEL_SWITCH,
198                 .len = sizeof(cmd),
199                 .flags = CMD_SYNC,
200                 .data = &cmd,
201         };
202
203         cmd.band = priv->band == IEEE80211_BAND_2GHZ;
204         ch = ch_switch->channel->hw_value;
205         IWL_DEBUG_11H(priv, "channel switch from %u to %u\n",
206                 ctx->active.channel, ch);
207         cmd.channel = cpu_to_le16(ch);
208         cmd.rxon_flags = ctx->staging.flags;
209         cmd.rxon_filter_flags = ctx->staging.filter_flags;
210         switch_count = ch_switch->count;
211         tsf_low = ch_switch->timestamp & 0x0ffffffff;
212         /*
213          * calculate the ucode channel switch time
214          * adding TSF as one of the factor for when to switch
215          */
216         if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) {
217                 if (switch_count > ((priv->ucode_beacon_time - tsf_low) /
218                     beacon_interval)) {
219                         switch_count -= (priv->ucode_beacon_time -
220                                 tsf_low) / beacon_interval;
221                 } else
222                         switch_count = 0;
223         }
224         if (switch_count <= 1)
225                 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
226         else {
227                 switch_time_in_usec =
228                         vif->bss_conf.beacon_int * switch_count * TIME_UNIT;
229                 ucode_switch_time = iwl_usecs_to_beacons(priv,
230                                                 switch_time_in_usec,
231                                                 beacon_interval);
232                 cmd.switch_time = iwl_add_beacon_time(priv,
233                                                 priv->ucode_beacon_time,
234                                                 ucode_switch_time,
235                                                 beacon_interval);
236         }
237         IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n",
238                       cmd.switch_time);
239         ch_info = iwl_get_channel_info(priv, priv->band, ch);
240         if (ch_info)
241                 cmd.expect_beacon = is_channel_radar(ch_info);
242         else {
243                 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
244                         ctx->active.channel, ch);
245                 return -EFAULT;
246         }
247         priv->switch_rxon.channel = cmd.channel;
248         priv->switch_rxon.switch_in_progress = true;
249
250         return iwl_send_cmd_sync(priv, &hcmd);
251 }
252
253 static struct iwl_lib_ops iwl2000_lib = {
254         .set_hw_params = iwl2000_hw_set_hw_params,
255         .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl,
256         .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl,
257         .txq_set_sched = iwlagn_txq_set_sched,
258         .txq_agg_enable = iwlagn_txq_agg_enable,
259         .txq_agg_disable = iwlagn_txq_agg_disable,
260         .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
261         .txq_free_tfd = iwl_hw_txq_free_tfd,
262         .txq_init = iwl_hw_tx_queue_init,
263         .rx_handler_setup = iwlagn_rx_handler_setup,
264         .setup_deferred_work = iwlagn_setup_deferred_work,
265         .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
266         .load_ucode = iwlagn_load_ucode,
267         .dump_nic_event_log = iwl_dump_nic_event_log,
268         .dump_nic_error_log = iwl_dump_nic_error_log,
269         .dump_csr = iwl_dump_csr,
270         .dump_fh = iwl_dump_fh,
271         .init_alive_start = iwlagn_init_alive_start,
272         .alive_notify = iwlagn_alive_notify,
273         .send_tx_power = iwlagn_send_tx_power,
274         .update_chain_flags = iwl_update_chain_flags,
275         .set_channel_switch = iwl2030_hw_channel_switch,
276         .apm_ops = {
277                 .init = iwl_apm_init,
278                 .config = iwl2000_nic_config,
279         },
280         .eeprom_ops = {
281                 .regulatory_bands = {
282                         EEPROM_REG_BAND_1_CHANNELS,
283                         EEPROM_REG_BAND_2_CHANNELS,
284                         EEPROM_REG_BAND_3_CHANNELS,
285                         EEPROM_REG_BAND_4_CHANNELS,
286                         EEPROM_REG_BAND_5_CHANNELS,
287                         EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
288                         EEPROM_REG_BAND_52_HT40_CHANNELS
289                 },
290                 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
291                 .release_semaphore = iwlcore_eeprom_release_semaphore,
292                 .calib_version  = iwlagn_eeprom_calib_version,
293                 .query_addr = iwlagn_eeprom_query_addr,
294                 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
295         },
296         .isr_ops = {
297                 .isr = iwl_isr_ict,
298                 .free = iwl_free_isr_ict,
299                 .alloc = iwl_alloc_isr_ict,
300                 .reset = iwl_reset_ict,
301                 .disable = iwl_disable_ict,
302         },
303         .temp_ops = {
304                 .temperature = iwlagn_temperature,
305         },
306         .debugfs_ops = {
307                 .rx_stats_read = iwl_ucode_rx_stats_read,
308                 .tx_stats_read = iwl_ucode_tx_stats_read,
309                 .general_stats_read = iwl_ucode_general_stats_read,
310                 .bt_stats_read = iwl_ucode_bt_stats_read,
311                 .reply_tx_error = iwl_reply_tx_error_read,
312         },
313         .check_plcp_health = iwl_good_plcp_health,
314         .check_ack_health = iwl_good_ack_health,
315         .txfifo_flush = iwlagn_txfifo_flush,
316         .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
317         .tt_ops = {
318                 .lower_power_detection = iwl_tt_is_low_power_state,
319                 .tt_power_mode = iwl_tt_current_power_mode,
320                 .ct_kill_check = iwl_check_for_ct_kill,
321         }
322 };
323
324 static const struct iwl_ops iwl2000_ops = {
325         .lib = &iwl2000_lib,
326         .hcmd = &iwlagn_hcmd,
327         .utils = &iwlagn_hcmd_utils,
328         .led = &iwlagn_led_ops,
329         .ieee80211_ops = &iwlagn_hw_ops,
330 };
331
332 static const struct iwl_ops iwl2030_ops = {
333         .lib = &iwl2000_lib,
334         .hcmd = &iwlagn_bt_hcmd,
335         .utils = &iwlagn_hcmd_utils,
336         .led = &iwlagn_led_ops,
337         .ieee80211_ops = &iwlagn_hw_ops,
338 };
339
340 static const struct iwl_ops iwl200_ops = {
341         .lib = &iwl2000_lib,
342         .hcmd = &iwlagn_hcmd,
343         .utils = &iwlagn_hcmd_utils,
344         .led = &iwlagn_led_ops,
345         .ieee80211_ops = &iwlagn_hw_ops,
346 };
347
348 static const struct iwl_ops iwl230_ops = {
349         .lib = &iwl2000_lib,
350         .hcmd = &iwlagn_bt_hcmd,
351         .utils = &iwlagn_hcmd_utils,
352         .led = &iwlagn_led_ops,
353         .ieee80211_ops = &iwlagn_hw_ops,
354 };
355
356 static struct iwl_base_params iwl2000_base_params = {
357         .eeprom_size = OTP_LOW_IMAGE_SIZE,
358         .num_of_queues = IWLAGN_NUM_QUEUES,
359         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
360         .pll_cfg_val = 0,
361         .set_l0s = true,
362         .use_bsm = false,
363         .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
364         .shadow_ram_support = true,
365         .led_compensation = 51,
366         .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
367         .supports_idle = true,
368         .adv_thermal_throttle = true,
369         .support_ct_kill_exit = true,
370         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
371         .chain_noise_scale = 1000,
372         .wd_timeout = IWL_DEF_WD_TIMEOUT,
373         .max_event_log_size = 512,
374         .ucode_tracing = true,
375         .sensitivity_calib_by_driver = true,
376         .chain_noise_calib_by_driver = true,
377         .shadow_reg_enable = true,
378 };
379
380
381 static struct iwl_base_params iwl2030_base_params = {
382         .eeprom_size = OTP_LOW_IMAGE_SIZE,
383         .num_of_queues = IWLAGN_NUM_QUEUES,
384         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
385         .pll_cfg_val = 0,
386         .set_l0s = true,
387         .use_bsm = false,
388         .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
389         .shadow_ram_support = true,
390         .led_compensation = 57,
391         .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
392         .supports_idle = true,
393         .adv_thermal_throttle = true,
394         .support_ct_kill_exit = true,
395         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
396         .chain_noise_scale = 1000,
397         .wd_timeout = IWL_LONG_WD_TIMEOUT,
398         .max_event_log_size = 512,
399         .ucode_tracing = true,
400         .sensitivity_calib_by_driver = true,
401         .chain_noise_calib_by_driver = true,
402         .shadow_reg_enable = true,
403 };
404
405 static struct iwl_ht_params iwl2000_ht_params = {
406         .ht_greenfield_support = true,
407         .use_rts_for_aggregation = true, /* use rts/cts protection */
408 };
409
410 static struct iwl_bt_params iwl2030_bt_params = {
411         .bt_statistics = true,
412         /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
413         .advanced_bt_coexist = true,
414         .agg_time_limit = BT_AGG_THRESHOLD_DEF,
415         .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
416         .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
417         .bt_sco_disable = true,
418 };
419
420 #define IWL_DEVICE_2000                                         \
421         .fw_name_pre = IWL2000_FW_PRE,                          \
422         .ucode_api_max = IWL2000_UCODE_API_MAX,                 \
423         .ucode_api_min = IWL2000_UCODE_API_MIN,                 \
424         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
425         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
426         .ops = &iwl2000_ops,                                    \
427         .mod_params = &iwlagn_mod_params,                       \
428         .base_params = &iwl2000_base_params,                    \
429         .need_dc_calib = true,                                  \
430         .need_temp_offset_calib = true,                         \
431         .led_mode = IWL_LED_RF_STATE                            \
432
433 struct iwl_cfg iwl2000_2bgn_cfg = {
434         .name = "2000 Series 2x2 BGN",
435         IWL_DEVICE_2000,
436         .ht_params = &iwl2000_ht_params,
437 };
438
439 struct iwl_cfg iwl2000_2bg_cfg = {
440         .name = "2000 Series 2x2 BG",
441         IWL_DEVICE_2000,
442 };
443
444 #define IWL_DEVICE_2030                                         \
445         .fw_name_pre = IWL2030_FW_PRE,                          \
446         .ucode_api_max = IWL2030_UCODE_API_MAX,                 \
447         .ucode_api_min = IWL2030_UCODE_API_MIN,                 \
448         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
449         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
450         .ops = &iwl2030_ops,                                    \
451         .mod_params = &iwlagn_mod_params,                       \
452         .base_params = &iwl2030_base_params,                    \
453         .bt_params = &iwl2030_bt_params,                        \
454         .need_dc_calib = true,                                  \
455         .need_temp_offset_calib = true,                         \
456         .led_mode = IWL_LED_RF_STATE,                           \
457         .adv_pm = true                                          \
458
459 struct iwl_cfg iwl2030_2bgn_cfg = {
460         .name = "2000 Series 2x2 BGN/BT",
461         IWL_DEVICE_2000,
462         .ht_params = &iwl2000_ht_params,
463 };
464
465 struct iwl_cfg iwl2030_2bg_cfg = {
466         .name = "2000 Series 2x2 BG/BT",
467         IWL_DEVICE_2000,
468 };
469
470 #define IWL_DEVICE_6035                                         \
471         .fw_name_pre = IWL2030_FW_PRE,                          \
472         .ucode_api_max = IWL2030_UCODE_API_MAX,                 \
473         .ucode_api_min = IWL2030_UCODE_API_MIN,                 \
474         .eeprom_ver = EEPROM_6035_EEPROM_VERSION,               \
475         .eeprom_calib_ver = EEPROM_6035_TX_POWER_VERSION,       \
476         .ops = &iwl2030_ops,                                    \
477         .mod_params = &iwlagn_mod_params,                       \
478         .base_params = &iwl2030_base_params,                    \
479         .bt_params = &iwl2030_bt_params,                        \
480         .need_dc_calib = true,                                  \
481         .need_temp_offset_calib = true,                         \
482         .led_mode = IWL_LED_RF_STATE,                           \
483         .adv_pm = true                                          \
484
485 struct iwl_cfg iwl6035_2agn_cfg = {
486         .name = "2000 Series 2x2 AGN/BT",
487         IWL_DEVICE_6035,
488         .ht_params = &iwl2000_ht_params,
489 };
490
491 struct iwl_cfg iwl6035_2abg_cfg = {
492         .name = "2000 Series 2x2 ABG/BT",
493         IWL_DEVICE_6035,
494 };
495
496 struct iwl_cfg iwl6035_2bg_cfg = {
497         .name = "2000 Series 2x2 BG/BT",
498         IWL_DEVICE_6035,
499 };
500
501 #define IWL_DEVICE_200                                          \
502         .fw_name_pre = IWL200_FW_PRE,                           \
503         .ucode_api_max = IWL200_UCODE_API_MAX,                  \
504         .ucode_api_min = IWL200_UCODE_API_MIN,                  \
505         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
506         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
507         .ops = &iwl200_ops,                                     \
508         .mod_params = &iwlagn_mod_params,                       \
509         .base_params = &iwl2000_base_params,                    \
510         .need_dc_calib = true,                                  \
511         .need_temp_offset_calib = true,                         \
512         .led_mode = IWL_LED_RF_STATE,                           \
513         .adv_pm = true,                                         \
514         .rx_with_siso_diversity = true                          \
515
516 struct iwl_cfg iwl200_bg_cfg = {
517         .name = "200 Series 1x1 BG",
518         IWL_DEVICE_200,
519 };
520
521 struct iwl_cfg iwl200_bgn_cfg = {
522         .name = "200 Series 1x1 BGN",
523         IWL_DEVICE_200,
524         .ht_params = &iwl2000_ht_params,
525 };
526
527 #define IWL_DEVICE_230                                          \
528         .fw_name_pre = IWL200_FW_PRE,                           \
529         .ucode_api_max = IWL200_UCODE_API_MAX,                  \
530         .ucode_api_min = IWL200_UCODE_API_MIN,                  \
531         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
532         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
533         .ops = &iwl230_ops,                                     \
534         .mod_params = &iwlagn_mod_params,                       \
535         .base_params = &iwl2030_base_params,                    \
536         .bt_params = &iwl2030_bt_params,                        \
537         .need_dc_calib = true,                                  \
538         .need_temp_offset_calib = true,                         \
539         .led_mode = IWL_LED_RF_STATE,                           \
540         .adv_pm = true,                                         \
541         .rx_with_siso_diversity = true                          \
542
543 struct iwl_cfg iwl230_bg_cfg = {
544         .name = "200 Series 1x1 BG/BT",
545         IWL_DEVICE_230,
546 };
547
548 struct iwl_cfg iwl230_bgn_cfg = {
549         .name = "200 Series 1x1 BGN/BT",
550         IWL_DEVICE_230,
551         .ht_params = &iwl2000_ht_params,
552 };
553
554 MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX));
555 MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX));
556 MODULE_FIRMWARE(IWL200_MODULE_FIRMWARE(IWL200_UCODE_API_MAX));