Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-shared.h
1 /******************************************************************************
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) 2007 - 2012 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 - 2012 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 *****************************************************************************/
63 #ifndef __iwl_shared_h__
64 #define __iwl_shared_h__
65
66 #include <linux/types.h>
67 #include <linux/spinlock.h>
68 #include <linux/gfp.h>
69 #include <net/mac80211.h>
70
71 #include "iwl-commands.h"
72 #include "iwl-fw.h"
73 #include "iwl-config.h"
74
75 /**
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 */
96
97 struct iwl_priv;
98 struct iwl_trans;
99 struct iwl_trans_ops;
100
101 #define DRV_NAME "iwlwifi"
102 #define IWLWIFI_VERSION "in-tree:"
103 #define DRV_COPYRIGHT "Copyright(c) 2003-2012 Intel Corporation"
104 #define DRV_AUTHOR "<ilw@linux.intel.com>"
105
106 extern struct iwl_mod_params iwlagn_mod_params;
107
108 #define IWL_DISABLE_HT_ALL BIT(0)
109 #define IWL_DISABLE_HT_TXAGG BIT(1)
110 #define IWL_DISABLE_HT_RXAGG BIT(2)
111
112 /**
113 * struct iwl_mod_params
114 *
115 * Holds the module parameters
116 *
117 * @sw_crypto: using hardware encryption, default = 0
118 * @disable_11n: disable 11n capabilities, default = 0,
119 * use IWL_DISABLE_HT_* constants
120 * @amsdu_size_8K: enable 8K amsdu size, default = 1
121 * @restart_fw: restart firmware, default = 1
122 * @plcp_check: enable plcp health check, default = true
123 * @wd_disable: enable stuck queue check, default = 0
124 * @bt_coex_active: enable bt coex, default = true
125 * @led_mode: system default, default = 0
126 * @power_save: disable power save, default = false
127 * @power_level: power level, default = 1
128 * @debug_level: levels are IWL_DL_*
129 * @ant_coupling: antenna coupling in dB, default = 0
130 * @bt_ch_announce: BT channel inhibition, default = enable
131 * @auto_agg: enable agg. without check, default = true
132 */
133 struct iwl_mod_params {
134 int sw_crypto;
135 unsigned int disable_11n;
136 int amsdu_size_8K;
137 int restart_fw;
138 bool plcp_check;
139 int wd_disable;
140 bool bt_coex_active;
141 int led_mode;
142 bool power_save;
143 int power_level;
144 u32 debug_level;
145 int ant_coupling;
146 bool bt_ch_announce;
147 bool auto_agg;
148 };
149
150 /**
151 * struct iwl_shared - shared fields for all the layers of the driver
152 *
153 * @wowlan: are we running wowlan uCode
154 * @bus: pointer to the bus layer data
155 * @cfg: see struct iwl_cfg
156 * @priv: pointer to the upper layer data
157 * @trans: pointer to the transport layer data
158 * @nic: pointer to the nic data
159 * @lock: protect general shared data
160 * @eeprom: pointer to the eeprom/OTP image
161 */
162 struct iwl_shared {
163 const struct iwl_cfg *cfg;
164 struct iwl_trans *trans;
165 void *drv;
166 };
167
168 /*Whatever _m is (iwl_trans, iwl_priv, these macros will work */
169 #define cfg(_m) ((_m)->shrd->cfg)
170 #define trans(_m) ((_m)->shrd->trans)
171
172 static inline bool iwl_have_debug_level(u32 level)
173 {
174 return iwlagn_mod_params.debug_level & level;
175 }
176
177 enum iwl_rxon_context_id {
178 IWL_RXON_CTX_BSS,
179 IWL_RXON_CTX_PAN,
180
181 NUM_IWL_RXON_CTX
182 };
183
184 #endif /* #__iwl_shared_h__ */
This page took 0.04263 seconds and 5 git commands to generate.