ide-cd: signedness warning fix again
[pandora-kernel.git] / drivers / net / wireless / iwlwifi / iwl-2000.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2008 - 2011 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
50 /* Highest firmware API version supported */
51 #define IWL2030_UCODE_API_MAX 5
52 #define IWL2000_UCODE_API_MAX 5
53 #define IWL105_UCODE_API_MAX 5
54
55 /* Lowest firmware API version supported */
56 #define IWL2030_UCODE_API_MIN 5
57 #define IWL2000_UCODE_API_MIN 5
58 #define IWL105_UCODE_API_MIN 5
59
60 #define IWL2030_FW_PRE "iwlwifi-2030-"
61 #define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE #api ".ucode"
62
63 #define IWL2000_FW_PRE "iwlwifi-2000-"
64 #define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE #api ".ucode"
65
66 #define IWL105_FW_PRE "iwlwifi-105-"
67 #define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE #api ".ucode"
68
69 static void iwl2000_set_ct_threshold(struct iwl_priv *priv)
70 {
71         /* want Celsius */
72         priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
73         priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
74 }
75
76 /* NIC configuration for 2000 series */
77 static void iwl2000_nic_config(struct iwl_priv *priv)
78 {
79         u16 radio_cfg;
80
81         radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
82
83         /* write radio config values to register */
84         if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
85         iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
86                         EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
87                         EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
88                         EEPROM_RF_CFG_DASH_MSK(radio_cfg));
89
90         /* set CSR_HW_CONFIG_REG for uCode use */
91         iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
92                     CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
93                     CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
94
95         if (priv->cfg->iq_invert)
96                 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
97                             CSR_GP_DRIVER_REG_BIT_RADIO_IQ_INVER);
98
99         if (priv->cfg->disable_otp_refresh)
100                 iwl_write_prph(priv, APMG_ANALOG_SVR_REG, 0x80000010);
101 }
102
103 static struct iwl_sensitivity_ranges iwl2000_sensitivity = {
104         .min_nrg_cck = 97,
105         .max_nrg_cck = 0, /* not used, set to 0 */
106         .auto_corr_min_ofdm = 80,
107         .auto_corr_min_ofdm_mrc = 128,
108         .auto_corr_min_ofdm_x1 = 105,
109         .auto_corr_min_ofdm_mrc_x1 = 192,
110
111         .auto_corr_max_ofdm = 145,
112         .auto_corr_max_ofdm_mrc = 232,
113         .auto_corr_max_ofdm_x1 = 110,
114         .auto_corr_max_ofdm_mrc_x1 = 232,
115
116         .auto_corr_min_cck = 125,
117         .auto_corr_max_cck = 175,
118         .auto_corr_min_cck_mrc = 160,
119         .auto_corr_max_cck_mrc = 310,
120         .nrg_th_cck = 97,
121         .nrg_th_ofdm = 100,
122
123         .barker_corr_th_min = 190,
124         .barker_corr_th_min_mrc = 390,
125         .nrg_th_cca = 62,
126 };
127
128 static int iwl2000_hw_set_hw_params(struct iwl_priv *priv)
129 {
130         if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES &&
131             iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES)
132                 priv->cfg->base_params->num_of_queues =
133                         iwlagn_mod_params.num_of_queues;
134
135         priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
136         priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
137         priv->hw_params.scd_bc_tbls_size =
138                 priv->cfg->base_params->num_of_queues *
139                 sizeof(struct iwlagn_scd_bc_tbl);
140         priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
141         priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
142         priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
143
144         priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
145         priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
146
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         .rx_handler_setup = iwlagn_rx_handler_setup,
256         .setup_deferred_work = iwlagn_bt_setup_deferred_work,
257         .cancel_deferred_work = iwlagn_bt_cancel_deferred_work,
258         .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
259         .send_tx_power = iwlagn_send_tx_power,
260         .update_chain_flags = iwl_update_chain_flags,
261         .set_channel_switch = iwl2030_hw_channel_switch,
262         .apm_ops = {
263                 .init = iwl_apm_init,
264                 .config = iwl2000_nic_config,
265         },
266         .eeprom_ops = {
267                 .regulatory_bands = {
268                         EEPROM_REG_BAND_1_CHANNELS,
269                         EEPROM_REG_BAND_2_CHANNELS,
270                         EEPROM_REG_BAND_3_CHANNELS,
271                         EEPROM_REG_BAND_4_CHANNELS,
272                         EEPROM_REG_BAND_5_CHANNELS,
273                         EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
274                         EEPROM_REGULATORY_BAND_NO_HT40,
275                 },
276                 .query_addr = iwlagn_eeprom_query_addr,
277                 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
278         },
279         .temp_ops = {
280                 .temperature = iwlagn_temperature,
281         },
282         .txfifo_flush = iwlagn_txfifo_flush,
283         .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
284 };
285
286 static const struct iwl_ops iwl2000_ops = {
287         .lib = &iwl2000_lib,
288         .hcmd = &iwlagn_hcmd,
289         .utils = &iwlagn_hcmd_utils,
290 };
291
292 static const struct iwl_ops iwl2030_ops = {
293         .lib = &iwl2000_lib,
294         .hcmd = &iwlagn_bt_hcmd,
295         .utils = &iwlagn_hcmd_utils,
296 };
297
298 static const struct iwl_ops iwl105_ops = {
299         .lib = &iwl2000_lib,
300         .hcmd = &iwlagn_hcmd,
301         .utils = &iwlagn_hcmd_utils,
302 };
303
304 static const struct iwl_ops iwl135_ops = {
305         .lib = &iwl2000_lib,
306         .hcmd = &iwlagn_bt_hcmd,
307         .utils = &iwlagn_hcmd_utils,
308 };
309
310 static struct iwl_base_params iwl2000_base_params = {
311         .eeprom_size = OTP_LOW_IMAGE_SIZE,
312         .num_of_queues = IWLAGN_NUM_QUEUES,
313         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
314         .pll_cfg_val = 0,
315         .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
316         .shadow_ram_support = true,
317         .led_compensation = 51,
318         .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
319         .adv_thermal_throttle = true,
320         .support_ct_kill_exit = true,
321         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
322         .chain_noise_scale = 1000,
323         .wd_timeout = IWL_DEF_WD_TIMEOUT,
324         .max_event_log_size = 512,
325         .shadow_reg_enable = true,
326 };
327
328
329 static struct iwl_base_params iwl2030_base_params = {
330         .eeprom_size = OTP_LOW_IMAGE_SIZE,
331         .num_of_queues = IWLAGN_NUM_QUEUES,
332         .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
333         .pll_cfg_val = 0,
334         .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
335         .shadow_ram_support = true,
336         .led_compensation = 57,
337         .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
338         .adv_thermal_throttle = true,
339         .support_ct_kill_exit = true,
340         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
341         .chain_noise_scale = 1000,
342         .wd_timeout = IWL_LONG_WD_TIMEOUT,
343         .max_event_log_size = 512,
344         .shadow_reg_enable = true,
345 };
346
347 static struct iwl_ht_params iwl2000_ht_params = {
348         .ht_greenfield_support = true,
349         .use_rts_for_aggregation = true, /* use rts/cts protection */
350 };
351
352 static struct iwl_bt_params iwl2030_bt_params = {
353         /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
354         .advanced_bt_coexist = true,
355         .agg_time_limit = BT_AGG_THRESHOLD_DEF,
356         .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
357         .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
358         .bt_sco_disable = true,
359         .bt_session_2 = true,
360 };
361
362 #define IWL_DEVICE_2000                                         \
363         .fw_name_pre = IWL2000_FW_PRE,                          \
364         .ucode_api_max = IWL2000_UCODE_API_MAX,                 \
365         .ucode_api_min = IWL2000_UCODE_API_MIN,                 \
366         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
367         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
368         .ops = &iwl2000_ops,                                    \
369         .base_params = &iwl2000_base_params,                    \
370         .need_dc_calib = true,                                  \
371         .need_temp_offset_calib = true,                         \
372         .led_mode = IWL_LED_RF_STATE,                           \
373         .iq_invert = true,                                      \
374         .disable_otp_refresh = true                             \
375
376 struct iwl_cfg iwl2000_2bgn_cfg = {
377         .name = "2000 Series 2x2 BGN",
378         IWL_DEVICE_2000,
379         .ht_params = &iwl2000_ht_params,
380 };
381
382 struct iwl_cfg iwl2000_2bg_cfg = {
383         .name = "2000 Series 2x2 BG",
384         IWL_DEVICE_2000,
385 };
386
387 #define IWL_DEVICE_2030                                         \
388         .fw_name_pre = IWL2030_FW_PRE,                          \
389         .ucode_api_max = IWL2030_UCODE_API_MAX,                 \
390         .ucode_api_min = IWL2030_UCODE_API_MIN,                 \
391         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
392         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
393         .ops = &iwl2030_ops,                                    \
394         .base_params = &iwl2030_base_params,                    \
395         .bt_params = &iwl2030_bt_params,                        \
396         .need_dc_calib = true,                                  \
397         .need_temp_offset_calib = true,                         \
398         .led_mode = IWL_LED_RF_STATE,                           \
399         .adv_pm = true,                                         \
400         .iq_invert = true                                       \
401
402 struct iwl_cfg iwl2030_2bgn_cfg = {
403         .name = "2000 Series 2x2 BGN/BT",
404         IWL_DEVICE_2030,
405         .ht_params = &iwl2000_ht_params,
406 };
407
408 struct iwl_cfg iwl2030_2bg_cfg = {
409         .name = "2000 Series 2x2 BG/BT",
410         IWL_DEVICE_2030,
411 };
412
413 #define IWL_DEVICE_105                                          \
414         .fw_name_pre = IWL105_FW_PRE,                           \
415         .ucode_api_max = IWL105_UCODE_API_MAX,                  \
416         .ucode_api_min = IWL105_UCODE_API_MIN,                  \
417         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
418         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
419         .ops = &iwl105_ops,                                     \
420         .base_params = &iwl2000_base_params,                    \
421         .need_dc_calib = true,                                  \
422         .need_temp_offset_calib = true,                         \
423         .led_mode = IWL_LED_RF_STATE,                           \
424         .adv_pm = true,                                         \
425         .rx_with_siso_diversity = true                          \
426
427 struct iwl_cfg iwl105_bg_cfg = {
428         .name = "105 Series 1x1 BG",
429         IWL_DEVICE_105,
430 };
431
432 struct iwl_cfg iwl105_bgn_cfg = {
433         .name = "105 Series 1x1 BGN",
434         IWL_DEVICE_105,
435         .ht_params = &iwl2000_ht_params,
436 };
437
438 #define IWL_DEVICE_135                                          \
439         .fw_name_pre = IWL105_FW_PRE,                           \
440         .ucode_api_max = IWL105_UCODE_API_MAX,                  \
441         .ucode_api_min = IWL105_UCODE_API_MIN,                  \
442         .eeprom_ver = EEPROM_2000_EEPROM_VERSION,               \
443         .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,       \
444         .ops = &iwl135_ops,                                     \
445         .base_params = &iwl2030_base_params,                    \
446         .bt_params = &iwl2030_bt_params,                        \
447         .need_dc_calib = true,                                  \
448         .need_temp_offset_calib = true,                         \
449         .led_mode = IWL_LED_RF_STATE,                           \
450         .adv_pm = true,                                         \
451         .rx_with_siso_diversity = true                          \
452
453 struct iwl_cfg iwl135_bg_cfg = {
454         .name = "105 Series 1x1 BG/BT",
455         IWL_DEVICE_135,
456 };
457
458 struct iwl_cfg iwl135_bgn_cfg = {
459         .name = "105 Series 1x1 BGN/BT",
460         IWL_DEVICE_135,
461         .ht_params = &iwl2000_ht_params,
462 };
463
464 MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX));
465 MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX));
466 MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX));