blob: f805ccf3ecd8314f71482ee77761b9b97c7124e1 [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2005 - 2011 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *****************************************************************************/
62
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020063#ifndef __il_core_h__
64#define __il_core_h__
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080065
66/************************
67 * forward declarations *
68 ************************/
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020069struct il_host_cmd;
70struct il_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080071
72
73#define IWLWIFI_VERSION "in-tree:"
74#define DRV_COPYRIGHT "Copyright(c) 2003-2011 Intel Corporation"
75#define DRV_AUTHOR "<ilw@linux.intel.com>"
76
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020077#define IL_PCI_DEVICE(dev, subdev, cfg) \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080078 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
79 .subvendor = PCI_ANY_ID, .subdevice = (subdev), \
80 .driver_data = (kernel_ulong_t)&(cfg)
81
82#define TIME_UNIT 1024
83
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020084#define IL_SKU_G 0x1
85#define IL_SKU_A 0x2
86#define IL_SKU_N 0x8
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080087
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020088#define IL_CMD(x) case x: return #x
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080089
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020090struct il_hcmd_ops {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020091 int (*rxon_assoc)(struct il_priv *il, struct il_rxon_context *ctx);
92 int (*commit_rxon)(struct il_priv *il, struct il_rxon_context *ctx);
93 void (*set_rxon_chain)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020094 struct il_rxon_context *ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080095};
96
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020097struct il_hcmd_utils_ops {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080098 u16 (*get_hcmd_size)(u8 cmd_id, u16 len);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020099 u16 (*build_addsta_hcmd)(const struct il_addsta_cmd *cmd,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800100 u8 *data);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200101 int (*request_scan)(struct il_priv *il, struct ieee80211_vif *vif);
102 void (*post_scan)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800103};
104
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200105struct il_apm_ops {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200106 int (*init)(struct il_priv *il);
107 void (*config)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800108};
109
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200110struct il_debugfs_ops {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800111 ssize_t (*rx_stats_read)(struct file *file, char __user *user_buf,
112 size_t count, loff_t *ppos);
113 ssize_t (*tx_stats_read)(struct file *file, char __user *user_buf,
114 size_t count, loff_t *ppos);
115 ssize_t (*general_stats_read)(struct file *file, char __user *user_buf,
116 size_t count, loff_t *ppos);
117};
118
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200119struct il_temp_ops {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200120 void (*temperature)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800121};
122
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200123struct il_lib_ops {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800124 /* set hw dependent parameters */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200125 int (*set_hw_params)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800126 /* Handling TX */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200127 void (*txq_update_byte_cnt_tbl)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200128 struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800129 u16 byte_cnt);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200130 int (*txq_attach_buf_to_tfd)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200131 struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800132 dma_addr_t addr,
133 u16 len, u8 reset, u8 pad);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200134 void (*txq_free_tfd)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200135 struct il_tx_queue *txq);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200136 int (*txq_init)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200137 struct il_tx_queue *txq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800138 /* setup Rx handler */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200139 void (*rx_handler_setup)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800140 /* alive notification after init uCode load */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200141 void (*init_alive_start)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800142 /* check validity of rtc data address */
143 int (*is_valid_rtc_data_addr)(u32 addr);
144 /* 1st ucode load */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200145 int (*load_ucode)(struct il_priv *il);
Stanislaw Gruszka1ba2f122011-06-08 15:28:27 +0200146
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200147 void (*dump_nic_error_log)(struct il_priv *il);
148 int (*dump_fh)(struct il_priv *il, char **buf, bool display);
149 int (*set_channel_switch)(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800150 struct ieee80211_channel_switch *ch_switch);
151 /* power management */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200152 struct il_apm_ops apm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800153
154 /* power */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200155 int (*send_tx_power) (struct il_priv *il);
156 void (*update_chain_flags)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800157
158 /* eeprom operations (as defined in iwl-eeprom.h) */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200159 struct il_eeprom_ops eeprom_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800160
161 /* temperature */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200162 struct il_temp_ops temp_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800163
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200164 struct il_debugfs_ops debugfs_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800165
166};
167
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200168struct il_led_ops {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200169 int (*cmd)(struct il_priv *il, struct il_led_cmd *led_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800170};
171
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200172struct il_legacy_ops {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200173 void (*post_associate)(struct il_priv *il);
174 void (*config_ap)(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800175 /* station management */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200176 int (*update_bcast_stations)(struct il_priv *il);
177 int (*manage_ibss_station)(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800178 struct ieee80211_vif *vif, bool add);
179};
180
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200181struct il_ops {
182 const struct il_lib_ops *lib;
183 const struct il_hcmd_ops *hcmd;
184 const struct il_hcmd_utils_ops *utils;
185 const struct il_led_ops *led;
186 const struct il_nic_ops *nic;
187 const struct il_legacy_ops *legacy;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800188 const struct ieee80211_ops *ieee80211_ops;
189};
190
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200191struct il_mod_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800192 int sw_crypto; /* def: 0 = using hardware encryption */
193 int disable_hw_scan; /* def: 0 = use h/w scan */
194 int num_of_queues; /* def: HW dependent */
195 int disable_11n; /* def: 0 = 11n capabilities enabled */
196 int amsdu_size_8K; /* def: 1 = enable 8K amsdu size */
197 int antenna; /* def: 0 = both antennas (use diversity) */
198 int restart_fw; /* def: 1 = restart firmware */
199};
200
201/*
202 * @led_compensation: compensate on the led on/off time per HW according
203 * to the deviation to achieve the desired led frequency.
204 * The detail algorithm is described in iwl-led.c
205 * @chain_noise_num_beacons: number of beacons used to compute chain noise
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800206 * @wd_timeout: TX queues watchdog timeout
207 * @temperature_kelvin: temperature report by uCode in kelvin
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800208 * @ucode_tracing: support ucode continuous tracing
209 * @sensitivity_calib_by_driver: driver has the capability to perform
210 * sensitivity calibration operation
211 * @chain_noise_calib_by_driver: driver has the capability to perform
212 * chain noise calibration operation
213 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200214struct il_base_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800215 int eeprom_size;
216 int num_of_queues; /* def: HW dependent */
217 int num_of_ampdu_queues;/* def: HW dependent */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200218 /* for il_apm_init() */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800219 u32 pll_cfg_val;
220 bool set_l0s;
221 bool use_bsm;
222
223 u16 led_compensation;
224 int chain_noise_num_beacons;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800225 unsigned int wd_timeout;
226 bool temperature_kelvin;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800227 const bool ucode_tracing;
228 const bool sensitivity_calib_by_driver;
229 const bool chain_noise_calib_by_driver;
230};
231
232/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200233 * struct il_cfg
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800234 * @fw_name_pre: Firmware filename prefix. The api version and extension
235 * (.ucode) will be added to filename before loading from disk. The
236 * filename is constructed as fw_name_pre<api>.ucode.
237 * @ucode_api_max: Highest version of uCode API supported by driver.
238 * @ucode_api_min: Lowest version of uCode API supported by driver.
239 * @scan_antennas: available antenna for scan operation
240 * @led_mode: 0=blinking, 1=On(RF On)/Off(RF Off)
241 *
242 * We enable the driver to be backward compatible wrt API version. The
243 * driver specifies which APIs it supports (with @ucode_api_max being the
244 * highest and @ucode_api_min the lowest). Firmware will only be loaded if
245 * it has a supported API version. The firmware's API version will be
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200246 * stored in @il_priv, enabling the driver to make runtime changes based
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800247 * on firmware version used.
248 *
249 * For example,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200250 * if (IL_UCODE_API(il->ucode_ver) >= 2) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800251 * Driver interacts with Firmware API version >= 2.
252 * } else {
253 * Driver interacts with Firmware API version 1.
254 * }
255 *
256 * The ideal usage of this infrastructure is to treat a new ucode API
257 * release as a new hardware revision. That is, through utilizing the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200258 * il_hcmd_utils_ops etc. we accommodate different command structures
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800259 * and flows between hardware versions as well as their API
260 * versions.
261 *
262 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200263struct il_cfg {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800264 /* params specific to an individual device within a device family */
265 const char *name;
266 const char *fw_name_pre;
267 const unsigned int ucode_api_max;
268 const unsigned int ucode_api_min;
269 u8 valid_tx_ant;
270 u8 valid_rx_ant;
271 unsigned int sku;
272 u16 eeprom_ver;
273 u16 eeprom_calib_ver;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200274 const struct il_ops *ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800275 /* module based parameters which can be set from modprobe cmd */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200276 const struct il_mod_params *mod_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800277 /* params not likely to change within a device family */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200278 struct il_base_params *base_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800279 /* params likely to change within a device family */
280 u8 scan_rx_antennas[IEEE80211_NUM_BANDS];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200281 enum il_led_mode led_mode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800282};
283
284/***************************
285 * L i b *
286 ***************************/
287
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200288struct ieee80211_hw *il_alloc_all(struct il_cfg *cfg);
289int il_mac_conf_tx(struct ieee80211_hw *hw,
Eliad Peller8a3a3c82011-10-02 10:15:52 +0200290 struct ieee80211_vif *vif, u16 queue,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800291 const struct ieee80211_tx_queue_params *params);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200292int il_mac_tx_last_beacon(struct ieee80211_hw *hw);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200293void il_set_rxon_hwcrypto(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200294 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800295 int hw_decrypt);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200296int il_check_rxon_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200297 struct il_rxon_context *ctx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200298int il_full_rxon_required(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200299 struct il_rxon_context *ctx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200300int il_set_rxon_channel(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800301 struct ieee80211_channel *ch,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200302 struct il_rxon_context *ctx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200303void il_set_flags_for_band(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200304 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800305 enum ieee80211_band band,
306 struct ieee80211_vif *vif);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200307u8 il_get_single_channel_number(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800308 enum ieee80211_band band);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200309void il_set_rxon_ht(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200310 struct il_ht_config *ht_conf);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200311bool il_is_ht40_tx_allowed(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200312 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800313 struct ieee80211_sta_ht_cap *ht_cap);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200314void il_connection_init_rx_config(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200315 struct il_rxon_context *ctx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200316void il_set_rate(struct il_priv *il);
317int il_set_decrypted_flag(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800318 struct ieee80211_hdr *hdr,
319 u32 decrypt_res,
320 struct ieee80211_rx_status *stats);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200321void il_irq_handle_error(struct il_priv *il);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200322int il_mac_add_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800323 struct ieee80211_vif *vif);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200324void il_mac_remove_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800325 struct ieee80211_vif *vif);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200326int il_mac_change_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800327 struct ieee80211_vif *vif,
328 enum nl80211_iftype newtype, bool newp2p);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200329int il_alloc_txq_mem(struct il_priv *il);
330void il_txq_mem(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800331
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100332#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200333int il_alloc_traffic_mem(struct il_priv *il);
334void il_free_traffic_mem(struct il_priv *il);
335void il_reset_traffic_log(struct il_priv *il);
336void il_dbg_log_tx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800337 u16 length, struct ieee80211_hdr *header);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200338void il_dbg_log_rx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800339 u16 length, struct ieee80211_hdr *header);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200340const char *il_get_mgmt_string(int cmd);
341const char *il_get_ctrl_string(int cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200342void il_clear_traffic_stats(struct il_priv *il);
343void il_update_stats(struct il_priv *il, bool is_tx, __le16 fc,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800344 u16 len);
345#else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200346static inline int il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800347{
348 return 0;
349}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200350static inline void il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800351{
352}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200353static inline void il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800354{
355}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200356static inline void il_dbg_log_tx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800357 u16 length, struct ieee80211_hdr *header)
358{
359}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200360static inline void il_dbg_log_rx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800361 u16 length, struct ieee80211_hdr *header)
362{
363}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200364static inline void il_update_stats(struct il_priv *il, bool is_tx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800365 __le16 fc, u16 len)
366{
367}
368#endif
369/*****************************************************
370 * RX handlers.
371 * **************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200372void il_rx_pm_sleep_notif(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200373 struct il_rx_mem_buffer *rxb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200374void il_rx_pm_debug_statistics_notif(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200375 struct il_rx_mem_buffer *rxb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200376void il_rx_reply_error(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200377 struct il_rx_mem_buffer *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800378
379/*****************************************************
380* RX
381******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200382void il_cmd_queue_unmap(struct il_priv *il);
383void il_cmd_queue_free(struct il_priv *il);
384int il_rx_queue_alloc(struct il_priv *il);
385void il_rx_queue_update_write_ptr(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200386 struct il_rx_queue *q);
387int il_rx_queue_space(const struct il_rx_queue *q);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200388void il_tx_cmd_complete(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200389 struct il_rx_mem_buffer *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800390/* Handlers */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200391void il_rx_spectrum_measure_notif(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200392 struct il_rx_mem_buffer *rxb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200393void il_recover_from_statistics(struct il_priv *il,
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200394 struct il_rx_pkt *pkt);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200395void il_chswitch_done(struct il_priv *il, bool is_success);
396void il_rx_csa(struct il_priv *il, struct il_rx_mem_buffer *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800397
398/* TX helpers */
399
400/*****************************************************
401* TX
402******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200403void il_txq_update_write_ptr(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200404 struct il_tx_queue *txq);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200405int il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800406 int slots_num, u32 txq_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200407void il_tx_queue_reset(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200408 struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800409 int slots_num, u32 txq_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200410void il_tx_queue_unmap(struct il_priv *il, int txq_id);
411void il_tx_queue_free(struct il_priv *il, int txq_id);
412void il_setup_watchdog(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800413/*****************************************************
414 * TX power
415 ****************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200416int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800417
418/*******************************************************************************
419 * Rate
420 ******************************************************************************/
421
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200422u8 il_get_lowest_plcp(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200423 struct il_rxon_context *ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800424
425/*******************************************************************************
426 * Scanning
427 ******************************************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200428void il_init_scan_params(struct il_priv *il);
429int il_scan_cancel(struct il_priv *il);
430int il_scan_cancel_timeout(struct il_priv *il, unsigned long ms);
431void il_force_scan_end(struct il_priv *il);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200432int il_mac_hw_scan(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800433 struct ieee80211_vif *vif,
434 struct cfg80211_scan_request *req);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200435void il_internal_short_hw_scan(struct il_priv *il);
436int il_force_reset(struct il_priv *il, bool external);
437u16 il_fill_probe_req(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800438 struct ieee80211_mgmt *frame,
439 const u8 *ta, const u8 *ie, int ie_len, int left);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200440void il_setup_rx_scan_handlers(struct il_priv *il);
441u16 il_get_active_dwell_time(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800442 enum ieee80211_band band,
443 u8 n_probes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200444u16 il_get_passive_dwell_time(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800445 enum ieee80211_band band,
446 struct ieee80211_vif *vif);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200447void il_setup_scan_deferred_work(struct il_priv *il);
448void il_cancel_scan_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800449
450/* For faster active scanning, scan will move to the next channel if fewer than
451 * PLCP_QUIET_THRESH packets are heard on this channel within
452 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
453 * time if it's a quiet channel (nothing responded to our probe, and there's
454 * no other traffic).
455 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200456#define IL_ACTIVE_QUIET_TIME cpu_to_le16(10) /* msec */
457#define IL_PLCP_QUIET_THRESH cpu_to_le16(1) /* packets */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800458
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200459#define IL_SCAN_CHECK_WATCHDOG (HZ * 7)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800460
461/*****************************************************
462 * S e n d i n g H o s t C o m m a n d s *
463 *****************************************************/
464
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200465const char *il_get_cmd_string(u8 cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200466int __must_check il_send_cmd_sync(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200467 struct il_host_cmd *cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200468int il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd);
469int __must_check il_send_cmd_pdu(struct il_priv *il, u8 id,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800470 u16 len, const void *data);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200471int il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800472 const void *data,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200473 void (*callback)(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200474 struct il_device_cmd *cmd,
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200475 struct il_rx_pkt *pkt));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800476
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200477int il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800478
479
480/*****************************************************
481 * PCI *
482 *****************************************************/
483
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200484static inline u16 il_pcie_link_ctl(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800485{
486 int pos;
487 u16 pci_lnk_ctl;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200488 pos = pci_pcie_cap(il->pci_dev);
489 pci_read_config_word(il->pci_dev, pos + PCI_EXP_LNKCTL, &pci_lnk_ctl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800490 return pci_lnk_ctl;
491}
492
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200493void il_bg_watchdog(unsigned long data);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200494u32 il_usecs_to_beacons(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800495 u32 usec, u32 beacon_interval);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200496__le32 il_add_beacon_time(struct il_priv *il, u32 base,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800497 u32 addon, u32 beacon_interval);
498
499#ifdef CONFIG_PM
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200500int il_pci_suspend(struct device *device);
501int il_pci_resume(struct device *device);
502extern const struct dev_pm_ops il_pm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800503
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200504#define IL_LEGACY_PM_OPS (&il_pm_ops)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800505
506#else /* !CONFIG_PM */
507
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200508#define IL_LEGACY_PM_OPS NULL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800509
510#endif /* !CONFIG_PM */
511
512/*****************************************************
513* Error Handling Debugging
514******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200515void il4965_dump_nic_error_log(struct il_priv *il);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100516#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200517void il_print_rx_config_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200518 struct il_rxon_context *ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800519#else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200520static inline void il_print_rx_config_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200521 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800522{
523}
524#endif
525
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200526void il_clear_isr_stats(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800527
528/*****************************************************
529* GEOS
530******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200531int il_init_geos(struct il_priv *il);
532void il_free_geos(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800533
534/*************** DRIVER STATUS FUNCTIONS *****/
535
536#define STATUS_HCMD_ACTIVE 0 /* host command in progress */
537/* 1 is unused (used to be STATUS_HCMD_SYNC_ACTIVE) */
538#define STATUS_INT_ENABLED 2
539#define STATUS_RF_KILL_HW 3
540#define STATUS_CT_KILL 4
541#define STATUS_INIT 5
542#define STATUS_ALIVE 6
543#define STATUS_READY 7
544#define STATUS_TEMPERATURE 8
545#define STATUS_GEO_CONFIGURED 9
546#define STATUS_EXIT_PENDING 10
547#define STATUS_STATISTICS 12
548#define STATUS_SCANNING 13
549#define STATUS_SCAN_ABORTING 14
550#define STATUS_SCAN_HW 15
551#define STATUS_POWER_PMI 16
552#define STATUS_FW_ERROR 17
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200553#define STATUS_CHANNEL_SWITCH_PENDING 18
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800554
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200555static inline int il_is_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800556{
557 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
558 * set but EXIT_PENDING is not */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200559 return test_bit(STATUS_READY, &il->status) &&
560 test_bit(STATUS_GEO_CONFIGURED, &il->status) &&
561 !test_bit(STATUS_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800562}
563
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200564static inline int il_is_alive(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800565{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200566 return test_bit(STATUS_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800567}
568
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200569static inline int il_is_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800570{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200571 return test_bit(STATUS_INIT, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800572}
573
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200574static inline int il_is_rfkill_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800575{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200576 return test_bit(STATUS_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800577}
578
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200579static inline int il_is_rfkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800580{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200581 return il_is_rfkill_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800582}
583
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200584static inline int il_is_ctkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800585{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200586 return test_bit(STATUS_CT_KILL, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800587}
588
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200589static inline int il_is_ready_rf(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800590{
591
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200592 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800593 return 0;
594
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200595 return il_is_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800596}
597
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200598extern void il_send_bt_config(struct il_priv *il);
599extern int il_send_statistics_request(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800600 u8 flags, bool clear);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200601void il_apm_stop(struct il_priv *il);
602int il_apm_init(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800603
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200604int il_send_rxon_timing(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200605 struct il_rxon_context *ctx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200606static inline int il_send_rxon_assoc(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200607 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800608{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200609 return il->cfg->ops->hcmd->rxon_assoc(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800610}
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200611static inline int il_commit_rxon(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200612 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800613{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200614 return il->cfg->ops->hcmd->commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800615}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200616static inline const struct ieee80211_supported_band *il_get_hw_mode(
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200617 struct il_priv *il, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800618{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200619 return il->hw->wiphy->bands[band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800620}
621
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800622/* mac80211 handlers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200623int il_mac_config(struct ieee80211_hw *hw, u32 changed);
624void il_mac_reset_tsf(struct ieee80211_hw *hw,
Eliad Peller37a41b42011-09-21 14:06:11 +0300625 struct ieee80211_vif *vif);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200626void il_mac_bss_info_changed(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800627 struct ieee80211_vif *vif,
628 struct ieee80211_bss_conf *bss_conf,
629 u32 changes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200630void il_tx_cmd_protection(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800631 struct ieee80211_tx_info *info,
632 __le16 fc, __le32 *tx_flags);
633
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200634irqreturn_t il_isr(int irq, void *data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800635
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200636#endif /* __il_core_h__ */