iwlwifi: refactor ieee80211_get_qos_ctrl
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / iwlwifi / iwl-helpers.h
blobe4c3f84f530a90151db0c774de59db4fc886e2a4
1 /******************************************************************************
3 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
30 #ifndef __iwl_helpers_h__
31 #define __iwl_helpers_h__
33 #include <linux/ctype.h>
36 * The structures defined by the hardware/uCode interface
37 * have bit-wise operations. For each bit-field there is
38 * a data symbol in the structure, the start bit position
39 * and the length of the bit-field.
41 * iwl_get_bits and iwl_set_bits will return or set the
42 * appropriate bits on a 32-bit value.
44 * IWL_GET_BITS and IWL_SET_BITS use symbol expansion to
45 * expand out to the appropriate call to iwl_get_bits
46 * and iwl_set_bits without having to reference all of the
47 * numerical constants and defines provided in the hardware
48 * definition
51 /**
52 * iwl_get_bits - Extract a hardware bit-field value
53 * @src: source hardware value (__le32)
54 * @pos: bit-position (0-based) of first bit of value
55 * @len: length of bit-field
57 * iwl_get_bits will return the bit-field in cpu endian ordering.
59 * NOTE: If used from IWL_GET_BITS then pos and len are compile-constants and
60 * will collapse to minimal code by the compiler.
62 static inline u32 iwl_get_bits(__le32 src, u8 pos, u8 len)
64 u32 tmp = le32_to_cpu(src);
66 tmp >>= pos;
67 tmp &= (1UL << len) - 1;
68 return tmp;
71 /**
72 * iwl_set_bits - Set a hardware bit-field value
73 * @dst: Address of __le32 hardware value
74 * @pos: bit-position (0-based) of first bit of value
75 * @len: length of bit-field
76 * @val: cpu endian value to encode into the bit-field
78 * iwl_set_bits will encode val into dst, masked to be len bits long at bit
79 * position pos.
81 * NOTE: If used IWL_SET_BITS pos and len will be compile-constants and
82 * will collapse to minimal code by the compiler.
84 static inline void iwl_set_bits(__le32 *dst, u8 pos, u8 len, int val)
86 u32 tmp = le32_to_cpu(*dst);
88 tmp &= ~(((1UL << len) - 1) << pos);
89 tmp |= (val & ((1UL << len) - 1)) << pos;
90 *dst = cpu_to_le32(tmp);
93 static inline void iwl_set_bits16(__le16 *dst, u8 pos, u8 len, int val)
95 u16 tmp = le16_to_cpu(*dst);
97 tmp &= ~((1UL << (pos + len)) - (1UL << pos));
98 tmp |= (val & ((1UL << len) - 1)) << pos;
99 *dst = cpu_to_le16(tmp);
103 * The bit-field definitions in iwl-xxxx-hw.h are in the form of:
105 * struct example {
106 * __le32 val1;
107 * #define IWL_name_POS 8
108 * #define IWL_name_LEN 4
109 * #define IWL_name_SYM val1
110 * };
112 * The IWL_SET_BITS and IWL_GET_BITS macros are provided to allow the driver
113 * to call:
115 * struct example bar;
116 * u32 val = IWL_GET_BITS(bar, name);
117 * val = val * 2;
118 * IWL_SET_BITS(bar, name, val);
120 * All cpu / host ordering, masking, and shifts are performed by the macros
121 * and iwl_{get,set}_bits.
124 #define IWL_SET_BITS(s, sym, v) \
125 iwl_set_bits(&(s).IWL_ ## sym ## _SYM, IWL_ ## sym ## _POS, \
126 IWL_ ## sym ## _LEN, (v))
128 #define IWL_SET_BITS16(s, sym, v) \
129 iwl_set_bits16(&(s).IWL_ ## sym ## _SYM, IWL_ ## sym ## _POS, \
130 IWL_ ## sym ## _LEN, (v))
132 #define IWL_GET_BITS(s, sym) \
133 iwl_get_bits((s).IWL_ ## sym ## _SYM, IWL_ ## sym ## _POS, \
134 IWL_ ## sym ## _LEN)
137 #define KELVIN_TO_CELSIUS(x) ((x)-273)
138 #define CELSIUS_TO_KELVIN(x) ((x)+273)
140 #define IEEE80211_CHAN_W_RADAR_DETECT 0x00000010
142 static inline struct ieee80211_conf *ieee80211_get_hw_conf(
143 struct ieee80211_hw *hw)
145 return &hw->conf;
148 #define QOS_CONTROL_LEN 2
151 static inline int ieee80211_is_management(u16 fc)
153 return (fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT;
156 static inline int ieee80211_is_control(u16 fc)
158 return (fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL;
161 static inline int ieee80211_is_data(u16 fc)
163 return (fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA;
166 static inline int ieee80211_is_back_request(u16 fc)
168 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) &&
169 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BACK_REQ);
172 static inline int ieee80211_is_probe_response(u16 fc)
174 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
175 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP);
178 static inline int ieee80211_is_probe_request(u16 fc)
180 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
181 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_REQ);
184 static inline int ieee80211_is_beacon(u16 fc)
186 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
187 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BEACON);
190 static inline int ieee80211_is_atim(u16 fc)
192 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
193 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ATIM);
196 static inline int ieee80211_is_assoc_request(u16 fc)
198 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
199 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ);
202 static inline int ieee80211_is_assoc_response(u16 fc)
204 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
205 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_RESP);
208 static inline int ieee80211_is_auth(u16 fc)
210 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
211 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ);
214 static inline int ieee80211_is_deauth(u16 fc)
216 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
217 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ);
220 static inline int ieee80211_is_disassoc(u16 fc)
222 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
223 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ);
226 static inline int ieee80211_is_reassoc_request(u16 fc)
228 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
229 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ);
232 static inline int ieee80211_is_reassoc_response(u16 fc)
234 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) &&
235 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_RESP);
238 static inline int ieee80211_is_qos_data(u16 fc)
240 return ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
241 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_QOS_DATA);
244 * ieee80211_get_qos_ctrl - get pointer to the QoS control field
246 * This function returns the pointer to 802.11 header QoS field (2 bytes)
247 * This function doesn't check whether hdr is a QoS hdr, use with care
248 * @hdr: struct ieee80211_hdr *hdr
249 * @hdr_len: header length
252 static inline u8 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr, int hdr_len)
254 return ((u8 *) hdr + hdr_len - QOS_CONTROL_LEN);
257 static inline int iwl_check_bits(unsigned long field, unsigned long mask)
259 return ((field & mask) == mask) ? 1 : 0;
262 static inline unsigned long elapsed_jiffies(unsigned long start,
263 unsigned long end)
265 if (end >= start)
266 return end - start;
268 return end + (MAX_JIFFY_OFFSET - start) + 1;
271 static inline u8 iwl_get_dma_hi_address(dma_addr_t addr)
273 return sizeof(addr) > sizeof(u32) ? (addr >> 16) >> 16 : 0;
277 * iwl_queue_inc_wrap - increment queue index, wrap back to beginning
278 * @index -- current index
279 * @n_bd -- total number of entries in queue (must be power of 2)
281 static inline int iwl_queue_inc_wrap(int index, int n_bd)
283 return ++index & (n_bd - 1);
287 * iwl_queue_dec_wrap - decrement queue index, wrap back to end
288 * @index -- current index
289 * @n_bd -- total number of entries in queue (must be power of 2)
291 static inline int iwl_queue_dec_wrap(int index, int n_bd)
293 return --index & (n_bd - 1);
296 /* TODO: Move fw_desc functions to iwl-pci.ko */
297 static inline void iwl_free_fw_desc(struct pci_dev *pci_dev,
298 struct fw_desc *desc)
300 if (desc->v_addr)
301 pci_free_consistent(pci_dev, desc->len,
302 desc->v_addr, desc->p_addr);
303 desc->v_addr = NULL;
304 desc->len = 0;
307 static inline int iwl_alloc_fw_desc(struct pci_dev *pci_dev,
308 struct fw_desc *desc)
310 desc->v_addr = pci_alloc_consistent(pci_dev, desc->len, &desc->p_addr);
311 return (desc->v_addr != NULL) ? 0 : -ENOMEM;
314 #endif /* __iwl_helpers_h__ */