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