blob: b53181324487834e39d5c53eb30dcfc0f4ac40d9 [file] [log] [blame]
Jay Sternberge1228372009-01-19 15:30:34 -08001/******************************************************************************
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"
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -070047#include "iwl-6000-hw.h"
Johannes Berge932a602009-10-02 13:44:03 -070048#include "iwl-agn-led.h"
Jay Sternberge1228372009-01-19 15:30:34 -080049
50/* Highest firmware API version supported */
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -070051#define IWL6000_UCODE_API_MAX 4
52#define IWL6050_UCODE_API_MAX 4
Jay Sternberge1228372009-01-19 15:30:34 -080053
54/* Lowest firmware API version supported */
55#define IWL6000_UCODE_API_MIN 1
56#define IWL6050_UCODE_API_MIN 1
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
Wey-Yi Guy672639d2009-07-24 11:13:01 -070066static 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
Wey-Yi Guy65b79982009-07-31 14:28:07 -070073/* NIC configuration for 6000 series */
74static void iwl6000_nic_config(struct iwl_priv *priv)
75{
Wey-Yi Guy9371d4e2009-09-11 10:38:10 -070076 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);
Wey-Yi Guy65b79982009-07-31 14:28:07 -070091
92 /* no locking required for register write */
93 if (priv->cfg->pa_type == IWL_PA_HYBRID) {
94 /* 2x2 hybrid phy type */
95 iwl_write32(priv, CSR_GP_DRIVER_REG,
96 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_HYB);
97 } else if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
98 /* 2x2 IPA phy type */
99 iwl_write32(priv, CSR_GP_DRIVER_REG,
100 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
101 }
102 /* else do nothing, uCode configured */
103}
104
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700105static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
106 .min_nrg_cck = 97,
107 .max_nrg_cck = 0, /* not used, set to 0 */
108 .auto_corr_min_ofdm = 80,
109 .auto_corr_min_ofdm_mrc = 128,
110 .auto_corr_min_ofdm_x1 = 105,
111 .auto_corr_min_ofdm_mrc_x1 = 192,
112
113 .auto_corr_max_ofdm = 145,
114 .auto_corr_max_ofdm_mrc = 232,
115 .auto_corr_max_ofdm_x1 = 145,
116 .auto_corr_max_ofdm_mrc_x1 = 232,
117
118 .auto_corr_min_cck = 125,
119 .auto_corr_max_cck = 175,
120 .auto_corr_min_cck_mrc = 160,
121 .auto_corr_max_cck_mrc = 310,
122 .nrg_th_cck = 97,
123 .nrg_th_ofdm = 100,
Wey-Yi Guy55036d62009-10-09 13:20:24 -0700124
125 .barker_corr_th_min = 190,
126 .barker_corr_th_min_mrc = 390,
127 .nrg_th_cca = 62,
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700128};
129
130static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
131{
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700132 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
133 priv->cfg->mod_params->num_of_queues <= IWL50_NUM_QUEUES)
134 priv->cfg->num_of_queues =
135 priv->cfg->mod_params->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700136
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700137 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700138 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
139 priv->hw_params.scd_bc_tbls_size =
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700140 priv->cfg->num_of_queues *
141 sizeof(struct iwl5000_scd_bc_tbl);
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700142 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
143 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
144 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
145
146 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
147 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
148
149 priv->hw_params.max_bsm_size = 0;
150 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
151 BIT(IEEE80211_BAND_5GHZ);
152 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
153
154 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
155 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
156 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
157 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
158
159 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
160 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
161
162 /* Set initial sensitivity parameters */
163 /* Set initial calibration set */
164 priv->hw_params.sens = &iwl6000_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_TX_IQ_PERD) |
170 BIT(IWL_CALIB_BASE_BAND);
171
172 return 0;
173}
174
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700175static struct iwl_lib_ops iwl6000_lib = {
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700176 .set_hw_params = iwl6000_hw_set_hw_params,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700177 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
178 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
179 .txq_set_sched = iwl5000_txq_set_sched,
180 .txq_agg_enable = iwl5000_txq_agg_enable,
181 .txq_agg_disable = iwl5000_txq_agg_disable,
182 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
183 .txq_free_tfd = iwl_hw_txq_free_tfd,
184 .txq_init = iwl_hw_tx_queue_init,
185 .rx_handler_setup = iwl5000_rx_handler_setup,
186 .setup_deferred_work = iwl5000_setup_deferred_work,
187 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
188 .load_ucode = iwl5000_load_ucode,
Reinette Chatreb7a79402009-09-25 14:24:23 -0700189 .dump_nic_event_log = iwl_dump_nic_event_log,
190 .dump_nic_error_log = iwl_dump_nic_error_log,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700191 .init_alive_start = iwl5000_init_alive_start,
192 .alive_notify = iwl5000_alive_notify,
193 .send_tx_power = iwl5000_send_tx_power,
194 .update_chain_flags = iwl_update_chain_flags,
195 .apm_ops = {
196 .init = iwl5000_apm_init,
Abhijeet Kolekard68b6032009-10-02 13:44:04 -0700197 .stop = iwl_apm_stop,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700198 .config = iwl6000_nic_config,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700199 .set_pwr_src = iwl_set_pwr_src,
200 },
201 .eeprom_ops = {
202 .regulatory_bands = {
203 EEPROM_5000_REG_BAND_1_CHANNELS,
204 EEPROM_5000_REG_BAND_2_CHANNELS,
205 EEPROM_5000_REG_BAND_3_CHANNELS,
206 EEPROM_5000_REG_BAND_4_CHANNELS,
207 EEPROM_5000_REG_BAND_5_CHANNELS,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700208 EEPROM_5000_REG_BAND_24_HT40_CHANNELS,
209 EEPROM_5000_REG_BAND_52_HT40_CHANNELS
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700210 },
211 .verify_signature = iwlcore_eeprom_verify_signature,
212 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
213 .release_semaphore = iwlcore_eeprom_release_semaphore,
214 .calib_version = iwl5000_eeprom_calib_version,
215 .query_addr = iwl5000_eeprom_query_addr,
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700216 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700217 },
218 .post_associate = iwl_post_associate,
219 .isr = iwl_isr_ict,
220 .config_ap = iwl_config_ap,
221 .temp_ops = {
222 .temperature = iwl5000_temperature,
223 .set_ct_kill = iwl6000_set_ct_threshold,
224 },
225};
226
Jay Sternberg29f35c12009-01-29 11:09:16 -0800227static struct iwl_ops iwl6000_ops = {
Jay Sternbergcc0f5552009-07-17 09:30:16 -0700228 .ucode = &iwl5000_ucode,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700229 .lib = &iwl6000_lib,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800230 .hcmd = &iwl5000_hcmd,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700231 .utils = &iwl5000_hcmd_utils,
Johannes Berge932a602009-10-02 13:44:03 -0700232 .led = &iwlagn_led_ops,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800233};
234
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700235static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = {
236 .get_hcmd_size = iwl5000_get_hcmd_size,
237 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
238 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
239 .calc_rssi = iwl5000_calc_rssi,
240};
241
242static struct iwl_ops iwl6050_ops = {
243 .ucode = &iwl5000_ucode,
244 .lib = &iwl6000_lib,
245 .hcmd = &iwl5000_hcmd,
246 .utils = &iwl6050_hcmd_utils,
247 .led = &iwlagn_led_ops,
248};
249
Jay Sternberge1228372009-01-19 15:30:34 -0800250
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700251/*
252 * "h": Hybrid configuration, use both internal and external Power Amplifier
253 */
254struct iwl_cfg iwl6000h_2agn_cfg = {
Jay Sternberge1228372009-01-19 15:30:34 -0800255 .name = "6000 Series 2x2 AGN",
256 .fw_name_pre = IWL6000_FW_PRE,
257 .ucode_api_max = IWL6000_UCODE_API_MAX,
258 .ucode_api_min = IWL6000_UCODE_API_MIN,
259 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800260 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700261 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700262 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800263 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700264 .num_of_queues = IWL50_NUM_QUEUES,
265 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800266 .mod_params = &iwl50_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700267 .valid_tx_ant = ANT_AB,
268 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -0800269 .need_pll_cfg = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700270 .pa_type = IWL_PA_HYBRID,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700271 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
272 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700273 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700274 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700275 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700276 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700277 .supports_idle = true,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700278};
279
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700280struct iwl_cfg iwl6000h_2abg_cfg = {
281 .name = "6000 Series 2x2 ABG",
282 .fw_name_pre = IWL6000_FW_PRE,
283 .ucode_api_max = IWL6000_UCODE_API_MAX,
284 .ucode_api_min = IWL6000_UCODE_API_MIN,
285 .sku = IWL_SKU_A|IWL_SKU_G,
286 .ops = &iwl6000_ops,
287 .eeprom_size = OTP_LOW_IMAGE_SIZE,
288 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
289 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700290 .num_of_queues = IWL50_NUM_QUEUES,
291 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700292 .mod_params = &iwl50_mod_params,
293 .valid_tx_ant = ANT_AB,
294 .valid_rx_ant = ANT_AB,
295 .need_pll_cfg = false,
296 .pa_type = IWL_PA_HYBRID,
297 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
298 .shadow_ram_support = true,
299 .ht_greenfield_support = true,
300 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700301 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700302 .supports_idle = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700303};
304
305struct iwl_cfg iwl6000h_2bg_cfg = {
306 .name = "6000 Series 2x2 BG",
307 .fw_name_pre = IWL6000_FW_PRE,
308 .ucode_api_max = IWL6000_UCODE_API_MAX,
309 .ucode_api_min = IWL6000_UCODE_API_MIN,
310 .sku = IWL_SKU_G,
311 .ops = &iwl6000_ops,
312 .eeprom_size = OTP_LOW_IMAGE_SIZE,
313 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
314 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700315 .num_of_queues = IWL50_NUM_QUEUES,
316 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700317 .mod_params = &iwl50_mod_params,
318 .valid_tx_ant = ANT_AB,
319 .valid_rx_ant = ANT_AB,
320 .need_pll_cfg = false,
321 .pa_type = IWL_PA_HYBRID,
322 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
323 .shadow_ram_support = true,
324 .ht_greenfield_support = true,
325 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700326 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700327 .supports_idle = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700328};
329
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700330/*
331 * "i": Internal configuration, use internal Power Amplifier
332 */
333struct iwl_cfg iwl6000i_2agn_cfg = {
334 .name = "6000 Series 2x2 AGN",
335 .fw_name_pre = IWL6000_FW_PRE,
336 .ucode_api_max = IWL6000_UCODE_API_MAX,
337 .ucode_api_min = IWL6000_UCODE_API_MIN,
338 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
339 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700340 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700341 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700342 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700343 .num_of_queues = IWL50_NUM_QUEUES,
344 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700345 .mod_params = &iwl50_mod_params,
346 .valid_tx_ant = ANT_BC,
347 .valid_rx_ant = ANT_BC,
348 .need_pll_cfg = false,
349 .pa_type = IWL_PA_INTERNAL,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700350 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
351 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700352 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700353 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700354 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700355 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700356 .supports_idle = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800357};
358
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700359struct iwl_cfg iwl6000i_2abg_cfg = {
360 .name = "6000 Series 2x2 ABG",
361 .fw_name_pre = IWL6000_FW_PRE,
362 .ucode_api_max = IWL6000_UCODE_API_MAX,
363 .ucode_api_min = IWL6000_UCODE_API_MIN,
364 .sku = IWL_SKU_A|IWL_SKU_G,
365 .ops = &iwl6000_ops,
366 .eeprom_size = OTP_LOW_IMAGE_SIZE,
367 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
368 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700369 .num_of_queues = IWL50_NUM_QUEUES,
370 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700371 .mod_params = &iwl50_mod_params,
372 .valid_tx_ant = ANT_BC,
373 .valid_rx_ant = ANT_BC,
374 .need_pll_cfg = false,
375 .pa_type = IWL_PA_INTERNAL,
376 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
377 .shadow_ram_support = true,
378 .ht_greenfield_support = true,
379 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700380 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700381 .supports_idle = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700382};
383
384struct iwl_cfg iwl6000i_2bg_cfg = {
385 .name = "6000 Series 2x2 BG",
386 .fw_name_pre = IWL6000_FW_PRE,
387 .ucode_api_max = IWL6000_UCODE_API_MAX,
388 .ucode_api_min = IWL6000_UCODE_API_MIN,
389 .sku = IWL_SKU_G,
390 .ops = &iwl6000_ops,
391 .eeprom_size = OTP_LOW_IMAGE_SIZE,
392 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
393 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700394 .num_of_queues = IWL50_NUM_QUEUES,
395 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700396 .mod_params = &iwl50_mod_params,
397 .valid_tx_ant = ANT_BC,
398 .valid_rx_ant = ANT_BC,
399 .need_pll_cfg = false,
400 .pa_type = IWL_PA_INTERNAL,
401 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
402 .shadow_ram_support = true,
403 .ht_greenfield_support = true,
404 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700405 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700406 .supports_idle = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700407};
408
Jay Sternberge1228372009-01-19 15:30:34 -0800409struct iwl_cfg iwl6050_2agn_cfg = {
410 .name = "6050 Series 2x2 AGN",
411 .fw_name_pre = IWL6050_FW_PRE,
412 .ucode_api_max = IWL6050_UCODE_API_MAX,
413 .ucode_api_min = IWL6050_UCODE_API_MIN,
414 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700415 .ops = &iwl6050_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700416 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700417 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800418 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700419 .num_of_queues = IWL50_NUM_QUEUES,
420 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800421 .mod_params = &iwl50_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700422 .valid_tx_ant = ANT_AB,
423 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -0800424 .need_pll_cfg = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700425 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700426 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700427 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700428 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700429 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700430 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700431 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700432 .supports_idle = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800433};
434
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700435struct iwl_cfg iwl6050_2abg_cfg = {
436 .name = "6050 Series 2x2 ABG",
437 .fw_name_pre = IWL6050_FW_PRE,
438 .ucode_api_max = IWL6050_UCODE_API_MAX,
439 .ucode_api_min = IWL6050_UCODE_API_MIN,
440 .sku = IWL_SKU_A|IWL_SKU_G,
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700441 .ops = &iwl6050_ops,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700442 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700443 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700444 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700445 .num_of_queues = IWL50_NUM_QUEUES,
446 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700447 .mod_params = &iwl50_mod_params,
448 .valid_tx_ant = ANT_AB,
449 .valid_rx_ant = ANT_AB,
450 .need_pll_cfg = false,
451 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700452 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700453 .shadow_ram_support = true,
454 .ht_greenfield_support = true,
455 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700456 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700457 .supports_idle = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700458};
459
Jay Sternberge1228372009-01-19 15:30:34 -0800460struct iwl_cfg iwl6000_3agn_cfg = {
461 .name = "6000 Series 3x3 AGN",
462 .fw_name_pre = IWL6000_FW_PRE,
463 .ucode_api_max = IWL6000_UCODE_API_MAX,
464 .ucode_api_min = IWL6000_UCODE_API_MIN,
465 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800466 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700467 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700468 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800469 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700470 .num_of_queues = IWL50_NUM_QUEUES,
471 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800472 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800473 .valid_tx_ant = ANT_ABC,
474 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -0800475 .need_pll_cfg = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700476 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700477 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
478 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700479 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700480 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700481 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700482 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700483 .supports_idle = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800484};
485
486struct iwl_cfg iwl6050_3agn_cfg = {
487 .name = "6050 Series 3x3 AGN",
488 .fw_name_pre = IWL6050_FW_PRE,
489 .ucode_api_max = IWL6050_UCODE_API_MAX,
490 .ucode_api_min = IWL6050_UCODE_API_MIN,
491 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700492 .ops = &iwl6050_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700493 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700494 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800495 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700496 .num_of_queues = IWL50_NUM_QUEUES,
497 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800498 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800499 .valid_tx_ant = ANT_ABC,
500 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -0800501 .need_pll_cfg = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700502 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700503 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700504 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700505 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700506 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700507 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700508 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700509 .supports_idle = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800510};
511
512MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
513MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));