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