blob: 68f452dc2272bf244b315128caf7e27ec802e2ae [file] [log] [blame]
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -07001/******************************************************************************
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 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08008 * Copyright(c) 2007 - 2012 Intel Corporation. All rights reserved.
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -07009 *
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 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -080033 * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070034 * 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 *****************************************************************************/
63#ifndef __iwl_shared_h__
64#define __iwl_shared_h__
65
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070066#include <linux/types.h>
67#include <linux/spinlock.h>
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070068#include <linux/gfp.h>
Emmanuel Grumbachba562f72011-08-25 23:11:22 -070069#include <net/mac80211.h>
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070070
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -070071#include "iwl-commands.h"
Johannes Berg0692fe42012-03-06 13:30:37 -080072#include "iwl-fw.h"
Johannes Berg2aac73f2012-04-09 17:46:59 -070073#include "iwl-config.h"
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -070074
Emmanuel Grumbach21023e22011-09-15 11:46:34 -070075/**
76 * DOC: shared area - role and goal
77 *
78 * The shared area contains all the data exported by the upper layer to the
79 * other layers. Since the bus and transport layer shouldn't dereference
80 * iwl_priv, all the data needed by the upper layer and the transport / bus
81 * layer must be here.
82 * The shared area also holds pointer to all the other layers. This allows a
83 * layer to call a function from another layer.
84 *
85 * NOTE: All the layers hold a pointer to the shared area which must be shrd.
86 * A few macros assume that (_m)->shrd points to the shared area no matter
87 * what _m is.
88 *
89 * gets notifications about enumeration, suspend, resume.
90 * For the moment, the bus layer is not a linux kernel module as itself, and
91 * the module_init function of the driver must call the bus specific
92 * registration functions. These functions are listed at the end of this file.
93 * For the moment, there is only one implementation of this interface: PCI-e.
94 * This implementation is iwl-pci.c
95 */
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070096
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070097struct iwl_priv;
Don Fryae6130f2011-11-30 16:12:59 -080098struct iwl_trans;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070099struct iwl_trans_ops;
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700100
Don Fry3c607d22011-09-30 11:40:20 -0700101#define DRV_NAME "iwlwifi"
Emmanuel Grumbach332a4ba2011-08-25 23:11:16 -0700102#define IWLWIFI_VERSION "in-tree:"
Wey-Yi Guy4e318262011-12-27 11:21:32 -0800103#define DRV_COPYRIGHT "Copyright(c) 2003-2012 Intel Corporation"
Emmanuel Grumbach332a4ba2011-08-25 23:11:16 -0700104#define DRV_AUTHOR "<ilw@linux.intel.com>"
105
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700106extern struct iwl_mod_params iwlagn_mod_params;
107
Johannes Berg74289942011-12-13 00:07:40 -0800108#define IWL_DISABLE_HT_ALL BIT(0)
109#define IWL_DISABLE_HT_TXAGG BIT(1)
110#define IWL_DISABLE_HT_RXAGG BIT(2)
111
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700112/**
113 * struct iwl_mod_params
Emmanuel Grumbach21023e22011-09-15 11:46:34 -0700114 *
115 * Holds the module parameters
116 *
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700117 * @sw_crypto: using hardware encryption, default = 0
Johannes Berg74289942011-12-13 00:07:40 -0800118 * @disable_11n: disable 11n capabilities, default = 0,
119 * use IWL_DISABLE_HT_* constants
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700120 * @amsdu_size_8K: enable 8K amsdu size, default = 1
121 * @antenna: both antennas (use diversity), default = 0
122 * @restart_fw: restart firmware, default = 1
123 * @plcp_check: enable plcp health check, default = true
Wey-Yi Guy9995ffe2011-12-02 08:19:19 -0800124 * @wd_disable: enable stuck queue check, default = 0
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700125 * @bt_coex_active: enable bt coex, default = true
126 * @led_mode: system default, default = 0
127 * @no_sleep_autoadjust: disable autoadjust, default = true
128 * @power_save: disable power save, default = false
129 * @power_level: power level, default = 1
130 * @debug_level: levels are IWL_DL_*
131 * @ant_coupling: antenna coupling in dB, default = 0
132 * @bt_ch_announce: BT channel inhibition, default = enable
133 * @wanted_ucode_alternative: ucode alternative to use, default = 1
134 * @auto_agg: enable agg. without check, default = true
135 */
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700136struct iwl_mod_params {
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700137 int sw_crypto;
Johannes Berg74289942011-12-13 00:07:40 -0800138 unsigned int disable_11n;
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700139 int amsdu_size_8K;
140 int antenna;
141 int restart_fw;
142 bool plcp_check;
Wey-Yi Guy9995ffe2011-12-02 08:19:19 -0800143 int wd_disable;
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700144 bool bt_coex_active;
145 int led_mode;
146 bool no_sleep_autoadjust;
147 bool power_save;
148 int power_level;
149 u32 debug_level;
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700150 int ant_coupling;
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700151 bool bt_ch_announce;
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700152 int wanted_ucode_alternative;
Wey-Yi Guye4ef84d2011-08-25 23:10:58 -0700153 bool auto_agg;
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700154};
155
Don Fry38622412011-12-16 07:07:36 -0800156/**
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700157 * struct iwl_shared - shared fields for all the layers of the driver
158 *
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700159 * @status: STATUS_*
Emmanuel Grumbach23fd7b02011-12-07 14:46:24 +0200160 * @wowlan: are we running wowlan uCode
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700161 * @bus: pointer to the bus layer data
Don Fry38622412011-12-16 07:07:36 -0800162 * @cfg: see struct iwl_cfg
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700163 * @priv: pointer to the upper layer data
Emmanuel Grumbach23fd7b02011-12-07 14:46:24 +0200164 * @trans: pointer to the transport layer data
Don Fryb1c23d92012-02-07 14:45:58 -0800165 * @nic: pointer to the nic data
Emmanuel Grumbach10b15e62011-08-25 23:10:43 -0700166 * @lock: protect general shared data
Don Fry38622412011-12-16 07:07:36 -0800167 * @eeprom: pointer to the eeprom/OTP image
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700168 */
169struct iwl_shared {
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700170 unsigned long status;
Emmanuel Grumbachcefeaa52011-08-25 23:10:40 -0700171
Johannes Berg706c4ff2012-03-05 11:24:33 -0800172 const struct iwl_cfg *cfg;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700173 struct iwl_trans *trans;
Johannes Berg965974a2012-03-06 13:30:38 -0800174 void *drv;
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700175};
176
Emmanuel Grumbach36a79222012-02-27 13:53:32 -0800177/*Whatever _m is (iwl_trans, iwl_priv, these macros will work */
Don Fry38622412011-12-16 07:07:36 -0800178#define cfg(_m) ((_m)->shrd->cfg)
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700179#define trans(_m) ((_m)->shrd->trans)
Emmanuel Grumbachcac988a2011-08-25 23:10:37 -0700180
Johannes Berga8bceb32012-03-05 11:24:30 -0800181static inline bool iwl_have_debug_level(u32 level)
Emmanuel Grumbach8f470ce2011-08-25 23:10:38 -0700182{
Johannes Berga8bceb32012-03-05 11:24:30 -0800183 return iwlagn_mod_params.debug_level & level;
Emmanuel Grumbach8f470ce2011-08-25 23:10:38 -0700184}
Emmanuel Grumbach8f470ce2011-08-25 23:10:38 -0700185
Emmanuel Grumbachba562f72011-08-25 23:11:22 -0700186enum iwl_rxon_context_id {
187 IWL_RXON_CTX_BSS,
188 IWL_RXON_CTX_PAN,
189
190 NUM_IWL_RXON_CTX
191};
192
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700193int iwlagn_hw_valid_rtc_data_addr(u32 addr);
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700194const char *get_cmd_string(u8 cmd);
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -0700195
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700196#define IWL_CMD(x) case x: return #x
Emmanuel Grumbach288712a2011-08-25 23:11:25 -0700197
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700198/*****************************************************
199* DRIVER STATUS FUNCTIONS
200******************************************************/
201#define STATUS_HCMD_ACTIVE 0 /* host command in progress */
202/* 1 is unused (used to be STATUS_HCMD_SYNC_ACTIVE) */
203#define STATUS_INT_ENABLED 2
204#define STATUS_RF_KILL_HW 3
205#define STATUS_CT_KILL 4
206#define STATUS_INIT 5
207#define STATUS_ALIVE 6
208#define STATUS_READY 7
209#define STATUS_TEMPERATURE 8
210#define STATUS_GEO_CONFIGURED 9
211#define STATUS_EXIT_PENDING 10
212#define STATUS_STATISTICS 12
213#define STATUS_SCANNING 13
214#define STATUS_SCAN_ABORTING 14
215#define STATUS_SCAN_HW 15
216#define STATUS_POWER_PMI 16
217#define STATUS_FW_ERROR 17
218#define STATUS_DEVICE_ENABLED 18
219#define STATUS_CHANNEL_SWITCH_PENDING 19
Johannes Berg84b1bec2011-09-22 15:15:00 -0700220#define STATUS_SCAN_COMPLETE 20
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700221
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -0700222#endif /* #__iwl_shared_h__ */