]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/net/wireless/iwlwifi/iwl-6000.c
iwlwifi: Use RTS/CTS as the preferred protection mechanism for 6000 series
[mv-sheeva.git] / drivers / net / wireless / iwlwifi / iwl-6000.c
1 /******************************************************************************
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"
47
48 /* Highest firmware API version supported */
49 #define IWL6000_UCODE_API_MAX 4
50 #define IWL6050_UCODE_API_MAX 4
51
52 /* Lowest firmware API version supported */
53 #define IWL6000_UCODE_API_MIN 1
54 #define IWL6050_UCODE_API_MIN 1
55
56 #define IWL6000_FW_PRE "iwlwifi-6000-"
57 #define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
58 #define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api)
59
60 #define IWL6050_FW_PRE "iwlwifi-6050-"
61 #define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
62 #define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api)
63
64 static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
65 {
66         /* want Celsius */
67         priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
68         priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
69 }
70
71 /* NIC configuration for 6000 series */
72 static void iwl6000_nic_config(struct iwl_priv *priv)
73 {
74         iwl5000_nic_config(priv);
75
76         /* no locking required for register write */
77         if (priv->cfg->pa_type == IWL_PA_HYBRID) {
78                 /* 2x2 hybrid phy type */
79                 iwl_write32(priv, CSR_GP_DRIVER_REG,
80                              CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_HYB);
81         } else if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
82                 /* 2x2 IPA phy type */
83                 iwl_write32(priv, CSR_GP_DRIVER_REG,
84                              CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
85         }
86         /* else do nothing, uCode configured */
87 }
88
89 static struct iwl_lib_ops iwl6000_lib = {
90         .set_hw_params = iwl5000_hw_set_hw_params,
91         .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
92         .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
93         .txq_set_sched = iwl5000_txq_set_sched,
94         .txq_agg_enable = iwl5000_txq_agg_enable,
95         .txq_agg_disable = iwl5000_txq_agg_disable,
96         .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
97         .txq_free_tfd = iwl_hw_txq_free_tfd,
98         .txq_init = iwl_hw_tx_queue_init,
99         .rx_handler_setup = iwl5000_rx_handler_setup,
100         .setup_deferred_work = iwl5000_setup_deferred_work,
101         .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
102         .load_ucode = iwl5000_load_ucode,
103         .dump_nic_event_log = iwl_dump_nic_event_log,
104         .dump_nic_error_log = iwl_dump_nic_error_log,
105         .init_alive_start = iwl5000_init_alive_start,
106         .alive_notify = iwl5000_alive_notify,
107         .send_tx_power = iwl5000_send_tx_power,
108         .update_chain_flags = iwl_update_chain_flags,
109         .apm_ops = {
110                 .init = iwl5000_apm_init,
111                 .reset = iwl5000_apm_reset,
112                 .stop = iwl5000_apm_stop,
113                 .config = iwl6000_nic_config,
114                 .set_pwr_src = iwl_set_pwr_src,
115         },
116         .eeprom_ops = {
117                 .regulatory_bands = {
118                         EEPROM_5000_REG_BAND_1_CHANNELS,
119                         EEPROM_5000_REG_BAND_2_CHANNELS,
120                         EEPROM_5000_REG_BAND_3_CHANNELS,
121                         EEPROM_5000_REG_BAND_4_CHANNELS,
122                         EEPROM_5000_REG_BAND_5_CHANNELS,
123                         EEPROM_5000_REG_BAND_24_HT40_CHANNELS,
124                         EEPROM_5000_REG_BAND_52_HT40_CHANNELS
125                 },
126                 .verify_signature  = iwlcore_eeprom_verify_signature,
127                 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
128                 .release_semaphore = iwlcore_eeprom_release_semaphore,
129                 .calib_version  = iwl5000_eeprom_calib_version,
130                 .query_addr = iwl5000_eeprom_query_addr,
131                 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
132         },
133         .post_associate = iwl_post_associate,
134         .isr = iwl_isr_ict,
135         .config_ap = iwl_config_ap,
136         .temp_ops = {
137                 .temperature = iwl5000_temperature,
138                 .set_ct_kill = iwl6000_set_ct_threshold,
139          },
140 };
141
142 static struct iwl_hcmd_utils_ops iwl6000_hcmd_utils = {
143         .get_hcmd_size = iwl5000_get_hcmd_size,
144         .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
145         .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
146         .calc_rssi = iwl5000_calc_rssi,
147 };
148
149 static struct iwl_ops iwl6000_ops = {
150         .ucode = &iwl5000_ucode,
151         .lib = &iwl6000_lib,
152         .hcmd = &iwl5000_hcmd,
153         .utils = &iwl6000_hcmd_utils,
154 };
155
156
157 /*
158  * "h": Hybrid configuration, use both internal and external Power Amplifier
159  */
160 struct iwl_cfg iwl6000h_2agn_cfg = {
161         .name = "6000 Series 2x2 AGN",
162         .fw_name_pre = IWL6000_FW_PRE,
163         .ucode_api_max = IWL6000_UCODE_API_MAX,
164         .ucode_api_min = IWL6000_UCODE_API_MIN,
165         .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
166         .ops = &iwl6000_ops,
167         .eeprom_size = OTP_LOW_IMAGE_SIZE,
168         .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
169         .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
170         .mod_params = &iwl50_mod_params,
171         .valid_tx_ant = ANT_AB,
172         .valid_rx_ant = ANT_AB,
173         .need_pll_cfg = false,
174         .pa_type = IWL_PA_HYBRID,
175         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
176         .shadow_ram_support = true,
177         .ht_greenfield_support = true,
178         .use_rts_for_ht = true, /* use rts/cts protection */
179 };
180
181 /*
182  * "i": Internal configuration, use internal Power Amplifier
183  */
184 struct iwl_cfg iwl6000i_2agn_cfg = {
185         .name = "6000 Series 2x2 AGN",
186         .fw_name_pre = IWL6000_FW_PRE,
187         .ucode_api_max = IWL6000_UCODE_API_MAX,
188         .ucode_api_min = IWL6000_UCODE_API_MIN,
189         .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
190         .ops = &iwl6000_ops,
191         .eeprom_size = OTP_LOW_IMAGE_SIZE,
192         .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
193         .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
194         .mod_params = &iwl50_mod_params,
195         .valid_tx_ant = ANT_BC,
196         .valid_rx_ant = ANT_BC,
197         .need_pll_cfg = false,
198         .pa_type = IWL_PA_INTERNAL,
199         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
200         .shadow_ram_support = true,
201         .ht_greenfield_support = true,
202         .use_rts_for_ht = true, /* use rts/cts protection */
203 };
204
205 struct iwl_cfg iwl6050_2agn_cfg = {
206         .name = "6050 Series 2x2 AGN",
207         .fw_name_pre = IWL6050_FW_PRE,
208         .ucode_api_max = IWL6050_UCODE_API_MAX,
209         .ucode_api_min = IWL6050_UCODE_API_MIN,
210         .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
211         .ops = &iwl6000_ops,
212         .eeprom_size = OTP_LOW_IMAGE_SIZE,
213         .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
214         .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
215         .mod_params = &iwl50_mod_params,
216         .valid_tx_ant = ANT_AB,
217         .valid_rx_ant = ANT_AB,
218         .need_pll_cfg = false,
219         .pa_type = IWL_PA_SYSTEM,
220         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
221         .shadow_ram_support = true,
222         .ht_greenfield_support = true,
223         .use_rts_for_ht = true, /* use rts/cts protection */
224 };
225
226 struct iwl_cfg iwl6000_3agn_cfg = {
227         .name = "6000 Series 3x3 AGN",
228         .fw_name_pre = IWL6000_FW_PRE,
229         .ucode_api_max = IWL6000_UCODE_API_MAX,
230         .ucode_api_min = IWL6000_UCODE_API_MIN,
231         .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
232         .ops = &iwl6000_ops,
233         .eeprom_size = OTP_LOW_IMAGE_SIZE,
234         .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
235         .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
236         .mod_params = &iwl50_mod_params,
237         .valid_tx_ant = ANT_ABC,
238         .valid_rx_ant = ANT_ABC,
239         .need_pll_cfg = false,
240         .pa_type = IWL_PA_SYSTEM,
241         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
242         .shadow_ram_support = true,
243         .ht_greenfield_support = true,
244         .use_rts_for_ht = true, /* use rts/cts protection */
245 };
246
247 struct iwl_cfg iwl6050_3agn_cfg = {
248         .name = "6050 Series 3x3 AGN",
249         .fw_name_pre = IWL6050_FW_PRE,
250         .ucode_api_max = IWL6050_UCODE_API_MAX,
251         .ucode_api_min = IWL6050_UCODE_API_MIN,
252         .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
253         .ops = &iwl6000_ops,
254         .eeprom_size = OTP_LOW_IMAGE_SIZE,
255         .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
256         .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
257         .mod_params = &iwl50_mod_params,
258         .valid_tx_ant = ANT_ABC,
259         .valid_rx_ant = ANT_ABC,
260         .need_pll_cfg = false,
261         .pa_type = IWL_PA_SYSTEM,
262         .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
263         .shadow_ram_support = true,
264         .ht_greenfield_support = true,
265         .use_rts_for_ht = true, /* use rts/cts protection */
266 };
267
268 MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
269 MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));